mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-28 07:51:24 +00:00
22 lines
284 B
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*/
|
|
{
|
|
|
|
}
|
|
}
|