lbry.com/lib/i18n.class.php

22 lines
284 B
PHP

<?php
/**
* i18n dummy we'll be happy to have later
*/
function __($msg)
{
return $msg;
}
/**
* Description of i18n
*
* @author jeremy
*/
class i18n
{
public static function register() /*needed to trigger class include, presumably setup would happen here*/
{
}
}