Laravel 在翻译字符串中使用翻译器
Laravel use translator in a translation string
是否可以在 lang 文件中使用 trans()
?
例如:该行是Please fill in your :attribute
假设 :attribute
是密码。
可以将 password
放入英语 lang 文件
然后在 :attribute
?
的荷兰语 lang 文件中使用 wachtwoord
您可以在 attributes
数组中的语言验证文件 lang/nl/validation.php
中为此使用特定于语言的属性,例如:
'attributes' => [
'name' => 'naam'
'password' => 'wachtwoord'
],
这将在所有表单上全局翻译这些属性。
更广泛的解释检查:Laravel validation attributes "nice names"
是否可以在 lang 文件中使用 trans()
?
例如:该行是Please fill in your :attribute
假设 :attribute
是密码。
可以将 password
放入英语 lang 文件
然后在 :attribute
?
wachtwoord
您可以在 attributes
数组中的语言验证文件 lang/nl/validation.php
中为此使用特定于语言的属性,例如:
'attributes' => [
'name' => 'naam'
'password' => 'wachtwoord'
],
这将在所有表单上全局翻译这些属性。
更广泛的解释检查:Laravel validation attributes "nice names"