Add language entry for starts_with rule and date_equals validation message

These are commits from Laravel:
5052ab1fd7 (diff-9c04f727a922ad4f105b9ad764ec221d)
78cb2685aa (diff-9c04f727a922ad4f105b9ad764ec221d)
This commit is contained in:
Miles Cellar 2018-12-15 11:37:27 +01:00 committed by GitHub
parent 92b89532ec
commit 6124f3d180

View File

@ -17,6 +17,7 @@ validation:
boolean: "The :attribute field must be true or false." boolean: "The :attribute field must be true or false."
confirmed: "The :attribute confirmation does not match." confirmed: "The :attribute confirmation does not match."
date: "The :attribute is not a valid date." date: "The :attribute is not a valid date."
date_equals: "The :attribute must be a date equal to :date."
date_format: "The :attribute does not match the format :other." date_format: "The :attribute does not match the format :other."
different: "The :attribute and :other must be different." different: "The :attribute and :other must be different."
digits: "The :attribute must be :digits digits." digits: "The :attribute must be :digits digits."
@ -85,6 +86,7 @@ validation:
file: "The :attribute must be :size kilobytes." file: "The :attribute must be :size kilobytes."
string: "The :attribute must be :size characters." string: "The :attribute must be :size characters."
array: "The :attribute must contain :size items." array: "The :attribute must contain :size items."
starts_with: "The :attribute must start with one of the following: :values"
string: "The :attribute must be a string." string: "The :attribute must be a string."
timezone: "The :attribute must be a valid zone." timezone: "The :attribute must be a valid zone."
unique: "The :attribute has already been taken." unique: "The :attribute has already been taken."