fork download
  1. class I18n extends Kohana_I18n {}
  2.  
  3. if ( ! function_exists('__'))
  4. {
  5. function __($string, array $values = NULL, $lang = 'en-us')
  6. {
  7. $string = I18n::get($string);
  8.  
  9. return empty($values) ? $string : strtr($string, $values);
  10. }
  11. }
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty