facebook twitter hatena line email

「Php/Symfony/Symfony2/翻訳」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(言語ファイル)
行11: 行11:
  
 
==言語ファイル==
 
==言語ファイル==
-Resources/translations/message.en.yml
+
-app/Resources/translations/message.en.yml
 
  user:
 
  user:
 
     login: Login
 
     login: Login
symfony2:
+
 
    is:
+
bundle側のResourcesではない
        great: Symfony2 is great
+
        amazing: Symfony2 is amazing
+
    has:
+
        bundles: Symfony2 has bundles
+
  
 
==翻訳cache削除==
 
==翻訳cache削除==

2017年1月5日 (木) 17:54時点における版

phpの翻訳コード

echo $this->get('translator')->trans('Hello World');

phpの翻訳コード(変換する場合)

echo $this->get('translator')->trans('user.login'); // Login

言語設定変更方法

-app/config/config.yml

framework:
    translator: { fallback: en }

言語ファイル

-app/Resources/translations/message.en.yml

user:
   login: Login

bundle側のResourcesではない

翻訳cache削除

php app/console cache:clear

参考

http://docs.symfony.gr.jp/symfony2/book/translation.html