diff --git a/app/main/Concerns/Contains.php b/app/main/Concerns/Contains.php index fd694ac00e..62f674fd5c 100644 --- a/app/main/Concerns/Contains.php +++ b/app/main/Concerns/Contains.php @@ -38,6 +38,8 @@ protected function isMarkdown(string $filename): bool protected function isValidation(string $filename): bool { - return str_starts_with($filename, 'validation'); + $names = ['validation.php', 'validation-inline.php']; + + return in_array($filename, $names, true); } } diff --git a/app/main/Processors/Processor.php b/app/main/Processors/Processor.php index 792c137b20..3c920ae2cc 100644 --- a/app/main/Processors/Processor.php +++ b/app/main/Processors/Processor.php @@ -46,13 +46,12 @@ protected function merge(array $source, array $target, string $filename): array $this->sort($target); if ($this->isValidation($filename)) { - $custom = $this->getFallbackValue($source, $target, 'custom'); - $attributes = $this->getFallbackValue($source, $target, 'attributes'); + $custom = $this->getFallbackValue($source, $target, 'custom'); - $source = Arr::except($source, ['custom', 'attributes']); - $target = Arr::except($target, ['custom', 'attributes']); + $source = Arr::except($source, ['attributes', 'custom']); + $target = Arr::except($target, ['attributes', 'custom']); - return array_merge($source, $target, compact('custom', 'attributes')); + return array_merge($source, $target, compact('custom')); } return array_merge($source, $target); diff --git a/app/tests/TestCase.php b/app/tests/TestCase.php index 7cd9352052..89d87dd5ef 100644 --- a/app/tests/TestCase.php +++ b/app/tests/TestCase.php @@ -25,13 +25,12 @@ protected function source(string $filename): array $content = $this->isJsonFile($filename) ? $this->loadJson() : $this->loadFile($filename); if ($this->isValidation($filename)) { - $custom = Arr::get($content, 'custom', []); - $attributes = Arr::get($content, 'attributes', []); + $custom = Arr::get($content, 'custom', []); return Arrayable::of($content) - ->except(['custom', 'attributes']) + ->except(['attributes', 'custom']) ->ksort() - ->merge(compact('custom', 'attributes')) + ->merge(compact('custom')) ->get(); } @@ -97,7 +96,9 @@ protected function locales(): array protected function isValidation(string $filename): bool { - return str_starts_with($filename, 'validation'); + $names = ['validation.php', 'validation-inline.php']; + + return in_array($filename, $names, true); } protected function isInline(string $filename): bool diff --git a/docs/status.md b/docs/status.md index aab97936a9..e18237a836 100644 --- a/docs/status.md +++ b/docs/status.md @@ -2,7 +2,7 @@ # Completion status -> Translation of localizations is completed by **79%** (58.2K / 73.2K). +Translation of localizations is completed by **79%** (55.3K / 70.3K).
@@ -12,7 +12,7 @@ -[ar ✔](statuses/ar.md) +[ar ❗](statuses/ar.md) diff --git a/locales/af/validation-attributes.php b/locales/af/validation-attributes.php new file mode 100644 index 0000000000..37f8bbc858 --- /dev/null +++ b/locales/af/validation-attributes.php @@ -0,0 +1,39 @@ + [ + 'address' => 'adres', + 'age' => 'ouderdom', + 'body' => 'liggaam', + 'city' => 'stad', + 'content' => 'inhoud', + 'country' => 'land', + 'date' => 'datum', + 'day' => 'dag', + 'description' => 'beskrywing', + 'email' => 'epos', + 'excerpt' => 'uittreksel', + 'first_name' => 'naam', + 'gender' => 'geslag', + 'hour' => 'uur', + 'last_name' => 'van', + 'message' => 'boodskap', + 'minute' => 'minuut', + 'mobile' => 'mobiele', + 'month' => 'maand', + 'name' => 'naam', + 'password' => 'wagwoord', + 'password_confirmation' => 'bevestig_wagwoord', + 'phone' => 'telefoon', + 'price' => 'prys', + 'role' => 'rol', + 'second' => 'sekonde', + 'sex' => 'geslag', + 'subject' => 'onderwerp', + 'terms' => 'terme', + 'time' => 'tyd', + 'title' => 'titel', + 'username' => 'gebruikersnaam', + 'year' => 'jaar', + ], +]; diff --git a/locales/af/validation-inline.php b/locales/af/validation-inline.php index 427b445418..4159247e15 100644 --- a/locales/af/validation-inline.php +++ b/locales/af/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/af/validation.php b/locales/af/validation.php index af3e02e02c..b1488ffba9 100644 --- a/locales/af/validation.php +++ b/locales/af/validation.php @@ -130,39 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'adres', - 'age' => 'ouderdom', - 'body' => 'liggaam', - 'city' => 'stad', - 'content' => 'inhoud', - 'country' => 'land', - 'date' => 'datum', - 'day' => 'dag', - 'description' => 'beskrywing', - 'email' => 'epos', - 'excerpt' => 'uittreksel', - 'first_name' => 'naam', - 'gender' => 'geslag', - 'hour' => 'uur', - 'last_name' => 'van', - 'message' => 'boodskap', - 'minute' => 'minuut', - 'mobile' => 'mobiele', - 'month' => 'maand', - 'name' => 'naam', - 'password' => 'wagwoord', - 'password_confirmation' => 'bevestig_wagwoord', - 'phone' => 'telefoon', - 'price' => 'prys', - 'role' => 'rol', - 'second' => 'sekonde', - 'sex' => 'geslag', - 'subject' => 'onderwerp', - 'terms' => 'terme', - 'time' => 'tyd', - 'title' => 'titel', - 'username' => 'gebruikersnaam', - 'year' => 'jaar', - ], ]; diff --git a/locales/ar/validation-attributes.php b/locales/ar/validation-attributes.php new file mode 100644 index 0000000000..040d74b1d3 --- /dev/null +++ b/locales/ar/validation-attributes.php @@ -0,0 +1,35 @@ + [ + 'address' => 'العنوان', + 'age' => 'العمر', + 'available' => 'مُتاح', + 'city' => 'المدينة', + 'content' => 'المُحتوى', + 'country' => 'الدولة', + 'date' => 'التاريخ', + 'day' => 'اليوم', + 'description' => 'الوصف', + 'email' => 'البريد الالكتروني', + 'excerpt' => 'المُلخص', + 'first_name' => 'الاسم الأول', + 'gender' => 'النوع', + 'hour' => 'ساعة', + 'last_name' => 'اسم العائلة', + 'minute' => 'دقيقة', + 'mobile' => 'الجوال', + 'month' => 'الشهر', + 'name' => 'الاسم', + 'password' => 'كلمة المرور', + 'password_confirmation' => 'تأكيد كلمة المرور', + 'phone' => 'الهاتف', + 'second' => 'ثانية', + 'sex' => 'الجنس', + 'size' => 'الحجم', + 'time' => 'الوقت', + 'title' => 'العنوان', + 'username' => 'اسم المُستخدم', + 'year' => 'السنة', + ], +]; diff --git a/locales/ar/validation-inline.php b/locales/ar/validation-inline.php index 69e5d832b7..a9bfbc9472 100644 --- a/locales/ar/validation-inline.php +++ b/locales/ar/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/ar/validation.php b/locales/ar/validation.php index aa463c0bd1..22f04422f5 100644 --- a/locales/ar/validation.php +++ b/locales/ar/validation.php @@ -130,35 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'العنوان', - 'age' => 'العمر', - 'available' => 'مُتاح', - 'city' => 'المدينة', - 'content' => 'المُحتوى', - 'country' => 'الدولة', - 'date' => 'التاريخ', - 'day' => 'اليوم', - 'description' => 'الوصف', - 'email' => 'البريد الالكتروني', - 'excerpt' => 'المُلخص', - 'first_name' => 'الاسم الأول', - 'gender' => 'النوع', - 'hour' => 'ساعة', - 'last_name' => 'اسم العائلة', - 'minute' => 'دقيقة', - 'mobile' => 'الجوال', - 'month' => 'الشهر', - 'name' => 'الاسم', - 'password' => 'كلمة المرور', - 'password_confirmation' => 'تأكيد كلمة المرور', - 'phone' => 'الهاتف', - 'second' => 'ثانية', - 'sex' => 'الجنس', - 'size' => 'الحجم', - 'time' => 'الوقت', - 'title' => 'العنوان', - 'username' => 'اسم المُستخدم', - 'year' => 'السنة', - ], ]; diff --git a/locales/az/validation-attributes.php b/locales/az/validation-attributes.php new file mode 100644 index 0000000000..02cd4c50d3 --- /dev/null +++ b/locales/az/validation-attributes.php @@ -0,0 +1,36 @@ + [ + 'address' => 'Ünvan', + 'age' => 'Yaş', + 'available' => 'Əlçatandır', + 'city' => 'Şəhər', + 'content' => 'Məzmun', + 'country' => 'Şəhər', + 'current_password' => 'Cari şifrə', + 'date' => 'Tarix', + 'day' => 'Gün', + 'description' => 'Təsvir', + 'email' => 'E-poçt ünvanı', + 'excerpt' => 'Çıxarış', + 'first_name' => 'Ad', + 'gender' => 'Gender', + 'hour' => 'Saat', + 'last_name' => 'Soyad', + 'minute' => 'Dəqiqə', + 'mobile' => 'Mobil nömrə', + 'month' => 'Ay', + 'name' => 'Ad', + 'password' => 'Şifrə', + 'password_confirmation' => 'Şifrə təsdiqi', + 'phone' => 'Telefon', + 'second' => 'Saniyə', + 'sex' => 'Cins', + 'size' => 'Ölçü', + 'time' => 'Vaxt', + 'title' => 'Başlıq', + 'username' => 'İstifadəçi adı', + 'year' => 'İl', + ], +]; diff --git a/locales/az/validation-inline.php b/locales/az/validation-inline.php index 6d4e4e35dc..65144e380f 100644 --- a/locales/az/validation-inline.php +++ b/locales/az/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/az/validation.php b/locales/az/validation.php index ccd19152aa..5687839a6e 100644 --- a/locales/az/validation.php +++ b/locales/az/validation.php @@ -130,36 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Ünvan', - 'age' => 'Yaş', - 'available' => 'Əlçatandır', - 'city' => 'Şəhər', - 'content' => 'Məzmun', - 'country' => 'Şəhər', - 'current_password' => 'Cari şifrə', - 'date' => 'Tarix', - 'day' => 'Gün', - 'description' => 'Təsvir', - 'email' => 'E-poçt ünvanı', - 'excerpt' => 'Çıxarış', - 'first_name' => 'Ad', - 'gender' => 'Gender', - 'hour' => 'Saat', - 'last_name' => 'Soyad', - 'minute' => 'Dəqiqə', - 'mobile' => 'Mobil nömrə', - 'month' => 'Ay', - 'name' => 'Ad', - 'password' => 'Şifrə', - 'password_confirmation' => 'Şifrə təsdiqi', - 'phone' => 'Telefon', - 'second' => 'Saniyə', - 'sex' => 'Cins', - 'size' => 'Ölçü', - 'time' => 'Vaxt', - 'title' => 'Başlıq', - 'username' => 'İstifadəçi adı', - 'year' => 'İl', - ], ]; diff --git a/locales/be/validation-attributes.php b/locales/be/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/be/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/be/validation-inline.php b/locales/be/validation-inline.php index 289cfc609e..6641308646 100644 --- a/locales/be/validation-inline.php +++ b/locales/be/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/be/validation.php b/locales/be/validation.php index 28999c5713..3aca2ee948 100644 --- a/locales/be/validation.php +++ b/locales/be/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/bg/validation-attributes.php b/locales/bg/validation-attributes.php new file mode 100644 index 0000000000..3af0c26dad --- /dev/null +++ b/locales/bg/validation-attributes.php @@ -0,0 +1,37 @@ + [ + 'address' => 'Адрес', + 'age' => 'Възраст', + 'available' => 'Достъпен', + 'city' => 'Град', + 'content' => 'Съдържание', + 'country' => 'Държава', + 'date' => 'Дата', + 'day' => 'Ден', + 'description' => 'Описание', + 'email' => 'E-mail', + 'excerpt' => 'Откъс', + 'first_name' => 'Име', + 'gender' => 'Пол', + 'hour' => 'Час', + 'last_name' => 'Фамилия', + 'message' => 'Съобщение', + 'minute' => 'Минута', + 'mobile' => 'GSM', + 'month' => 'Месец', + 'name' => 'Име', + 'password' => 'Парола', + 'phone' => 'Телефон', + 'recaptcha_response_field' => 'Рекапча', + 'second' => 'Секунда', + 'sex' => 'Пол', + 'size' => 'Размер', + 'subject' => 'Заглавие', + 'time' => 'Време', + 'title' => 'Заглавие', + 'username' => 'Потребител', + 'year' => 'Година', + ], +]; diff --git a/locales/bg/validation-inline.php b/locales/bg/validation-inline.php index 19110e8ec2..3efbb1ea9c 100644 --- a/locales/bg/validation-inline.php +++ b/locales/bg/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/bg/validation.php b/locales/bg/validation.php index e1f8596454..3d36fca2ca 100644 --- a/locales/bg/validation.php +++ b/locales/bg/validation.php @@ -130,37 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Адрес', - 'age' => 'Възраст', - 'available' => 'Достъпен', - 'city' => 'Град', - 'content' => 'Съдържание', - 'country' => 'Държава', - 'date' => 'Дата', - 'day' => 'Ден', - 'description' => 'Описание', - 'email' => 'E-mail', - 'excerpt' => 'Откъс', - 'first_name' => 'Име', - 'gender' => 'Пол', - 'hour' => 'Час', - 'last_name' => 'Фамилия', - 'message' => 'Съобщение', - 'minute' => 'Минута', - 'mobile' => 'GSM', - 'month' => 'Месец', - 'name' => 'Име', - 'password' => 'Парола', - 'phone' => 'Телефон', - 'recaptcha_response_field' => 'Рекапча', - 'second' => 'Секунда', - 'sex' => 'Пол', - 'size' => 'Размер', - 'subject' => 'Заглавие', - 'time' => 'Време', - 'title' => 'Заглавие', - 'username' => 'Потребител', - 'year' => 'Година', - ], ]; diff --git a/locales/bn/validation-attributes.php b/locales/bn/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/bn/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/bn/validation-inline.php b/locales/bn/validation-inline.php index 030b32865e..02339c0a6d 100644 --- a/locales/bn/validation-inline.php +++ b/locales/bn/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/bn/validation.php b/locales/bn/validation.php index df31d8b780..0658b646f0 100644 --- a/locales/bn/validation.php +++ b/locales/bn/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/bs/validation-attributes.php b/locales/bs/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/bs/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/bs/validation-inline.php b/locales/bs/validation-inline.php index 3988571a3e..10c9ecf697 100644 --- a/locales/bs/validation-inline.php +++ b/locales/bs/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/bs/validation.php b/locales/bs/validation.php index d77607796d..883ea0d495 100644 --- a/locales/bs/validation.php +++ b/locales/bs/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/ca/validation-attributes.php b/locales/ca/validation-attributes.php new file mode 100644 index 0000000000..4ef52bc8ea --- /dev/null +++ b/locales/ca/validation-attributes.php @@ -0,0 +1,38 @@ + [ + 'address' => 'adreça', + 'age' => 'edat', + 'body' => 'cos', + 'city' => 'ciutat', + 'content' => 'contingut', + 'country' => 'país', + 'date' => 'data', + 'day' => 'dia', + 'description' => 'descripció', + 'email' => 'adreça electrònica', + 'excerpt' => 'extracte', + 'first_name' => 'nom', + 'gender' => 'gènere', + 'hour' => 'hora', + 'last_name' => 'cognom', + 'message' => 'missatge', + 'minute' => 'minut', + 'mobile' => 'mòbil', + 'month' => 'mes', + 'name' => 'nom', + 'password' => 'contrasenya', + 'password_confirmation' => 'confirmació de la contrasenya', + 'phone' => 'telèfon', + 'price' => 'preu', + 'second' => 'segon', + 'sex' => 'sexe', + 'subject' => 'assumpte', + 'terms' => 'termes', + 'time' => 'hora', + 'title' => 'títol', + 'username' => 'usuari', + 'year' => 'any', + ], +]; diff --git a/locales/ca/validation-inline.php b/locales/ca/validation-inline.php index 15073361b3..cf02b798df 100644 --- a/locales/ca/validation-inline.php +++ b/locales/ca/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/ca/validation.php b/locales/ca/validation.php index 9256ced3c4..535f3fd72b 100644 --- a/locales/ca/validation.php +++ b/locales/ca/validation.php @@ -133,38 +133,4 @@ 'min' => 'La :attribute ha de contenir més de :min caràcters', ], ], - 'attributes' => [ - 'address' => 'adreça', - 'age' => 'edat', - 'body' => 'cos', - 'city' => 'ciutat', - 'content' => 'contingut', - 'country' => 'país', - 'date' => 'data', - 'day' => 'dia', - 'description' => 'descripció', - 'email' => 'adreça electrònica', - 'excerpt' => 'extracte', - 'first_name' => 'nom', - 'gender' => 'gènere', - 'hour' => 'hora', - 'last_name' => 'cognom', - 'message' => 'missatge', - 'minute' => 'minut', - 'mobile' => 'mòbil', - 'month' => 'mes', - 'name' => 'nom', - 'password' => 'contrasenya', - 'password_confirmation' => 'confirmació de la contrasenya', - 'phone' => 'telèfon', - 'price' => 'preu', - 'second' => 'segon', - 'sex' => 'sexe', - 'subject' => 'assumpte', - 'terms' => 'termes', - 'time' => 'hora', - 'title' => 'títol', - 'username' => 'usuari', - 'year' => 'any', - ], ]; diff --git a/locales/cs/validation-attributes.php b/locales/cs/validation-attributes.php new file mode 100644 index 0000000000..f0833ba7d6 --- /dev/null +++ b/locales/cs/validation-attributes.php @@ -0,0 +1,7 @@ + [ + 'password' => 'heslo', + ], +]; diff --git a/locales/cs/validation-inline.php b/locales/cs/validation-inline.php index 45f217a002..fdac2c33a4 100644 --- a/locales/cs/validation-inline.php +++ b/locales/cs/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/cs/validation.php b/locales/cs/validation.php index f6562a7065..3995325b8b 100644 --- a/locales/cs/validation.php +++ b/locales/cs/validation.php @@ -130,7 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'password' => 'heslo', - ], ]; diff --git a/locales/cy/validation-attributes.php b/locales/cy/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/cy/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/cy/validation-inline.php b/locales/cy/validation-inline.php index 7c6e61a4b1..afb898b116 100644 --- a/locales/cy/validation-inline.php +++ b/locales/cy/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/cy/validation.php b/locales/cy/validation.php index e8f3a89e15..f1cda1df48 100644 --- a/locales/cy/validation.php +++ b/locales/cy/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/da/validation-attributes.php b/locales/da/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/da/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/da/validation-inline.php b/locales/da/validation-inline.php index fc27369657..56f482d041 100644 --- a/locales/da/validation-inline.php +++ b/locales/da/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/da/validation.php b/locales/da/validation.php index 7f76cc957d..7a4ac7ffac 100644 --- a/locales/da/validation.php +++ b/locales/da/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/de/validation-attributes.php b/locales/de/validation-attributes.php new file mode 100644 index 0000000000..e7a5465d1c --- /dev/null +++ b/locales/de/validation-attributes.php @@ -0,0 +1,36 @@ + [ + 'address' => 'Adresse', + 'age' => 'Alter', + 'available' => 'verfügbar', + 'city' => 'Stadt', + 'content' => 'Inhalt', + 'country' => 'Land', + 'current_password' => 'Derzeitiges Passwort', + 'date' => 'Datum', + 'day' => 'Tag', + 'description' => 'Beschreibung', + 'email' => 'E-Mail Adresse', + 'excerpt' => 'Auszug', + 'first_name' => 'Vorname', + 'gender' => 'Geschlecht', + 'hour' => 'Stunde', + 'last_name' => 'Nachname', + 'minute' => 'Minute', + 'mobile' => 'Handynummer', + 'month' => 'Monat', + 'name' => 'Name', + 'password' => 'Passwort', + 'password_confirmation' => 'Passwort Bestätigung', + 'phone' => 'Telefonnummer', + 'second' => 'Sekunde', + 'sex' => 'Geschlecht', + 'size' => 'Größe', + 'time' => 'Uhrzeit', + 'title' => 'Titel', + 'username' => 'Benutzername', + 'year' => 'Jahr', + ], +]; diff --git a/locales/de/validation-inline.php b/locales/de/validation-inline.php index 253ff23074..6c2b5720c9 100644 --- a/locales/de/validation-inline.php +++ b/locales/de/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/de/validation.php b/locales/de/validation.php index 0f4bd9132a..babffd4050 100644 --- a/locales/de/validation.php +++ b/locales/de/validation.php @@ -130,36 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Adresse', - 'age' => 'Alter', - 'available' => 'verfügbar', - 'city' => 'Stadt', - 'content' => 'Inhalt', - 'country' => 'Land', - 'current_password' => 'Derzeitiges Passwort', - 'date' => 'Datum', - 'day' => 'Tag', - 'description' => 'Beschreibung', - 'email' => 'E-Mail Adresse', - 'excerpt' => 'Auszug', - 'first_name' => 'Vorname', - 'gender' => 'Geschlecht', - 'hour' => 'Stunde', - 'last_name' => 'Nachname', - 'minute' => 'Minute', - 'mobile' => 'Handynummer', - 'month' => 'Monat', - 'name' => 'Name', - 'password' => 'Passwort', - 'password_confirmation' => 'Passwort Bestätigung', - 'phone' => 'Telefonnummer', - 'second' => 'Sekunde', - 'sex' => 'Geschlecht', - 'size' => 'Größe', - 'time' => 'Uhrzeit', - 'title' => 'Titel', - 'username' => 'Benutzername', - 'year' => 'Jahr', - ], ]; diff --git a/locales/de_CH/validation-attributes.php b/locales/de_CH/validation-attributes.php new file mode 100644 index 0000000000..03d85a85c5 --- /dev/null +++ b/locales/de_CH/validation-attributes.php @@ -0,0 +1,35 @@ + [ + 'address' => 'Adresse', + 'age' => 'Alter', + 'available' => 'verfügbar', + 'city' => 'Stadt', + 'content' => 'Inhalt', + 'country' => 'Land', + 'date' => 'Datum', + 'day' => 'Tag', + 'description' => 'Beschreibung', + 'email' => 'E-Mail-Adresse', + 'excerpt' => 'Auszug', + 'first_name' => 'Vorname', + 'gender' => 'Geschlecht', + 'hour' => 'Stunde', + 'last_name' => 'Nachname', + 'minute' => 'Minute', + 'mobile' => 'Handynummer', + 'month' => 'Monat', + 'name' => 'Name', + 'password' => 'Passwort', + 'password_confirmation' => 'Passwort-Bestätigung', + 'phone' => 'Telefonnummer', + 'second' => 'Sekunde', + 'sex' => 'Geschlecht', + 'size' => 'Grösse', + 'time' => 'Uhrzeit', + 'title' => 'Titel', + 'username' => 'Benutzername', + 'year' => 'Jahr', + ], +]; diff --git a/locales/de_CH/validation-inline.php b/locales/de_CH/validation-inline.php index 43a63db748..ea36104ba7 100644 --- a/locales/de_CH/validation-inline.php +++ b/locales/de_CH/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/de_CH/validation.php b/locales/de_CH/validation.php index adb8ccc25f..0c490a73b8 100644 --- a/locales/de_CH/validation.php +++ b/locales/de_CH/validation.php @@ -130,35 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Adresse', - 'age' => 'Alter', - 'available' => 'verfügbar', - 'city' => 'Stadt', - 'content' => 'Inhalt', - 'country' => 'Land', - 'date' => 'Datum', - 'day' => 'Tag', - 'description' => 'Beschreibung', - 'email' => 'E-Mail-Adresse', - 'excerpt' => 'Auszug', - 'first_name' => 'Vorname', - 'gender' => 'Geschlecht', - 'hour' => 'Stunde', - 'last_name' => 'Nachname', - 'minute' => 'Minute', - 'mobile' => 'Handynummer', - 'month' => 'Monat', - 'name' => 'Name', - 'password' => 'Passwort', - 'password_confirmation' => 'Passwort-Bestätigung', - 'phone' => 'Telefonnummer', - 'second' => 'Sekunde', - 'sex' => 'Geschlecht', - 'size' => 'Grösse', - 'time' => 'Uhrzeit', - 'title' => 'Titel', - 'username' => 'Benutzername', - 'year' => 'Jahr', - ], ]; diff --git a/locales/el/validation-attributes.php b/locales/el/validation-attributes.php new file mode 100644 index 0000000000..8bf915b7e7 --- /dev/null +++ b/locales/el/validation-attributes.php @@ -0,0 +1,38 @@ + [ + 'address' => 'Διεύθυνση', + 'age' => 'Ηλικία', + 'available' => 'Διαθέσιμος', + 'city' => 'Πόλη', + 'content' => 'Περιεχόμενο', + 'country' => 'Χώρα', + 'date' => 'Ημερομηνία', + 'day' => 'Ημέρα', + 'description' => 'Περιγραφή', + 'email' => 'E-mail', + 'excerpt' => 'Απόσπασμα', + 'first_name' => 'Όνομα', + 'gender' => 'Γένος', + 'hour' => 'Ωρα', + 'last_name' => 'Επίθετο', + 'message' => 'Μήνυμα', + 'minute' => 'Λεπτό', + 'mobile' => 'Κινητό τηλέφωνο', + 'month' => 'Μήνας', + 'name' => 'Όνομα', + 'password' => 'Συνθηματικό', + 'password_confirmation' => 'Επιβεβαίωση συνθηματικού', + 'phone' => 'Τηλέφωνο', + 'recaptcha_response_field' => 'Η επαλήθευση recaptcha ', + 'second' => 'Δευτερόλεπτο', + 'sex' => 'Φύλο', + 'size' => 'Μέγεθος', + 'subject' => 'Θέμα', + 'time' => 'Χρόνος', + 'title' => 'Τίτλος', + 'username' => 'Όνομα χρήστη', + 'year' => 'Ετος', + ], +]; diff --git a/locales/el/validation-inline.php b/locales/el/validation-inline.php index 3fcf2e4dc2..51bb3d967a 100644 --- a/locales/el/validation-inline.php +++ b/locales/el/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/el/validation.php b/locales/el/validation.php index 41e58c20c8..5c94e7430e 100644 --- a/locales/el/validation.php +++ b/locales/el/validation.php @@ -130,38 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Διεύθυνση', - 'age' => 'Ηλικία', - 'available' => 'Διαθέσιμος', - 'city' => 'Πόλη', - 'content' => 'Περιεχόμενο', - 'country' => 'Χώρα', - 'date' => 'Ημερομηνία', - 'day' => 'Ημέρα', - 'description' => 'Περιγραφή', - 'email' => 'E-mail', - 'excerpt' => 'Απόσπασμα', - 'first_name' => 'Όνομα', - 'gender' => 'Γένος', - 'hour' => 'Ωρα', - 'last_name' => 'Επίθετο', - 'message' => 'Μήνυμα', - 'minute' => 'Λεπτό', - 'mobile' => 'Κινητό τηλέφωνο', - 'month' => 'Μήνας', - 'name' => 'Όνομα', - 'password' => 'Συνθηματικό', - 'password_confirmation' => 'Επιβεβαίωση συνθηματικού', - 'phone' => 'Τηλέφωνο', - 'recaptcha_response_field' => 'Η επαλήθευση recaptcha ', - 'second' => 'Δευτερόλεπτο', - 'sex' => 'Φύλο', - 'size' => 'Μέγεθος', - 'subject' => 'Θέμα', - 'time' => 'Χρόνος', - 'title' => 'Τίτλος', - 'username' => 'Όνομα χρήστη', - 'year' => 'Ετος', - ], ]; diff --git a/locales/es/validation-attributes.php b/locales/es/validation-attributes.php new file mode 100644 index 0000000000..2350965468 --- /dev/null +++ b/locales/es/validation-attributes.php @@ -0,0 +1,41 @@ + [ + 'address' => 'dirección', + 'age' => 'edad', + 'body' => 'contenido', + 'city' => 'ciudad', + 'content' => 'contenido', + 'country' => 'país', + 'current_password' => 'contraseña actual', + 'date' => 'fecha', + 'day' => 'día', + 'description' => 'descripción', + 'email' => 'correo electrónico', + 'excerpt' => 'extracto', + 'first_name' => 'nombre', + 'gender' => 'género', + 'hour' => 'hora', + 'last_name' => 'apellido', + 'message' => 'mensaje', + 'minute' => 'minuto', + 'mobile' => 'móvil', + 'month' => 'mes', + 'name' => 'nombre', + 'password' => 'contraseña', + 'password_confirmation' => 'confirmación de la contraseña', + 'phone' => 'teléfono', + 'photo' => 'foto', + 'price' => 'precio', + 'role' => 'rol', + 'second' => 'segundo', + 'sex' => 'sexo', + 'subject' => 'asunto', + 'terms' => 'términos', + 'time' => 'hora', + 'title' => 'título', + 'username' => 'usuario', + 'year' => 'año', + ], +]; diff --git a/locales/es/validation-inline.php b/locales/es/validation-inline.php index 43adb33a4e..18b854e164 100644 --- a/locales/es/validation-inline.php +++ b/locales/es/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/es/validation.php b/locales/es/validation.php index 43b98c6629..edde42a493 100644 --- a/locales/es/validation.php +++ b/locales/es/validation.php @@ -133,41 +133,4 @@ 'min' => 'La :attribute debe contener más de :min caracteres', ], ], - 'attributes' => [ - 'address' => 'dirección', - 'age' => 'edad', - 'body' => 'contenido', - 'city' => 'ciudad', - 'content' => 'contenido', - 'country' => 'país', - 'current_password' => 'contraseña actual', - 'date' => 'fecha', - 'day' => 'día', - 'description' => 'descripción', - 'email' => 'correo electrónico', - 'excerpt' => 'extracto', - 'first_name' => 'nombre', - 'gender' => 'género', - 'hour' => 'hora', - 'last_name' => 'apellido', - 'message' => 'mensaje', - 'minute' => 'minuto', - 'mobile' => 'móvil', - 'month' => 'mes', - 'name' => 'nombre', - 'password' => 'contraseña', - 'password_confirmation' => 'confirmación de la contraseña', - 'phone' => 'teléfono', - 'photo' => 'foto', - 'price' => 'precio', - 'role' => 'rol', - 'second' => 'segundo', - 'sex' => 'sexo', - 'subject' => 'asunto', - 'terms' => 'términos', - 'time' => 'hora', - 'title' => 'título', - 'username' => 'usuario', - 'year' => 'año', - ], ]; diff --git a/locales/et/validation-attributes.php b/locales/et/validation-attributes.php new file mode 100644 index 0000000000..f083a572d7 --- /dev/null +++ b/locales/et/validation-attributes.php @@ -0,0 +1,12 @@ + [ + 'image' => 'Pilt', + 'result_text_under_image' => 'Tulemuse tekst pildi all', + 'short_text' => 'Lühitekst', + 'test_description' => 'Testi kirjeldus', + 'test_locale' => 'Keel', + 'test_name' => 'Testi nimi', + ], +]; diff --git a/locales/et/validation-inline.php b/locales/et/validation-inline.php index 92df5f40a1..6928fa0d52 100644 --- a/locales/et/validation-inline.php +++ b/locales/et/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/et/validation.php b/locales/et/validation.php index c57a8051db..9932fcf43f 100644 --- a/locales/et/validation.php +++ b/locales/et/validation.php @@ -130,12 +130,4 @@ 'rule-name' => 'kohandatud-teade', ], ], - 'attributes' => [ - 'image' => 'Pilt', - 'result_text_under_image' => 'Tulemuse tekst pildi all', - 'short_text' => 'Lühitekst', - 'test_description' => 'Testi kirjeldus', - 'test_locale' => 'Keel', - 'test_name' => 'Testi nimi', - ], ]; diff --git a/locales/eu/validation-attributes.php b/locales/eu/validation-attributes.php new file mode 100644 index 0000000000..aab12a8490 --- /dev/null +++ b/locales/eu/validation-attributes.php @@ -0,0 +1,38 @@ + [ + 'address' => 'helbidea', + 'age' => 'adina', + 'available' => 'erabilgarria', + 'body' => 'gorputza', + 'city' => 'hiria', + 'content' => 'edukia', + 'country' => 'herrialdea', + 'date' => 'data', + 'day' => 'eguna', + 'description' => 'deskribapena', + 'email' => 'posta elektronikoa', + 'excerpt' => 'pasartea', + 'first_name' => 'izena', + 'gender' => 'generoa', + 'hour' => 'ordua', + 'last_name' => 'abizena', + 'message' => 'mezua', + 'minute' => 'minutua', + 'mobile' => 'mugikorra', + 'month' => 'hilabetea', + 'name' => 'izena', + 'password' => 'pasahitza', + 'password_confirmation' => 'pasahitzaren berrespena', + 'phone' => 'telefonoa', + 'second' => 'segundoa', + 'sex' => 'sexua', + 'size' => 'neurria', + 'subject' => 'gaia', + 'time' => 'denbora', + 'title' => 'izenburua', + 'username' => 'erabiltzailea', + 'year' => 'urtea', + ], +]; diff --git a/locales/eu/validation-inline.php b/locales/eu/validation-inline.php index 1c853f06be..58ad2e137e 100644 --- a/locales/eu/validation-inline.php +++ b/locales/eu/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/eu/validation.php b/locales/eu/validation.php index 1d182c31f3..a67e433135 100644 --- a/locales/eu/validation.php +++ b/locales/eu/validation.php @@ -130,38 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'helbidea', - 'age' => 'adina', - 'available' => 'erabilgarria', - 'body' => 'gorputza', - 'city' => 'hiria', - 'content' => 'edukia', - 'country' => 'herrialdea', - 'date' => 'data', - 'day' => 'eguna', - 'description' => 'deskribapena', - 'email' => 'posta elektronikoa', - 'excerpt' => 'pasartea', - 'first_name' => 'izena', - 'gender' => 'generoa', - 'hour' => 'ordua', - 'last_name' => 'abizena', - 'message' => 'mezua', - 'minute' => 'minutua', - 'mobile' => 'mugikorra', - 'month' => 'hilabetea', - 'name' => 'izena', - 'password' => 'pasahitza', - 'password_confirmation' => 'pasahitzaren berrespena', - 'phone' => 'telefonoa', - 'second' => 'segundoa', - 'sex' => 'sexua', - 'size' => 'neurria', - 'subject' => 'gaia', - 'time' => 'denbora', - 'title' => 'izenburua', - 'username' => 'erabiltzailea', - 'year' => 'urtea', - ], ]; diff --git a/locales/fa/validation-attributes.php b/locales/fa/validation-attributes.php new file mode 100644 index 0000000000..6e92979168 --- /dev/null +++ b/locales/fa/validation-attributes.php @@ -0,0 +1,41 @@ + [ + 'address' => 'نشانی', + 'age' => 'سن', + 'area' => 'منطقه', + 'available' => 'موجود', + 'city' => 'شهر', + 'content' => 'محتوا', + 'country' => 'کشور', + 'date' => 'تاریخ', + 'day' => 'روز', + 'description' => 'توضیحات', + 'district' => 'ناحیه', + 'email' => 'ایمیل', + 'excerpt' => 'گزیده مطلب', + 'first_name' => 'نام', + 'gender' => 'جنسیت', + 'hour' => 'ساعت', + 'last_name' => 'نام خانوادگی', + 'minute' => 'دقیقه', + 'mobile' => 'شماره همراه', + 'month' => 'ماه', + 'name' => 'نام', + 'national_code' => 'کد ملی', + 'password' => 'رمز عبور', + 'password_confirmation' => 'تکرار رمز عبور', + 'phone' => 'شماره ثابت', + 'province' => 'استان', + 'second' => 'ثانیه', + 'sex' => 'جنسیت', + 'size' => 'اندازه', + 'terms' => 'شرایط', + 'text' => 'متن', + 'time' => 'زمان', + 'title' => 'عنوان', + 'username' => 'نام کاربری', + 'year' => 'سال', + ], +]; diff --git a/locales/fa/validation-inline.php b/locales/fa/validation-inline.php index fc3ad4183a..fdc8db7d9d 100644 --- a/locales/fa/validation-inline.php +++ b/locales/fa/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/fa/validation.php b/locales/fa/validation.php index 227f23107c..f10cf80914 100644 --- a/locales/fa/validation.php +++ b/locales/fa/validation.php @@ -130,41 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'نشانی', - 'age' => 'سن', - 'area' => 'منطقه', - 'available' => 'موجود', - 'city' => 'شهر', - 'content' => 'محتوا', - 'country' => 'کشور', - 'date' => 'تاریخ', - 'day' => 'روز', - 'description' => 'توضیحات', - 'district' => 'ناحیه', - 'email' => 'ایمیل', - 'excerpt' => 'گزیده مطلب', - 'first_name' => 'نام', - 'gender' => 'جنسیت', - 'hour' => 'ساعت', - 'last_name' => 'نام خانوادگی', - 'minute' => 'دقیقه', - 'mobile' => 'شماره همراه', - 'month' => 'ماه', - 'name' => 'نام', - 'national_code' => 'کد ملی', - 'password' => 'رمز عبور', - 'password_confirmation' => 'تکرار رمز عبور', - 'phone' => 'شماره ثابت', - 'province' => 'استان', - 'second' => 'ثانیه', - 'sex' => 'جنسیت', - 'size' => 'اندازه', - 'terms' => 'شرایط', - 'text' => 'متن', - 'time' => 'زمان', - 'title' => 'عنوان', - 'username' => 'نام کاربری', - 'year' => 'سال', - ], ]; diff --git a/locales/fi/validation-attributes.php b/locales/fi/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/fi/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/fi/validation-inline.php b/locales/fi/validation-inline.php index 57b22a0000..bfb9c866b8 100644 --- a/locales/fi/validation-inline.php +++ b/locales/fi/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/fi/validation.php b/locales/fi/validation.php index 836071bce9..3eba1ac63f 100644 --- a/locales/fi/validation.php +++ b/locales/fi/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/fil/validation-attributes.php b/locales/fil/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/fil/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/fil/validation-inline.php b/locales/fil/validation-inline.php index 79f3fa7c8d..ccbdea03cb 100644 --- a/locales/fil/validation-inline.php +++ b/locales/fil/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/fil/validation.php b/locales/fil/validation.php index 293f202bd7..4fe9282a50 100644 --- a/locales/fil/validation.php +++ b/locales/fil/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/fr/validation-attributes.php b/locales/fr/validation-attributes.php new file mode 100644 index 0000000000..124f24dc36 --- /dev/null +++ b/locales/fr/validation-attributes.php @@ -0,0 +1,36 @@ + [ + 'address' => 'adresse', + 'age' => 'âge', + 'available' => 'disponible', + 'city' => 'ville', + 'content' => 'contenu', + 'country' => 'pays', + 'current_password' => 'mot de passe actuel', + 'date' => 'date', + 'day' => 'jour', + 'description' => 'description', + 'email' => 'adresse e-mail', + 'excerpt' => 'extrait', + 'first_name' => 'prénom', + 'gender' => 'genre', + 'hour' => 'heure', + 'last_name' => 'nom', + 'minute' => 'minute', + 'mobile' => 'portable', + 'month' => 'mois', + 'name' => 'nom', + 'password' => 'mot de passe', + 'password_confirmation' => 'confirmation du mot de passe', + 'phone' => 'téléphone', + 'second' => 'seconde', + 'sex' => 'sexe', + 'size' => 'taille', + 'time' => 'heure', + 'title' => 'titre', + 'username' => 'nom d\'utilisateur', + 'year' => 'année', + ], +]; diff --git a/locales/fr/validation-inline.php b/locales/fr/validation-inline.php index bbf62f6d14..d577acab60 100644 --- a/locales/fr/validation-inline.php +++ b/locales/fr/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/fr/validation.php b/locales/fr/validation.php index 690d8f9066..779a3e8467 100644 --- a/locales/fr/validation.php +++ b/locales/fr/validation.php @@ -130,36 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'adresse', - 'age' => 'âge', - 'available' => 'disponible', - 'city' => 'ville', - 'content' => 'contenu', - 'country' => 'pays', - 'current_password' => 'mot de passe actuel', - 'date' => 'date', - 'day' => 'jour', - 'description' => 'description', - 'email' => 'adresse e-mail', - 'excerpt' => 'extrait', - 'first_name' => 'prénom', - 'gender' => 'genre', - 'hour' => 'heure', - 'last_name' => 'nom', - 'minute' => 'minute', - 'mobile' => 'portable', - 'month' => 'mois', - 'name' => 'nom', - 'password' => 'mot de passe', - 'password_confirmation' => 'confirmation du mot de passe', - 'phone' => 'téléphone', - 'second' => 'seconde', - 'sex' => 'sexe', - 'size' => 'taille', - 'time' => 'heure', - 'title' => 'titre', - 'username' => 'nom d\'utilisateur', - 'year' => 'année', - ], ]; diff --git a/locales/gl/validation-attributes.php b/locales/gl/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/gl/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/gl/validation-inline.php b/locales/gl/validation-inline.php index 647dd5808c..2b711df83e 100644 --- a/locales/gl/validation-inline.php +++ b/locales/gl/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/gl/validation.php b/locales/gl/validation.php index 156c8be3f8..b0241ebcb2 100644 --- a/locales/gl/validation.php +++ b/locales/gl/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/he/validation-attributes.php b/locales/he/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/he/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/he/validation-inline.php b/locales/he/validation-inline.php index 8e51a6b82e..c42083ef27 100644 --- a/locales/he/validation-inline.php +++ b/locales/he/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/he/validation.php b/locales/he/validation.php index 4ef87be2dd..6a1e1fc3ca 100644 --- a/locales/he/validation.php +++ b/locales/he/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'הודעה מותאמת', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/hi/validation-attributes.php b/locales/hi/validation-attributes.php new file mode 100644 index 0000000000..223a461a6e --- /dev/null +++ b/locales/hi/validation-attributes.php @@ -0,0 +1,12 @@ + [ + 'image' => 'छवि', + 'result_text_under_image' => 'छवि के नीचे परिणाम पाठ', + 'short_text' => 'लघु पाठ', + 'test_description' => 'टेस्ट का विवरण', + 'test_locale' => 'भाषा', + 'test_name' => 'टेस्ट का नाम', + ], +]; diff --git a/locales/hi/validation-inline.php b/locales/hi/validation-inline.php index ad63e9fc8f..172cafeb2a 100644 --- a/locales/hi/validation-inline.php +++ b/locales/hi/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/hi/validation.php b/locales/hi/validation.php index 6286453273..8b128b5f25 100644 --- a/locales/hi/validation.php +++ b/locales/hi/validation.php @@ -130,12 +130,4 @@ 'rule-name' => 'अनुकूल-संदेश', ], ], - 'attributes' => [ - 'image' => 'छवि', - 'result_text_under_image' => 'छवि के नीचे परिणाम पाठ', - 'short_text' => 'लघु पाठ', - 'test_description' => 'टेस्ट का विवरण', - 'test_locale' => 'भाषा', - 'test_name' => 'टेस्ट का नाम', - ], ]; diff --git a/locales/hr/validation-attributes.php b/locales/hr/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/hr/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/hr/validation-inline.php b/locales/hr/validation-inline.php index e2577bbc04..b55a9ed681 100644 --- a/locales/hr/validation-inline.php +++ b/locales/hr/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/hr/validation.php b/locales/hr/validation.php index 4ed5a6d7b0..2ef22c1d8b 100644 --- a/locales/hr/validation.php +++ b/locales/hr/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'Prilagođena poruka.', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/hu/validation-attributes.php b/locales/hu/validation-attributes.php new file mode 100644 index 0000000000..0c885afd84 --- /dev/null +++ b/locales/hu/validation-attributes.php @@ -0,0 +1,8 @@ + [ + 'name' => 'név', + 'password' => 'jelszó', + ], +]; diff --git a/locales/hu/validation-inline.php b/locales/hu/validation-inline.php index f7fe6cfb97..a0cb067b07 100644 --- a/locales/hu/validation-inline.php +++ b/locales/hu/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/hu/validation.php b/locales/hu/validation.php index b3cb148ccf..7095d52900 100644 --- a/locales/hu/validation.php +++ b/locales/hu/validation.php @@ -130,8 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'name' => 'név', - 'password' => 'jelszó', - ], ]; diff --git a/locales/hy/validation-attributes.php b/locales/hy/validation-attributes.php new file mode 100644 index 0000000000..3243c4c4cd --- /dev/null +++ b/locales/hy/validation-attributes.php @@ -0,0 +1,35 @@ + [ + 'address' => 'Հասցե', + 'age' => 'Տարիք', + 'available' => 'Առկա', + 'city' => 'Քաղաք', + 'content' => 'Բովանդակություն', + 'country' => 'Երկիր', + 'date' => 'Ամսաթիվ', + 'day' => 'Օր', + 'description' => 'Նկարագրություն', + 'email' => 'Էլ-փոստի հասցե', + 'excerpt' => 'Քաղվածք', + 'first_name' => 'Անուն', + 'gender' => 'Սեռ', + 'hour' => 'Ժամ', + 'last_name' => 'Ազգանուն', + 'minute' => 'Րոպե', + 'mobile' => 'Բջջ. հեռ.', + 'month' => 'Ամիս', + 'name' => 'Անուն', + 'password' => 'Գաղտնաբառ', + 'password_confirmation' => 'Գաղտնաբառի հաստատում', + 'phone' => 'Հեռախոսահամար', + 'second' => 'Վայրկյան', + 'sex' => 'Սեռ', + 'size' => 'Չափ', + 'time' => 'Ժամանակ', + 'title' => 'Վերնագիր', + 'username' => 'Օգտանուն', + 'year' => 'Տարի', + ], +]; diff --git a/locales/hy/validation-inline.php b/locales/hy/validation-inline.php index ded72e3dfb..9797d8d578 100644 --- a/locales/hy/validation-inline.php +++ b/locales/hy/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/hy/validation.php b/locales/hy/validation.php index 1837837ddb..4a346dfa5b 100644 --- a/locales/hy/validation.php +++ b/locales/hy/validation.php @@ -130,35 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Հասցե', - 'age' => 'Տարիք', - 'available' => 'Առկա', - 'city' => 'Քաղաք', - 'content' => 'Բովանդակություն', - 'country' => 'Երկիր', - 'date' => 'Ամսաթիվ', - 'day' => 'Օր', - 'description' => 'Նկարագրություն', - 'email' => 'Էլ-փոստի հասցե', - 'excerpt' => 'Քաղվածք', - 'first_name' => 'Անուն', - 'gender' => 'Սեռ', - 'hour' => 'Ժամ', - 'last_name' => 'Ազգանուն', - 'minute' => 'Րոպե', - 'mobile' => 'Բջջ. հեռ.', - 'month' => 'Ամիս', - 'name' => 'Անուն', - 'password' => 'Գաղտնաբառ', - 'password_confirmation' => 'Գաղտնաբառի հաստատում', - 'phone' => 'Հեռախոսահամար', - 'second' => 'Վայրկյան', - 'sex' => 'Սեռ', - 'size' => 'Չափ', - 'time' => 'Ժամանակ', - 'title' => 'Վերնագիր', - 'username' => 'Օգտանուն', - 'year' => 'Տարի', - ], ]; diff --git a/locales/id/validation-attributes.php b/locales/id/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/id/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/id/validation-inline.php b/locales/id/validation-inline.php index 1882d8f64b..b4f24fdbc4 100644 --- a/locales/id/validation-inline.php +++ b/locales/id/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/id/validation.php b/locales/id/validation.php index 8cae6e78c6..a6df708ffd 100644 --- a/locales/id/validation.php +++ b/locales/id/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/is/validation-attributes.php b/locales/is/validation-attributes.php new file mode 100644 index 0000000000..9f66d1e54c --- /dev/null +++ b/locales/is/validation-attributes.php @@ -0,0 +1,35 @@ + [ + 'address' => 'Heimilisfang', + 'age' => 'Aldur', + 'available' => 'Í boði', + 'city' => 'Borg', + 'content' => 'Efni', + 'country' => 'Land', + 'date' => 'Dagsetning', + 'day' => 'Dagur', + 'description' => 'Lýsing', + 'email' => 'Netfang', + 'excerpt' => 'Excerpt', + 'first_name' => 'Fornafn', + 'gender' => 'Kyn', + 'hour' => 'Klukkutími', + 'last_name' => 'Eftirnafn', + 'minute' => 'Mínúta', + 'mobile' => 'Farsími', + 'month' => 'Mánuður', + 'name' => 'Nafn', + 'password' => 'Lykilorð', + 'password_confirmation' => 'Staðfesting á lykilorði', + 'phone' => 'Heimasími', + 'second' => 'Sekúnda', + 'sex' => 'Sex', + 'size' => 'Stærð', + 'time' => 'Tími', + 'title' => 'Titill', + 'username' => 'Notendanafn', + 'year' => 'Ár', + ], +]; diff --git a/locales/is/validation-inline.php b/locales/is/validation-inline.php index 38e6fc9ceb..0b1b394979 100644 --- a/locales/is/validation-inline.php +++ b/locales/is/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/is/validation.php b/locales/is/validation.php index b13cbf6c58..d1ed82bbfa 100644 --- a/locales/is/validation.php +++ b/locales/is/validation.php @@ -130,35 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Heimilisfang', - 'age' => 'Aldur', - 'available' => 'Í boði', - 'city' => 'Borg', - 'content' => 'Efni', - 'country' => 'Land', - 'date' => 'Dagsetning', - 'day' => 'Dagur', - 'description' => 'Lýsing', - 'email' => 'Netfang', - 'excerpt' => 'Excerpt', - 'first_name' => 'Fornafn', - 'gender' => 'Kyn', - 'hour' => 'Klukkutími', - 'last_name' => 'Eftirnafn', - 'minute' => 'Mínúta', - 'mobile' => 'Farsími', - 'month' => 'Mánuður', - 'name' => 'Nafn', - 'password' => 'Lykilorð', - 'password_confirmation' => 'Staðfesting á lykilorði', - 'phone' => 'Heimasími', - 'second' => 'Sekúnda', - 'sex' => 'Sex', - 'size' => 'Stærð', - 'time' => 'Tími', - 'title' => 'Titill', - 'username' => 'Notendanafn', - 'year' => 'Ár', - ], ]; diff --git a/locales/it/validation-attributes.php b/locales/it/validation-attributes.php new file mode 100644 index 0000000000..28233ac871 --- /dev/null +++ b/locales/it/validation-attributes.php @@ -0,0 +1,33 @@ + [ + 'address' => 'indirizzo', + 'age' => 'età', + 'available' => 'disponibile', + 'city' => 'città', + 'content' => 'contenuto', + 'country' => 'paese', + 'date' => 'data', + 'day' => 'giorno', + 'description' => 'descrizione', + 'excerpt' => 'estratto', + 'first_name' => 'nome', + 'gender' => 'genere', + 'hour' => 'ora', + 'last_name' => 'cognome', + 'minute' => 'minuto', + 'mobile' => 'cellulare', + 'month' => 'mese', + 'name' => 'nome', + 'password_confirmation' => 'conferma password', + 'phone' => 'telefono', + 'second' => 'secondo', + 'sex' => 'sesso', + 'size' => 'dimensione', + 'time' => 'ora', + 'title' => 'titolo', + 'username' => 'nome utente', + 'year' => 'anno', + ], +]; diff --git a/locales/it/validation-inline.php b/locales/it/validation-inline.php index 044f0c5671..7d3c03577b 100644 --- a/locales/it/validation-inline.php +++ b/locales/it/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/it/validation.php b/locales/it/validation.php index 86f4823be0..ef6d24bede 100644 --- a/locales/it/validation.php +++ b/locales/it/validation.php @@ -130,33 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'indirizzo', - 'age' => 'età', - 'available' => 'disponibile', - 'city' => 'città', - 'content' => 'contenuto', - 'country' => 'paese', - 'date' => 'data', - 'day' => 'giorno', - 'description' => 'descrizione', - 'excerpt' => 'estratto', - 'first_name' => 'nome', - 'gender' => 'genere', - 'hour' => 'ora', - 'last_name' => 'cognome', - 'minute' => 'minuto', - 'mobile' => 'cellulare', - 'month' => 'mese', - 'name' => 'nome', - 'password_confirmation' => 'conferma password', - 'phone' => 'telefono', - 'second' => 'secondo', - 'sex' => 'sesso', - 'size' => 'dimensione', - 'time' => 'ora', - 'title' => 'titolo', - 'username' => 'nome utente', - 'year' => 'anno', - ], ]; diff --git a/locales/ja/validation-attributes.php b/locales/ja/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/ja/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/ja/validation-inline.php b/locales/ja/validation-inline.php index 3abf43e826..759120ca36 100644 --- a/locales/ja/validation-inline.php +++ b/locales/ja/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/ja/validation.php b/locales/ja/validation.php index d0d8a7d4e6..1db6bbdb72 100644 --- a/locales/ja/validation.php +++ b/locales/ja/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/ka/validation-attributes.php b/locales/ka/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/ka/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/ka/validation-inline.php b/locales/ka/validation-inline.php index ed8e3e3991..8e59746ced 100644 --- a/locales/ka/validation-inline.php +++ b/locales/ka/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/ka/validation.php b/locales/ka/validation.php index 044431908a..b5c7e7c04b 100644 --- a/locales/ka/validation.php +++ b/locales/ka/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/kk/validation-attributes.php b/locales/kk/validation-attributes.php new file mode 100644 index 0000000000..f7867049f0 --- /dev/null +++ b/locales/kk/validation-attributes.php @@ -0,0 +1,35 @@ + [ + 'address' => 'Мекенжай', + 'age' => 'Жасы', + 'available' => 'Қолжетімді', + 'city' => 'Қала', + 'content' => 'Контент', + 'country' => 'Ел', + 'date' => 'Күні', + 'day' => 'Күн', + 'description' => 'Сипаттамасы', + 'email' => 'E-Mail мекенжай', + 'excerpt' => 'Үзінді', + 'first_name' => 'Аты', + 'gender' => 'Жынысы', + 'hour' => 'Сағат', + 'last_name' => 'Тегі', + 'minute' => 'Минут', + 'mobile' => 'Моб. нөмір', + 'month' => 'Ай', + 'name' => 'Аты', + 'password' => 'Құпиясөз', + 'password_confirmation' => 'Құпиясөзді растау', + 'phone' => 'Телефон', + 'second' => 'Секунд', + 'sex' => 'Жынысы', + 'size' => 'Көлемі', + 'time' => 'Уақыт', + 'title' => 'Атауы', + 'username' => 'Лақап аты', + 'year' => 'Жыл', + ], +]; diff --git a/locales/kk/validation-inline.php b/locales/kk/validation-inline.php index 2d600cd423..1e14c75214 100644 --- a/locales/kk/validation-inline.php +++ b/locales/kk/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/kk/validation.php b/locales/kk/validation.php index 763cb3a00d..0e6267f030 100644 --- a/locales/kk/validation.php +++ b/locales/kk/validation.php @@ -130,35 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Мекенжай', - 'age' => 'Жасы', - 'available' => 'Қолжетімді', - 'city' => 'Қала', - 'content' => 'Контент', - 'country' => 'Ел', - 'date' => 'Күні', - 'day' => 'Күн', - 'description' => 'Сипаттамасы', - 'email' => 'E-Mail мекенжай', - 'excerpt' => 'Үзінді', - 'first_name' => 'Аты', - 'gender' => 'Жынысы', - 'hour' => 'Сағат', - 'last_name' => 'Тегі', - 'minute' => 'Минут', - 'mobile' => 'Моб. нөмір', - 'month' => 'Ай', - 'name' => 'Аты', - 'password' => 'Құпиясөз', - 'password_confirmation' => 'Құпиясөзді растау', - 'phone' => 'Телефон', - 'second' => 'Секунд', - 'sex' => 'Жынысы', - 'size' => 'Көлемі', - 'time' => 'Уақыт', - 'title' => 'Атауы', - 'username' => 'Лақап аты', - 'year' => 'Жыл', - ], ]; diff --git a/locales/km/validation-attributes.php b/locales/km/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/km/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/km/validation-inline.php b/locales/km/validation-inline.php index add247e0c1..d193bf15dc 100644 --- a/locales/km/validation-inline.php +++ b/locales/km/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/km/validation.php b/locales/km/validation.php index a6642d2090..12c33fbd68 100644 --- a/locales/km/validation.php +++ b/locales/km/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/kn/validation-attributes.php b/locales/kn/validation-attributes.php new file mode 100644 index 0000000000..9e7ab97f55 --- /dev/null +++ b/locales/kn/validation-attributes.php @@ -0,0 +1,35 @@ + [ + 'address' => 'ವಿಳಾಸ', + 'age' => 'ವಯಸ್ಸು', + 'available' => 'ಲಭ್ಯವಿದೆ', + 'city' => 'ನಗರ', + 'content' => 'ವಿಷಯ', + 'country' => 'ದೇಶ', + 'date' => 'ದಿನಾಂಕ', + 'day' => 'ದಿನ', + 'description' => 'ವಿವರಣೆ', + 'email' => 'ಇಮೇಲ್', + 'excerpt' => 'ಆಯ್ದ ಭಾಗಗಳು', + 'first_name' => 'ಮೊದಲ ಹೆಸರು', + 'gender' => 'ಲಿಂಗ', + 'hour' => 'ಗಂಟೆ', + 'last_name' => 'ಕೊನೆಯ ಹೆಸರು', + 'minute' => 'ನಿಮಿಷ', + 'mobile' => 'ಮೊಬೈಲ್', + 'month' => 'ತಿಂಗಳು', + 'name' => 'ಹೆಸರು', + 'password' => 'ಪಾಸ್ವರ್ಡ್', + 'password_confirmation' => ' ಪಾಸ್ವರ್ಡ್ ದೃಢೀಕರಿಸಿ', + 'phone' => 'ಫೋನ್', + 'second' => 'ಸೆಕೆ೦ಡು', + 'sex' => 'ಲಿಂಗ', + 'size' => 'ಗಾತ್ರ', + 'time' => 'ಸಮಯ', + 'title' => 'ಶೀರೋನಾಮ', + 'username' => 'ಬಳಕೆದಾರ ಹೆಸರು', + 'year' => 'ವರ್ಷ', + ], +]; diff --git a/locales/kn/validation-inline.php b/locales/kn/validation-inline.php index fe1b75ff67..8774f719ed 100644 --- a/locales/kn/validation-inline.php +++ b/locales/kn/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/kn/validation.php b/locales/kn/validation.php index 3fd2dba1f0..37d14290a9 100644 --- a/locales/kn/validation.php +++ b/locales/kn/validation.php @@ -130,35 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'ವಿಳಾಸ', - 'age' => 'ವಯಸ್ಸು', - 'available' => 'ಲಭ್ಯವಿದೆ', - 'city' => 'ನಗರ', - 'content' => 'ವಿಷಯ', - 'country' => 'ದೇಶ', - 'date' => 'ದಿನಾಂಕ', - 'day' => 'ದಿನ', - 'description' => 'ವಿವರಣೆ', - 'email' => 'ಇಮೇಲ್', - 'excerpt' => 'ಆಯ್ದ ಭಾಗಗಳು', - 'first_name' => 'ಮೊದಲ ಹೆಸರು', - 'gender' => 'ಲಿಂಗ', - 'hour' => 'ಗಂಟೆ', - 'last_name' => 'ಕೊನೆಯ ಹೆಸರು', - 'minute' => 'ನಿಮಿಷ', - 'mobile' => 'ಮೊಬೈಲ್', - 'month' => 'ತಿಂಗಳು', - 'name' => 'ಹೆಸರು', - 'password' => 'ಪಾಸ್ವರ್ಡ್', - 'password_confirmation' => ' ಪಾಸ್ವರ್ಡ್ ದೃಢೀಕರಿಸಿ', - 'phone' => 'ಫೋನ್', - 'second' => 'ಸೆಕೆ೦ಡು', - 'sex' => 'ಲಿಂಗ', - 'size' => 'ಗಾತ್ರ', - 'time' => 'ಸಮಯ', - 'title' => 'ಶೀರೋನಾಮ', - 'username' => 'ಬಳಕೆದಾರ ಹೆಸರು', - 'year' => 'ವರ್ಷ', - ], ]; diff --git a/locales/ko/validation-attributes.php b/locales/ko/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/ko/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/ko/validation-inline.php b/locales/ko/validation-inline.php index b06a72ee0c..fded7e4bb5 100644 --- a/locales/ko/validation-inline.php +++ b/locales/ko/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/ko/validation.php b/locales/ko/validation.php index 9e785b5d62..d75046a93c 100644 --- a/locales/ko/validation.php +++ b/locales/ko/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/lt/validation-attributes.php b/locales/lt/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/lt/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/lt/validation-inline.php b/locales/lt/validation-inline.php index f42d2de341..4cc9a73094 100644 --- a/locales/lt/validation-inline.php +++ b/locales/lt/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/lt/validation.php b/locales/lt/validation.php index ff077c6310..4a2b246a9a 100644 --- a/locales/lt/validation.php +++ b/locales/lt/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/lv/validation-attributes.php b/locales/lv/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/lv/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/lv/validation-inline.php b/locales/lv/validation-inline.php index ad08726ac5..4e9f8c66bf 100644 --- a/locales/lv/validation-inline.php +++ b/locales/lv/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/lv/validation.php b/locales/lv/validation.php index 32efc92d28..66558d10a4 100644 --- a/locales/lv/validation.php +++ b/locales/lv/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'ziņa pēc pieprasījuma', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/mk/validation-attributes.php b/locales/mk/validation-attributes.php new file mode 100644 index 0000000000..2e1602f90a --- /dev/null +++ b/locales/mk/validation-attributes.php @@ -0,0 +1,35 @@ + [ + 'address' => 'Адреса', + 'age' => 'Години', + 'body' => 'Основен текст на порака', + 'city' => 'Град', + 'country' => 'Држава', + 'date' => 'Датум', + 'day' => 'Ден', + 'description' => 'Опис', + 'email' => 'Е-mail адреса', + 'excerpt' => 'Извадок', + 'first_name' => 'Име', + 'gender' => 'Пол', + 'hour' => 'Час', + 'last_name' => 'Презиме', + 'message' => 'Порака', + 'minute' => 'Минута', + 'mobile' => 'Мобилен', + 'month' => 'Месец', + 'name' => 'Име', + 'password' => 'Лозинка', + 'password_confirmation' => 'Повтори ја лозинката', + 'phone' => 'Телефон', + 'second' => 'Секунда', + 'sex' => 'Пол', + 'subject' => 'Наслов', + 'time' => 'Време', + 'title' => 'Наслов', + 'username' => 'Корисничко име', + 'year' => 'Година', + ], +]; diff --git a/locales/mk/validation-inline.php b/locales/mk/validation-inline.php index ca8d3cb769..6939c531aa 100644 --- a/locales/mk/validation-inline.php +++ b/locales/mk/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/mk/validation.php b/locales/mk/validation.php index a429ddea0c..1ef6de4c9a 100644 --- a/locales/mk/validation.php +++ b/locales/mk/validation.php @@ -130,35 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Адреса', - 'age' => 'Години', - 'body' => 'Основен текст на порака', - 'city' => 'Град', - 'country' => 'Држава', - 'date' => 'Датум', - 'day' => 'Ден', - 'description' => 'Опис', - 'email' => 'Е-mail адреса', - 'excerpt' => 'Извадок', - 'first_name' => 'Име', - 'gender' => 'Пол', - 'hour' => 'Час', - 'last_name' => 'Презиме', - 'message' => 'Порака', - 'minute' => 'Минута', - 'mobile' => 'Мобилен', - 'month' => 'Месец', - 'name' => 'Име', - 'password' => 'Лозинка', - 'password_confirmation' => 'Повтори ја лозинката', - 'phone' => 'Телефон', - 'second' => 'Секунда', - 'sex' => 'Пол', - 'subject' => 'Наслов', - 'time' => 'Време', - 'title' => 'Наслов', - 'username' => 'Корисничко име', - 'year' => 'Година', - ], ]; diff --git a/locales/mn/validation-attributes.php b/locales/mn/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/mn/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/mn/validation-inline.php b/locales/mn/validation-inline.php index d1e1b8f8bc..8e06828fbf 100644 --- a/locales/mn/validation-inline.php +++ b/locales/mn/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/mn/validation.php b/locales/mn/validation.php index 04f46c69bd..1f1cc786b4 100644 --- a/locales/mn/validation.php +++ b/locales/mn/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/mr/validation-attributes.php b/locales/mr/validation-attributes.php new file mode 100644 index 0000000000..7f7a787b7c --- /dev/null +++ b/locales/mr/validation-attributes.php @@ -0,0 +1,12 @@ + [ + 'image' => 'प्रतिमा', + 'result_text_under_image' => 'प्रतिमेच्या खाली त्याचे परिणाम', + 'short_text' => 'संक्षिप्त सारांश', + 'test_description' => 'चाचणी चा सारांश.', + 'test_locale' => 'भाषा', + 'test_name' => 'चाचणी चे नाव.', + ], +]; diff --git a/locales/mr/validation-inline.php b/locales/mr/validation-inline.php index 5d5fae729e..65c4fc3bdb 100644 --- a/locales/mr/validation-inline.php +++ b/locales/mr/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'सानुकूल-संदेश', ], ], - 'attributes' => [], ]; diff --git a/locales/mr/validation.php b/locales/mr/validation.php index 2d0d4f894d..6ee1feb0ca 100644 --- a/locales/mr/validation.php +++ b/locales/mr/validation.php @@ -130,12 +130,4 @@ 'rule-name' => 'सानुकूल-संदेश', ], ], - 'attributes' => [ - 'image' => 'प्रतिमा', - 'result_text_under_image' => 'प्रतिमेच्या खाली त्याचे परिणाम', - 'short_text' => 'संक्षिप्त सारांश', - 'test_description' => 'चाचणी चा सारांश.', - 'test_locale' => 'भाषा', - 'test_name' => 'चाचणी चे नाव.', - ], ]; diff --git a/locales/ms/validation-attributes.php b/locales/ms/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/ms/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/ms/validation-inline.php b/locales/ms/validation-inline.php index 4ab2d14560..2a759a1a6d 100644 --- a/locales/ms/validation-inline.php +++ b/locales/ms/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/ms/validation.php b/locales/ms/validation.php index 45c8941a35..43a0ef6a27 100644 --- a/locales/ms/validation.php +++ b/locales/ms/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/nb/validation-attributes.php b/locales/nb/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/nb/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/nb/validation-inline.php b/locales/nb/validation-inline.php index e6a32c86b0..ee838a486d 100644 --- a/locales/nb/validation-inline.php +++ b/locales/nb/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/nb/validation.php b/locales/nb/validation.php index 96a854a7bd..a6ec8f4632 100644 --- a/locales/nb/validation.php +++ b/locales/nb/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/ne/validation-attributes.php b/locales/ne/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/ne/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/ne/validation-inline.php b/locales/ne/validation-inline.php index 1b4a77f2b1..e5cc99b5ab 100644 --- a/locales/ne/validation-inline.php +++ b/locales/ne/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/ne/validation.php b/locales/ne/validation.php index df49a7592a..2f5f2cdca5 100644 --- a/locales/ne/validation.php +++ b/locales/ne/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/nl/validation-attributes.php b/locales/nl/validation-attributes.php new file mode 100644 index 0000000000..c10439670d --- /dev/null +++ b/locales/nl/validation-attributes.php @@ -0,0 +1,47 @@ + [ + 'address' => 'adres', + 'age' => 'leeftijd', + 'amount' => 'bedrag', + 'available' => 'beschikbaar', + 'city' => 'stad', + 'content' => 'inhoud', + 'country' => 'land', + 'currency' => 'valuta', + 'date' => 'datum', + 'date_of_birth' => 'geboortedatum', + 'day' => 'dag', + 'description' => 'omschrijving', + 'duration' => 'tijdsduur', + 'email' => 'e-mailadres', + 'excerpt' => 'uittreksel', + 'first_name' => 'voornaam', + 'gender' => 'geslacht', + 'group' => 'groep', + 'hour' => 'uur', + 'last_name' => 'achternaam', + 'lesson' => 'les', + 'message' => 'bericht', + 'minute' => 'minuut', + 'mobile' => 'mobiel', + 'month' => 'maand', + 'name' => 'naam', + 'password' => 'wachtwoord', + 'password_confirmation' => 'wachtwoordbevestiging', + 'phone' => 'telefoonnummer', + 'price' => 'prijs', + 'second' => 'seconde', + 'sex' => 'geslacht', + 'size' => 'grootte', + 'street' => 'straatnaam', + 'student' => 'student', + 'subject' => 'onderwerp', + 'teacher' => 'Docent', + 'time' => 'tijd', + 'title' => 'titel', + 'username' => 'gebruikersnaam', + 'year' => 'jaar', + ], +]; diff --git a/locales/nl/validation-inline.php b/locales/nl/validation-inline.php index 7f81443118..de333aabb3 100644 --- a/locales/nl/validation-inline.php +++ b/locales/nl/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/nl/validation.php b/locales/nl/validation.php index 4504118fc4..67170c7996 100644 --- a/locales/nl/validation.php +++ b/locales/nl/validation.php @@ -130,47 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'adres', - 'age' => 'leeftijd', - 'amount' => 'bedrag', - 'available' => 'beschikbaar', - 'city' => 'stad', - 'content' => 'inhoud', - 'country' => 'land', - 'currency' => 'valuta', - 'date' => 'datum', - 'date_of_birth' => 'geboortedatum', - 'day' => 'dag', - 'description' => 'omschrijving', - 'duration' => 'tijdsduur', - 'email' => 'e-mailadres', - 'excerpt' => 'uittreksel', - 'first_name' => 'voornaam', - 'gender' => 'geslacht', - 'group' => 'groep', - 'hour' => 'uur', - 'last_name' => 'achternaam', - 'lesson' => 'les', - 'message' => 'bericht', - 'minute' => 'minuut', - 'mobile' => 'mobiel', - 'month' => 'maand', - 'name' => 'naam', - 'password' => 'wachtwoord', - 'password_confirmation' => 'wachtwoordbevestiging', - 'phone' => 'telefoonnummer', - 'price' => 'prijs', - 'second' => 'seconde', - 'sex' => 'geslacht', - 'size' => 'grootte', - 'street' => 'straatnaam', - 'student' => 'student', - 'subject' => 'onderwerp', - 'teacher' => 'Docent', - 'time' => 'tijd', - 'title' => 'titel', - 'username' => 'gebruikersnaam', - 'year' => 'jaar', - ], ]; diff --git a/locales/nn/validation-attributes.php b/locales/nn/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/nn/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/nn/validation-inline.php b/locales/nn/validation-inline.php index 79f3fa7c8d..ccbdea03cb 100644 --- a/locales/nn/validation-inline.php +++ b/locales/nn/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/nn/validation.php b/locales/nn/validation.php index 189a3cd003..29846f611e 100644 --- a/locales/nn/validation.php +++ b/locales/nn/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/oc/validation-attributes.php b/locales/oc/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/oc/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/oc/validation-inline.php b/locales/oc/validation-inline.php index f9d78fe278..e9ef091534 100644 --- a/locales/oc/validation-inline.php +++ b/locales/oc/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'messatge-personalizat', ], ], - 'attributes' => [], ]; diff --git a/locales/oc/validation.php b/locales/oc/validation.php index cae80c385f..b89fdf8595 100644 --- a/locales/oc/validation.php +++ b/locales/oc/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'messatge-personalizat', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/pl/validation-attributes.php b/locales/pl/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/pl/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/pl/validation-inline.php b/locales/pl/validation-inline.php index 914024e1aa..cfeb0a540b 100644 --- a/locales/pl/validation-inline.php +++ b/locales/pl/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/pl/validation.php b/locales/pl/validation.php index 5f09a8e838..1a0873f16b 100644 --- a/locales/pl/validation.php +++ b/locales/pl/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/ps/validation-attributes.php b/locales/ps/validation-attributes.php new file mode 100644 index 0000000000..c00961378e --- /dev/null +++ b/locales/ps/validation-attributes.php @@ -0,0 +1,35 @@ + [ + 'address' => 'د استوګنې پته', + 'age' => 'عمر', + 'available' => 'شته', + 'city' => 'ښار', + 'content' => 'منځپانګې', + 'country' => 'هېواد', + 'date' => 'نېټه', + 'day' => 'ورځ', + 'description' => 'تشریح', + 'email' => 'برېښلیک', + 'excerpt' => 'لنډیز', + 'first_name' => 'لومړی نوم', + 'gender' => 'جنس', + 'hour' => 'ساعت', + 'last_name' => 'وروستۍ نوم', + 'minute' => 'دقیقې', + 'mobile' => 'ګرځنده', + 'month' => 'میاشت', + 'name' => 'نوم', + 'password' => 'پاسورډ', + 'password_confirmation' => 'پاسورډ تایید کړه', + 'phone' => 'تلیفون', + 'second' => 'ثانوي', + 'sex' => 'جنس', + 'size' => 'اندازه', + 'time' => 'وخت', + 'title' => 'سرلیک', + 'username' => 'د کارن نوم', + 'year' => 'کال', + ], +]; diff --git a/locales/ps/validation-inline.php b/locales/ps/validation-inline.php index 79f3fa7c8d..ccbdea03cb 100644 --- a/locales/ps/validation-inline.php +++ b/locales/ps/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/ps/validation.php b/locales/ps/validation.php index 7ce9bacc6e..07fb494e56 100644 --- a/locales/ps/validation.php +++ b/locales/ps/validation.php @@ -130,35 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'د استوګنې پته', - 'age' => 'عمر', - 'available' => 'شته', - 'city' => 'ښار', - 'content' => 'منځپانګې', - 'country' => 'هېواد', - 'date' => 'نېټه', - 'day' => 'ورځ', - 'description' => 'تشریح', - 'email' => 'برېښلیک', - 'excerpt' => 'لنډیز', - 'first_name' => 'لومړی نوم', - 'gender' => 'جنس', - 'hour' => 'ساعت', - 'last_name' => 'وروستۍ نوم', - 'minute' => 'دقیقې', - 'mobile' => 'ګرځنده', - 'month' => 'میاشت', - 'name' => 'نوم', - 'password' => 'پاسورډ', - 'password_confirmation' => 'پاسورډ تایید کړه', - 'phone' => 'تلیفون', - 'second' => 'ثانوي', - 'sex' => 'جنس', - 'size' => 'اندازه', - 'time' => 'وخت', - 'title' => 'سرلیک', - 'username' => 'د کارن نوم', - 'year' => 'کال', - ], ]; diff --git a/locales/pt/validation-attributes.php b/locales/pt/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/pt/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/pt/validation-inline.php b/locales/pt/validation-inline.php index 3664eff377..9dc2e7f005 100644 --- a/locales/pt/validation-inline.php +++ b/locales/pt/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/pt/validation.php b/locales/pt/validation.php index 4151d94782..3a7b469d32 100644 --- a/locales/pt/validation.php +++ b/locales/pt/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/pt_BR/validation-attributes.php b/locales/pt_BR/validation-attributes.php new file mode 100644 index 0000000000..7d45441d11 --- /dev/null +++ b/locales/pt_BR/validation-attributes.php @@ -0,0 +1,38 @@ + [ + 'address' => 'endereço', + 'age' => 'idade', + 'body' => 'conteúdo', + 'city' => 'cidade', + 'country' => 'país', + 'date' => 'data', + 'day' => 'dia', + 'description' => 'descrição', + 'email' => 'e-mail', + 'excerpt' => 'resumo', + 'first_name' => 'primeiro nome', + 'gender' => 'gênero', + 'hour' => 'hora', + 'last_name' => 'sobrenome', + 'message' => 'mensagem', + 'minute' => 'minuto', + 'mobile' => 'celular', + 'month' => 'mês', + 'name' => 'nome', + 'password' => 'senha', + 'password_confirmation' => 'confirmação da senha', + 'phone' => 'telefone', + 'remember' => 'lembrar-me', + 'second' => 'segundo', + 'sex' => 'sexo', + 'state' => 'estado', + 'subject' => 'assunto', + 'text' => 'texto', + 'time' => 'hora', + 'title' => 'título', + 'username' => 'usuário', + 'year' => 'ano', + ], +]; diff --git a/locales/pt_BR/validation-inline.php b/locales/pt_BR/validation-inline.php index 56fd28d546..ca0ee315dc 100644 --- a/locales/pt_BR/validation-inline.php +++ b/locales/pt_BR/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/pt_BR/validation.php b/locales/pt_BR/validation.php index d8cb609254..3e4dbf2e78 100644 --- a/locales/pt_BR/validation.php +++ b/locales/pt_BR/validation.php @@ -130,38 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'endereço', - 'age' => 'idade', - 'body' => 'conteúdo', - 'city' => 'cidade', - 'country' => 'país', - 'date' => 'data', - 'day' => 'dia', - 'description' => 'descrição', - 'email' => 'e-mail', - 'excerpt' => 'resumo', - 'first_name' => 'primeiro nome', - 'gender' => 'gênero', - 'hour' => 'hora', - 'last_name' => 'sobrenome', - 'message' => 'mensagem', - 'minute' => 'minuto', - 'mobile' => 'celular', - 'month' => 'mês', - 'name' => 'nome', - 'password' => 'senha', - 'password_confirmation' => 'confirmação da senha', - 'phone' => 'telefone', - 'remember' => 'lembrar-me', - 'second' => 'segundo', - 'sex' => 'sexo', - 'state' => 'estado', - 'subject' => 'assunto', - 'text' => 'texto', - 'time' => 'hora', - 'title' => 'título', - 'username' => 'usuário', - 'year' => 'ano', - ], ]; diff --git a/locales/ro/validation-attributes.php b/locales/ro/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/ro/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/ro/validation-inline.php b/locales/ro/validation-inline.php index c0f1586248..c0341abc6a 100644 --- a/locales/ro/validation-inline.php +++ b/locales/ro/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/ro/validation.php b/locales/ro/validation.php index 85efccdb8d..79a0f10404 100644 --- a/locales/ro/validation.php +++ b/locales/ro/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/ru/validation-attributes.php b/locales/ru/validation-attributes.php new file mode 100644 index 0000000000..c2e52d4c57 --- /dev/null +++ b/locales/ru/validation-attributes.php @@ -0,0 +1,36 @@ + [ + 'address' => 'Адрес', + 'age' => 'Возраст', + 'available' => 'Доступно', + 'city' => 'Город', + 'content' => 'Контент', + 'country' => 'Страна', + 'current_password' => 'Текущий пароль', + 'date' => 'Дата', + 'day' => 'День', + 'description' => 'Описание', + 'email' => 'E-Mail адрес', + 'excerpt' => 'Выдержка', + 'first_name' => 'Имя', + 'gender' => 'Пол', + 'hour' => 'Час', + 'last_name' => 'Фамилия', + 'minute' => 'Минута', + 'mobile' => 'Моб. номер', + 'month' => 'Месяц', + 'name' => 'Имя', + 'password' => 'Пароль', + 'password_confirmation' => 'Подтверждение пароля', + 'phone' => 'Телефон', + 'second' => 'Секунда', + 'sex' => 'Пол', + 'size' => 'Размер', + 'time' => 'Время', + 'title' => 'Наименование', + 'username' => 'Никнейм', + 'year' => 'Год', + ], +]; diff --git a/locales/ru/validation-inline.php b/locales/ru/validation-inline.php index 0268c7f189..cdd4d3c407 100644 --- a/locales/ru/validation-inline.php +++ b/locales/ru/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/ru/validation.php b/locales/ru/validation.php index 1edc973dbb..1becfc6fb3 100644 --- a/locales/ru/validation.php +++ b/locales/ru/validation.php @@ -130,36 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Адрес', - 'age' => 'Возраст', - 'available' => 'Доступно', - 'city' => 'Город', - 'content' => 'Контент', - 'country' => 'Страна', - 'current_password' => 'Текущий пароль', - 'date' => 'Дата', - 'day' => 'День', - 'description' => 'Описание', - 'email' => 'E-Mail адрес', - 'excerpt' => 'Выдержка', - 'first_name' => 'Имя', - 'gender' => 'Пол', - 'hour' => 'Час', - 'last_name' => 'Фамилия', - 'minute' => 'Минута', - 'mobile' => 'Моб. номер', - 'month' => 'Месяц', - 'name' => 'Имя', - 'password' => 'Пароль', - 'password_confirmation' => 'Подтверждение пароля', - 'phone' => 'Телефон', - 'second' => 'Секунда', - 'sex' => 'Пол', - 'size' => 'Размер', - 'time' => 'Время', - 'title' => 'Наименование', - 'username' => 'Никнейм', - 'year' => 'Год', - ], ]; diff --git a/locales/sc/validation-attributes.php b/locales/sc/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/sc/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/sc/validation-inline.php b/locales/sc/validation-inline.php index 79f3fa7c8d..ccbdea03cb 100644 --- a/locales/sc/validation-inline.php +++ b/locales/sc/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/sc/validation.php b/locales/sc/validation.php index dd4c2cc3f8..3844bd32c6 100644 --- a/locales/sc/validation.php +++ b/locales/sc/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/si/validation-attributes.php b/locales/si/validation-attributes.php new file mode 100644 index 0000000000..8364b7e771 --- /dev/null +++ b/locales/si/validation-attributes.php @@ -0,0 +1,38 @@ + [ + 'address' => 'ලිපිනය', + 'age' => 'වයස', + 'available' => 'ලබා ගත හැකිය', + 'body' => 'අංගය', + 'city' => 'නගරය', + 'content' => 'අන්තර්ගතය', + 'country' => 'රට', + 'date' => 'දිනය', + 'day' => 'දවස', + 'description' => 'විස්තර', + 'email' => 'විද්යුත් තැපෑල', + 'excerpt' => 'උපුටා ගත් පද', + 'first_name' => 'මුල් නම', + 'gender' => 'ස්ත්රී පුරුෂ භාවය', + 'hour' => 'පැය', + 'last_name' => 'අවසන් නම', + 'message' => 'පණිවුඩය', + 'minute' => 'විනාඩියක්', + 'mobile' => 'ජංගම දුරකථන', + 'month' => 'මාසය', + 'name' => 'නම', + 'password' => 'රහස් පදය', + 'password_confirmation' => 'මුරපදය තහවුරු කිරීම', + 'phone' => 'දුරකථනය', + 'second' => 'දෙවැනි', + 'sex' => 'ස්ත්රී පුරුෂ භාවය', + 'size' => 'ප්රමාණය', + 'subject' => 'විෂය', + 'time' => 'වේලාව', + 'title' => 'ශීර්ෂය', + 'username' => 'පරිශීලක නාමය', + 'year' => 'වර්ෂය', + ], +]; diff --git a/locales/si/validation-inline.php b/locales/si/validation-inline.php index 2ef08a3f37..401672b32a 100644 --- a/locales/si/validation-inline.php +++ b/locales/si/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/si/validation.php b/locales/si/validation.php index 40d8d82fc1..319ae4d1c9 100644 --- a/locales/si/validation.php +++ b/locales/si/validation.php @@ -130,38 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'ලිපිනය', - 'age' => 'වයස', - 'available' => 'ලබා ගත හැකිය', - 'body' => 'අංගය', - 'city' => 'නගරය', - 'content' => 'අන්තර්ගතය', - 'country' => 'රට', - 'date' => 'දිනය', - 'day' => 'දවස', - 'description' => 'විස්තර', - 'email' => 'විද්යුත් තැපෑල', - 'excerpt' => 'උපුටා ගත් පද', - 'first_name' => 'මුල් නම', - 'gender' => 'ස්ත්රී පුරුෂ භාවය', - 'hour' => 'පැය', - 'last_name' => 'අවසන් නම', - 'message' => 'පණිවුඩය', - 'minute' => 'විනාඩියක්', - 'mobile' => 'ජංගම දුරකථන', - 'month' => 'මාසය', - 'name' => 'නම', - 'password' => 'රහස් පදය', - 'password_confirmation' => 'මුරපදය තහවුරු කිරීම', - 'phone' => 'දුරකථනය', - 'second' => 'දෙවැනි', - 'sex' => 'ස්ත්රී පුරුෂ භාවය', - 'size' => 'ප්රමාණය', - 'subject' => 'විෂය', - 'time' => 'වේලාව', - 'title' => 'ශීර්ෂය', - 'username' => 'පරිශීලක නාමය', - 'year' => 'වර්ෂය', - ], ]; diff --git a/locales/sk/validation-attributes.php b/locales/sk/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/sk/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/sk/validation-inline.php b/locales/sk/validation-inline.php index 475c2b826c..59b95dbee8 100644 --- a/locales/sk/validation-inline.php +++ b/locales/sk/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/sk/validation.php b/locales/sk/validation.php index 37e90ac425..5f8035583c 100644 --- a/locales/sk/validation.php +++ b/locales/sk/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/sl/validation-attributes.php b/locales/sl/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/sl/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/sl/validation-inline.php b/locales/sl/validation-inline.php index 5298cb91d8..d58bd0c635 100644 --- a/locales/sl/validation-inline.php +++ b/locales/sl/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/sl/validation.php b/locales/sl/validation.php index 12de261d17..5c4aca050f 100644 --- a/locales/sl/validation.php +++ b/locales/sl/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'Prilagojeno sporočilo', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/sq/validation-attributes.php b/locales/sq/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/sq/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/sq/validation-inline.php b/locales/sq/validation-inline.php index 71847eaae2..1984adbf4e 100644 --- a/locales/sq/validation-inline.php +++ b/locales/sq/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/sq/validation.php b/locales/sq/validation.php index 7b21c5324a..e84a93a536 100644 --- a/locales/sq/validation.php +++ b/locales/sq/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/sr_Cyrl/validation-attributes.php b/locales/sr_Cyrl/validation-attributes.php new file mode 100644 index 0000000000..fa1eb26a21 --- /dev/null +++ b/locales/sr_Cyrl/validation-attributes.php @@ -0,0 +1,35 @@ + [ + 'address' => 'адреса', + 'age' => 'године', + 'body' => 'тело поруке', + 'city' => 'град', + 'country' => 'држава', + 'date' => 'датум', + 'day' => 'дан', + 'description' => 'опис', + 'email' => 'емаил', + 'excerpt' => 'извод', + 'first_name' => 'име', + 'gender' => 'пол', + 'hour' => 'сат', + 'last_name' => 'презиме', + 'message' => 'порука', + 'minute' => 'минут', + 'mobile' => 'мобилни', + 'month' => 'месец', + 'name' => 'име', + 'password' => 'лозинка', + 'password_confirmation' => 'понови лозинку', + 'phone' => 'телефон', + 'second' => 'секунда', + 'sex' => 'пол', + 'subject' => 'наслов', + 'time' => 'време', + 'title' => 'наслов', + 'username' => 'корисничко име', + 'year' => 'година', + ], +]; diff --git a/locales/sr_Cyrl/validation-inline.php b/locales/sr_Cyrl/validation-inline.php index 87d88c16b5..2b73640a48 100644 --- a/locales/sr_Cyrl/validation-inline.php +++ b/locales/sr_Cyrl/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/sr_Cyrl/validation.php b/locales/sr_Cyrl/validation.php index 5f5d4bcba4..826f043d30 100644 --- a/locales/sr_Cyrl/validation.php +++ b/locales/sr_Cyrl/validation.php @@ -130,35 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'адреса', - 'age' => 'године', - 'body' => 'тело поруке', - 'city' => 'град', - 'country' => 'држава', - 'date' => 'датум', - 'day' => 'дан', - 'description' => 'опис', - 'email' => 'емаил', - 'excerpt' => 'извод', - 'first_name' => 'име', - 'gender' => 'пол', - 'hour' => 'сат', - 'last_name' => 'презиме', - 'message' => 'порука', - 'minute' => 'минут', - 'mobile' => 'мобилни', - 'month' => 'месец', - 'name' => 'име', - 'password' => 'лозинка', - 'password_confirmation' => 'понови лозинку', - 'phone' => 'телефон', - 'second' => 'секунда', - 'sex' => 'пол', - 'subject' => 'наслов', - 'time' => 'време', - 'title' => 'наслов', - 'username' => 'корисничко име', - 'year' => 'година', - ], ]; diff --git a/locales/sr_Latn/validation-attributes.php b/locales/sr_Latn/validation-attributes.php new file mode 100644 index 0000000000..4be8b7802a --- /dev/null +++ b/locales/sr_Latn/validation-attributes.php @@ -0,0 +1,35 @@ + [ + 'address' => 'adresa', + 'age' => 'godine', + 'body' => 'telo poruke', + 'city' => 'grad', + 'country' => 'država', + 'date' => 'datum', + 'day' => 'dan', + 'description' => 'opis', + 'email' => 'email', + 'excerpt' => 'izvod', + 'first_name' => 'ime', + 'gender' => 'pol', + 'hour' => 'sat', + 'last_name' => 'prezime', + 'message' => 'poruka', + 'minute' => 'minut', + 'mobile' => 'mobilni', + 'month' => 'mesec', + 'name' => 'ime', + 'password' => 'password', + 'password_confirmation' => 'ponovi password', + 'phone' => 'telefon', + 'second' => 'sekunda', + 'sex' => 'pol', + 'subject' => 'naslov', + 'time' => 'vreme', + 'title' => 'naslov', + 'username' => 'username', + 'year' => 'godina', + ], +]; diff --git a/locales/sr_Latn/validation-inline.php b/locales/sr_Latn/validation-inline.php index 8182dd50f9..1ba87853b4 100644 --- a/locales/sr_Latn/validation-inline.php +++ b/locales/sr_Latn/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/sr_Latn/validation.php b/locales/sr_Latn/validation.php index 2c7e53d6f3..555ffd1603 100644 --- a/locales/sr_Latn/validation.php +++ b/locales/sr_Latn/validation.php @@ -130,35 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'adresa', - 'age' => 'godine', - 'body' => 'telo poruke', - 'city' => 'grad', - 'country' => 'država', - 'date' => 'datum', - 'day' => 'dan', - 'description' => 'opis', - 'email' => 'email', - 'excerpt' => 'izvod', - 'first_name' => 'ime', - 'gender' => 'pol', - 'hour' => 'sat', - 'last_name' => 'prezime', - 'message' => 'poruka', - 'minute' => 'minut', - 'mobile' => 'mobilni', - 'month' => 'mesec', - 'name' => 'ime', - 'password' => 'password', - 'password_confirmation' => 'ponovi password', - 'phone' => 'telefon', - 'second' => 'sekunda', - 'sex' => 'pol', - 'subject' => 'naslov', - 'time' => 'vreme', - 'title' => 'naslov', - 'username' => 'username', - 'year' => 'godina', - ], ]; diff --git a/locales/sr_Latn_ME/validation-attributes.php b/locales/sr_Latn_ME/validation-attributes.php new file mode 100644 index 0000000000..c4b09248d2 --- /dev/null +++ b/locales/sr_Latn_ME/validation-attributes.php @@ -0,0 +1,35 @@ + [ + 'address' => 'adresa', + 'age' => 'godine', + 'body' => 'sadržaj', + 'city' => 'grad', + 'country' => 'država', + 'date' => 'datum', + 'day' => 'dan', + 'description' => 'opis', + 'email' => 'email', + 'excerpt' => 'siže', + 'first_name' => 'ime', + 'gender' => 'pol', + 'hour' => 'sat', + 'last_name' => 'prezime', + 'message' => 'poruka', + 'minute' => 'minuti', + 'mobile' => 'mobilni', + 'month' => 'mjesec', + 'name' => 'ime', + 'password' => 'lozinka', + 'password_confirmation' => 'provjera lozinke', + 'phone' => 'telefon', + 'second' => 'sekunde', + 'sex' => 'pol', + 'subject' => 'naslov', + 'time' => 'vrijeme', + 'title' => 'naslov', + 'username' => 'korisničko ime', + 'year' => 'godina', + ], +]; diff --git a/locales/sr_Latn_ME/validation-inline.php b/locales/sr_Latn_ME/validation-inline.php index ecbb471ec5..855330e9c4 100644 --- a/locales/sr_Latn_ME/validation-inline.php +++ b/locales/sr_Latn_ME/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/sr_Latn_ME/validation.php b/locales/sr_Latn_ME/validation.php index 739176531b..a454aab091 100644 --- a/locales/sr_Latn_ME/validation.php +++ b/locales/sr_Latn_ME/validation.php @@ -130,35 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'adresa', - 'age' => 'godine', - 'body' => 'sadržaj', - 'city' => 'grad', - 'country' => 'država', - 'date' => 'datum', - 'day' => 'dan', - 'description' => 'opis', - 'email' => 'email', - 'excerpt' => 'siže', - 'first_name' => 'ime', - 'gender' => 'pol', - 'hour' => 'sat', - 'last_name' => 'prezime', - 'message' => 'poruka', - 'minute' => 'minuti', - 'mobile' => 'mobilni', - 'month' => 'mjesec', - 'name' => 'ime', - 'password' => 'lozinka', - 'password_confirmation' => 'provjera lozinke', - 'phone' => 'telefon', - 'second' => 'sekunde', - 'sex' => 'pol', - 'subject' => 'naslov', - 'time' => 'vrijeme', - 'title' => 'naslov', - 'username' => 'korisničko ime', - 'year' => 'godina', - ], ]; diff --git a/locales/sv/validation-attributes.php b/locales/sv/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/sv/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/sv/validation-inline.php b/locales/sv/validation-inline.php index 0c75fd0fb9..bd540c231d 100644 --- a/locales/sv/validation-inline.php +++ b/locales/sv/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/sv/validation.php b/locales/sv/validation.php index 9007dbd89e..7fcddad544 100644 --- a/locales/sv/validation.php +++ b/locales/sv/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/sw/validation-attributes.php b/locales/sw/validation-attributes.php new file mode 100644 index 0000000000..d01fd19d04 --- /dev/null +++ b/locales/sw/validation-attributes.php @@ -0,0 +1,12 @@ + [ + 'image' => 'Picha', + 'result_text_under_image' => 'Maandishi ya matokeo chini ya picha', + 'short_text' => 'Maandishi mafupi', + 'test_description' => 'Maelezo ya jaribio', + 'test_locale' => 'Lugha', + 'test_name' => 'Jina la jaribio', + ], +]; diff --git a/locales/sw/validation-inline.php b/locales/sw/validation-inline.php index 3898ad0d70..e519611879 100644 --- a/locales/sw/validation-inline.php +++ b/locales/sw/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/sw/validation.php b/locales/sw/validation.php index 1ef99bb937..a8e2348cb8 100644 --- a/locales/sw/validation.php +++ b/locales/sw/validation.php @@ -130,12 +130,4 @@ 'rule-name' => 'ujumbe wa desturi', ], ], - 'attributes' => [ - 'image' => 'Picha', - 'result_text_under_image' => 'Maandishi ya matokeo chini ya picha', - 'short_text' => 'Maandishi mafupi', - 'test_description' => 'Maelezo ya jaribio', - 'test_locale' => 'Lugha', - 'test_name' => 'Jina la jaribio', - ], ]; diff --git a/locales/tg/validation-attributes.php b/locales/tg/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/tg/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/tg/validation-inline.php b/locales/tg/validation-inline.php index 71e2496642..8dca4635bd 100644 --- a/locales/tg/validation-inline.php +++ b/locales/tg/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/tg/validation.php b/locales/tg/validation.php index 253524e374..d300e7b864 100644 --- a/locales/tg/validation.php +++ b/locales/tg/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/th/validation-attributes.php b/locales/th/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/th/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/th/validation-inline.php b/locales/th/validation-inline.php index 4a307e2686..3325afd6b6 100644 --- a/locales/th/validation-inline.php +++ b/locales/th/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/th/validation.php b/locales/th/validation.php index aabec66cf6..c4f0daee01 100644 --- a/locales/th/validation.php +++ b/locales/th/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/tk/validation-attributes.php b/locales/tk/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/tk/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/tk/validation-inline.php b/locales/tk/validation-inline.php index 79f3fa7c8d..ccbdea03cb 100644 --- a/locales/tk/validation-inline.php +++ b/locales/tk/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/tk/validation.php b/locales/tk/validation.php index 42a1a0e570..1bd57f0c8f 100644 --- a/locales/tk/validation.php +++ b/locales/tk/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/tl/validation-attributes.php b/locales/tl/validation-attributes.php new file mode 100644 index 0000000000..ce3dc97cd8 --- /dev/null +++ b/locales/tl/validation-attributes.php @@ -0,0 +1,12 @@ + [ + 'image' => 'Imahe', + 'result_text_under_image' => 'Resultang teksto sa ilalim ng imahe', + 'short_text' => 'Maikling teksto', + 'test_description' => 'Subok na paglalarawan', + 'test_locale' => 'Wika', + 'test_name' => 'Subok na pangalan', + ], +]; diff --git a/locales/tl/validation-inline.php b/locales/tl/validation-inline.php index e7ca3a99fe..35aedea6f8 100644 --- a/locales/tl/validation-inline.php +++ b/locales/tl/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/tl/validation.php b/locales/tl/validation.php index 534f0e7ee9..c54ac90b7e 100644 --- a/locales/tl/validation.php +++ b/locales/tl/validation.php @@ -130,12 +130,4 @@ 'rule-name' => 'pasadyang-mensahe', ], ], - 'attributes' => [ - 'image' => 'Imahe', - 'result_text_under_image' => 'Resultang teksto sa ilalim ng imahe', - 'short_text' => 'Maikling teksto', - 'test_description' => 'Subok na paglalarawan', - 'test_locale' => 'Wika', - 'test_name' => 'Subok na pangalan', - ], ]; diff --git a/locales/tr/validation-attributes.php b/locales/tr/validation-attributes.php new file mode 100644 index 0000000000..5469e0aa1f --- /dev/null +++ b/locales/tr/validation-attributes.php @@ -0,0 +1,35 @@ + [ + 'address' => 'Adres', + 'age' => 'Yaş', + 'available' => 'Mevcut', + 'city' => 'Şehir', + 'content' => 'İçerik', + 'country' => 'Ülke', + 'date' => 'Tarih', + 'day' => 'Gün', + 'description' => 'Açıklama', + 'email' => 'E-posta adresi', + 'excerpt' => 'Alıntı', + 'first_name' => 'Adı', + 'gender' => 'Cinsiyet', + 'hour' => 'Saat', + 'last_name' => 'Soyadı', + 'minute' => 'Dakika', + 'mobile' => 'Cep telefonu', + 'month' => 'Ay', + 'name' => 'Adı', + 'password' => 'Şifre', + 'password_confirmation' => 'Şifre (Tekrar)', + 'phone' => 'Telefon', + 'second' => 'Saniye', + 'sex' => 'Cinsiyet', + 'size' => 'Boyut', + 'time' => 'Zaman', + 'title' => 'Unvan', + 'username' => 'Kullanıcı adı', + 'year' => 'Yıl', + ], +]; diff --git a/locales/tr/validation-inline.php b/locales/tr/validation-inline.php index 95a62810b8..e6f4cabfd5 100644 --- a/locales/tr/validation-inline.php +++ b/locales/tr/validation-inline.php @@ -130,5 +130,4 @@ 'kural-adi' => 'Özel doğrulama mesajı', ], ], - 'attributes' => [], ]; diff --git a/locales/tr/validation.php b/locales/tr/validation.php index 64658c6ab0..d2dfc65ae7 100644 --- a/locales/tr/validation.php +++ b/locales/tr/validation.php @@ -130,35 +130,4 @@ 'kural-adi' => 'Özel doğrulama mesajı', ], ], - 'attributes' => [ - 'address' => 'Adres', - 'age' => 'Yaş', - 'available' => 'Mevcut', - 'city' => 'Şehir', - 'content' => 'İçerik', - 'country' => 'Ülke', - 'date' => 'Tarih', - 'day' => 'Gün', - 'description' => 'Açıklama', - 'email' => 'E-posta adresi', - 'excerpt' => 'Alıntı', - 'first_name' => 'Adı', - 'gender' => 'Cinsiyet', - 'hour' => 'Saat', - 'last_name' => 'Soyadı', - 'minute' => 'Dakika', - 'mobile' => 'Cep telefonu', - 'month' => 'Ay', - 'name' => 'Adı', - 'password' => 'Şifre', - 'password_confirmation' => 'Şifre (Tekrar)', - 'phone' => 'Telefon', - 'second' => 'Saniye', - 'sex' => 'Cinsiyet', - 'size' => 'Boyut', - 'time' => 'Zaman', - 'title' => 'Unvan', - 'username' => 'Kullanıcı adı', - 'year' => 'Yıl', - ], ]; diff --git a/locales/ug/validation-attributes.php b/locales/ug/validation-attributes.php new file mode 100644 index 0000000000..72412aa5a5 --- /dev/null +++ b/locales/ug/validation-attributes.php @@ -0,0 +1,35 @@ + [ + 'address' => 'ئادىرىس', + 'age' => 'يېشى', + 'available' => 'ئىشلىتىلىشچان', + 'city' => 'شەھەر', + 'content' => 'مەزمۇن', + 'country' => 'دۆلەت', + 'date' => 'چېسلا', + 'day' => 'كۈن', + 'description' => 'تەسۋىرلەش', + 'email' => 'تورخەت ئادىرىسى', + 'excerpt' => 'مۇھىم مەزمۇن', + 'first_name' => 'ئىسىم', + 'gender' => 'جىنسى', + 'hour' => 'سائەت', + 'last_name' => 'فامىلە', + 'minute' => 'مىنۇت', + 'mobile' => 'يانفۇن', + 'month' => 'ئاي', + 'name' => 'ئىسمى', + 'password' => 'پارول', + 'password_confirmation' => 'پارول جەزىملەش', + 'phone' => 'تېلىفۇن', + 'second' => 'سېكۇنت', + 'sex' => 'جىنسى', + 'size' => 'چوڭ كىچىكلىكى', + 'time' => 'سائەت', + 'title' => 'تېما', + 'username' => 'قوللانچى نامى', + 'year' => 'يىل', + ], +]; diff --git a/locales/ug/validation-inline.php b/locales/ug/validation-inline.php index 79f3fa7c8d..ccbdea03cb 100644 --- a/locales/ug/validation-inline.php +++ b/locales/ug/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/ug/validation.php b/locales/ug/validation.php index e16d80e22e..31aa3ef0ad 100644 --- a/locales/ug/validation.php +++ b/locales/ug/validation.php @@ -130,35 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'ئادىرىس', - 'age' => 'يېشى', - 'available' => 'ئىشلىتىلىشچان', - 'city' => 'شەھەر', - 'content' => 'مەزمۇن', - 'country' => 'دۆلەت', - 'date' => 'چېسلا', - 'day' => 'كۈن', - 'description' => 'تەسۋىرلەش', - 'email' => 'تورخەت ئادىرىسى', - 'excerpt' => 'مۇھىم مەزمۇن', - 'first_name' => 'ئىسىم', - 'gender' => 'جىنسى', - 'hour' => 'سائەت', - 'last_name' => 'فامىلە', - 'minute' => 'مىنۇت', - 'mobile' => 'يانفۇن', - 'month' => 'ئاي', - 'name' => 'ئىسمى', - 'password' => 'پارول', - 'password_confirmation' => 'پارول جەزىملەش', - 'phone' => 'تېلىفۇن', - 'second' => 'سېكۇنت', - 'sex' => 'جىنسى', - 'size' => 'چوڭ كىچىكلىكى', - 'time' => 'سائەت', - 'title' => 'تېما', - 'username' => 'قوللانچى نامى', - 'year' => 'يىل', - ], ]; diff --git a/locales/uk/validation-attributes.php b/locales/uk/validation-attributes.php new file mode 100644 index 0000000000..81c87da90a --- /dev/null +++ b/locales/uk/validation-attributes.php @@ -0,0 +1,35 @@ + [ + 'address' => 'Адреса', + 'age' => 'Вік', + 'available' => 'Доступно', + 'city' => 'Місто', + 'content' => 'Контент', + 'country' => 'Країна', + 'date' => 'Дата', + 'day' => 'День', + 'description' => 'Опис', + 'email' => 'E-mail адреса', + 'excerpt' => 'Уривок', + 'first_name' => 'Ім\'я', + 'gender' => 'Стать', + 'hour' => 'Година', + 'last_name' => 'Прізвище', + 'minute' => 'Хвилина', + 'mobile' => 'Моб. номер', + 'month' => 'Місяць', + 'name' => 'Ім\'я', + 'password' => 'Пароль', + 'password_confirmation' => 'Підтвердження пароля', + 'phone' => 'Телефон', + 'second' => 'Секунда', + 'sex' => 'Стать', + 'size' => 'Розмір', + 'time' => 'Час', + 'title' => 'Назва', + 'username' => 'Нікнейм', + 'year' => 'Рік', + ], +]; diff --git a/locales/uk/validation-inline.php b/locales/uk/validation-inline.php index 620d9ed46a..2652f50988 100644 --- a/locales/uk/validation-inline.php +++ b/locales/uk/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/uk/validation.php b/locales/uk/validation.php index 3711533c9b..780ee5a7e3 100644 --- a/locales/uk/validation.php +++ b/locales/uk/validation.php @@ -130,35 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Адреса', - 'age' => 'Вік', - 'available' => 'Доступно', - 'city' => 'Місто', - 'content' => 'Контент', - 'country' => 'Країна', - 'date' => 'Дата', - 'day' => 'День', - 'description' => 'Опис', - 'email' => 'E-mail адреса', - 'excerpt' => 'Уривок', - 'first_name' => 'Ім\'я', - 'gender' => 'Стать', - 'hour' => 'Година', - 'last_name' => 'Прізвище', - 'minute' => 'Хвилина', - 'mobile' => 'Моб. номер', - 'month' => 'Місяць', - 'name' => 'Ім\'я', - 'password' => 'Пароль', - 'password_confirmation' => 'Підтвердження пароля', - 'phone' => 'Телефон', - 'second' => 'Секунда', - 'sex' => 'Стать', - 'size' => 'Розмір', - 'time' => 'Час', - 'title' => 'Назва', - 'username' => 'Нікнейм', - 'year' => 'Рік', - ], ]; diff --git a/locales/ur/validation-attributes.php b/locales/ur/validation-attributes.php new file mode 100644 index 0000000000..b125992577 --- /dev/null +++ b/locales/ur/validation-attributes.php @@ -0,0 +1,12 @@ + [ + 'image' => 'تصویر', + 'result_text_under_image' => 'تصویر کے تحت نتیجے کا متن', + 'short_text' => 'مختصر متن', + 'test_description' => 'ٹیسٹ کی تفصیلات', + 'test_locale' => 'زبان', + 'test_name' => 'ٹیسٹ کا نام', + ], +]; diff --git a/locales/ur/validation-inline.php b/locales/ur/validation-inline.php index 65bd526981..fff7656688 100644 --- a/locales/ur/validation-inline.php +++ b/locales/ur/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/ur/validation.php b/locales/ur/validation.php index 268148a2c0..f2884d899f 100644 --- a/locales/ur/validation.php +++ b/locales/ur/validation.php @@ -130,12 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'image' => 'تصویر', - 'result_text_under_image' => 'تصویر کے تحت نتیجے کا متن', - 'short_text' => 'مختصر متن', - 'test_description' => 'ٹیسٹ کی تفصیلات', - 'test_locale' => 'زبان', - 'test_name' => 'ٹیسٹ کا نام', - ], ]; diff --git a/locales/uz_Cyrl/validation-attributes.php b/locales/uz_Cyrl/validation-attributes.php new file mode 100644 index 0000000000..0a0eabff36 --- /dev/null +++ b/locales/uz_Cyrl/validation-attributes.php @@ -0,0 +1,40 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/locales/uz_Cyrl/validation-inline.php b/locales/uz_Cyrl/validation-inline.php index d09d962527..9a0ebefe4b 100644 --- a/locales/uz_Cyrl/validation-inline.php +++ b/locales/uz_Cyrl/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/uz_Cyrl/validation.php b/locales/uz_Cyrl/validation.php index 682fd0fa2a..d3d6185d66 100644 --- a/locales/uz_Cyrl/validation.php +++ b/locales/uz_Cyrl/validation.php @@ -130,40 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ]; diff --git a/locales/uz_Latn/validation-attributes.php b/locales/uz_Latn/validation-attributes.php new file mode 100644 index 0000000000..484fbb890a --- /dev/null +++ b/locales/uz_Latn/validation-attributes.php @@ -0,0 +1,35 @@ + [ + 'address' => 'Manzil', + 'age' => 'Yosh', + 'available' => 'Mavjud', + 'city' => 'Shahar', + 'content' => 'Kontent', + 'country' => 'Davlat', + 'date' => 'Sana', + 'day' => 'Kun', + 'description' => 'Izoh', + 'email' => 'Elektron manzil', + 'excerpt' => 'Parcha', + 'first_name' => 'Ism', + 'gender' => 'Jins', + 'hour' => 'Soat', + 'last_name' => 'Familiya', + 'minute' => 'Daqiqa', + 'mobile' => 'Mobil telefon', + 'month' => 'Oy', + 'name' => 'Ism', + 'password' => 'Parol', + 'password_confirmation' => 'Parolni tasdiqlash', + 'phone' => 'Telefon', + 'second' => 'Soniya', + 'sex' => 'Jins', + 'size' => 'O‘lcham', + 'time' => 'Vaqt', + 'title' => 'Nomi', + 'username' => 'Nickname', + 'year' => 'Yil', + ], +]; diff --git a/locales/uz_Latn/validation-inline.php b/locales/uz_Latn/validation-inline.php index ac4986fb6d..251fbe30ae 100644 --- a/locales/uz_Latn/validation-inline.php +++ b/locales/uz_Latn/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/uz_Latn/validation.php b/locales/uz_Latn/validation.php index 6c1d580382..d2c5ae5862 100644 --- a/locales/uz_Latn/validation.php +++ b/locales/uz_Latn/validation.php @@ -130,35 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'Manzil', - 'age' => 'Yosh', - 'available' => 'Mavjud', - 'city' => 'Shahar', - 'content' => 'Kontent', - 'country' => 'Davlat', - 'date' => 'Sana', - 'day' => 'Kun', - 'description' => 'Izoh', - 'email' => 'Elektron manzil', - 'excerpt' => 'Parcha', - 'first_name' => 'Ism', - 'gender' => 'Jins', - 'hour' => 'Soat', - 'last_name' => 'Familiya', - 'minute' => 'Daqiqa', - 'mobile' => 'Mobil telefon', - 'month' => 'Oy', - 'name' => 'Ism', - 'password' => 'Parol', - 'password_confirmation' => 'Parolni tasdiqlash', - 'phone' => 'Telefon', - 'second' => 'Soniya', - 'sex' => 'Jins', - 'size' => 'O‘lcham', - 'time' => 'Vaqt', - 'title' => 'Nomi', - 'username' => 'Nickname', - 'year' => 'Yil', - ], ]; diff --git a/locales/vi/validation-attributes.php b/locales/vi/validation-attributes.php new file mode 100644 index 0000000000..5cd5378991 --- /dev/null +++ b/locales/vi/validation-attributes.php @@ -0,0 +1,38 @@ + [ + 'address' => 'địa chỉ', + 'age' => 'tuổi', + 'available' => 'có sẵn', + 'body' => 'nội dung', + 'city' => 'thành phố', + 'content' => 'nội dung', + 'country' => 'quốc gia', + 'date' => 'ngày', + 'day' => 'ngày', + 'description' => 'mô tả', + 'email' => 'email', + 'excerpt' => 'trích dẫn', + 'first_name' => 'tên', + 'gender' => 'giới tính', + 'hour' => 'giờ', + 'last_name' => 'họ', + 'message' => 'lời nhắn', + 'minute' => 'phút', + 'mobile' => 'di động', + 'month' => 'tháng', + 'name' => 'tên', + 'password' => 'mật khẩu', + 'password_confirmation' => 'xác nhận mật khẩu', + 'phone' => 'số điện thoại', + 'second' => 'giây', + 'sex' => 'giới tính', + 'size' => 'kích thước', + 'subject' => 'tiêu đề', + 'time' => 'thời gian', + 'title' => 'tiêu đề', + 'username' => 'tên đăng nhập', + 'year' => 'năm', + ], +]; diff --git a/locales/vi/validation-inline.php b/locales/vi/validation-inline.php index 3eeb4e9381..a7e6cb226d 100644 --- a/locales/vi/validation-inline.php +++ b/locales/vi/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/vi/validation.php b/locales/vi/validation.php index 5103510e13..45702b3458 100644 --- a/locales/vi/validation.php +++ b/locales/vi/validation.php @@ -130,38 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => 'địa chỉ', - 'age' => 'tuổi', - 'available' => 'có sẵn', - 'body' => 'nội dung', - 'city' => 'thành phố', - 'content' => 'nội dung', - 'country' => 'quốc gia', - 'date' => 'ngày', - 'day' => 'ngày', - 'description' => 'mô tả', - 'email' => 'email', - 'excerpt' => 'trích dẫn', - 'first_name' => 'tên', - 'gender' => 'giới tính', - 'hour' => 'giờ', - 'last_name' => 'họ', - 'message' => 'lời nhắn', - 'minute' => 'phút', - 'mobile' => 'di động', - 'month' => 'tháng', - 'name' => 'tên', - 'password' => 'mật khẩu', - 'password_confirmation' => 'xác nhận mật khẩu', - 'phone' => 'số điện thoại', - 'second' => 'giây', - 'sex' => 'giới tính', - 'size' => 'kích thước', - 'subject' => 'tiêu đề', - 'time' => 'thời gian', - 'title' => 'tiêu đề', - 'username' => 'tên đăng nhập', - 'year' => 'năm', - ], ]; diff --git a/locales/zh_CN/validation-attributes.php b/locales/zh_CN/validation-attributes.php new file mode 100644 index 0000000000..73865424e9 --- /dev/null +++ b/locales/zh_CN/validation-attributes.php @@ -0,0 +1,35 @@ + [ + 'address' => '地址', + 'age' => '年龄', + 'available' => '可用的', + 'city' => '城市', + 'content' => '内容', + 'country' => '国家', + 'date' => '日期', + 'day' => '天', + 'description' => '描述', + 'email' => '邮箱', + 'excerpt' => '摘要', + 'first_name' => '名', + 'gender' => '性别', + 'hour' => '时', + 'last_name' => '姓', + 'minute' => '分', + 'mobile' => '手机', + 'month' => '月', + 'name' => '名称', + 'password' => '密码', + 'password_confirmation' => '确认密码', + 'phone' => '电话', + 'second' => '秒', + 'sex' => '性别', + 'size' => '大小', + 'time' => '时间', + 'title' => '标题', + 'username' => '用户名', + 'year' => '年', + ], +]; diff --git a/locales/zh_CN/validation-inline.php b/locales/zh_CN/validation-inline.php index 21974c3a86..11557875f1 100644 --- a/locales/zh_CN/validation-inline.php +++ b/locales/zh_CN/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/zh_CN/validation.php b/locales/zh_CN/validation.php index f2bc14efcf..8999bfa668 100644 --- a/locales/zh_CN/validation.php +++ b/locales/zh_CN/validation.php @@ -130,35 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => '地址', - 'age' => '年龄', - 'available' => '可用的', - 'city' => '城市', - 'content' => '内容', - 'country' => '国家', - 'date' => '日期', - 'day' => '天', - 'description' => '描述', - 'email' => '邮箱', - 'excerpt' => '摘要', - 'first_name' => '名', - 'gender' => '性别', - 'hour' => '时', - 'last_name' => '姓', - 'minute' => '分', - 'mobile' => '手机', - 'month' => '月', - 'name' => '名称', - 'password' => '密码', - 'password_confirmation' => '确认密码', - 'phone' => '电话', - 'second' => '秒', - 'sex' => '性别', - 'size' => '大小', - 'time' => '时间', - 'title' => '标题', - 'username' => '用户名', - 'year' => '年', - ], ]; diff --git a/locales/zh_HK/validation-attributes.php b/locales/zh_HK/validation-attributes.php new file mode 100644 index 0000000000..2b73203293 --- /dev/null +++ b/locales/zh_HK/validation-attributes.php @@ -0,0 +1,35 @@ + [ + 'address' => '地址', + 'age' => '年齡', + 'available' => '可用的', + 'city' => '城市', + 'content' => '內容', + 'country' => '國家', + 'date' => '日期', + 'day' => '天', + 'description' => '描述', + 'email' => '電郵', + 'excerpt' => '摘要', + 'first_name' => '名', + 'gender' => '性別', + 'hour' => '時', + 'last_name' => '姓', + 'minute' => '分', + 'mobile' => '手機', + 'month' => '月', + 'name' => '名稱', + 'password' => '密碼', + 'password_confirmation' => '確認密碼', + 'phone' => '電話', + 'second' => '秒', + 'sex' => '性別', + 'size' => '大小', + 'time' => '時間', + 'title' => '標題', + 'username' => '使用者名', + 'year' => '年', + ], +]; diff --git a/locales/zh_HK/validation-inline.php b/locales/zh_HK/validation-inline.php index 7c2a742f2c..8b21b9771a 100644 --- a/locales/zh_HK/validation-inline.php +++ b/locales/zh_HK/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/zh_HK/validation.php b/locales/zh_HK/validation.php index 9759302b20..ac37a95724 100644 --- a/locales/zh_HK/validation.php +++ b/locales/zh_HK/validation.php @@ -130,35 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => '地址', - 'age' => '年齡', - 'available' => '可用的', - 'city' => '城市', - 'content' => '內容', - 'country' => '國家', - 'date' => '日期', - 'day' => '天', - 'description' => '描述', - 'email' => '電郵', - 'excerpt' => '摘要', - 'first_name' => '名', - 'gender' => '性別', - 'hour' => '時', - 'last_name' => '姓', - 'minute' => '分', - 'mobile' => '手機', - 'month' => '月', - 'name' => '名稱', - 'password' => '密碼', - 'password_confirmation' => '確認密碼', - 'phone' => '電話', - 'second' => '秒', - 'sex' => '性別', - 'size' => '大小', - 'time' => '時間', - 'title' => '標題', - 'username' => '使用者名', - 'year' => '年', - ], ]; diff --git a/locales/zh_TW/validation-attributes.php b/locales/zh_TW/validation-attributes.php new file mode 100644 index 0000000000..1f16e879f8 --- /dev/null +++ b/locales/zh_TW/validation-attributes.php @@ -0,0 +1,35 @@ + [ + 'address' => '地址', + 'age' => '年齡', + 'available' => '可用的', + 'city' => '城市', + 'content' => '內容', + 'country' => '國家', + 'date' => '日期', + 'day' => '天', + 'description' => '描述', + 'email' => 'E-mail', + 'excerpt' => '摘要', + 'first_name' => '名', + 'gender' => '性別', + 'hour' => '時', + 'last_name' => '姓', + 'minute' => '分', + 'mobile' => '手機', + 'month' => '月', + 'name' => '名稱', + 'password' => '密碼', + 'password_confirmation' => '確認密碼', + 'phone' => '電話', + 'second' => '秒', + 'sex' => '性別', + 'size' => '大小', + 'time' => '時間', + 'title' => '標題', + 'username' => '使用者名稱', + 'year' => '年', + ], +]; diff --git a/locales/zh_TW/validation-inline.php b/locales/zh_TW/validation-inline.php index 07284004cf..ba3cc66955 100644 --- a/locales/zh_TW/validation-inline.php +++ b/locales/zh_TW/validation-inline.php @@ -130,5 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [], ]; diff --git a/locales/zh_TW/validation.php b/locales/zh_TW/validation.php index 1a1ea3136c..cdf43ebf96 100644 --- a/locales/zh_TW/validation.php +++ b/locales/zh_TW/validation.php @@ -130,35 +130,4 @@ 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - 'address' => '地址', - 'age' => '年齡', - 'available' => '可用的', - 'city' => '城市', - 'content' => '內容', - 'country' => '國家', - 'date' => '日期', - 'day' => '天', - 'description' => '描述', - 'email' => 'E-mail', - 'excerpt' => '摘要', - 'first_name' => '名', - 'gender' => '性別', - 'hour' => '時', - 'last_name' => '姓', - 'minute' => '分', - 'mobile' => '手機', - 'month' => '月', - 'name' => '名稱', - 'password' => '密碼', - 'password_confirmation' => '確認密碼', - 'phone' => '電話', - 'second' => '秒', - 'sex' => '性別', - 'size' => '大小', - 'time' => '時間', - 'title' => '標題', - 'username' => '使用者名稱', - 'year' => '年', - ], ]; diff --git a/source/validation-attributes.php b/source/validation-attributes.php new file mode 100644 index 0000000000..139f3b279c --- /dev/null +++ b/source/validation-attributes.php @@ -0,0 +1,53 @@ + [ + 'address' => 'Address', + 'age' => 'Age', + 'body' => 'Body', + 'city' => 'City', + 'content' => 'Content', + 'country' => 'Country', + 'date' => 'Date', + 'day' => 'Day', + 'description' => 'Description', + 'email' => 'Email', + 'excerpt' => 'Excerpt', + 'first_name' => 'First Name', + 'gender' => 'Gender', + 'hour' => 'Hour', + 'last_name' => 'Last Name', + 'message' => 'Message', + 'minute' => 'Minute', + 'mobile' => 'Mobile', + 'month' => 'Month', + 'name' => 'Name', + 'password' => 'Password', + 'password_confirmation' => 'Password Confirmation', + 'phone' => 'Phone', + 'photo' => 'Photo', + 'price' => 'Price', + 'role' => 'Role', + 'second' => 'Second', + 'sex' => 'Sex', + 'subject' => 'Subject', + 'terms' => 'Terms', + 'time' => 'Time', + 'title' => 'Title', + 'username' => 'Username', + 'year' => 'Year', + ], +]; diff --git a/source/validation.php b/source/validation.php index 4734e787cf..0efdf1012e 100644 --- a/source/validation.php +++ b/source/validation.php @@ -142,52 +142,4 @@ 'rule-name' => 'custom-message', ], ], - - /* - |-------------------------------------------------------------------------- - | Custom Validation Attributes - |-------------------------------------------------------------------------- - | - | The following language lines are used to swap our attribute placeholder - | with something more reader friendly such as "E-Mail Address" instead - | of "email". This simply helps us make our message more expressive. - | - */ - - 'attributes' => [ - 'address' => 'Address', - 'age' => 'Age', - 'body' => 'Body', - 'city' => 'City', - 'content' => 'Content', - 'country' => 'Country', - 'date' => 'Date', - 'day' => 'Day', - 'description' => 'Description', - 'email' => 'Email', - 'excerpt' => 'Excerpt', - 'first_name' => 'First Name', - 'gender' => 'Gender', - 'hour' => 'Hour', - 'last_name' => 'Last Name', - 'message' => 'Message', - 'minute' => 'Minute', - 'mobile' => 'Mobile', - 'month' => 'Month', - 'name' => 'Name', - 'password' => 'Password', - 'password_confirmation' => 'Password Confirmation', - 'phone' => 'Phone', - 'photo' => 'Photo', - 'price' => 'Price', - 'role' => 'Role', - 'second' => 'Second', - 'sex' => 'Sex', - 'subject' => 'Subject', - 'terms' => 'Terms', - 'time' => 'Time', - 'title' => 'Title', - 'username' => 'Username', - 'year' => 'Year', - ], ];