Add some translations.

This commit is contained in:
James Cole
2015-12-20 07:34:10 +01:00
parent a067704277
commit 2e35260bbb
3 changed files with 74 additions and 1 deletions

View File

@@ -35,6 +35,7 @@ return [
"in" => "The selected :attribute is invalid.",
"integer" => "The :attribute must be an integer.",
"ip" => "The :attribute must be a valid IP address.",
'json' => 'The :attribute must be a valid JSON string.',
"max.numeric" => "The :attribute may not be greater than :max.",
"max.file" => "The :attribute may not be greater than :max kilobytes.",
"max.string" => "The :attribute may not be greater than :max characters.",
@@ -49,6 +50,7 @@ return [
"regex" => "The :attribute format is invalid.",
"required" => "The :attribute field is required.",
"required_if" => "The :attribute field is required when :other is :value.",
'required_unless' => 'The :attribute field is required unless :other is in :values.',
"required_with" => "The :attribute field is required when :values is present.",
"required_with_all" => "The :attribute field is required when :values is present.",
"required_without" => "The :attribute field is required when :values is not present.",
@@ -59,6 +61,7 @@ return [
"size.string" => "The :attribute must be :size characters.",
"size.array" => "The :attribute must contain :size items.",
"unique" => "The :attribute has already been taken.",
'string' => 'The :attribute must be a string.',
"url" => "The :attribute format is invalid.",
"timezone" => "The :attribute must be a valid zone.",
];