コード例 #1
0
ファイル: I18nTest.php プロジェクト: robotdance/php-i18n
 public function testAliases()
 {
     $value = I18n::translate('test_message');
     $this->assertNotEmpty($value);
     $value = I18n::localize(true);
     $this->assertEquals("True", $value);
 }