是否可以在lang文件中使用trans()
?Laravel在翻譯字符串中使用翻譯器
例如:行是Please fill in your :attribute
比方說:attribute
是密碼。
將有可能把password
在英朗文件在荷蘭郎立案:attribute
然後用wachtwoord
?
是否可以在lang文件中使用trans()
?Laravel在翻譯字符串中使用翻譯器
例如:行是Please fill in your :attribute
比方說:attribute
是密碼。
將有可能把password
在英朗文件在荷蘭郎立案:attribute
然後用wachtwoord
?
您可以在attributes
陣列中使用的語言特定屬性爲這個語言驗證文件lang/nl/validation.php
內,例如:
'attributes' => [
'name' => 'naam'
'password' => 'wachtwoord'
],
這將在所有形式的globably翻譯的那些屬性。
入住此線程出http://stackoverflow.com/questions/17047116/laravel-validation-attributes-nice-names – oBo