Fix validation translations

This commit is contained in:
Bubka 2024-11-08 16:32:54 +01:00
parent 0370a8b419
commit 6158c6940b
10 changed files with 898 additions and 898 deletions

View File

@ -13,115 +13,115 @@
| |
*/ */
'accepted' => 'The :attribute field must be accepted.', 'accepted' => 'Полето :attribute трябва да бъде приетo.',
'accepted_if' => 'The :attribute field must be accepted when :other is :value.', 'accepted_if' => 'Полето :attribute да бъде приет когато :other е :value.',
'active_url' => 'The :attribute field must be a valid URL.', 'active_url' => 'Полето :attribute не е валиден URL.',
'after' => 'The :attribute field must be a date after :date.', 'after' => 'Полето :attribute трябва да е дата след :date.',
'after_or_equal' => 'The :attribute field must be a date after or equal to :date.', 'after_or_equal' => 'Полето :attribute трябва да е дата след или равна на :date.',
'alpha' => 'The :attribute field must only contain letters.', 'alpha' => 'Полето :attribute трябва да съдържа само букви.',
'alpha_dash' => 'The :attribute field must only contain letters, numbers, dashes, and underscores.', 'alpha_dash' => 'Полето :attribute трябва да съдържа само букви, цифри, долна черта и тире.',
'alpha_num' => 'The :attribute field must only contain letters and numbers.', 'alpha_num' => 'Полето :attribute трябва да съдържа само букви и цифри.',
'array' => 'The :attribute field must be an array.', 'array' => 'Полето :attribute трябва да е низ.',
'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.', 'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.',
'before' => 'The :attribute field must be a date before :date.', 'before' => 'Полето :attribute трябва да е дата преди :date.',
'before_or_equal' => 'The :attribute field must be a date before or equal to :date.', 'before_or_equal' => 'Полето :attribute трябва да е дата преди или равна на :date.',
'between' => [ 'between' => [
'array' => 'The :attribute field must have between :min and :max items.', 'array' => 'Полето :attribute трябва да е между :min и :max елемента.',
'file' => 'The :attribute field must be between :min and :max kilobytes.', 'file' => 'Полето :attribute трябва да е между :min и :max килобайта.',
'numeric' => 'The :attribute field must be between :min and :max.', 'numeric' => 'Полето :attribute трябва да е между :min и :max.',
'string' => 'The :attribute field must be between :min and :max characters.', 'string' => 'Полето :attribute трябва да е между :min и :max символа.',
], ],
'boolean' => 'Полето :attribute трябва да съдържа булева стойност (true или false).', 'boolean' => 'Полето :attribute трябва да съдържа булева стойност (true или false).',
'can' => 'The :attribute field contains an unauthorized value.', 'can' => 'The :attribute field contains an unauthorized value.',
'confirmed' => 'The :attribute field confirmation does not match.', 'confirmed' => 'Потвърждението на полето :attribute не съвпада.',
'contains' => 'The :attribute field is missing a required value.', 'contains' => 'The :attribute field is missing a required value.',
'current_password' => 'Паролата е грешна.', 'current_password' => 'Паролата е грешна.',
'date' => 'The :attribute field must be a valid date.', 'date' => 'Полето :attribute не е валидна дата.',
'date_equals' => 'The :attribute field must be a date equal to :date.', 'date_equals' => 'Полето :attribute трябва да е дата равна на :date.',
'date_format' => 'The :attribute field must match the format :format.', 'date_format' => 'Полето :attribute не съвпада с формата :format.',
'decimal' => 'The :attribute field must have :decimal decimal places.', 'decimal' => 'The :attribute field must have :decimal decimal places.',
'declined' => 'The :attribute field must be declined.', 'declined' => 'Полето :attribute трябва да бъде отказано.',
'declined_if' => 'The :attribute field must be declined when :other is :value.', 'declined_if' => 'Полето :attribute трябва да бъде отказано когато :other е :value.',
'different' => 'The :attribute field and :other must be different.', 'different' => 'Полето :attribute и :other трябва да са различни.',
'digits' => 'The :attribute field must be :digits digits.', 'digits' => 'Полето :attribute трябва да е :digits цифри.',
'digits_between' => 'The :attribute field must be between :min and :max digits.', 'digits_between' => 'Полето :attribute трябва да е между :min и :max цифри.',
'dimensions' => 'The :attribute field has invalid image dimensions.', 'dimensions' => 'Полето :attribute съдържа невалидни размери.',
'distinct' => 'Полето :attribute има дублирана стойност.', 'distinct' => 'Полето :attribute има дублирана стойност.',
'doesnt_end_with' => 'The :attribute field must not end with one of the following: :values.', 'doesnt_end_with' => 'Полето :Attribute трябва да завършва с една от следните стойности: :values.',
'doesnt_start_with' => 'The :attribute field must not start with one of the following: :values.', 'doesnt_start_with' => 'Полето :Attribute трябва да започва с едно от следните: :values.',
'email' => 'The :attribute field must be a valid email address.', 'email' => 'Полето :attribute трябва да съдържа валиден имейл.',
'ends_with' => 'The :attribute field must end with one of the following: :values.', 'ends_with' => 'Полето :attribute трябва да завърпва с една от следните стойности: :values.',
'enum' => 'Избраното :attribute е невалидно.', 'enum' => 'Избраното :attribute е невалидно.',
'exists' => 'Избраното поле :attribute е невалидно.', 'exists' => 'Избраното поле :attribute е невалидно.',
'extensions' => 'The :attribute field must have one of the following extensions: :values.', 'extensions' => 'The :attribute field must have one of the following extensions: :values.',
'file' => 'The :attribute field must be a file.', 'file' => 'Полето :attribute трябва да е файл.',
'filled' => 'Полето :attribute трябва да съдържа стойнот.', 'filled' => 'Полето :attribute трябва да съдържа стойнот.',
'gt' => [ 'gt' => [
'array' => 'The :attribute field must have more than :value items.', 'array' => ':Attribute трябва да разполага с повече от :value елемента.',
'file' => 'The :attribute field must be greater than :value kilobytes.', 'file' => 'Полето :attribute трябва да е по-голямо от :value килобакта.',
'numeric' => 'The :attribute field must be greater than :value.', 'numeric' => 'Полето :attribute трябва да е по-голямо от :value.',
'string' => 'The :attribute field must be greater than :value characters.', 'string' => 'Дължината на :attribute трябва да бъде по-голямо от :value символа.',
], ],
'gte' => [ 'gte' => [
'array' => 'The :attribute field must have :value items or more.', 'array' => ':attribute трябва да има :value елемента или повече.',
'file' => 'The :attribute field must be greater than or equal to :value kilobytes.', 'file' => ':attribute трябва да е по-голям или равн на :value Kb.',
'numeric' => 'The :attribute field must be greater than or equal to :value.', 'numeric' => ':attribute трябва да е по-голямо или равно на :value.',
'string' => 'The :attribute field must be greater than or equal to :value characters.', 'string' => ':attribute трябва да е повече или равно на :value символа.',
], ],
'hex_color' => 'The :attribute field must be a valid hexadecimal color.', 'hex_color' => 'The :attribute field must be a valid hexadecimal color.',
'image' => 'The :attribute field must be an image.', 'image' => ':attribute трябва да e изображение.',
'in' => 'Избраният :attribute е невалиден.', 'in' => 'Избраният :attribute е невалиден.',
'in_array' => 'The :attribute field must exist in :other.', 'in_array' => 'Полето :attribute не съществува в :other.',
'integer' => 'The :attribute field must be an integer.', 'integer' => ':attribute трябва да бъде цяло число.',
'ip' => 'The :attribute field must be a valid IP address.', 'ip' => ':attribute трябва да бъде валиден IP адрес.',
'ipv4' => 'The :attribute field must be a valid IPv4 address.', 'ipv4' => ':attribute трябва да бъде валиден IPv4 адрес.',
'ipv6' => 'The :attribute field must be a valid IPv6 address.', 'ipv6' => ':attribute трябва да бъде валиден IPv6 адрес.',
'json' => 'The :attribute field must be a valid JSON string.', 'json' => ':attribute трябва да съдържа валиден JSON.',
'list' => 'The :attribute field must be a list.', 'list' => 'The :attribute field must be a list.',
'lowercase' => 'The :attribute field must be lowercase.', 'lowercase' => 'The :attribute field must be lowercase.',
'lt' => [ 'lt' => [
'array' => 'The :attribute field must have less than :value items.', 'array' => ':attribute трябва да разполага с по-малко от :value елемента.',
'file' => 'The :attribute field must be less than :value kilobytes.', 'file' => ':attribute не трябва да е по-голям от :value килобакта.',
'numeric' => 'The :attribute field must be less than :value.', 'numeric' => ':attribute трябва да бъде по-малко от :value.',
'string' => 'The :attribute field must be less than :value characters.', 'string' => ':Attribute трябва да бъде по-малка от :value знака.',
], ],
'lte' => [ 'lte' => [
'array' => 'The :attribute field must not have more than :value items.', 'array' => ':attribute не трябва да има повече от :value елемента.',
'file' => 'The :attribute field must be less than or equal to :value kilobytes.', 'file' => ':attribute трябва да бъде по-малък от или равен на :value килобайта.',
'numeric' => 'The :attribute field must be less than or equal to :value.', 'numeric' => ':attribute трябва да бъде по-малко или равно на :value.',
'string' => 'The :attribute field must be less than or equal to :value characters.', 'string' => ':attribute трябва да бъде по-малко от или равно на :value знака.',
], ],
'mac_address' => 'The :attribute field must be a valid MAC address.', 'mac_address' => ':attribute трябва да бъде валиден MAC адрес.',
'max' => [ 'max' => [
'array' => 'The :attribute field must not have more than :max items.', 'array' => ':attribute не трябва да има повече от :max елемента.',
'file' => 'The :attribute field must not be greater than :max kilobytes.', 'file' => ':attribute не трябва да бъде по-голямо от :max килобайта.',
'numeric' => 'The :attribute field must not be greater than :max.', 'numeric' => ':attribute не трябва да бъде по-голям от :max.',
'string' => 'The :attribute field must not be greater than :max characters.', 'string' => 'Полето :attribute трябва да бъде по-малко от :max знака.',
], ],
'max_digits' => 'The :attribute field must not have more than :max digits.', 'max_digits' => 'Полето :attribute трябва да има по-малко от :max елемента.',
'mimes' => 'The :attribute field must be a file of type: :values.', 'mimes' => 'Полето :attribute трябва да бъде файл от тип: :values.',
'mimetypes' => 'The :attribute field must be a file of type: :values.', 'mimetypes' => 'Полето :attribute трябва да бъде файл от тип: :values.',
'min' => [ 'min' => [
'array' => 'The :attribute field must have at least :min items.', 'array' => 'Полето :attribute трябва да има поне :min елемента.',
'file' => 'The :attribute field must be at least :min kilobytes.', 'file' => 'Полето :attribute трябва да бъде с големина минимум :min KB.',
'numeric' => 'The :attribute field must be at least :min.', 'numeric' => 'Полето :attribute трябва да бъде минимум :min.',
'string' => 'The :attribute field must be at least :min characters.', 'string' => 'Полето :attribute трябва да бъде минимум :min знака.',
], ],
'min_digits' => 'The :attribute field must have at least :min digits.', 'min_digits' => 'Полето :attribute трябва има минимум :min числа.',
'missing' => 'The :attribute field must be missing.', 'missing' => 'The :attribute field must be missing.',
'missing_if' => 'The :attribute field must be missing when :other is :value.', 'missing_if' => 'The :attribute field must be missing when :other is :value.',
'missing_unless' => 'The :attribute field must be missing unless :other is :value.', 'missing_unless' => 'The :attribute field must be missing unless :other is :value.',
'missing_with' => 'The :attribute field must be missing when :values is present.', 'missing_with' => 'The :attribute field must be missing when :values is present.',
'missing_with_all' => 'The :attribute field must be missing when :values are present.', 'missing_with_all' => 'The :attribute field must be missing when :values are present.',
'multiple_of' => 'The :attribute field must be a multiple of :value.', 'multiple_of' => 'Числото :attribute трябва да бъде кратно на :value.',
'not_in' => 'Избраният :attribute е невалиден.', 'not_in' => 'Избраният :attribute е невалиден.',
'not_regex' => 'The :attribute field format is invalid.', 'not_regex' => ':attribute е с невалиден формат.',
'numeric' => 'The :attribute field must be a number.', 'numeric' => ':attribute трябва да бъде число.',
'password' => [ 'password' => [
'letters' => 'The :attribute field must contain at least one letter.', 'letters' => 'Полето :attribute трябва да съдържа поне една буква.',
'mixed' => 'The :attribute field must contain at least one uppercase and one lowercase letter.', 'mixed' => 'Полето :attribute трябва да съдържа поне една главна и една малка буква.',
'numbers' => 'The :attribute field must contain at least one number.', 'numbers' => 'Полето :attribute трябва да съдържа поне една цифра.',
'symbols' => 'The :attribute field must contain at least one symbol.', 'symbols' => 'Полето :attribute трябва да съдържа поне един символ.',
'uncompromised' => 'Избраната :attribute съществува е дейта лийк. Моля изберете друга :attribute.', 'uncompromised' => 'Избраната :attribute съществува е дейта лийк. Моля изберете друга :attribute.',
], ],
'present' => 'Полето :attribute трябва да съществува.', 'present' => 'Полето :attribute трябва да съществува.',
@ -133,7 +133,7 @@
'prohibited_if' => 'The :attribute field is prohibited when :other is :value.', 'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.', 'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',
'prohibits' => 'The :attribute field prohibits :other from being present.', 'prohibits' => 'The :attribute field prohibits :other from being present.',
'regex' => 'The :attribute field format is invalid.', 'regex' => 'The :attribute format is invalid.',
'required' => 'The :attribute field is required.', 'required' => 'The :attribute field is required.',
'required_array_keys' => 'The :attribute field must contain entries for: :values.', 'required_array_keys' => 'The :attribute field must contain entries for: :values.',
'required_if' => 'The :attribute field is required when :other is :value.', 'required_if' => 'The :attribute field is required when :other is :value.',
@ -144,26 +144,26 @@
'required_with_all' => 'The :attribute field is required when :values are present.', 'required_with_all' => 'The :attribute field is required when :values are present.',
'required_without' => 'The :attribute field is required when :values is not present.', 'required_without' => 'The :attribute field is required when :values is not present.',
'required_without_all' => 'The :attribute field is required when none of :values are present.', 'required_without_all' => 'The :attribute field is required when none of :values are present.',
'same' => 'The :attribute field must match :other.', 'same' => 'The :attribute and :other must match.',
'size' => [ 'size' => [
'array' => 'The :attribute field must contain :size items.', 'array' => 'The :attribute must contain :size items.',
'file' => 'The :attribute field must be :size kilobytes.', 'file' => 'The :attribute must be :size kilobytes.',
'numeric' => 'The :attribute field must be :size.', 'numeric' => 'The :attribute must be :size.',
'string' => 'The :attribute field must be :size characters.', 'string' => 'The :attribute must be :size characters.',
], ],
'starts_with' => 'The :attribute field must start with one of the following: :values.', 'starts_with' => 'The :attribute must start with one of the following: :values.',
'string' => 'The :attribute field must be a string.', 'string' => 'The :attribute must be a string.',
'timezone' => 'The :attribute field must be a valid timezone.', 'timezone' => 'The :attribute must be a valid timezone.',
'unique' => 'The :attribute has already been taken.', 'unique' => 'The :attribute has already been taken.',
'uploaded' => 'The :attribute failed to upload.', 'uploaded' => 'The :attribute failed to upload.',
'uppercase' => 'The :attribute field must be uppercase.', 'uppercase' => 'The :attribute field must be uppercase.',
'url' => 'The :attribute field must be a valid URL.', 'url' => 'The :attribute must be a valid URL.',
'ulid' => 'The :attribute field must be a valid ULID.', 'ulid' => 'The :attribute field must be a valid ULID.',
'uuid' => 'The :attribute field must be a valid UUID.', 'uuid' => 'The :attribute must be a valid UUID.',
'single' => 'When using :attribute it must be the only parameter in this request body', 'single' => 'When using :attribute it must be the only parameter in this request body',
'onlyCustomOtpWithUri' => 'The uri parameter must be provided alone or only in combination with the \'custom_otp\' parameter', 'onlyCustomOtpWithUri' => 'The uri parameter must be provided alone or only in combination with the \'custom_otp\' parameter',
'IsValidRegex' => 'The :attribute field must be a valid regex pattern.', 'IsValidRegex' => 'The :attribute must be a valid regex pattern.',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@ -184,10 +184,10 @@
'image' => 'Supported format are jpeg, png, bmp, gif, svg, or webp.', 'image' => 'Supported format are jpeg, png, bmp, gif, svg, or webp.',
], ],
'uri' => [ 'uri' => [
'regex' => 'The :attribute field is not a valid otpauth uri.', 'regex' => 'The :attribute is not a valid otpauth uri.',
], ],
'otp_type' => [ 'otp_type' => [
'in' => 'The :attribute field is not supported.', 'in' => 'The :attribute is not supported.',
], ],
'email' => [ 'email' => [
'exists' => 'Не е намерен акаунт с този имейл.', 'exists' => 'Не е намерен акаунт с този имейл.',
@ -195,13 +195,13 @@
'IsValidEmailList' => 'All emails must be valid and separated with a pipe' 'IsValidEmailList' => 'All emails must be valid and separated with a pipe'
], ],
'secret' => [ 'secret' => [
'isBase32Encoded' => 'The :attribute field must be a base32 encoded string.', 'isBase32Encoded' => 'The :attribute must be a base32 encoded string.',
], ],
'account' => [ 'account' => [
'regex' => 'The :attribute field must not contain colon.', 'regex' => 'The :attribute must not contain colon.',
], ],
'service' => [ 'service' => [
'regex' => 'The :attribute field must not contain colon.', 'regex' => 'The :attribute must not contain colon.',
], ],
'label' => [ 'label' => [
'required' => 'Адресът трябва да има етикет.', 'required' => 'Адресът трябва да има етикет.',

View File

@ -13,115 +13,115 @@
| |
*/ */
'accepted' => 'The :attribute field must be accepted.', 'accepted' => ':attribute muss akzeptiert werden.',
'accepted_if' => 'The :attribute field must be accepted when :other is :value.', 'accepted_if' => 'Das :attribute muss akzeptiert werden, wenn :other :value ist.',
'active_url' => 'The :attribute field must be a valid URL.', 'active_url' => ':attribute ist keine gültige Internet-Adresse.',
'after' => 'The :attribute field must be a date after :date.', 'after' => ':attribute muss ein Datum nach dem :date sein.',
'after_or_equal' => 'The :attribute field must be a date after or equal to :date.', 'after_or_equal' => ':attribute muss ein Datum nach dem :date oder gleich dem :date sein.',
'alpha' => 'The :attribute field must only contain letters.', 'alpha' => 'Das :attribute Feld darf nur Buchstaben enthalten.',
'alpha_dash' => 'The :attribute field must only contain letters, numbers, dashes, and underscores.', 'alpha_dash' => 'Das :attribute Feld darf nur Buchstaben, Ziffern, Bindestriche und Unterstriche enthalten.',
'alpha_num' => 'The :attribute field must only contain letters and numbers.', 'alpha_num' => 'Das :attribute Feld darf nur aus Zeichen und Nummern bestehen.',
'array' => 'The :attribute field must be an array.', 'array' => ':attribute muss ein Array sein.',
'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.', 'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.',
'before' => 'The :attribute field must be a date before :date.', 'before' => ':attribute muss ein Datum vor dem :date sein.',
'before_or_equal' => 'The :attribute field must be a date before or equal to :date.', 'before_or_equal' => ':attribute muss ein Datum vor dem :date oder gleich dem :date sein.',
'between' => [ 'between' => [
'array' => 'The :attribute field must have between :min and :max items.', 'array' => ':attribute muss zwischen :min & :max Elemente haben.',
'file' => 'The :attribute field must be between :min and :max kilobytes.', 'file' => ':attribute muss zwischen :min & :max Kilobytes groß sein.',
'numeric' => 'The :attribute field must be between :min and :max.', 'numeric' => ':attribute muss zwischen :min & :max liegen.',
'string' => 'The :attribute field must be between :min and :max characters.', 'string' => ':attribute muss zwischen :min & :max Zeichen lang sein.',
], ],
'boolean' => ':attribute muss entweder \'true\' oder \'false\' sein.', 'boolean' => ':attribute muss entweder \'true\' oder \'false\' sein.',
'can' => 'The :attribute field contains an unauthorized value.', 'can' => 'The :attribute field contains an unauthorized value.',
'confirmed' => 'The :attribute field confirmation does not match.', 'confirmed' => ':attribute stimmt nicht mit der Bestätigung überein.',
'contains' => 'The :attribute field is missing a required value.', 'contains' => 'The :attribute field is missing a required value.',
'current_password' => 'Das Passwort ist falsch.', 'current_password' => 'Das Passwort ist falsch.',
'date' => 'The :attribute field must be a valid date.', 'date' => ':attribute muss ein gültiges Datum sein.',
'date_equals' => 'The :attribute field must be a date equal to :date.', 'date_equals' => ':attribute muss ein Datum gleich :date sein.',
'date_format' => 'The :attribute field must match the format :format.', 'date_format' => ':attribute entspricht nicht dem gültigen Format für :format.',
'decimal' => 'The :attribute field must have :decimal decimal places.', 'decimal' => 'The :attribute field must have :decimal decimal places.',
'declined' => 'The :attribute field must be declined.', 'declined' => 'Das :attribute muss abgelehnt werden.',
'declined_if' => 'The :attribute field must be declined when :other is :value.', 'declined_if' => 'Das :attribute muss abgelehnt werden, wenn :other :value ist.',
'different' => 'The :attribute field and :other must be different.', 'different' => ':attribute und :other müssen sich unterscheiden.',
'digits' => 'The :attribute field must be :digits digits.', 'digits' => ':attribute muss :digits Stellen haben.',
'digits_between' => 'The :attribute field must be between :min and :max digits.', 'digits_between' => ':attribute muss zwischen :min und :max Stellen haben.',
'dimensions' => 'The :attribute field has invalid image dimensions.', 'dimensions' => ':attribute hat ungültige Bildabmessungen.',
'distinct' => ':attribute beinhaltet einen bereits vorhandenen Wert.', 'distinct' => ':attribute beinhaltet einen bereits vorhandenen Wert.',
'doesnt_end_with' => 'The :attribute field must not end with one of the following: :values.', 'doesnt_end_with' => 'Das :attribute darf nicht mit einem der folgenden Werte enden: :values.',
'doesnt_start_with' => 'The :attribute field must not start with one of the following: :values.', 'doesnt_start_with' => 'Das :attribute Feld darf nicht mit einem der folgenden Werte beginnen: :values.',
'email' => 'The :attribute field must be a valid email address.', 'email' => ':attribute muss eine gültige E-Mail-Adresse sein.',
'ends_with' => 'The :attribute field must end with one of the following: :values.', 'ends_with' => ':attribute muss eine der folgenden Endungen aufweisen: :values',
'enum' => 'Der gewählte Wert für :attribute ist ungültig.', 'enum' => 'Der gewählte Wert für :attribute ist ungültig.',
'exists' => 'Der gewählte Wert für :attribute ist ungültig.', 'exists' => 'Der gewählte Wert für :attribute ist ungültig.',
'extensions' => 'The :attribute field must have one of the following extensions: :values.', 'extensions' => 'The :attribute field must have one of the following extensions: :values.',
'file' => 'The :attribute field must be a file.', 'file' => ':attribute muss eine Datei sein.',
'filled' => ':attribute muss ausgefüllt sein.', 'filled' => ':attribute muss ausgefüllt sein.',
'gt' => [ 'gt' => [
'array' => 'The :attribute field must have more than :value items.', 'array' => ':attribute muss mehr als :value Elemente haben.',
'file' => 'The :attribute field must be greater than :value kilobytes.', 'file' => ':attribute muss größer als :value Kilobytes sein.',
'numeric' => 'The :attribute field must be greater than :value.', 'numeric' => ':attribute muss größer als :value sein.',
'string' => 'The :attribute field must be greater than :value characters.', 'string' => ':attribute muss länger als :value Zeichen sein.',
], ],
'gte' => [ 'gte' => [
'array' => 'The :attribute field must have :value items or more.', 'array' => ':attribute muss mindestens :value Elemente haben.',
'file' => 'The :attribute field must be greater than or equal to :value kilobytes.', 'file' => 'Das :attribute muss größer oder gleich :value Kilobytes groß sein.',
'numeric' => 'The :attribute field must be greater than or equal to :value.', 'numeric' => 'Das :attribute Feld muss größer oder gleich :value sein.',
'string' => 'The :attribute field must be greater than or equal to :value characters.', 'string' => 'Das :attribute Feld muss mindestens :value Zeichen enthalten.',
], ],
'hex_color' => 'The :attribute field must be a valid hexadecimal color.', 'hex_color' => 'The :attribute field must be a valid hexadecimal color.',
'image' => 'The :attribute field must be an image.', 'image' => ':attribute muss ein Bild sein.',
'in' => 'Der gewählte Wert für :attribute ist ungültig.', 'in' => 'Der gewählte Wert für :attribute ist ungültig.',
'in_array' => 'The :attribute field must exist in :other.', 'in_array' => 'Der gewählte Wert für :attribute kommt nicht in :other vor.',
'integer' => 'The :attribute field must be an integer.', 'integer' => ':attribute muss eine ganze Zahl sein.',
'ip' => 'The :attribute field must be a valid IP address.', 'ip' => ':attribute muss eine gültige IP-Adresse sein.',
'ipv4' => 'The :attribute field must be a valid IPv4 address.', 'ipv4' => ':attribute muss eine gültige IPv4-Adresse sein.',
'ipv6' => 'The :attribute field must be a valid IPv6 address.', 'ipv6' => ':attribute muss eine gültige IPv6-Adresse sein.',
'json' => 'The :attribute field must be a valid JSON string.', 'json' => ':attribute muss ein gültiger JSON-String sein.',
'list' => 'The :attribute field must be a list.', 'list' => 'The :attribute field must be a list.',
'lowercase' => 'The :attribute field must be lowercase.', 'lowercase' => 'The :attribute field must be lowercase.',
'lt' => [ 'lt' => [
'array' => 'The :attribute field must have less than :value items.', 'array' => ':attribute muss weniger als :value Elemente haben.',
'file' => 'The :attribute field must be less than :value kilobytes.', 'file' => ':attribute muss kleiner als :value Kilobytes sein.',
'numeric' => 'The :attribute field must be less than :value.', 'numeric' => ':attribute muss kleiner als :value sein.',
'string' => 'The :attribute field must be less than :value characters.', 'string' => ':attribute muss kürzer als :value Zeichen sein.',
], ],
'lte' => [ 'lte' => [
'array' => 'The :attribute field must not have more than :value items.', 'array' => ':attribute darf maximal :value Elemente haben.',
'file' => 'The :attribute field must be less than or equal to :value kilobytes.', 'file' => 'Das :attribute muss kleiner oder gleich :value Kilobytes groß sein.',
'numeric' => 'The :attribute field must be less than or equal to :value.', 'numeric' => 'Das :attribute Feld muss kleiner oder gleich :value sein.',
'string' => 'The :attribute field must be less than or equal to :value characters.', 'string' => 'Das :attribute Feld darf maximal :value Zeichen enthalten.',
], ],
'mac_address' => 'The :attribute field must be a valid MAC address.', 'mac_address' => 'Das :attribute Feld muss eine gültige MAC-Adresse enthalten.',
'max' => [ 'max' => [
'array' => 'The :attribute field must not have more than :max items.', 'array' => 'Das :attribute Feld darf nicht mehr als :max Elemente enthalten.',
'file' => 'The :attribute field must not be greater than :max kilobytes.', 'file' => 'Das :attribute darf nicht größer als :max Kilobytes groß sein.',
'numeric' => 'The :attribute field must not be greater than :max.', 'numeric' => 'Das :attribute Feld darf nicht größer als :max sein.',
'string' => 'The :attribute field must not be greater than :max characters.', 'string' => 'Das :attribute Feld darf nicht mehr als :value Zeichen enthalten.',
], ],
'max_digits' => 'The :attribute field must not have more than :max digits.', 'max_digits' => 'Das :attribute Feld darf nicht mehr als :max Ziffern enthalten.',
'mimes' => 'The :attribute field must be a file of type: :values.', 'mimes' => ':attribute muss den Dateityp :values haben.',
'mimetypes' => 'The :attribute field must be a file of type: :values.', 'mimetypes' => ':attribute muss den Dateityp :values haben.',
'min' => [ 'min' => [
'array' => 'The :attribute field must have at least :min items.', 'array' => ':attribute muss mindestens :min Elemente haben.',
'file' => 'The :attribute field must be at least :min kilobytes.', 'file' => ':attribute muss mindestens :min Kilobytes groß sein.',
'numeric' => 'The :attribute field must be at least :min.', 'numeric' => ':attribute muss mindestens :min sein.',
'string' => 'The :attribute field must be at least :min characters.', 'string' => ':attribute muss mindestens :min Zeichen lang sein.',
], ],
'min_digits' => 'The :attribute field must have at least :min digits.', 'min_digits' => 'Das :attribute Feld muss mindestens :min Ziffern enthalten.',
'missing' => 'The :attribute field must be missing.', 'missing' => 'The :attribute field must be missing.',
'missing_if' => 'The :attribute field must be missing when :other is :value.', 'missing_if' => 'The :attribute field must be missing when :other is :value.',
'missing_unless' => 'The :attribute field must be missing unless :other is :value.', 'missing_unless' => 'The :attribute field must be missing unless :other is :value.',
'missing_with' => 'The :attribute field must be missing when :values is present.', 'missing_with' => 'The :attribute field must be missing when :values is present.',
'missing_with_all' => 'The :attribute field must be missing when :values are present.', 'missing_with_all' => 'The :attribute field must be missing when :values are present.',
'multiple_of' => 'The :attribute field must be a multiple of :value.', 'multiple_of' => 'Das :attribute Feld muss ein Vielfaches von :value sein.',
'not_in' => 'Der gewählte Wert für :attribute ist ungültig.', 'not_in' => 'Der gewählte Wert für :attribute ist ungültig.',
'not_regex' => 'The :attribute field format is invalid.', 'not_regex' => ':attribute hat ein ungültiges Format.',
'numeric' => 'The :attribute field must be a number.', 'numeric' => ':attribute muss eine Zahl sein.',
'password' => [ 'password' => [
'letters' => 'The :attribute field must contain at least one letter.', 'letters' => 'Das :attribute Feld muss mindestens einen Buchstaben enthalten.',
'mixed' => 'The :attribute field must contain at least one uppercase and one lowercase letter.', 'mixed' => 'Das :attribute Feld muss mindestens einen Groß- und einen Kleinbuchstaben enthalten.',
'numbers' => 'The :attribute field must contain at least one number.', 'numbers' => 'Das :attribute Feld muss mindestens eine Zahl enthalten.',
'symbols' => 'The :attribute field must contain at least one symbol.', 'symbols' => 'Das :attribute Feld muss mindestens ein Symbol enthalten.',
'uncompromised' => 'Der im :attribute Feld angegebene Wert wurde in einem Datenleck gefunden. Bitte geben Sie für :attribute einen anderen Wert ein.', 'uncompromised' => 'Der im :attribute Feld angegebene Wert wurde in einem Datenleck gefunden. Bitte geben Sie für :attribute einen anderen Wert ein.',
], ],
'present' => ':attribute muss vorhanden sein.', 'present' => ':attribute muss vorhanden sein.',
@ -133,7 +133,7 @@
'prohibited_if' => 'Das :attribute Feld ist unzulässig, wenn :other den Wert :value entspricht.', 'prohibited_if' => 'Das :attribute Feld ist unzulässig, wenn :other den Wert :value entspricht.',
'prohibited_unless' => 'Das :attribute Feld ist unzulässig, wenn :other nicht den Wert :value annimmt.', 'prohibited_unless' => 'Das :attribute Feld ist unzulässig, wenn :other nicht den Wert :value annimmt.',
'prohibits' => 'Bei gegebenem :attribute Feld ist :other nicht zulässig.', 'prohibits' => 'Bei gegebenem :attribute Feld ist :other nicht zulässig.',
'regex' => 'The :attribute field format is invalid.', 'regex' => ':attribute Format ist ungültig.',
'required' => ':attribute muss ausgefüllt werden.', 'required' => ':attribute muss ausgefüllt werden.',
'required_array_keys' => 'Das Feld :attribute muss Einträge enthalten für: :values.', 'required_array_keys' => 'Das Feld :attribute muss Einträge enthalten für: :values.',
'required_if' => ':attribute muss ausgefüllt werden, wenn :other den Wert :value hat.', 'required_if' => ':attribute muss ausgefüllt werden, wenn :other den Wert :value hat.',
@ -144,26 +144,26 @@
'required_with_all' => ':attribute muss ausgefüllt werden, wenn :values ausgefüllt wurde.', 'required_with_all' => ':attribute muss ausgefüllt werden, wenn :values ausgefüllt wurde.',
'required_without' => ':attribute muss ausgefüllt werden, wenn :values nicht ausgefüllt wurde.', 'required_without' => ':attribute muss ausgefüllt werden, wenn :values nicht ausgefüllt wurde.',
'required_without_all' => ':attribute muss ausgefüllt werden, wenn keines der Felder :values ausgefüllt wurde.', 'required_without_all' => ':attribute muss ausgefüllt werden, wenn keines der Felder :values ausgefüllt wurde.',
'same' => 'The :attribute field must match :other.', 'same' => ':attribute und :other müssen übereinstimmen.',
'size' => [ 'size' => [
'array' => 'The :attribute field must contain :size items.', 'array' => ':attribute muss genau :size Elemente haben.',
'file' => 'The :attribute field must be :size kilobytes.', 'file' => ':attribute muss :size Kilobyte groß sein.',
'numeric' => 'The :attribute field must be :size.', 'numeric' => ':attribute muss gleich :size sein.',
'string' => 'The :attribute field must be :size characters.', 'string' => ':attribute muss :size Zeichen lang sein.',
], ],
'starts_with' => 'The :attribute field must start with one of the following: :values.', 'starts_with' => ':attribute muss mit einem der folgenden Anfänge aufweisen: :values',
'string' => 'The :attribute field must be a string.', 'string' => ':attribute muss ein String sein.',
'timezone' => 'The :attribute field must be a valid timezone.', 'timezone' => 'Das :attribute Feld muss eine gültige Zeitzone sein.',
'unique' => ':attribute ist bereits vergeben.', 'unique' => ':attribute ist bereits vergeben.',
'uploaded' => ':attribute konnte nicht hochgeladen werden.', 'uploaded' => ':attribute konnte nicht hochgeladen werden.',
'uppercase' => 'The :attribute field must be uppercase.', 'uppercase' => 'The :attribute field must be uppercase.',
'url' => 'The :attribute field must be a valid URL.', 'url' => 'Das :attribute Feld muss eine gültige URL aufweisen.',
'ulid' => 'The :attribute field must be a valid ULID.', 'ulid' => 'The :attribute field must be a valid ULID.',
'uuid' => 'The :attribute field must be a valid UUID.', 'uuid' => ':attribute muss ein UUID sein.',
'single' => 'Bei Verwendung von :attribute muss es der einzige Parameter in diesem Anfragetext sein', 'single' => 'Bei Verwendung von :attribute muss es der einzige Parameter in diesem Anfragetext sein',
'onlyCustomOtpWithUri' => 'Der uri Parameter muss allein oder nur in Kombination mit dem \'custom_otp\' Parameter angegeben werden', 'onlyCustomOtpWithUri' => 'Der uri Parameter muss allein oder nur in Kombination mit dem \'custom_otp\' Parameter angegeben werden',
'IsValidRegex' => 'The :attribute field must be a valid regex pattern.', 'IsValidRegex' => ':attribute muss ein gültiges Regex-Muster sein.',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@ -184,10 +184,10 @@
'image' => 'Unterstützte Formate sind jpeg, png, bmp, gif, svg oder webp.', 'image' => 'Unterstützte Formate sind jpeg, png, bmp, gif, svg oder webp.',
], ],
'uri' => [ 'uri' => [
'regex' => 'The :attribute field is not a valid otpauth uri.', 'regex' => 'Das :attribute Feld enthält kein gültiges otpauth uri.',
], ],
'otp_type' => [ 'otp_type' => [
'in' => 'The :attribute field is not supported.', 'in' => 'Das :attribute Feld wird nicht unterstützt.',
], ],
'email' => [ 'email' => [
'exists' => 'Kein Konto mit dieser E-Mail gefunden.', 'exists' => 'Kein Konto mit dieser E-Mail gefunden.',
@ -195,13 +195,13 @@
'IsValidEmailList' => 'Alle E-Mails müssen gültig und durch eine Pipe getrennt sein' 'IsValidEmailList' => 'Alle E-Mails müssen gültig und durch eine Pipe getrennt sein'
], ],
'secret' => [ 'secret' => [
'isBase32Encoded' => 'The :attribute field must be a base32 encoded string.', 'isBase32Encoded' => 'Das :attribute Feld muss einen Base32 kodierten String enthalten.',
], ],
'account' => [ 'account' => [
'regex' => 'The :attribute field must not contain colon.', 'regex' => 'Das :attribute Feld darf keinen Doppelpunkt enthalten.',
], ],
'service' => [ 'service' => [
'regex' => 'The :attribute field must not contain colon.', 'regex' => 'Das :attribute Feld darf keinen Doppelpunkt enthalten.',
], ],
'label' => [ 'label' => [
'required' => 'Der URI muss ein Label haben.', 'required' => 'Der URI muss ein Label haben.',

View File

@ -13,115 +13,115 @@
| |
*/ */
'accepted' => 'The :attribute field must be accepted.', 'accepted' => ':attribute debe ser aceptado.',
'accepted_if' => 'The :attribute field must be accepted when :other is :value.', 'accepted_if' => ':attribute debe aceptarse cuando :other sea :value.',
'active_url' => 'The :attribute field must be a valid URL.', 'active_url' => ':attribute no es una URL válida.',
'after' => 'The :attribute field must be a date after :date.', 'after' => ':attribute debe ser una fecha posterior a :date.',
'after_or_equal' => 'The :attribute field must be a date after or equal to :date.', 'after_or_equal' => ':attribute debe ser una fecha posterior o igual a :date.',
'alpha' => 'The :attribute field must only contain letters.', 'alpha' => ':attribute solo puede contener letras.',
'alpha_dash' => 'The :attribute field must only contain letters, numbers, dashes, and underscores.', 'alpha_dash' => ':attribute solo puede contener letras, números, guiones y guiones bajos.',
'alpha_num' => 'The :attribute field must only contain letters and numbers.', 'alpha_num' => ':attribute solo puede contener letras y números.',
'array' => 'The :attribute field must be an array.', 'array' => ':attribute debe ser un conjunto de datos.',
'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.', 'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.',
'before' => 'The :attribute field must be a date before :date.', 'before' => ':attribute debe ser una fecha anterior a :date.',
'before_or_equal' => 'The :attribute field must be a date before or equal to :date.', 'before_or_equal' => ':attribute debe ser una fecha anterior o igual a :date.',
'between' => [ 'between' => [
'array' => 'The :attribute field must have between :min and :max items.', 'array' => ':attribute tiene que tener entre :min - :max elementos.',
'file' => 'The :attribute field must be between :min and :max kilobytes.', 'file' => ':attribute debe pesar entre :min - :max kilobytes.',
'numeric' => 'The :attribute field must be between :min and :max.', 'numeric' => ':attribute tiene que estar entre :min - :max.',
'string' => 'The :attribute field must be between :min and :max characters.', 'string' => ':attribute tiene que tener entre :min - :max caracteres.',
], ],
'boolean' => 'El campo :attribute debe tener un valor verdadero o falso.', 'boolean' => 'El campo :attribute debe tener un valor verdadero o falso.',
'can' => 'The :attribute field contains an unauthorized value.', 'can' => 'The :attribute field contains an unauthorized value.',
'confirmed' => 'The :attribute field confirmation does not match.', 'confirmed' => 'La confirmación de :attribute no coincide.',
'contains' => 'The :attribute field is missing a required value.', 'contains' => 'The :attribute field is missing a required value.',
'current_password' => 'La contraseña es incorrecta.', 'current_password' => 'La contraseña es incorrecta.',
'date' => 'The :attribute field must be a valid date.', 'date' => ':attribute no es una fecha válida.',
'date_equals' => 'The :attribute field must be a date equal to :date.', 'date_equals' => ':attribute debe ser una fecha igual a :date.',
'date_format' => 'The :attribute field must match the format :format.', 'date_format' => ':attribute no corresponde al formato :format.',
'decimal' => 'The :attribute field must have :decimal decimal places.', 'decimal' => 'The :attribute field must have :decimal decimal places.',
'declined' => 'The :attribute field must be declined.', 'declined' => ':attribute debe ser rechazado.',
'declined_if' => 'The :attribute field must be declined when :other is :value.', 'declined_if' => ':attribute debe ser rechazado cuando :other sea :value.',
'different' => 'The :attribute field and :other must be different.', 'different' => ':attribute y :other deben ser diferentes.',
'digits' => 'The :attribute field must be :digits digits.', 'digits' => ':attribute debe tener :digits dígitos.',
'digits_between' => 'The :attribute field must be between :min and :max digits.', 'digits_between' => ':attribute debe tener entre :min y :max dígitos.',
'dimensions' => 'The :attribute field has invalid image dimensions.', 'dimensions' => 'Las dimensiones de la imagen :attribute no son válidas.',
'distinct' => 'El campo :attribute contiene un valor duplicado.', 'distinct' => 'El campo :attribute contiene un valor duplicado.',
'doesnt_end_with' => 'The :attribute field must not end with one of the following: :values.', 'doesnt_end_with' => ':attribute no puede finalizar con uno de los siguientes valores: :values.',
'doesnt_start_with' => 'The :attribute field must not start with one of the following: :values.', 'doesnt_start_with' => ':attribute no puede comenzar con uno de los siguientes valores: :values.',
'email' => 'The :attribute field must be a valid email address.', 'email' => ':attribute no es un correo válido.',
'ends_with' => 'The :attribute field must end with one of the following: :values.', 'ends_with' => 'El campo :attribute debe finalizar con uno de los siguientes valores: :values',
'enum' => ':attribute no tiene el formato adecuado.', 'enum' => ':attribute no tiene el formato adecuado.',
'exists' => ':attribute es inválido.', 'exists' => ':attribute es inválido.',
'extensions' => 'The :attribute field must have one of the following extensions: :values.', 'extensions' => 'The :attribute field must have one of the following extensions: :values.',
'file' => 'The :attribute field must be a file.', 'file' => 'El campo :attribute debe ser un archivo.',
'filled' => 'El campo :attribute es obligatorio.', 'filled' => 'El campo :attribute es obligatorio.',
'gt' => [ 'gt' => [
'array' => 'The :attribute field must have more than :value items.', 'array' => 'El campo :attribute debe tener más de :value elementos.',
'file' => 'The :attribute field must be greater than :value kilobytes.', 'file' => 'El campo :attribute debe tener más de :value kilobytes.',
'numeric' => 'The :attribute field must be greater than :value.', 'numeric' => 'El campo :attribute debe ser mayor que :value.',
'string' => 'The :attribute field must be greater than :value characters.', 'string' => 'El campo :attribute debe tener más de :value caracteres.',
], ],
'gte' => [ 'gte' => [
'array' => 'The :attribute field must have :value items or more.', 'array' => 'El campo :attribute debe tener como mínimo :value elementos.',
'file' => 'The :attribute field must be greater than or equal to :value kilobytes.', 'file' => ':attribute debe ser mayor o igual a :value kilobytes.',
'numeric' => 'The :attribute field must be greater than or equal to :value.', 'numeric' => ':attribute debe ser mayor o igual que :value.',
'string' => 'The :attribute field must be greater than or equal to :value characters.', 'string' => ':attribute debe tener al menos :value caracteres.',
], ],
'hex_color' => 'The :attribute field must be a valid hexadecimal color.', 'hex_color' => 'The :attribute field must be a valid hexadecimal color.',
'image' => 'The :attribute field must be an image.', 'image' => ':attribute debe ser una imagen.',
'in' => ':attribute es inválido.', 'in' => ':attribute es inválido.',
'in_array' => 'The :attribute field must exist in :other.', 'in_array' => 'El campo :attribute no existe en :other.',
'integer' => 'The :attribute field must be an integer.', 'integer' => ':attribute debe ser un número entero.',
'ip' => 'The :attribute field must be a valid IP address.', 'ip' => ':attribute debe ser una dirección IP válida.',
'ipv4' => 'The :attribute field must be a valid IPv4 address.', 'ipv4' => ':attribute debe ser una dirección IPv4 válida.',
'ipv6' => 'The :attribute field must be a valid IPv6 address.', 'ipv6' => ':attribute debe ser una dirección IPv6 válida.',
'json' => 'The :attribute field must be a valid JSON string.', 'json' => 'El campo :attribute debe ser una cadena JSON válida.',
'list' => 'The :attribute field must be a list.', 'list' => 'The :attribute field must be a list.',
'lowercase' => 'The :attribute field must be lowercase.', 'lowercase' => 'The :attribute field must be lowercase.',
'lt' => [ 'lt' => [
'array' => 'The :attribute field must have less than :value items.', 'array' => 'El campo :attribute debe tener menos de :value elementos.',
'file' => 'The :attribute field must be less than :value kilobytes.', 'file' => 'El campo :attribute debe tener menos de :value kilobytes.',
'numeric' => 'The :attribute field must be less than :value.', 'numeric' => 'El campo :attribute debe ser menor que :value.',
'string' => 'The :attribute field must be less than :value characters.', 'string' => 'El campo :attribute debe tener menos de :value caracteres.',
], ],
'lte' => [ 'lte' => [
'array' => 'The :attribute field must not have more than :value items.', 'array' => 'El campo :attribute debe tener como máximo :value elementos.',
'file' => 'The :attribute field must be less than or equal to :value kilobytes.', 'file' => ':attribute debe ser menor o igual que :value kilobytes.',
'numeric' => 'The :attribute field must be less than or equal to :value.', 'numeric' => ':attribute debe ser menor o igual que :value.',
'string' => 'The :attribute field must be less than or equal to :value characters.', 'string' => ':attribute debe tener como máximo :value caracteres.',
], ],
'mac_address' => 'The :attribute field must be a valid MAC address.', 'mac_address' => ':attribute debe ser una dirección MAC válida.',
'max' => [ 'max' => [
'array' => 'The :attribute field must not have more than :max items.', 'array' => 'El :attribute no debe contener más de :max elementos.',
'file' => 'The :attribute field must not be greater than :max kilobytes.', 'file' => ':attribute no puede ser mayor que :max kilobytes.',
'numeric' => 'The :attribute field must not be greater than :max.', 'numeric' => ':attribute no debe ser mayor que :max.',
'string' => 'The :attribute field must not be greater than :max characters.', 'string' => ':attribute no debe contener más de :max caracteres.',
], ],
'max_digits' => 'The :attribute field must not have more than :max digits.', 'max_digits' => ':attribute no debe tener más de :max dígitos.',
'mimes' => 'The :attribute field must be a file of type: :values.', 'mimes' => ':attribute debe ser un archivo con formato: :values.',
'mimetypes' => 'The :attribute field must be a file of type: :values.', 'mimetypes' => ':attribute debe ser un archivo con formato: :values.',
'min' => [ 'min' => [
'array' => 'The :attribute field must have at least :min items.', 'array' => ':attribute debe tener al menos :min elementos.',
'file' => 'The :attribute field must be at least :min kilobytes.', 'file' => 'El tamaño de :attribute debe ser de al menos :min kilobytes.',
'numeric' => 'The :attribute field must be at least :min.', 'numeric' => 'El tamaño de :attribute debe ser de al menos :min.',
'string' => 'The :attribute field must be at least :min characters.', 'string' => ':attribute debe contener al menos :min caracteres.',
], ],
'min_digits' => 'The :attribute field must have at least :min digits.', 'min_digits' => ':attribute debe tener al menos :min dígitos.',
'missing' => 'The :attribute field must be missing.', 'missing' => 'The :attribute field must be missing.',
'missing_if' => 'The :attribute field must be missing when :other is :value.', 'missing_if' => 'The :attribute field must be missing when :other is :value.',
'missing_unless' => 'The :attribute field must be missing unless :other is :value.', 'missing_unless' => 'The :attribute field must be missing unless :other is :value.',
'missing_with' => 'The :attribute field must be missing when :values is present.', 'missing_with' => 'The :attribute field must be missing when :values is present.',
'missing_with_all' => 'The :attribute field must be missing when :values are present.', 'missing_with_all' => 'The :attribute field must be missing when :values are present.',
'multiple_of' => 'The :attribute field must be a multiple of :value.', 'multiple_of' => ':attribute debe ser un múltiplo de :value.',
'not_in' => ':attribute es inválido.', 'not_in' => ':attribute es inválido.',
'not_regex' => 'The :attribute field format is invalid.', 'not_regex' => 'El formato del campo :attribute no es válido.',
'numeric' => 'The :attribute field must be a number.', 'numeric' => ':attribute debe ser numérico.',
'password' => [ 'password' => [
'letters' => 'The :attribute field must contain at least one letter.', 'letters' => ':attribute debe contener al menos una letra.',
'mixed' => 'The :attribute field must contain at least one uppercase and one lowercase letter.', 'mixed' => ':attribute debe contener al menos una mayúscula y una minúscula.',
'numbers' => 'The :attribute field must contain at least one number.', 'numbers' => ':attribute debe contener al menos un número.',
'symbols' => 'The :attribute field must contain at least one symbol.', 'symbols' => ':attribute debe contener al menos un símbolo.',
'uncompromised' => 'El campo :attribute ha aparecido en una fuga de datos. Por favor, elige un nuevo valor.', 'uncompromised' => 'El campo :attribute ha aparecido en una fuga de datos. Por favor, elige un nuevo valor.',
], ],
'present' => 'El campo :attribute debe estar presente.', 'present' => 'El campo :attribute debe estar presente.',
@ -133,7 +133,7 @@
'prohibited_if' => 'El campo :attribute está prohibido cuando :other es :value.', 'prohibited_if' => 'El campo :attribute está prohibido cuando :other es :value.',
'prohibited_unless' => 'El campo :attribute está prohibido a menos que :other sea :values.', 'prohibited_unless' => 'El campo :attribute está prohibido a menos que :other sea :values.',
'prohibits' => 'El campo :attribute prohíbe que :other esté presente.', 'prohibits' => 'El campo :attribute prohíbe que :other esté presente.',
'regex' => 'The :attribute field format is invalid.', 'regex' => 'El formato de :attribute es inválido.',
'required' => 'El campo :attribute es obligatorio.', 'required' => 'El campo :attribute es obligatorio.',
'required_array_keys' => 'El campo :attribute debe contener entradas para: :values.', 'required_array_keys' => 'El campo :attribute debe contener entradas para: :values.',
'required_if' => 'El campo :attribute es obligatorio cuando :other es :value.', 'required_if' => 'El campo :attribute es obligatorio cuando :other es :value.',
@ -144,26 +144,26 @@
'required_with_all' => 'El campo :attribute es obligatorio cuando :values están presentes.', 'required_with_all' => 'El campo :attribute es obligatorio cuando :values están presentes.',
'required_without' => 'El campo :attribute es obligatorio cuando :values no está presente.', 'required_without' => 'El campo :attribute es obligatorio cuando :values no está presente.',
'required_without_all' => 'El campo :attribute es obligatorio cuando ninguno de :values está presente.', 'required_without_all' => 'El campo :attribute es obligatorio cuando ninguno de :values está presente.',
'same' => 'The :attribute field must match :other.', 'same' => ':attribute y :other deben coincidir.',
'size' => [ 'size' => [
'array' => 'The :attribute field must contain :size items.', 'array' => ':attribute debe contener :size elementos.',
'file' => 'The :attribute field must be :size kilobytes.', 'file' => 'El tamaño de :attribute debe ser :size kilobytes.',
'numeric' => 'The :attribute field must be :size.', 'numeric' => 'El tamaño de :attribute debe ser :size.',
'string' => 'The :attribute field must be :size characters.', 'string' => ':attribute debe contener :size caracteres.',
], ],
'starts_with' => 'The :attribute field must start with one of the following: :values.', 'starts_with' => 'El campo :attribute debe comenzar con uno de los siguientes valores: :values',
'string' => 'The :attribute field must be a string.', 'string' => 'El campo :attribute debe ser una cadena de caracteres.',
'timezone' => 'The :attribute field must be a valid timezone.', 'timezone' => ':attribute debe ser una zona horaria válida.',
'unique' => 'El campo :attribute ya ha sido registrado.', 'unique' => 'El campo :attribute ya ha sido registrado.',
'uploaded' => 'Subir :attribute ha fallado.', 'uploaded' => 'Subir :attribute ha fallado.',
'uppercase' => 'The :attribute field must be uppercase.', 'uppercase' => 'The :attribute field must be uppercase.',
'url' => 'The :attribute field must be a valid URL.', 'url' => ':attribute debe ser una URL válida.',
'ulid' => 'The :attribute field must be a valid ULID.', 'ulid' => 'The :attribute field must be a valid ULID.',
'uuid' => 'The :attribute field must be a valid UUID.', 'uuid' => 'El campo :attribute debe ser un UUID válido.',
'single' => 'Cuando se usa :attribute, éste debe ser el único parámetro en este cuerpo de la solicitud', 'single' => 'Cuando se usa :attribute, éste debe ser el único parámetro en este cuerpo de la solicitud',
'onlyCustomOtpWithUri' => 'El parámetro uri debe ser proporcionado solo o sólo en combinación con el parámetro \'custom_otp\'', 'onlyCustomOtpWithUri' => 'El parámetro uri debe ser proporcionado solo o sólo en combinación con el parámetro \'custom_otp\'',
'IsValidRegex' => 'The :attribute field must be a valid regex pattern.', 'IsValidRegex' => 'The :attribute must be a valid regex pattern.',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@ -184,10 +184,10 @@
'image' => 'Los formatos soportados son: jpeg, png, bmp, gif, svg o webp.', 'image' => 'Los formatos soportados son: jpeg, png, bmp, gif, svg o webp.',
], ],
'uri' => [ 'uri' => [
'regex' => 'The :attribute field is not a valid otpauth uri.', 'regex' => ':attribute no es una otpauth uri válida.',
], ],
'otp_type' => [ 'otp_type' => [
'in' => 'The :attribute field is not supported.', 'in' => ':attribute no está soportado.',
], ],
'email' => [ 'email' => [
'exists' => 'No se ha encontrado ninguna cuenta con este correo electrónico.', 'exists' => 'No se ha encontrado ninguna cuenta con este correo electrónico.',
@ -195,13 +195,13 @@
'IsValidEmailList' => 'All emails must be valid and separated with a pipe' 'IsValidEmailList' => 'All emails must be valid and separated with a pipe'
], ],
'secret' => [ 'secret' => [
'isBase32Encoded' => 'The :attribute field must be a base32 encoded string.', 'isBase32Encoded' => ':attribute debe ser una cadena codificada en base32.',
], ],
'account' => [ 'account' => [
'regex' => 'The :attribute field must not contain colon.', 'regex' => ':attribute no debe contener dos puntos.',
], ],
'service' => [ 'service' => [
'regex' => 'The :attribute field must not contain colon.', 'regex' => ':attribute no debe contener dos puntos.',
], ],
'label' => [ 'label' => [
'required' => 'La uri debe tener una etiqueta.', 'required' => 'La uri debe tener una etiqueta.',

View File

@ -13,115 +13,115 @@
| |
*/ */
'accepted' => 'The :attribute field must be accepted.', 'accepted' => ':attribute को स्वीकार करना होगा।',
'accepted_if' => 'The :attribute field must be accepted when :other is :value.', 'accepted_if' => 'जब :other :value हो तो :attribute को स्वीकार करना होगा।',
'active_url' => 'The :attribute field must be a valid URL.', 'active_url' => ':attribute एक वैध URL नहीं है',
'after' => 'The :attribute field must be a date after :date.', 'after' => ':attribute :date के बाद की तारीख होनी चाहिए।',
'after_or_equal' => 'The :attribute field must be a date after or equal to :date.', 'after_or_equal' => ':attribute :date के बाद की या उस के बराबर की तारीख होनी चाहिए।',
'alpha' => 'The :attribute field must only contain letters.', 'alpha' => ':attribute में केवल अक्षर होने चाहिए',
'alpha_dash' => 'The :attribute field must only contain letters, numbers, dashes, and underscores.', 'alpha_dash' => ':attribute में केवल अक्षर, संख्याएँ, डैश और अंडरस्कोर होने चाहिए।',
'alpha_num' => 'The :attribute field must only contain letters and numbers.', 'alpha_num' => ':attribute में केवल अक्षर और संख्याएँ होने चाहिए।',
'array' => 'The :attribute field must be an array.', 'array' => ':attribute एक सरणी होनी चाहिए।',
'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.', 'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.',
'before' => 'The :attribute field must be a date before :date.', 'before' => ':attribute :date के पहले की तारीख होनी चाहिए।',
'before_or_equal' => 'The :attribute field must be a date before or equal to :date.', 'before_or_equal' => ':attribute :date के पहले की या बराबर की तारीख होनी चाहिए।',
'between' => [ 'between' => [
'array' => 'The :attribute field must have between :min and :max items.', 'array' => ':attibute :min और :max आइटम के बीच होनी चाहिए।',
'file' => 'The :attribute field must be between :min and :max kilobytes.', 'file' => ':attibute :min और :max किलोबाइट्स के बीच होनी चाहिए।',
'numeric' => 'The :attribute field must be between :min and :max.', 'numeric' => ':attibute :min और :max के बीच होनी चाहिए।',
'string' => 'The :attribute field must be between :min and :max characters.', 'string' => ':attibute :min और :max अक्षरों के बीच होनी चाहिए।',
], ],
'boolean' => ':attribute फ़ील्ड सही या गलत होनी चाहिए।', 'boolean' => ':attribute फ़ील्ड सही या गलत होनी चाहिए।',
'can' => 'The :attribute field contains an unauthorized value.', 'can' => 'The :attribute field contains an unauthorized value.',
'confirmed' => 'The :attribute field confirmation does not match.', 'confirmed' => ':attribute पुष्टिकरण मेल नहीं खाता।',
'contains' => 'The :attribute field is missing a required value.', 'contains' => 'The :attribute field is missing a required value.',
'current_password' => 'पासवर्ड गलत है।', 'current_password' => 'पासवर्ड गलत है।',
'date' => 'The :attribute field must be a valid date.', 'date' => ':attribute एक वैध तारीख नहीं है',
'date_equals' => 'The :attribute field must be a date equal to :date.', 'date_equals' => ':attribute :date के बराबर तारीख होनी चाहिए',
'date_format' => 'The :attribute field must match the format :format.', 'date_format' => ':attribute :format प्रारूप से मेल नहीं खाती।',
'decimal' => 'The :attribute field must have :decimal decimal places.', 'decimal' => 'The :attribute field must have :decimal decimal places.',
'declined' => 'The :attribute field must be declined.', 'declined' => ':attribute को अस्वीकार किया जाना चाहिए।',
'declined_if' => 'The :attribute field must be declined when :other is :value.', 'declined_if' => 'जब :other :value हो तो :attribute को अस्वीकार किया जाना चाहिए।',
'different' => 'The :attribute field and :other must be different.', 'different' => ':attribute और :other भिन्न होने चाहिए।',
'digits' => 'The :attribute field must be :digits digits.', 'digits' => ':attribute :digits अंकों का होना चाहिए।',
'digits_between' => 'The :attribute field must be between :min and :max digits.', 'digits_between' => ':attibute :min और :max अंकों के बीच होना चाहिए।',
'dimensions' => 'The :attribute field has invalid image dimensions.', 'dimensions' => ':attribute के छवि आयाम मान्य नहीं हैं।',
'distinct' => ':attribute फील्ड में डुप्लिकेट मान है।', 'distinct' => ':attribute फील्ड में डुप्लिकेट मान है।',
'doesnt_end_with' => 'The :attribute field must not end with one of the following: :values.', 'doesnt_end_with' => ':attribute निम्नलिखित में से किसी एक के साथ समाप्त नहीं हो सकता: :मान।',
'doesnt_start_with' => 'The :attribute field must not start with one of the following: :values.', 'doesnt_start_with' => ':attribute निम्नलिखित में से किसी एक के साथ शुरू नहीं हो सकता: :values।',
'email' => 'The :attribute field must be a valid email address.', 'email' => ':attribute एक वैध ईमेल अड्रेस होना चाहिए।',
'ends_with' => 'The :attribute field must end with one of the following: :values.', 'ends_with' => ':attribute निम्नलिखित में से किसी एक के साथ समाप्त होना चाहिए: :values।',
'enum' => 'चुना गया :attribute वैध नहीं है।', 'enum' => 'चुना गया :attribute वैध नहीं है।',
'exists' => 'चुना गया :attribute वैध नहीं है।', 'exists' => 'चुना गया :attribute वैध नहीं है।',
'extensions' => 'The :attribute field must have one of the following extensions: :values.', 'extensions' => 'The :attribute field must have one of the following extensions: :values.',
'file' => 'The :attribute field must be a file.', 'file' => ':attribute एक फ़ाइल होनी चाहिए।',
'filled' => ':attribute के स्थान में एक मान होना चाहिए।', 'filled' => ':attribute के स्थान में एक मान होना चाहिए।',
'gt' => [ 'gt' => [
'array' => 'The :attribute field must have more than :value items.', 'array' => ':attribute में :value से अधिक चीजें होनी चाहिए।',
'file' => 'The :attribute field must be greater than :value kilobytes.', 'file' => ':attribute :value किलोबाइट से बड़ा होना चाहिए।',
'numeric' => 'The :attribute field must be greater than :value.', 'numeric' => ':attribute :value से बड़ा होना चाहिए।',
'string' => 'The :attribute field must be greater than :value characters.', 'string' => ':attribute :value अक्षरों से बड़ा होना चाहिए।',
], ],
'gte' => [ 'gte' => [
'array' => 'The :attribute field must have :value items or more.', 'array' => ':attribute में :value या उससे अधिक चीजें होनी चाहिए।',
'file' => 'The :attribute field must be greater than or equal to :value kilobytes.', 'file' => ':attribute :value किलोबाइट से बड़ा या बराबर होना चाहिए।',
'numeric' => 'The :attribute field must be greater than or equal to :value.', 'numeric' => ':attribute :value से बड़ा या बराबर होना चाहिए।',
'string' => 'The :attribute field must be greater than or equal to :value characters.', 'string' => ':attribute :value अक्षरों से बड़ा या बराबर होना चाहिए।',
], ],
'hex_color' => 'The :attribute field must be a valid hexadecimal color.', 'hex_color' => 'The :attribute field must be a valid hexadecimal color.',
'image' => 'The :attribute field must be an image.', 'image' => ':attribute एक छवि होनी चाहिए।',
'in' => 'चुना गया :attribute वैध नहीं है।', 'in' => 'चुना गया :attribute वैध नहीं है।',
'in_array' => 'The :attribute field must exist in :other.', 'in_array' => ':attribute फील्ड, :other में मौजूद नहीं है।',
'integer' => 'The :attribute field must be an integer.', 'integer' => ':attribute एक पूर्णांक(integer) होना चाहिए।',
'ip' => 'The :attribute field must be a valid IP address.', 'ip' => ':attribute एक मान्य IP पता होना चाहिए।',
'ipv4' => 'The :attribute field must be a valid IPv4 address.', 'ipv4' => ':attribute एक मान्य IPv4 पता होना चाहिए।',
'ipv6' => 'The :attribute field must be a valid IPv6 address.', 'ipv6' => ':attribute एक मान्य IPv6 पता होना चाहिए।',
'json' => 'The :attribute field must be a valid JSON string.', 'json' => ':attribute एक मान्य JSON स्ट्रिंग होना चाहिए।',
'list' => 'The :attribute field must be a list.', 'list' => 'The :attribute field must be a list.',
'lowercase' => 'The :attribute field must be lowercase.', 'lowercase' => 'The :attribute field must be lowercase.',
'lt' => [ 'lt' => [
'array' => 'The :attribute field must have less than :value items.', 'array' => ':attribute में :value से कम चीजें होनी चाहिए।',
'file' => 'The :attribute field must be less than :value kilobytes.', 'file' => ':attribute :value किलोबाइट से कम होना चाहिए।',
'numeric' => 'The :attribute field must be less than :value.', 'numeric' => ':attribute :value से कम होना चाहिए।',
'string' => 'The :attribute field must be less than :value characters.', 'string' => ':attribute :value अक्षरों से कम होना चाहिए।',
], ],
'lte' => [ 'lte' => [
'array' => 'The :attribute field must not have more than :value items.', 'array' => ':attribute में :value से अधिक चीजें नहीं होनी चाहिए।',
'file' => 'The :attribute field must be less than or equal to :value kilobytes.', 'file' => ':attribute :value किलोबाइट से कम या बराबर होना चाहिए।',
'numeric' => 'The :attribute field must be less than or equal to :value.', 'numeric' => ':attribute :value से कम या बराबर होना चाहिए।',
'string' => 'The :attribute field must be less than or equal to :value characters.', 'string' => ':attribute :value अक्षरों से कम या बराबर होना चाहिए।',
], ],
'mac_address' => 'The :attribute field must be a valid MAC address.', 'mac_address' => ':attribute एक मान्य MAC पता होना चाहिए।',
'max' => [ 'max' => [
'array' => 'The :attribute field must not have more than :max items.', 'array' => ':attribute में :max से ज्यादा चीजें नहीं हो सकती हैं।',
'file' => 'The :attribute field must not be greater than :max kilobytes.', 'file' => ':attribute :max किलोबाइट से बड़ा नहीं हो सकता है।',
'numeric' => 'The :attribute field must not be greater than :max.', 'numeric' => ':attribute :max से बड़ा नहीं होना चाहिए।',
'string' => 'The :attribute field must not be greater than :max characters.', 'string' => ':attribute :max अक्षरों से बड़ा नहीं हो सकता है।',
], ],
'max_digits' => 'The :attribute field must not have more than :max digits.', 'max_digits' => ':attribute में :max से ज्यादा अंक नहीं हो सकते हैं।',
'mimes' => 'The :attribute field must be a file of type: :values.', 'mimes' => ':attribute :values टाइप की फाइल होनी चाहिए।',
'mimetypes' => 'The :attribute field must be a file of type: :values.', 'mimetypes' => ':attribute :values टाइप की फाइल होनी चाहिए।',
'min' => [ 'min' => [
'array' => 'The :attribute field must have at least :min items.', 'array' => ':attribute में कम से कम :min चीजें होनी चाहिए।',
'file' => 'The :attribute field must be at least :min kilobytes.', 'file' => ':attribute कम से कम :min किलोबाइट का होना चाहिए।',
'numeric' => 'The :attribute field must be at least :min.', 'numeric' => ':attribute कम से कम :min होना चाहिए।',
'string' => 'The :attribute field must be at least :min characters.', 'string' => ':attribute में कम से कम :min अक्षर होने चाहिए।',
], ],
'min_digits' => 'The :attribute field must have at least :min digits.', 'min_digits' => ':attribute में कम से कम :min अंक होने चाहिए।',
'missing' => 'The :attribute field must be missing.', 'missing' => 'The :attribute field must be missing.',
'missing_if' => 'The :attribute field must be missing when :other is :value.', 'missing_if' => 'The :attribute field must be missing when :other is :value.',
'missing_unless' => 'The :attribute field must be missing unless :other is :value.', 'missing_unless' => 'The :attribute field must be missing unless :other is :value.',
'missing_with' => 'The :attribute field must be missing when :values is present.', 'missing_with' => 'The :attribute field must be missing when :values is present.',
'missing_with_all' => 'The :attribute field must be missing when :values are present.', 'missing_with_all' => 'The :attribute field must be missing when :values are present.',
'multiple_of' => 'The :attribute field must be a multiple of :value.', 'multiple_of' => ':attribute :values का मल्टिपल होना चाहिए।',
'not_in' => 'चुना गया :attribute वैध नहीं है।', 'not_in' => 'चुना गया :attribute वैध नहीं है।',
'not_regex' => 'The :attribute field format is invalid.', 'not_regex' => ':attribute फॉर्मेट अमान्य है।',
'numeric' => 'The :attribute field must be a number.', 'numeric' => ':attribute एक संख्या होनी चाहिए।',
'password' => [ 'password' => [
'letters' => 'The :attribute field must contain at least one letter.', 'letters' => ':attribute में कम से कम एक अक्षर होना चाहिए।',
'mixed' => 'The :attribute field must contain at least one uppercase and one lowercase letter.', 'mixed' => ':attribute में कम से कम एक uppercase और एक lowecase अक्षर होना चाहिए।',
'numbers' => 'The :attribute field must contain at least one number.', 'numbers' => ':attribute में कम से कम एक अंक होना चाहिए।',
'symbols' => 'The :attribute field must contain at least one symbol.', 'symbols' => ':attribute में कम से कम एक सिम्बल होना चाहिए।',
'uncompromised' => ':attribute एक डेटा लीक में पाया गया है। कृपया एक दूसरा :attribute चुनें।', 'uncompromised' => ':attribute एक डेटा लीक में पाया गया है। कृपया एक दूसरा :attribute चुनें।',
], ],
'present' => ':attribute फील्ड मौजूद होना चाहिए।', 'present' => ':attribute फील्ड मौजूद होना चाहिए।',
@ -133,7 +133,7 @@
'prohibited_if' => 'जब :other :value हो तो :attribute फील्ड निषिद्ध है।', 'prohibited_if' => 'जब :other :value हो तो :attribute फील्ड निषिद्ध है।',
'prohibited_unless' => 'यदि :other :values में न हो तो :attribute फील्ड निषिद्ध है।', 'prohibited_unless' => 'यदि :other :values में न हो तो :attribute फील्ड निषिद्ध है।',
'prohibits' => ':attribute फील्ड :other के प्रस्तुत होने को निषेध करता है।', 'prohibits' => ':attribute फील्ड :other के प्रस्तुत होने को निषेध करता है।',
'regex' => 'The :attribute field format is invalid.', 'regex' => ':attribute का फॉर्मैट अवैध है।',
'required' => ':attribute फील्ड की आवश्यकता है।', 'required' => ':attribute फील्ड की आवश्यकता है।',
'required_array_keys' => ':attribute फील्ड में :values की प्रविष्टियाँ होनी चाहिए।', 'required_array_keys' => ':attribute फील्ड में :values की प्रविष्टियाँ होनी चाहिए।',
'required_if' => 'जब :other :value हो तो :attribute फील्ड आवश्यक है।', 'required_if' => 'जब :other :value हो तो :attribute फील्ड आवश्यक है।',
@ -144,26 +144,26 @@
'required_with_all' => 'जब :values प्रस्तुत हो तो :attribute फील्ड आवश्यक है।', 'required_with_all' => 'जब :values प्रस्तुत हो तो :attribute फील्ड आवश्यक है।',
'required_without' => 'जब :values प्रस्तुत न हो तो :attribute फील्ड आवश्यक है।', 'required_without' => 'जब :values प्रस्तुत न हो तो :attribute फील्ड आवश्यक है।',
'required_without_all' => 'जब :values में से कोई भी प्रस्तुत न हो तो :attribute फील्ड आवश्यक है।', 'required_without_all' => 'जब :values में से कोई भी प्रस्तुत न हो तो :attribute फील्ड आवश्यक है।',
'same' => 'The :attribute field must match :other.', 'same' => ':attribute और :other मैच करना चाहिए।',
'size' => [ 'size' => [
'array' => 'The :attribute field must contain :size items.', 'array' => ':attribute में :size आइटम होने चाहिए।',
'file' => 'The :attribute field must be :size kilobytes.', 'file' => ':attribute :size किलोबाइट्स का होना चाहिए।',
'numeric' => 'The :attribute field must be :size.', 'numeric' => ':attribute :size का होना चाहिए।',
'string' => 'The :attribute field must be :size characters.', 'string' => ':attribute :size अक्षर का होना चाहिए।',
], ],
'starts_with' => 'The :attribute field must start with one of the following: :values.', 'starts_with' => ':attribute निम्नलिखित में से किसी एक के साथ शुरू नहीं हो सकता: :values।',
'string' => 'The :attribute field must be a string.', 'string' => ':attribute एक स्ट्रिंग होनी चाहिए।',
'timezone' => 'The :attribute field must be a valid timezone.', 'timezone' => ':attribute एक मान्य टाइम जोन होना चाहिए।',
'unique' => ':attribute को पहले ही उपयोग में लिया जा चुका है।', 'unique' => ':attribute को पहले ही उपयोग में लिया जा चुका है।',
'uploaded' => ':attribute अपलोड होने में असफल रहा।', 'uploaded' => ':attribute अपलोड होने में असफल रहा।',
'uppercase' => 'The :attribute field must be uppercase.', 'uppercase' => 'The :attribute field must be uppercase.',
'url' => 'The :attribute field must be a valid URL.', 'url' => ':attribute एक मान्य URL होना चाहिए।',
'ulid' => 'The :attribute field must be a valid ULID.', 'ulid' => 'The :attribute field must be a valid ULID.',
'uuid' => 'The :attribute field must be a valid UUID.', 'uuid' => ':attribute एक मान्य UUID होना चाहिए।',
'single' => ':attribute का उपयोग करते समय वह इस request के body में एकमात्र पैरामीटर होना चाहिए', 'single' => ':attribute का उपयोग करते समय वह इस request के body में एकमात्र पैरामीटर होना चाहिए',
'onlyCustomOtpWithUri' => 'URI पैरामीटर अकेले या केवल \'custom_otp\' पैरामीटर के संयोजन में प्रदान किया जाना चाहिए', 'onlyCustomOtpWithUri' => 'URI पैरामीटर अकेले या केवल \'custom_otp\' पैरामीटर के संयोजन में प्रदान किया जाना चाहिए',
'IsValidRegex' => 'The :attribute field must be a valid regex pattern.', 'IsValidRegex' => 'The :attribute must be a valid regex pattern.',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@ -184,10 +184,10 @@
'image' => 'jpeg, png, bmp, gif, svg, या webp ही समर्थित प्रारूप हैं', 'image' => 'jpeg, png, bmp, gif, svg, या webp ही समर्थित प्रारूप हैं',
], ],
'uri' => [ 'uri' => [
'regex' => 'The :attribute field is not a valid otpauth uri.', 'regex' => ':attribute एक वैध OTPAuth URI नहीं है।',
], ],
'otp_type' => [ 'otp_type' => [
'in' => 'The :attribute field is not supported.', 'in' => ':attribute समर्थित नहीं है।',
], ],
'email' => [ 'email' => [
'exists' => 'इस ईमेल का कोई अकाउंट नहीं पाया गया।', 'exists' => 'इस ईमेल का कोई अकाउंट नहीं पाया गया।',
@ -195,13 +195,13 @@
'IsValidEmailList' => 'सभी ईमेल वैध होने चाहिए और पाइप सिम्बल (|) से अलग किए जाने चाहिए' 'IsValidEmailList' => 'सभी ईमेल वैध होने चाहिए और पाइप सिम्बल (|) से अलग किए जाने चाहिए'
], ],
'secret' => [ 'secret' => [
'isBase32Encoded' => 'The :attribute field must be a base32 encoded string.', 'isBase32Encoded' => ':attribute base32 कोडिंग में बनाया हुआ स्ट्रिंग होना चाहिए।',
], ],
'account' => [ 'account' => [
'regex' => 'The :attribute field must not contain colon.', 'regex' => ':attribute में कोलन नहीं होना चाहिए।',
], ],
'service' => [ 'service' => [
'regex' => 'The :attribute field must not contain colon.', 'regex' => ':attribute में कोलन नहीं होना चाहिए।',
], ],
'label' => [ 'label' => [
'required' => 'URI में लेबल होना चाहिए।', 'required' => 'URI में लेबल होना चाहिए।',

View File

@ -13,115 +13,115 @@
| |
*/ */
'accepted' => 'The :attribute field must be accepted.', 'accepted' => ':attribute deve essere accettato.',
'accepted_if' => 'The :attribute field must be accepted when :other is :value.', 'accepted_if' => 'The :attribute must be accepted when :other is :value.',
'active_url' => 'The :attribute field must be a valid URL.', 'active_url' => ':attribute non è un URL valido.',
'after' => 'The :attribute field must be a date after :date.', 'after' => ':attribute deve essere una data successiva al :date.',
'after_or_equal' => 'The :attribute field must be a date after or equal to :date.', 'after_or_equal' => ':attribute deve essere una data successiva o uguale al :date.',
'alpha' => 'The :attribute field must only contain letters.', 'alpha' => 'The :attribute must only contain letters.',
'alpha_dash' => 'The :attribute field must only contain letters, numbers, dashes, and underscores.', 'alpha_dash' => 'The :attribute must only contain letters, numbers, dashes and underscores.',
'alpha_num' => 'The :attribute field must only contain letters and numbers.', 'alpha_num' => 'The :attribute must only contain letters and numbers.',
'array' => 'The :attribute field must be an array.', 'array' => ':attribute deve essere un array.',
'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.', 'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.',
'before' => 'The :attribute field must be a date before :date.', 'before' => ':attribute deve essere una data precedente al :date.',
'before_or_equal' => 'The :attribute field must be a date before or equal to :date.', 'before_or_equal' => ':attribute deve essere una data precedente o uguale al :date.',
'between' => [ 'between' => [
'array' => 'The :attribute field must have between :min and :max items.', 'array' => ':attribute deve avere tra :min - :max elementi.',
'file' => 'The :attribute field must be between :min and :max kilobytes.', 'file' => ':attribute deve trovarsi tra :min - :max kilobyte.',
'numeric' => 'The :attribute field must be between :min and :max.', 'numeric' => ':attribute deve trovarsi tra :min - :max.',
'string' => 'The :attribute field must be between :min and :max characters.', 'string' => ':attribute deve trovarsi tra :min - :max caratteri.',
], ],
'boolean' => 'Il campo :attribute deve essere vero o falso.', 'boolean' => 'Il campo :attribute deve essere vero o falso.',
'can' => 'The :attribute field contains an unauthorized value.', 'can' => 'The :attribute field contains an unauthorized value.',
'confirmed' => 'The :attribute field confirmation does not match.', 'confirmed' => 'Il campo di conferma per :attribute non coincide.',
'contains' => 'The :attribute field is missing a required value.', 'contains' => 'The :attribute field is missing a required value.',
'current_password' => 'The password is incorrect.', 'current_password' => 'The password is incorrect.',
'date' => 'The :attribute field must be a valid date.', 'date' => ':attribute non è una data valida.',
'date_equals' => 'The :attribute field must be a date equal to :date.', 'date_equals' => ':attribute deve essere una data e uguale a :date.',
'date_format' => 'The :attribute field must match the format :format.', 'date_format' => ':attribute non coincide con il formato :format.',
'decimal' => 'The :attribute field must have :decimal decimal places.', 'decimal' => 'The :attribute field must have :decimal decimal places.',
'declined' => 'The :attribute field must be declined.', 'declined' => 'The :attribute must be declined.',
'declined_if' => 'The :attribute field must be declined when :other is :value.', 'declined_if' => 'The :attribute must be declined when :other is :value.',
'different' => 'The :attribute field and :other must be different.', 'different' => ':attribute e :other devono essere differenti.',
'digits' => 'The :attribute field must be :digits digits.', 'digits' => ':attribute deve essere di :digits cifre.',
'digits_between' => 'The :attribute field must be between :min and :max digits.', 'digits_between' => ':attribute deve essere tra :min e :max cifre.',
'dimensions' => 'The :attribute field has invalid image dimensions.', 'dimensions' => 'Le dimensioni dell\'immagine di :attribute non sono valide.',
'distinct' => ':attribute contiene un valore duplicato.', 'distinct' => ':attribute contiene un valore duplicato.',
'doesnt_end_with' => 'The :attribute field must not end with one of the following: :values.', 'doesnt_end_with' => 'The :attribute may not end with one of the following: :values.',
'doesnt_start_with' => 'The :attribute field must not start with one of the following: :values.', 'doesnt_start_with' => 'The :attribute may not start with one of the following: :values.',
'email' => 'The :attribute field must be a valid email address.', 'email' => ':attribute non è valido.',
'ends_with' => 'The :attribute field must end with one of the following: :values.', 'ends_with' => ':attribute deve finire con uno dei seguenti valori: :values',
'enum' => 'The selected :attribute is invalid.', 'enum' => 'The selected :attribute is invalid.',
'exists' => ':attribute selezionato non è valido.', 'exists' => ':attribute selezionato non è valido.',
'extensions' => 'The :attribute field must have one of the following extensions: :values.', 'extensions' => 'The :attribute field must have one of the following extensions: :values.',
'file' => 'The :attribute field must be a file.', 'file' => ':attribute deve essere un file.',
'filled' => 'Il campo :attribute deve contenere un valore.', 'filled' => 'Il campo :attribute deve contenere un valore.',
'gt' => [ 'gt' => [
'array' => 'The :attribute field must have more than :value items.', 'array' => ':attribute deve contenere più di :value elementi.',
'file' => 'The :attribute field must be greater than :value kilobytes.', 'file' => ':attribute deve essere maggiore di :value kilobyte.',
'numeric' => 'The :attribute field must be greater than :value.', 'numeric' => ':attribute deve essere maggiore di :value.',
'string' => 'The :attribute field must be greater than :value characters.', 'string' => ':attribute deve contenere più di :value caratteri.',
], ],
'gte' => [ 'gte' => [
'array' => 'The :attribute field must have :value items or more.', 'array' => ':attribute deve contenere un numero di elementi uguale o maggiore di :value.',
'file' => 'The :attribute field must be greater than or equal to :value kilobytes.', 'file' => 'The :attribute must be greater than or equal to :value kilobytes.',
'numeric' => 'The :attribute field must be greater than or equal to :value.', 'numeric' => 'The :attribute must be greater than or equal to :value.',
'string' => 'The :attribute field must be greater than or equal to :value characters.', 'string' => 'The :attribute must be greater than or equal to :value characters.',
], ],
'hex_color' => 'The :attribute field must be a valid hexadecimal color.', 'hex_color' => 'The :attribute field must be a valid hexadecimal color.',
'image' => 'The :attribute field must be an image.', 'image' => ':attribute deve essere un\'immagine.',
'in' => ':attribute selezionato non è valido.', 'in' => ':attribute selezionato non è valido.',
'in_array' => 'The :attribute field must exist in :other.', 'in_array' => 'Il valore del campo :attribute non esiste in :other.',
'integer' => 'The :attribute field must be an integer.', 'integer' => ':attribute deve essere un numero intero.',
'ip' => 'The :attribute field must be a valid IP address.', 'ip' => ':attribute deve essere un indirizzo IP valido.',
'ipv4' => 'The :attribute field must be a valid IPv4 address.', 'ipv4' => ':attribute deve essere un indirizzo IPv4 valido.',
'ipv6' => 'The :attribute field must be a valid IPv6 address.', 'ipv6' => ':attribute deve essere un indirizzo IPv6 valido.',
'json' => 'The :attribute field must be a valid JSON string.', 'json' => ':attribute deve essere una stringa JSON valida.',
'list' => 'The :attribute field must be a list.', 'list' => 'The :attribute field must be a list.',
'lowercase' => 'The :attribute field must be lowercase.', 'lowercase' => 'The :attribute field must be lowercase.',
'lt' => [ 'lt' => [
'array' => 'The :attribute field must have less than :value items.', 'array' => ':attribute deve contenere meno di :value elementi.',
'file' => 'The :attribute field must be less than :value kilobytes.', 'file' => ':attribute deve essere minore di :value kilobyte.',
'numeric' => 'The :attribute field must be less than :value.', 'numeric' => ':attribute deve essere minore di :value.',
'string' => 'The :attribute field must be less than :value characters.', 'string' => ':attribute deve contenere meno di :value caratteri.',
], ],
'lte' => [ 'lte' => [
'array' => 'The :attribute field must not have more than :value items.', 'array' => ':attribute deve contenere un numero di elementi minore o uguale a :value.',
'file' => 'The :attribute field must be less than or equal to :value kilobytes.', 'file' => 'The :attribute must be less than or equal to :value kilobytes.',
'numeric' => 'The :attribute field must be less than or equal to :value.', 'numeric' => 'The :attribute must be less than or equal to :value.',
'string' => 'The :attribute field must be less than or equal to :value characters.', 'string' => 'The :attribute must be less than or equal to :value characters.',
], ],
'mac_address' => 'The :attribute field must be a valid MAC address.', 'mac_address' => 'The :attribute must be a valid MAC address.',
'max' => [ 'max' => [
'array' => 'The :attribute field must not have more than :max items.', 'array' => 'The :attribute must not have more than :max items.',
'file' => 'The :attribute field must not be greater than :max kilobytes.', 'file' => 'The :attribute must not be greater than :max kilobytes.',
'numeric' => 'The :attribute field must not be greater than :max.', 'numeric' => 'The :attribute must not be greater than :max.',
'string' => 'The :attribute field must not be greater than :max characters.', 'string' => 'The :attribute must not be greater than :max characters.',
], ],
'max_digits' => 'The :attribute field must not have more than :max digits.', 'max_digits' => 'The :attribute must not have more than :max digits.',
'mimes' => 'The :attribute field must be a file of type: :values.', 'mimes' => ':attribute deve essere del tipo: :values.',
'mimetypes' => 'The :attribute field must be a file of type: :values.', 'mimetypes' => ':attribute deve essere del tipo: :values.',
'min' => [ 'min' => [
'array' => 'The :attribute field must have at least :min items.', 'array' => ':attribute deve avere almeno :min elementi.',
'file' => 'The :attribute field must be at least :min kilobytes.', 'file' => ':attribute deve essere almeno di :min kilobyte.',
'numeric' => 'The :attribute field must be at least :min.', 'numeric' => ':attribute deve essere almeno :min.',
'string' => 'The :attribute field must be at least :min characters.', 'string' => ':attribute deve contenere almeno :min caratteri.',
], ],
'min_digits' => 'The :attribute field must have at least :min digits.', 'min_digits' => 'The :attribute must have at least :min digits.',
'missing' => 'The :attribute field must be missing.', 'missing' => 'The :attribute field must be missing.',
'missing_if' => 'The :attribute field must be missing when :other is :value.', 'missing_if' => 'The :attribute field must be missing when :other is :value.',
'missing_unless' => 'The :attribute field must be missing unless :other is :value.', 'missing_unless' => 'The :attribute field must be missing unless :other is :value.',
'missing_with' => 'The :attribute field must be missing when :values is present.', 'missing_with' => 'The :attribute field must be missing when :values is present.',
'missing_with_all' => 'The :attribute field must be missing when :values are present.', 'missing_with_all' => 'The :attribute field must be missing when :values are present.',
'multiple_of' => 'The :attribute field must be a multiple of :value.', 'multiple_of' => 'The :attribute must be a multiple of :value.',
'not_in' => 'Il valore selezionato per :attribute non è valido.', 'not_in' => 'Il valore selezionato per :attribute non è valido.',
'not_regex' => 'The :attribute field format is invalid.', 'not_regex' => 'Il formato di :attribute non è valido.',
'numeric' => 'The :attribute field must be a number.', 'numeric' => ':attribute deve essere un numero.',
'password' => [ 'password' => [
'letters' => 'The :attribute field must contain at least one letter.', 'letters' => 'The :attribute must contain at least one letter.',
'mixed' => 'The :attribute field must contain at least one uppercase and one lowercase letter.', 'mixed' => 'The :attribute must contain at least one uppercase and one lowercase letter.',
'numbers' => 'The :attribute field must contain at least one number.', 'numbers' => 'The :attribute must contain at least one number.',
'symbols' => 'The :attribute field must contain at least one symbol.', 'symbols' => 'The :attribute must contain at least one symbol.',
'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.', 'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.',
], ],
'present' => 'Il campo :attribute deve essere presente.', 'present' => 'Il campo :attribute deve essere presente.',
@ -133,7 +133,7 @@
'prohibited_if' => 'The :attribute field is prohibited when :other is :value.', 'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.', 'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',
'prohibits' => 'The :attribute field prohibits :other from being present.', 'prohibits' => 'The :attribute field prohibits :other from being present.',
'regex' => 'The :attribute field format is invalid.', 'regex' => 'Il formato del campo :attribute non è valido.',
'required' => 'Il campo :attribute è richiesto.', 'required' => 'Il campo :attribute è richiesto.',
'required_array_keys' => 'The :attribute field must contain entries for: :values.', 'required_array_keys' => 'The :attribute field must contain entries for: :values.',
'required_if' => 'Il campo :attribute è richiesto quando :other è :value.', 'required_if' => 'Il campo :attribute è richiesto quando :other è :value.',
@ -144,26 +144,26 @@
'required_with_all' => 'Il campo :attribute è richiesto quando :values sono presenti.', 'required_with_all' => 'Il campo :attribute è richiesto quando :values sono presenti.',
'required_without' => 'Il campo :attribute è richiesto quando :values non è presente.', 'required_without' => 'Il campo :attribute è richiesto quando :values non è presente.',
'required_without_all' => 'Il campo :attribute è richiesto quando nessuno di :values è presente.', 'required_without_all' => 'Il campo :attribute è richiesto quando nessuno di :values è presente.',
'same' => 'The :attribute field must match :other.', 'same' => ':attribute e :other devono coincidere.',
'size' => [ 'size' => [
'array' => 'The :attribute field must contain :size items.', 'array' => ':attribute deve contenere :size elementi.',
'file' => 'The :attribute field must be :size kilobytes.', 'file' => ':attribute deve essere :size kilobyte.',
'numeric' => 'The :attribute field must be :size.', 'numeric' => ':attribute deve essere :size.',
'string' => 'The :attribute field must be :size characters.', 'string' => ':attribute deve contenere :size caratteri.',
], ],
'starts_with' => 'The :attribute field must start with one of the following: :values.', 'starts_with' => ':attribute deve iniziare con uno dei seguenti: :values',
'string' => 'The :attribute field must be a string.', 'string' => ':attribute deve essere una stringa.',
'timezone' => 'The :attribute field must be a valid timezone.', 'timezone' => 'The :attribute must be a valid timezone.',
'unique' => ':attribute è stato già utilizzato.', 'unique' => ':attribute è stato già utilizzato.',
'uploaded' => ':attribute non è stato caricato.', 'uploaded' => ':attribute non è stato caricato.',
'uppercase' => 'The :attribute field must be uppercase.', 'uppercase' => 'The :attribute field must be uppercase.',
'url' => 'The :attribute field must be a valid URL.', 'url' => 'The :attribute must be a valid URL.',
'ulid' => 'The :attribute field must be a valid ULID.', 'ulid' => 'The :attribute field must be a valid ULID.',
'uuid' => 'The :attribute field must be a valid UUID.', 'uuid' => ':attribute deve essere un UUID valido.',
'single' => 'When using :attribute it must be the only parameter in this request body', 'single' => 'When using :attribute it must be the only parameter in this request body',
'onlyCustomOtpWithUri' => 'The uri parameter must be provided alone or only in combination with the \'custom_otp\' parameter', 'onlyCustomOtpWithUri' => 'The uri parameter must be provided alone or only in combination with the \'custom_otp\' parameter',
'IsValidRegex' => 'The :attribute field must be a valid regex pattern.', 'IsValidRegex' => 'The :attribute must be a valid regex pattern.',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@ -184,10 +184,10 @@
'image' => 'Supported format are jpeg, png, bmp, gif, svg, or webp.', 'image' => 'Supported format are jpeg, png, bmp, gif, svg, or webp.',
], ],
'uri' => [ 'uri' => [
'regex' => 'The :attribute field is not a valid otpauth uri.', 'regex' => 'The :attribute is not a valid otpauth uri.',
], ],
'otp_type' => [ 'otp_type' => [
'in' => 'The :attribute field is not supported.', 'in' => 'The :attribute is not supported.',
], ],
'email' => [ 'email' => [
'exists' => 'No account found using this email.', 'exists' => 'No account found using this email.',
@ -195,13 +195,13 @@
'IsValidEmailList' => 'All emails must be valid and separated with a pipe' 'IsValidEmailList' => 'All emails must be valid and separated with a pipe'
], ],
'secret' => [ 'secret' => [
'isBase32Encoded' => 'The :attribute field must be a base32 encoded string.', 'isBase32Encoded' => 'The :attribute must be a base32 encoded string.',
], ],
'account' => [ 'account' => [
'regex' => 'The :attribute field must not contain colon.', 'regex' => 'The :attribute must not contain colon.',
], ],
'service' => [ 'service' => [
'regex' => 'The :attribute field must not contain colon.', 'regex' => 'The :attribute must not contain colon.',
], ],
'label' => [ 'label' => [
'required' => 'The uri must have a label.', 'required' => 'The uri must have a label.',

View File

@ -13,115 +13,115 @@
| |
*/ */
'accepted' => 'The :attribute field must be accepted.', 'accepted' => ':attributeを承認してください。',
'accepted_if' => 'The :attribute field must be accepted when :other is :value.', 'accepted_if' => ':otherが:valueの場合、:attributeを有効にする必要があります。',
'active_url' => 'The :attribute field must be a valid URL.', 'active_url' => ':attributeは、有効なURLではありません。',
'after' => 'The :attribute field must be a date after :date.', 'after' => ':attributeには、:dateより後の日付を指定してください。',
'after_or_equal' => 'The :attribute field must be a date after or equal to :date.', 'after_or_equal' => ':attributeには、:date以降の日付を指定してください。',
'alpha' => 'The :attribute field must only contain letters.', 'alpha' => ':attributeには、半角英字\'A-Z\', \'a-z\')のみ使用できます。',
'alpha_dash' => 'The :attribute field must only contain letters, numbers, dashes, and underscores.', 'alpha_dash' => ':attributeには、半角の英数字\'A-Z\', \'a-z\', \'0-9\')、ハイフン(-、下線_のみ使用できます。',
'alpha_num' => 'The :attribute field must only contain letters and numbers.', 'alpha_num' => ':attributeには、半角英数字\'A-Z\', \'a-z\', \'0-9\')のみ使用できます。',
'array' => 'The :attribute field must be an array.', 'array' => ':attributeには、配列を指定してください。',
'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.', 'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.',
'before' => 'The :attribute field must be a date before :date.', 'before' => ':attributeには、:dateより前の日付を指定してください。',
'before_or_equal' => 'The :attribute field must be a date before or equal to :date.', 'before_or_equal' => ':attributeには、:date以前の日付を指定してください。',
'between' => [ 'between' => [
'array' => 'The :attribute field must have between :min and :max items.', 'array' => ':attributeの項目は、:min個から:max個にしてください。',
'file' => 'The :attribute field must be between :min and :max kilobytes.', 'file' => ':attributeには、:min KBから:max KBまでのサイズのファイルを指定してください。',
'numeric' => 'The :attribute field must be between :min and :max.', 'numeric' => ':attributeには、:minから、:maxまでの数字を指定してください。',
'string' => 'The :attribute field must be between :min and :max characters.', 'string' => ':attributeは、:min文字から:max文字にしてください。',
], ],
'boolean' => ':attributeには、\'true\'か\'false\'を指定してください。', 'boolean' => ':attributeには、\'true\'か\'false\'を指定してください。',
'can' => 'The :attribute field contains an unauthorized value.', 'can' => 'The :attribute field contains an unauthorized value.',
'confirmed' => 'The :attribute field confirmation does not match.', 'confirmed' => ':attributeと:attribute確認が一致しません。',
'contains' => 'The :attribute field is missing a required value.', 'contains' => 'The :attribute field is missing a required value.',
'current_password' => 'パスワードが違います。', 'current_password' => 'パスワードが違います。',
'date' => 'The :attribute field must be a valid date.', 'date' => ':attributeは、正しい日付ではありません。',
'date_equals' => 'The :attribute field must be a date equal to :date.', 'date_equals' => ':attributeは:dateに等しい日付でなければなりません。',
'date_format' => 'The :attribute field must match the format :format.', 'date_format' => ':attributeの形式は、\':format\'と合いません。',
'decimal' => 'The :attribute field must have :decimal decimal places.', 'decimal' => 'The :attribute field must have :decimal decimal places.',
'declined' => 'The :attribute field must be declined.', 'declined' => ':attributeを拒否する必要があります。',
'declined_if' => 'The :attribute field must be declined when :other is :value.', 'declined_if' => ':otherが:valueの場合、:attributeを無効にする必要があります。',
'different' => 'The :attribute field and :other must be different.', 'different' => ':attributeと:otherには、異なるものを指定してください。',
'digits' => 'The :attribute field must be :digits digits.', 'digits' => ':attributeは、:digits桁にしてください。',
'digits_between' => 'The :attribute field must be between :min and :max digits.', 'digits_between' => ':attributeは、:min桁から:max桁にしてください。',
'dimensions' => 'The :attribute field has invalid image dimensions.', 'dimensions' => ':attributeの画像サイズが無効です',
'distinct' => ':attributeの値が重複しています。', 'distinct' => ':attributeの値が重複しています。',
'doesnt_end_with' => 'The :attribute field must not end with one of the following: :values.', 'doesnt_end_with' => ':attributeは「:values」以外で終わる必要があります。',
'doesnt_start_with' => 'The :attribute field must not start with one of the following: :values.', 'doesnt_start_with' => ':attributeは「:values」以外で始まる必要があります。',
'email' => 'The :attribute field must be a valid email address.', 'email' => ':attributeは、有効なメールアドレス形式で指定してください。',
'ends_with' => 'The :attribute field must end with one of the following: :values.', 'ends_with' => ':attributeは、次のうちのいずれかで終わらなければなりません。: :values',
'enum' => '選択した:attributeは無効です。', 'enum' => '選択した:attributeは無効です。',
'exists' => '選択された:attributeは、有効ではありません。', 'exists' => '選択された:attributeは、有効ではありません。',
'extensions' => 'The :attribute field must have one of the following extensions: :values.', 'extensions' => 'The :attribute field must have one of the following extensions: :values.',
'file' => 'The :attribute field must be a file.', 'file' => ':attributeはファイルでなければいけません。',
'filled' => ':attributeは必須です。', 'filled' => ':attributeは必須です。',
'gt' => [ 'gt' => [
'array' => 'The :attribute field must have more than :value items.', 'array' => ':attributeの項目数は、:value個より大きくなければなりません。',
'file' => 'The :attribute field must be greater than :value kilobytes.', 'file' => ':attributeは、:value KBより大きくなければなりません。',
'numeric' => 'The :attribute field must be greater than :value.', 'numeric' => ':attributeは、:valueより大きくなければなりません。',
'string' => 'The :attribute field must be greater than :value characters.', 'string' => ':attributeは、:value文字より大きくなければなりません。',
], ],
'gte' => [ 'gte' => [
'array' => 'The :attribute field must have :value items or more.', 'array' => ':attributeの項目数は、:value個以上でなければなりません。',
'file' => 'The :attribute field must be greater than or equal to :value kilobytes.', 'file' => ':attributeは :value キロバイト以上でなければなりません。',
'numeric' => 'The :attribute field must be greater than or equal to :value.', 'numeric' => ':attributeは :value 以上でなければなりません。',
'string' => 'The :attribute field must be greater than or equal to :value characters.', 'string' => ':attributeは :value 文字以上でなければなりません。',
], ],
'hex_color' => 'The :attribute field must be a valid hexadecimal color.', 'hex_color' => 'The :attribute field must be a valid hexadecimal color.',
'image' => 'The :attribute field must be an image.', 'image' => ':attributeには、画像を指定してください。',
'in' => '選択された:attributeは、有効ではありません。', 'in' => '選択された:attributeは、有効ではありません。',
'in_array' => 'The :attribute field must exist in :other.', 'in_array' => ':attributeが:otherに存在しません。',
'integer' => 'The :attribute field must be an integer.', 'integer' => ':attributeには、整数を指定してください。',
'ip' => 'The :attribute field must be a valid IP address.', 'ip' => ':attributeには、有効なIPアドレスを指定してください。',
'ipv4' => 'The :attribute field must be a valid IPv4 address.', 'ipv4' => ':attributeはIPv4アドレスを指定してください。',
'ipv6' => 'The :attribute field must be a valid IPv6 address.', 'ipv6' => ':attributeはIPv6アドレスを指定してください。',
'json' => 'The :attribute field must be a valid JSON string.', 'json' => ':attributeには、有効なJSON文字列を指定してください。',
'list' => 'The :attribute field must be a list.', 'list' => 'The :attribute field must be a list.',
'lowercase' => 'The :attribute field must be lowercase.', 'lowercase' => 'The :attribute field must be lowercase.',
'lt' => [ 'lt' => [
'array' => 'The :attribute field must have less than :value items.', 'array' => ':attributeの項目数は、:value個より小さくなければなりません。',
'file' => 'The :attribute field must be less than :value kilobytes.', 'file' => ':attributeは、:value KBより小さくなければなりません。',
'numeric' => 'The :attribute field must be less than :value.', 'numeric' => ':attributeは、:valueより小さくなければなりません。',
'string' => 'The :attribute field must be less than :value characters.', 'string' => ':attributeは、:value文字より小さくなければなりません。',
], ],
'lte' => [ 'lte' => [
'array' => 'The :attribute field must not have more than :value items.', 'array' => ':attributeの項目数は、:value個以下でなければなりません。',
'file' => 'The :attribute field must be less than or equal to :value kilobytes.', 'file' => ':attributeは :value キロバイト以下でなければなりません。',
'numeric' => 'The :attribute field must be less than or equal to :value.', 'numeric' => ':attributeは :value 以下でなければなりません。',
'string' => 'The :attribute field must be less than or equal to :value characters.', 'string' => ':attributeは :value 文字以下でなければなりません。',
], ],
'mac_address' => 'The :attribute field must be a valid MAC address.', 'mac_address' => ':attributeはMACアドレスを指定してください。',
'max' => [ 'max' => [
'array' => 'The :attribute field must not have more than :max items.', 'array' => ':attributeの項目は、:max 個以下にしてください。',
'file' => 'The :attribute field must not be greater than :max kilobytes.', 'file' => ':attributeは :max キロバイト以下でなければなりません。',
'numeric' => 'The :attribute field must not be greater than :max.', 'numeric' => ':attributeは :max 以下でなければなりません。',
'string' => 'The :attribute field must not be greater than :max characters.', 'string' => ':attributeは :max 文字以下でなければなりません。',
], ],
'max_digits' => 'The :attribute field must not have more than :max digits.', 'max_digits' => ':attributeは :max 桁以下の数字でなければなりません。',
'mimes' => 'The :attribute field must be a file of type: :values.', 'mimes' => ':attributeには、:valuesタイプのファイルを指定してください。',
'mimetypes' => 'The :attribute field must be a file of type: :values.', 'mimetypes' => ':attributeには、:valuesタイプのファイルを指定してください。',
'min' => [ 'min' => [
'array' => 'The :attribute field must have at least :min items.', 'array' => ':attributeの項目は、:min個以上にしてください。',
'file' => 'The :attribute field must be at least :min kilobytes.', 'file' => ':attributeには、:min KB以上のファイルを指定してください。',
'numeric' => 'The :attribute field must be at least :min.', 'numeric' => ':attributeには、:min以上の数字を指定してください。',
'string' => 'The :attribute field must be at least :min characters.', 'string' => ':attributeは、:min文字以上にしてください。',
], ],
'min_digits' => 'The :attribute field must have at least :min digits.', 'min_digits' => ':attributeは :min 桁以上の数字でなければなりません。',
'missing' => 'The :attribute field must be missing.', 'missing' => 'The :attribute field must be missing.',
'missing_if' => 'The :attribute field must be missing when :other is :value.', 'missing_if' => 'The :attribute field must be missing when :other is :value.',
'missing_unless' => 'The :attribute field must be missing unless :other is :value.', 'missing_unless' => 'The :attribute field must be missing unless :other is :value.',
'missing_with' => 'The :attribute field must be missing when :values is present.', 'missing_with' => 'The :attribute field must be missing when :values is present.',
'missing_with_all' => 'The :attribute field must be missing when :values are present.', 'missing_with_all' => 'The :attribute field must be missing when :values are present.',
'multiple_of' => 'The :attribute field must be a multiple of :value.', 'multiple_of' => ':attributeは :value の倍数でなければなりません。',
'not_in' => '選択された:attributeは、有効ではありません。', 'not_in' => '選択された:attributeは、有効ではありません。',
'not_regex' => 'The :attribute field format is invalid.', 'not_regex' => ':attributeの形式が無効です。',
'numeric' => 'The :attribute field must be a number.', 'numeric' => ':attributeには、数字を指定してください。',
'password' => [ 'password' => [
'letters' => 'The :attribute field must contain at least one letter.', 'letters' => ':attributeには、英字を 1 文字以上含める必要があります。',
'mixed' => 'The :attribute field must contain at least one uppercase and one lowercase letter.', 'mixed' => ':attributeには、大文字と小文字をそれぞれ1文字以上含める必要があります。',
'numbers' => 'The :attribute field must contain at least one number.', 'numbers' => ':attributeには、数字を 1 文字以上含める必要があります。',
'symbols' => 'The :attribute field must contain at least one symbol.', 'symbols' => ':attributeには、記号を 1 文字以上含める必要があります。',
'uncompromised' => 'この:attributeはデータ漏洩の対象となった可能性があります。別の:attributeを選んでください。', 'uncompromised' => 'この:attributeはデータ漏洩の対象となった可能性があります。別の:attributeを選んでください。',
], ],
'present' => ':attributeが存在している必要があります。', 'present' => ':attributeが存在している必要があります。',
@ -133,7 +133,7 @@
'prohibited_if' => ':otherが:valueの場合、:attributeは入力しないでください。', 'prohibited_if' => ':otherが:valueの場合、:attributeは入力しないでください。',
'prohibited_unless' => ':otherが:values以外の場合、:attributeは入力しないでください。', 'prohibited_unless' => ':otherが:values以外の場合、:attributeは入力しないでください。',
'prohibits' => ':attributeがある場合、:otherは存在できません。', 'prohibits' => ':attributeがある場合、:otherは存在できません。',
'regex' => 'The :attribute field format is invalid.', 'regex' => ':attributeには、有効な正規表現を指定してください。',
'required' => ':attributeは、必ず指定してください。', 'required' => ':attributeは、必ず指定してください。',
'required_array_keys' => ':attributeには、「:values 」を含める必要があります。', 'required_array_keys' => ':attributeには、「:values 」を含める必要があります。',
'required_if' => ':otherが:valueの場合、:attributeを指定してください。', 'required_if' => ':otherが:valueの場合、:attributeを指定してください。',
@ -144,26 +144,26 @@
'required_with_all' => ':valuesが全て指定されている場合、:attributeも指定してください。', 'required_with_all' => ':valuesが全て指定されている場合、:attributeも指定してください。',
'required_without' => ':valuesが指定されていない場合、:attributeを指定してください。', 'required_without' => ':valuesが指定されていない場合、:attributeを指定してください。',
'required_without_all' => ':valuesが全て指定されていない場合、:attributeを指定してください。', 'required_without_all' => ':valuesが全て指定されていない場合、:attributeを指定してください。',
'same' => 'The :attribute field must match :other.', 'same' => ':attributeと:otherが一致しません。',
'size' => [ 'size' => [
'array' => 'The :attribute field must contain :size items.', 'array' => ':attributeの項目は、:size個にしてください。',
'file' => 'The :attribute field must be :size kilobytes.', 'file' => ':attributeには、:size KBのファイルを指定してください。',
'numeric' => 'The :attribute field must be :size.', 'numeric' => ':attributeには、:sizeを指定してください。',
'string' => 'The :attribute field must be :size characters.', 'string' => ':attributeは、:size文字にしてください。',
], ],
'starts_with' => 'The :attribute field must start with one of the following: :values.', 'starts_with' => ':attributeは、次のいずれかで始まる必要があります。:values',
'string' => 'The :attribute field must be a string.', 'string' => ':attributeには、文字を指定してください。',
'timezone' => 'The :attribute field must be a valid timezone.', 'timezone' => ':attributeには、有効なタイムゾーンを指定してください。',
'unique' => '指定の:attributeは既に使用されています。', 'unique' => '指定の:attributeは既に使用されています。',
'uploaded' => ':attributeのアップロードに失敗しました。', 'uploaded' => ':attributeのアップロードに失敗しました。',
'uppercase' => 'The :attribute field must be uppercase.', 'uppercase' => 'The :attribute field must be uppercase.',
'url' => 'The :attribute field must be a valid URL.', 'url' => ':attributeには、正しいURLを指定してください。',
'ulid' => 'The :attribute field must be a valid ULID.', 'ulid' => 'The :attribute field must be a valid ULID.',
'uuid' => 'The :attribute field must be a valid UUID.', 'uuid' => ':attributeは、有効なUUIDでなければなりません。',
'single' => ':attributeを使用する場合、このリクエスト本文の唯一のパラメータにする必要があります。', 'single' => ':attributeを使用する場合、このリクエスト本文の唯一のパラメータにする必要があります。',
'onlyCustomOtpWithUri' => 'uri パラメータは単独または「custom_otp」パラメータと組み合わせて指定する必要があります。', 'onlyCustomOtpWithUri' => 'uri パラメータは単独または「custom_otp」パラメータと組み合わせて指定する必要があります。',
'IsValidRegex' => 'The :attribute field must be a valid regex pattern.', 'IsValidRegex' => 'The :attribute must be a valid regex pattern.',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@ -184,10 +184,10 @@
'image' => 'サポートされている形式は jpeg, png, bmp, gif, svg, webp です。', 'image' => 'サポートされている形式は jpeg, png, bmp, gif, svg, webp です。',
], ],
'uri' => [ 'uri' => [
'regex' => 'The :attribute field is not a valid otpauth uri.', 'regex' => ':attributeは、有効な otpauth uri ではありません。',
], ],
'otp_type' => [ 'otp_type' => [
'in' => 'The :attribute field is not supported.', 'in' => ':attributeはサポートされていません。',
], ],
'email' => [ 'email' => [
'exists' => 'このメールアドレスを使用するアカウントは見つかりませんでした。', 'exists' => 'このメールアドレスを使用するアカウントは見つかりませんでした。',
@ -195,13 +195,13 @@
'IsValidEmailList' => 'すべてのアドレスは有効かつ、パイプ (|) で区切られている必要があります' 'IsValidEmailList' => 'すべてのアドレスは有効かつ、パイプ (|) で区切られている必要があります'
], ],
'secret' => [ 'secret' => [
'isBase32Encoded' => 'The :attribute field must be a base32 encoded string.', 'isBase32Encoded' => ':attributeは base32 エンコード文字列を指定してください。',
], ],
'account' => [ 'account' => [
'regex' => 'The :attribute field must not contain colon.', 'regex' => ':attributeにコロンを含めることはできません。',
], ],
'service' => [ 'service' => [
'regex' => 'The :attribute field must not contain colon.', 'regex' => ':attributeにコロンを含めることはできません。',
], ],
'label' => [ 'label' => [
'required' => 'uri にはラベルが必要です。', 'required' => 'uri にはラベルが必要です。',

View File

@ -13,115 +13,115 @@
| |
*/ */
'accepted' => 'The :attribute field must be accepted.', 'accepted' => ':attribute을(를) 동의해주세요.',
'accepted_if' => 'The :attribute field must be accepted when :other is :value.', 'accepted_if' => '":other"가 :value일땐 ":attribute"에 반드시 동의해야 합니다.',
'active_url' => 'The :attribute field must be a valid URL.', 'active_url' => ':attribute은(는) 유효한 URL이 아닙니다.',
'after' => 'The :attribute field must be a date after :date.', 'after' => ':attribute은(는) 반드시 :date 이후 날짜여야 합니다.',
'after_or_equal' => 'The :attribute field must be a date after or equal to :date.', 'after_or_equal' => ':attribute은(는) :date 이후 날짜이거나 같은 날짜여야 합니다.',
'alpha' => 'The :attribute field must only contain letters.', 'alpha' => ':attribute은(는) 문자만 포함할 수 있습니다.',
'alpha_dash' => 'The :attribute field must only contain letters, numbers, dashes, and underscores.', 'alpha_dash' => ':attribute은(는) 영어나 숫자, 하이픈으로만 입력하실 수 있습니다.',
'alpha_num' => 'The :attribute field must only contain letters and numbers.', 'alpha_num' => ':attribute은(는) 문자와 숫자만 포함할 수 있습니다.',
'array' => 'The :attribute field must be an array.', 'array' => ':attribute은(는) 배열이어야 합니다.',
'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.', 'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.',
'before' => 'The :attribute field must be a date before :date.', 'before' => ':attribute은(는) :date 이전의 날짜여야 합니다.',
'before_or_equal' => 'The :attribute field must be a date before or equal to :date.', 'before_or_equal' => ':Attribute은(는) :date 이전 날짜이거나 같은 날짜여야 합니다.',
'between' => [ 'between' => [
'array' => 'The :attribute field must have between :min and :max items.', 'array' => ':attribute은(는) 반드시 :min 과 :max 사이여야 합니다.',
'file' => 'The :attribute field must be between :min and :max kilobytes.', 'file' => ':attribute의 용량은 :min에서 :max KB 사이여야 합니다.',
'numeric' => 'The :attribute field must be between :min and :max.', 'numeric' => ':attribute은(는) :min과 :max 사이의 값이어야 합니다.',
'string' => 'The :attribute field must be between :min and :max characters.', 'string' => ':attribute은(는) 반드시 :min 자에서 :max 자 사이여야 합니다.',
], ],
'boolean' => ':attribute은(는) true 또는 false 이어야 합니다.', 'boolean' => ':attribute은(는) true 또는 false 이어야 합니다.',
'can' => 'The :attribute field contains an unauthorized value.', 'can' => 'The :attribute field contains an unauthorized value.',
'confirmed' => 'The :attribute field confirmation does not match.', 'confirmed' => ':attribute 확인이 일치하지 않습니다.',
'contains' => 'The :attribute field is missing a required value.', 'contains' => 'The :attribute field is missing a required value.',
'current_password' => '비밀번호가 일치하지 않습니다.', 'current_password' => '비밀번호가 일치하지 않습니다.',
'date' => 'The :attribute field must be a valid date.', 'date' => ':attribute는 올바른 날짜가 아닙니다.',
'date_equals' => 'The :attribute field must be a date equal to :date.', 'date_equals' => ':attribute은(는) :date와 같은 날짜여야 합니다.',
'date_format' => 'The :attribute field must match the format :format.', 'date_format' => ':attribute이(가) :format 형식과 일치하지 않습니다.',
'decimal' => 'The :attribute field must have :decimal decimal places.', 'decimal' => 'The :attribute field must have :decimal decimal places.',
'declined' => 'The :attribute field must be declined.', 'declined' => ':attribute은(는) 거부되어야 합니다.',
'declined_if' => 'The :attribute field must be declined when :other is :value.', 'declined_if' => ':other이(가) :value일때 :attribute은(는) 거부되어야 합니다.',
'different' => 'The :attribute field and :other must be different.', 'different' => ':attribute와(과) :other은(는) 서로 달라야 합니다.',
'digits' => 'The :attribute field must be :digits digits.', 'digits' => ':attribute은(는) 반드시 :digits 자릿수여야 합니다.',
'digits_between' => 'The :attribute field must be between :min and :max digits.', 'digits_between' => ':attribute은(는) :min에서 :max 자리여야 합니다.',
'dimensions' => 'The :attribute field has invalid image dimensions.', 'dimensions' => ':attribute의 이미지 크기가 올바르지 않습니다.',
'distinct' => ':attribute 필드에 중복된 값이 있습니다.', 'distinct' => ':attribute 필드에 중복된 값이 있습니다.',
'doesnt_end_with' => 'The :attribute field must not end with one of the following: :values.', 'doesnt_end_with' => ':attribute은(는) 다음 중 하나로 끝날 수 없습니다: :values.',
'doesnt_start_with' => 'The :attribute field must not start with one of the following: :values.', 'doesnt_start_with' => ':attribute은(는) 다음 중 하나로 시작할 수 없습니다: :values.',
'email' => 'The :attribute field must be a valid email address.', 'email' => ':attribute은(는) 유효한 이메일 주소이여야 합니다.',
'ends_with' => 'The :attribute field must end with one of the following: :values.', 'ends_with' => ':attribute은(는) 다음 중 하나로 끝나야 합니다: :values.',
'enum' => '선택된 :attribute은(는) 올바르지 않습니다.', 'enum' => '선택된 :attribute은(는) 올바르지 않습니다.',
'exists' => '선택된 :attribute은(는) 올바르지 않습니다.', 'exists' => '선택된 :attribute은(는) 올바르지 않습니다.',
'extensions' => 'The :attribute field must have one of the following extensions: :values.', 'extensions' => 'The :attribute field must have one of the following extensions: :values.',
'file' => 'The :attribute field must be a file.', 'file' => ':attribute은(는) 파일이어야 합니다.',
'filled' => ':attribute은(는) 필수 사항입니다.', 'filled' => ':attribute은(는) 필수 사항입니다.',
'gt' => [ 'gt' => [
'array' => 'The :attribute field must have more than :value items.', 'array' => ':attribute은(는) :value개 이상이어야 합니다.',
'file' => 'The :attribute field must be greater than :value kilobytes.', 'file' => ':attribute의 용량은 :value KB 이상이어야 합니다.',
'numeric' => 'The :attribute field must be greater than :value.', 'numeric' => ':attribute의 값은 :value보다 커야 합니다.',
'string' => 'The :attribute field must be greater than :value characters.', 'string' => ':attribute는 :value자 이상이어야합니다.',
], ],
'gte' => [ 'gte' => [
'array' => 'The :attribute field must have :value items or more.', 'array' => ':attribute은(는) :value개 이상이어야합니다.',
'file' => 'The :attribute field must be greater than or equal to :value kilobytes.', 'file' => ':attribute의 크기는 :value 킬로바이트 이상이어야 합니다.',
'numeric' => 'The :attribute field must be greater than or equal to :value.', 'numeric' => ':attribute은(는) :value 이상이어야 합니다.',
'string' => 'The :attribute field must be greater than or equal to :value characters.', 'string' => ':attribute은(는) :value 자 이상이어야 합니다.',
], ],
'hex_color' => 'The :attribute field must be a valid hexadecimal color.', 'hex_color' => 'The :attribute field must be a valid hexadecimal color.',
'image' => 'The :attribute field must be an image.', 'image' => ':attribute은(는) 이미지여야 합니다.',
'in' => '선택된 :attribute은(는) 올바르지 않습니다.', 'in' => '선택된 :attribute은(는) 올바르지 않습니다.',
'in_array' => 'The :attribute field must exist in :other.', 'in_array' => ':other에 :attribute이(가) 존재하지 않습니다.',
'integer' => 'The :attribute field must be an integer.', 'integer' => ':Attribute은(는) 정수여야 합니다.',
'ip' => 'The :attribute field must be a valid IP address.', 'ip' => ':attribute은(는) 유효한 IP 주소여야 합니다.',
'ipv4' => 'The :attribute field must be a valid IPv4 address.', 'ipv4' => ':attribute은(는) 유효한 IPv4 주소여야 합니다.',
'ipv6' => 'The :attribute field must be a valid IPv6 address.', 'ipv6' => ':attribute은(는) 유효한 IPv6 주소여야 합니다.',
'json' => 'The :attribute field must be a valid JSON string.', 'json' => ':attribute은(는) 유효한 JSON 문자여야 합니다.',
'list' => 'The :attribute field must be a list.', 'list' => 'The :attribute field must be a list.',
'lowercase' => 'The :attribute field must be lowercase.', 'lowercase' => 'The :attribute field must be lowercase.',
'lt' => [ 'lt' => [
'array' => 'The :attribute field must have less than :value items.', 'array' => ':attribute은(는) :value개 미만이어야 합니다.',
'file' => 'The :attribute field must be less than :value kilobytes.', 'file' => ':attribute은(는) :value KB 미만이어야 합니다.',
'numeric' => 'The :attribute field must be less than :value.', 'numeric' => ':attribute은(는) :value 미만이어야 합니다.',
'string' => 'The :attribute field must be less than :value characters.', 'string' => ':attribute은(는) :value 자 미만이어야 합니다.',
], ],
'lte' => [ 'lte' => [
'array' => 'The :attribute field must not have more than :value items.', 'array' => ':attribute은(는) :value개 이하여야 합니다.',
'file' => 'The :attribute field must be less than or equal to :value kilobytes.', 'file' => ':attribute은(는) :value KB 이하이어야 합니다.',
'numeric' => 'The :attribute field must be less than or equal to :value.', 'numeric' => ':attribute은(는) :value 이하이어야 합니다.',
'string' => 'The :attribute field must be less than or equal to :value characters.', 'string' => ':attribute은(는) :value 자 이하이어야 합니다.',
], ],
'mac_address' => 'The :attribute field must be a valid MAC address.', 'mac_address' => ':attribute은(는) 올바른 MAC 주소여야 합니다.',
'max' => [ 'max' => [
'array' => 'The :attribute field must not have more than :max items.', 'array' => ':attribute은(는) :max개보다 많을 수 없습니다.',
'file' => 'The :attribute field must not be greater than :max kilobytes.', 'file' => ':attribute은(는) :max KB보다 클 수 없습니다.',
'numeric' => 'The :attribute field must not be greater than :max.', 'numeric' => ':attribute은(는) :max보다 클 수 없습니다.',
'string' => 'The :attribute field must not be greater than :max characters.', 'string' => ':attribute은(는) :max 자보다 많을 수 없습니다.',
], ],
'max_digits' => 'The :attribute field must not have more than :max digits.', 'max_digits' => ':attribute은 :max 자를 넘지 않아야 합니다.',
'mimes' => 'The :attribute field must be a file of type: :values.', 'mimes' => ':attribute은 :values 형식의 파일이어야 합니다.',
'mimetypes' => 'The :attribute field must be a file of type: :values.', 'mimetypes' => ':attribute은 :values 형식의 파일이어야 합니다.',
'min' => [ 'min' => [
'array' => 'The :attribute field must have at least :min items.', 'array' => ':attribute은(는) :min 개 이상이어야 합니다.',
'file' => 'The :attribute field must be at least :min kilobytes.', 'file' => ':attribute은(는) :min KB 이상이어야 합니다.',
'numeric' => 'The :attribute field must be at least :min.', 'numeric' => ':attribute은(는) :min 이상이어야 합니다.',
'string' => 'The :attribute field must be at least :min characters.', 'string' => ':attribute은(는) :min 자 이상이어야 합니다.',
], ],
'min_digits' => 'The :attribute field must have at least :min digits.', 'min_digits' => ':attribute은(는) :min 자릿수 이상이어야 합니다.',
'missing' => 'The :attribute field must be missing.', 'missing' => 'The :attribute field must be missing.',
'missing_if' => 'The :attribute field must be missing when :other is :value.', 'missing_if' => 'The :attribute field must be missing when :other is :value.',
'missing_unless' => 'The :attribute field must be missing unless :other is :value.', 'missing_unless' => 'The :attribute field must be missing unless :other is :value.',
'missing_with' => 'The :attribute field must be missing when :values is present.', 'missing_with' => 'The :attribute field must be missing when :values is present.',
'missing_with_all' => 'The :attribute field must be missing when :values are present.', 'missing_with_all' => 'The :attribute field must be missing when :values are present.',
'multiple_of' => 'The :attribute field must be a multiple of :value.', 'multiple_of' => ':attribute은(는) :value 의 배수여야 합니다.',
'not_in' => '선택된 :attribute은(는) 유효하지 않습니다.', 'not_in' => '선택된 :attribute은(는) 유효하지 않습니다.',
'not_regex' => 'The :attribute field format is invalid.', 'not_regex' => ':attribute의 형식이 올바르지 않습니다.',
'numeric' => 'The :attribute field must be a number.', 'numeric' => ':Attribute은(는) 숫자여야 합니다.',
'password' => [ 'password' => [
'letters' => 'The :attribute field must contain at least one letter.', 'letters' => ':attribute은(는) 반드시 1개 이상의 문자가 포함되야 합니다.',
'mixed' => 'The :attribute field must contain at least one uppercase and one lowercase letter.', 'mixed' => ':attribute에는 하나 이상의 대문자와 하나의 소문자가 포함되어야 합니다.',
'numbers' => 'The :attribute field must contain at least one number.', 'numbers' => ':attribute 은(는) 적어도 하나의 숫자를 포함해야 합니다.',
'symbols' => 'The :attribute field must contain at least one symbol.', 'symbols' => ':attribute은(는) 1개 이상의 특수문자가 포함되어야 합니다.',
'uncompromised' => '주어진 :attribute 가 데이터 유출로 보입니다. 다른 :attribute 를 선택해주세요.', 'uncompromised' => '주어진 :attribute 가 데이터 유출로 보입니다. 다른 :attribute 를 선택해주세요.',
], ],
'present' => ':attribute 항목은 필수입니다.', 'present' => ':attribute 항목은 필수입니다.',
@ -133,7 +133,7 @@
'prohibited_if' => ':attribute 필드는 :other 가 :value 일때 금지됩니다.', 'prohibited_if' => ':attribute 필드는 :other 가 :value 일때 금지됩니다.',
'prohibited_unless' => ':attribute (은)는 :other 이(가) :value 이(가) 아닌 경우 금지되어 있습니다.', 'prohibited_unless' => ':attribute (은)는 :other 이(가) :value 이(가) 아닌 경우 금지되어 있습니다.',
'prohibits' => ':attribute 필드는 :other 이(가) 금지되어 있습니다.', 'prohibits' => ':attribute 필드는 :other 이(가) 금지되어 있습니다.',
'regex' => 'The :attribute field format is invalid.', 'regex' => ':attribute의 형식이 올바르지 않습니다.',
'required' => ':attribute 항목은 필수입니다.', 'required' => ':attribute 항목은 필수입니다.',
'required_array_keys' => ':attribute 필드는 :values에 대한 항목을 포함해야 합니다.', 'required_array_keys' => ':attribute 필드는 :values에 대한 항목을 포함해야 합니다.',
'required_if' => ':other이(가) :value 일때 :attribute 필드는 필수입니다.', 'required_if' => ':other이(가) :value 일때 :attribute 필드는 필수입니다.',
@ -144,26 +144,26 @@
'required_with_all' => ':values이(가) 있는 경우 :attribute 필드는 필수입니다.', 'required_with_all' => ':values이(가) 있는 경우 :attribute 필드는 필수입니다.',
'required_without' => ':values가 없는 경우 :attribute 필드는 필수입니다.', 'required_without' => ':values가 없는 경우 :attribute 필드는 필수입니다.',
'required_without_all' => ':values(이)가 모두 없을 때 :attribute 항목은 필수입니다.', 'required_without_all' => ':values(이)가 모두 없을 때 :attribute 항목은 필수입니다.',
'same' => 'The :attribute field must match :other.', 'same' => ':attribute와(과) :other이(가) 일치하지 않습니다.',
'size' => [ 'size' => [
'array' => 'The :attribute field must contain :size items.', 'array' => ':attribute은(는) :size 개의 항목을 포함해야 합니다.',
'file' => 'The :attribute field must be :size kilobytes.', 'file' => ':attribute 는 :size kilobytes 여야 합니다.',
'numeric' => 'The :attribute field must be :size.', 'numeric' => ':attribute은(는) :size여야 합니다.',
'string' => 'The :attribute field must be :size characters.', 'string' => ':attribute은(는) :size자여야 합니다.',
], ],
'starts_with' => 'The :attribute field must start with one of the following: :values.', 'starts_with' => ':attribute 는 반드시 다음으로 시작해야 합니다: :values.',
'string' => 'The :attribute field must be a string.', 'string' => ':attribute은(는) 반드시 문자열이어야 합니다.',
'timezone' => 'The :attribute field must be a valid timezone.', 'timezone' => ':attribute 는 올바른 시간대여야 합니다.',
'unique' => ':attribute은(는) 이미 사용중 입니다.', 'unique' => ':attribute은(는) 이미 사용중 입니다.',
'uploaded' => ':attribute을(를) 업로드하지 못했습니다.', 'uploaded' => ':attribute을(를) 업로드하지 못했습니다.',
'uppercase' => 'The :attribute field must be uppercase.', 'uppercase' => 'The :attribute field must be uppercase.',
'url' => 'The :attribute field must be a valid URL.', 'url' => ':attribute 는 반드시 올바른 URL이어야 합니다.',
'ulid' => 'The :attribute field must be a valid ULID.', 'ulid' => 'The :attribute field must be a valid ULID.',
'uuid' => 'The :attribute field must be a valid UUID.', 'uuid' => ':attribute은(는) 반드시 올바른 UUID여야 합니다.',
'single' => ':attribute 사용 시 이 요청 본문에서 유일한 매개변수여야 합니다.', 'single' => ':attribute 사용 시 이 요청 본문에서 유일한 매개변수여야 합니다.',
'onlyCustomOtpWithUri' => 'Uri 매개변수는 단독으로 제공하거나 \'custom_otp\' 매개변수와 함께 제공해야만 합니다.', 'onlyCustomOtpWithUri' => 'Uri 매개변수는 단독으로 제공하거나 \'custom_otp\' 매개변수와 함께 제공해야만 합니다.',
'IsValidRegex' => 'The :attribute field must be a valid regex pattern.', 'IsValidRegex' => 'The :attribute must be a valid regex pattern.',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@ -184,10 +184,10 @@
'image' => '지원되는 형식은 jpeg, png, bmp, gif, svg, 또는 webp입니다.', 'image' => '지원되는 형식은 jpeg, png, bmp, gif, svg, 또는 webp입니다.',
], ],
'uri' => [ 'uri' => [
'regex' => 'The :attribute field is not a valid otpauth uri.', 'regex' => ':attribute은(는) 올바른 otpauth uri가 아닙니다.',
], ],
'otp_type' => [ 'otp_type' => [
'in' => 'The :attribute field is not supported.', 'in' => ':attribute이(가) 지원되지 않습니다.',
], ],
'email' => [ 'email' => [
'exists' => '이 이메일을 사용하는 사용자를 찾지 못함', 'exists' => '이 이메일을 사용하는 사용자를 찾지 못함',
@ -195,13 +195,13 @@
'IsValidEmailList' => '모든 이메일은 유효해야 하며 세로 막대(|)로 구분해야 합니다.' 'IsValidEmailList' => '모든 이메일은 유효해야 하며 세로 막대(|)로 구분해야 합니다.'
], ],
'secret' => [ 'secret' => [
'isBase32Encoded' => 'The :attribute field must be a base32 encoded string.', 'isBase32Encoded' => ':attribute은(는) base32로 인코딩된 문자여야 합니다.',
], ],
'account' => [ 'account' => [
'regex' => 'The :attribute field must not contain colon.', 'regex' => ':attribute은(는) 콜론을 포함할 수 없습니다.',
], ],
'service' => [ 'service' => [
'regex' => 'The :attribute field must not contain colon.', 'regex' => ':attribute은(는) 콜론을 포함할 수 없습니다.',
], ],
'label' => [ 'label' => [
'required' => 'Uri에는 라벨이 필요합니다.', 'required' => 'Uri에는 라벨이 필요합니다.',

View File

@ -13,101 +13,101 @@
| |
*/ */
'accepted' => 'The :attribute field must be accepted.', 'accepted' => 'Het :attribute moet geaccepteerd worden.',
'accepted_if' => 'The :attribute field must be accepted when :other is :value.', 'accepted_if' => 'Het :attribute moet worden geaccepteerd als :other :value is.',
'active_url' => 'The :attribute field must be a valid URL.', 'active_url' => 'Het :attribute is geen geldige URL.',
'after' => 'The :attribute field must be a date after :date.', 'after' => 'Het :attribute moet een datum na :date zijn.',
'after_or_equal' => 'The :attribute field must be a date after or equal to :date.', 'after_or_equal' => 'Het :attribute moet een datum na of gelijk aan :date zijn.',
'alpha' => 'The :attribute field must only contain letters.', 'alpha' => 'Het :attribute mag alleen letters bevatten.',
'alpha_dash' => 'The :attribute field must only contain letters, numbers, dashes, and underscores.', 'alpha_dash' => 'Het :attribute mag alleen letters, cijfers, streepjes en underscores bevatten.',
'alpha_num' => 'The :attribute field must only contain letters and numbers.', 'alpha_num' => 'Het :attribute mag alleen letters en nummers bevatten.',
'array' => 'The :attribute field must be an array.', 'array' => 'Het :attribute moet een reeks zijn.',
'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.', 'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.',
'before' => 'The :attribute field must be a date before :date.', 'before' => 'Het :attribute moet een datum vóór :date zijn.',
'before_or_equal' => 'The :attribute field must be a date before or equal to :date.', 'before_or_equal' => 'Het :attribute moet een datum zijn voor of gelijk aan :date.',
'between' => [ 'between' => [
'array' => 'The :attribute field must have between :min and :max items.', 'array' => 'Het :attribute moet tenminste :min en :max items bevatten.',
'file' => 'The :attribute field must be between :min and :max kilobytes.', 'file' => 'Het :attribute moet tussen de :min en :max kilobytes zijn.',
'numeric' => 'The :attribute field must be between :min and :max.', 'numeric' => 'Het :attribute moet tussen :min en :max zijn.',
'string' => 'The :attribute field must be between :min and :max characters.', 'string' => 'Het :attribute moet tussen :min en :max karakters zijn.',
], ],
'boolean' => 'Het :attribute moet ja of nee zijn.', 'boolean' => 'Het :attribute moet ja of nee zijn.',
'can' => 'The :attribute field contains an unauthorized value.', 'can' => 'The :attribute field contains an unauthorized value.',
'confirmed' => 'The :attribute field confirmation does not match.', 'confirmed' => ':attribute bevestiging komt niet overeen.',
'contains' => 'The :attribute field is missing a required value.', 'contains' => 'The :attribute field is missing a required value.',
'current_password' => 'Het wachtwoord is onjuist.', 'current_password' => 'Het wachtwoord is onjuist.',
'date' => 'The :attribute field must be a valid date.', 'date' => 'Het :attribute is geen geldige datum.',
'date_equals' => 'The :attribute field must be a date equal to :date.', 'date_equals' => 'Het :attribute moet een datum gelijk aan :date zijn.',
'date_format' => 'The :attribute field must match the format :format.', 'date_format' => 'Het :attribute komt niet overeen met het formaat :format.',
'decimal' => 'The :attribute field must have :decimal decimal places.', 'decimal' => 'The :attribute field must have :decimal decimal places.',
'declined' => 'The :attribute field must be declined.', 'declined' => 'Het :attribuut moet worden afgewezen.',
'declined_if' => 'The :attribute field must be declined when :other is :value.', 'declined_if' => 'Het :attribute moet worden afgewezen als :other :value is.',
'different' => 'The :attribute field and :other must be different.', 'different' => 'Het :attribute en :other moeten verschillend zijn.',
'digits' => 'The :attribute field must be :digits digits.', 'digits' => 'Het :attribute moet bestaan uit :digits cijfers.',
'digits_between' => 'The :attribute field must be between :min and :max digits.', 'digits_between' => 'Het :attribute moet bestaan uit minimaal :min en maximaal :max cijfers.',
'dimensions' => 'The :attribute field has invalid image dimensions.', 'dimensions' => 'Het :attribute heeft ongeldige afbeeldings dimensies.',
'distinct' => ':attribute veld heeft een reeds bestaande waarde.', 'distinct' => ':attribute veld heeft een reeds bestaande waarde.',
'doesnt_end_with' => 'The :attribute field must not end with one of the following: :values.', 'doesnt_end_with' => 'Het :attribute mag niet eindigen met een van de volgende: :values.',
'doesnt_start_with' => 'The :attribute field must not start with one of the following: :values.', 'doesnt_start_with' => 'Het :attribute mag niet beginnen met een van de volgende: :values.',
'email' => 'The :attribute field must be a valid email address.', 'email' => 'Het :attribute moet een geldig e-mailadres zijn.',
'ends_with' => 'The :attribute field must end with one of the following: :values.', 'ends_with' => 'Het :attribute moet eindigen met een van de volgende: :values.',
'enum' => 'Het geselecteerde :attribute is ongeldig.', 'enum' => 'Het geselecteerde :attribute is ongeldig.',
'exists' => 'Het geselecteerde :attribute is ongeldig.', 'exists' => 'Het geselecteerde :attribute is ongeldig.',
'extensions' => 'The :attribute field must have one of the following extensions: :values.', 'extensions' => 'The :attribute field must have one of the following extensions: :values.',
'file' => 'The :attribute field must be a file.', 'file' => 'Het :attribute moet een bestand zijn.',
'filled' => 'Het veld :attribute moet een waarde bevatten.', 'filled' => 'Het veld :attribute moet een waarde bevatten.',
'gt' => [ 'gt' => [
'array' => 'The :attribute field must have more than :value items.', 'array' => 'Het :attribute moet meer dan :value waardes bevatten.',
'file' => 'The :attribute field must be greater than :value kilobytes.', 'file' => 'Het :attribute moet groter zijn dan :value kilobytes.',
'numeric' => 'The :attribute field must be greater than :value.', 'numeric' => 'Het :attribute moet groter zijn dan :value.',
'string' => 'The :attribute field must be greater than :value characters.', 'string' => 'Het :attribute moet groter zijn dan de :value tekens.',
], ],
'gte' => [ 'gte' => [
'array' => 'The :attribute field must have :value items or more.', 'array' => 'Het :attribute moet :value items of meer hebben.',
'file' => 'The :attribute field must be greater than or equal to :value kilobytes.', 'file' => 'De :attribute moet groter of gelijk zijn aan :value kilobytes.',
'numeric' => 'The :attribute field must be greater than or equal to :value.', 'numeric' => 'De :attribute moet groter of gelijk zijn aan :value.',
'string' => 'The :attribute field must be greater than or equal to :value characters.', 'string' => 'De :attribute moet minimaal :value tekens bevatten.',
], ],
'hex_color' => 'The :attribute field must be a valid hexadecimal color.', 'hex_color' => 'The :attribute field must be a valid hexadecimal color.',
'image' => 'The :attribute field must be an image.', 'image' => 'De :attribute moet een afbeelding zijn.',
'in' => 'De geselecteerde :attribute is ongeldig.', 'in' => 'De geselecteerde :attribute is ongeldig.',
'in_array' => 'The :attribute field must exist in :other.', 'in_array' => 'Het :attribute veld bestaat niet in :other.',
'integer' => 'The :attribute field must be an integer.', 'integer' => 'Het :attribute moet van het type integer zijn.',
'ip' => 'The :attribute field must be a valid IP address.', 'ip' => 'Het :attribute moet een geldig IP-adres zijn.',
'ipv4' => 'The :attribute field must be a valid IPv4 address.', 'ipv4' => 'Het :attribute moet een geldig IPv4 adres zijn.',
'ipv6' => 'The :attribute field must be a valid IPv6 address.', 'ipv6' => 'Het :attribute moet een geldig IPv6 adres zijn.',
'json' => 'The :attribute field must be a valid JSON string.', 'json' => 'Het :attribute moet een geldige JSON string zijn.',
'list' => 'The :attribute field must be a list.', 'list' => 'The :attribute field must be a list.',
'lowercase' => 'The :attribute field must be lowercase.', 'lowercase' => 'The :attribute field must be lowercase.',
'lt' => [ 'lt' => [
'array' => 'The :attribute field must have less than :value items.', 'array' => 'Het :attribute moet minder dan :value items hebben.',
'file' => 'The :attribute field must be less than :value kilobytes.', 'file' => 'Het :attribute moet kleiner zijn dan :value kilobytes.',
'numeric' => 'The :attribute field must be less than :value.', 'numeric' => 'Het :attribute moet kleiner zijn dan :value.',
'string' => 'The :attribute field must be less than :value characters.', 'string' => 'Het :attribute moet groter zijn dan de :value tekens.',
], ],
'lte' => [ 'lte' => [
'array' => 'The :attribute field must not have more than :value items.', 'array' => 'Het :attribute mag niet meer dan :value items hebben.',
'file' => 'The :attribute field must be less than or equal to :value kilobytes.', 'file' => 'Het :attribute moet kleiner zijn dan of gelijk zijn aan :value kilobytes.',
'numeric' => 'The :attribute field must be less than or equal to :value.', 'numeric' => 'Het :attribute moet kleiner zijn dan of gelijk zijn aan :value.',
'string' => 'The :attribute field must be less than or equal to :value characters.', 'string' => 'Het :attribute moet kleiner zijn dan of gelijk aan :value tekens.',
], ],
'mac_address' => 'The :attribute field must be a valid MAC address.', 'mac_address' => 'Het :attribute moet een geldig MAC-adres zijn.',
'max' => [ 'max' => [
'array' => 'The :attribute field must not have more than :max items.', 'array' => 'Het :attribute mag niet meer dan :max items hebben.',
'file' => 'The :attribute field must not be greater than :max kilobytes.', 'file' => 'Het :attribute mag niet groter zijn dan :max kilobytes.',
'numeric' => 'The :attribute field must not be greater than :max.', 'numeric' => 'Het :attribute mag niet groter zijn dan :max.',
'string' => 'The :attribute field must not be greater than :max characters.', 'string' => 'Het :attribute mag niet groter zijn dan de :max tekens.',
], ],
'max_digits' => 'The :attribute field must not have more than :max digits.', 'max_digits' => 'Het :attribute mag niet meer dan :max cijfers hebben.',
'mimes' => 'The :attribute field must be a file of type: :values.', 'mimes' => 'Het :attribute moet een bestand zijn van het type: :values.',
'mimetypes' => 'The :attribute field must be a file of type: :values.', 'mimetypes' => 'Het :attribute moet een bestand zijn van het type: :values.',
'min' => [ 'min' => [
'array' => 'The :attribute field must have at least :min items.', 'array' => 'Het :attribute moet ten minste :min items hebben.',
'file' => 'The :attribute field must be at least :min kilobytes.', 'file' => 'Het :attribute moet ten minste :min kilobytes zijn.',
'numeric' => 'The :attribute field must be at least :min.', 'numeric' => 'Het :attribute moet ten minste :min items hebben.',
'string' => 'The :attribute field must be at least :min characters.', 'string' => 'The :attribute field must be at least :min characters.',
], ],
'min_digits' => 'The :attribute field must have at least :min digits.', 'min_digits' => 'Het :attribute moet ten minste :min cijfers hebben.',
'missing' => 'The :attribute field must be missing.', 'missing' => 'The :attribute field must be missing.',
'missing_if' => 'The :attribute field must be missing when :other is :value.', 'missing_if' => 'The :attribute field must be missing when :other is :value.',
'missing_unless' => 'The :attribute field must be missing unless :other is :value.', 'missing_unless' => 'The :attribute field must be missing unless :other is :value.',
@ -115,13 +115,13 @@
'missing_with_all' => 'The :attribute field must be missing when :values are present.', 'missing_with_all' => 'The :attribute field must be missing when :values are present.',
'multiple_of' => 'The :attribute field must be a multiple of :value.', 'multiple_of' => 'The :attribute field must be a multiple of :value.',
'not_in' => 'Het geselecteerde :attribute is ongeldig.', 'not_in' => 'Het geselecteerde :attribute is ongeldig.',
'not_regex' => 'The :attribute field format is invalid.', 'not_regex' => 'Het formaat van :attribute is ongeldig.',
'numeric' => 'The :attribute field must be a number.', 'numeric' => 'Het :attribute moet een cijfer zijn.',
'password' => [ 'password' => [
'letters' => 'The :attribute field must contain at least one letter.', 'letters' => 'Het :attribute moet minimaal één letter bevatten.',
'mixed' => 'The :attribute field must contain at least one uppercase and one lowercase letter.', 'mixed' => 'Het :attribute moet ten minste één hoofdletter en één kleine letter bevatten.',
'numbers' => 'The :attribute field must contain at least one number.', 'numbers' => 'Het :attribute moet ten minste één getal bevatten.',
'symbols' => 'The :attribute field must contain at least one symbol.', 'symbols' => 'Het :attribute moet minimaal één symbool bevatten.',
'uncompromised' => 'Het opgegeven :attribute komt voor in een datalek. Kies een ander :attribute.', 'uncompromised' => 'Het opgegeven :attribute komt voor in een datalek. Kies een ander :attribute.',
], ],
'present' => 'Het :attribute veld moet aanwezig zijn.', 'present' => 'Het :attribute veld moet aanwezig zijn.',
@ -133,7 +133,7 @@
'prohibited_if' => 'Het :attribute veld is verboden als :other is :value.', 'prohibited_if' => 'Het :attribute veld is verboden als :other is :value.',
'prohibited_unless' => 'Het :attribute veld is verboden tenzij :other is in :values.', 'prohibited_unless' => 'Het :attribute veld is verboden tenzij :other is in :values.',
'prohibits' => 'Het :attribute veld verbiedt de aanwezigheid van :other.', 'prohibits' => 'Het :attribute veld verbiedt de aanwezigheid van :other.',
'regex' => 'The :attribute field format is invalid.', 'regex' => 'Het formaat van :attribute is ongeldig.',
'required' => 'Het :attribute veld is verplicht.', 'required' => 'Het :attribute veld is verplicht.',
'required_array_keys' => 'Het :attribute veld moet items bevatten voor: :values.', 'required_array_keys' => 'Het :attribute veld moet items bevatten voor: :values.',
'required_if' => 'Het veld :attribute is verplicht als :other gelijk is aan :value.', 'required_if' => 'Het veld :attribute is verplicht als :other gelijk is aan :value.',
@ -144,26 +144,26 @@
'required_with_all' => 'Het :attribute veld is verplicht als :values aanwezig zijn.', 'required_with_all' => 'Het :attribute veld is verplicht als :values aanwezig zijn.',
'required_without' => 'Het veld :attribute is verplicht als :values niet ingesteld staan.', 'required_without' => 'Het veld :attribute is verplicht als :values niet ingesteld staan.',
'required_without_all' => 'Het :attribute veld is verplicht wanneer geen van de :values aanwezig zijn.', 'required_without_all' => 'Het :attribute veld is verplicht wanneer geen van de :values aanwezig zijn.',
'same' => 'The :attribute field must match :other.', 'same' => 'Het :attribute en :other moeten gelijk zijn.',
'size' => [ 'size' => [
'array' => 'The :attribute field must contain :size items.', 'array' => 'Het :attribute moet :size items bevatten.',
'file' => 'The :attribute field must be :size kilobytes.', 'file' => 'Het :attribute moet ten minste :min kilobytes zijn.',
'numeric' => 'The :attribute field must be :size.', 'numeric' => 'Het :attribute moet :size zijn.',
'string' => 'The :attribute field must be :size characters.', 'string' => 'Het :attribute moet zijn :size karakters zijn.',
], ],
'starts_with' => 'The :attribute field must start with one of the following: :values.', 'starts_with' => 'Het :attribute moet beginnen met een van de volgende: :values.',
'string' => 'The :attribute field must be a string.', 'string' => 'Het :attribute moet een tekenreeks zijn.',
'timezone' => 'The :attribute field must be a valid timezone.', 'timezone' => 'Het :attribute moet een geldige tijdzone zijn.',
'unique' => 'Het :attribute is al in gebruik.', 'unique' => 'Het :attribute is al in gebruik.',
'uploaded' => 'Het uploaden van :attribute is mislukt.', 'uploaded' => 'Het uploaden van :attribute is mislukt.',
'uppercase' => 'The :attribute field must be uppercase.', 'uppercase' => 'The :attribute field must be uppercase.',
'url' => 'The :attribute field must be a valid URL.', 'url' => 'Het :attribute moet een geldig URL zijn.',
'ulid' => 'The :attribute field must be a valid ULID.', 'ulid' => 'The :attribute field must be a valid ULID.',
'uuid' => 'The :attribute field must be a valid UUID.', 'uuid' => 'Het :attribute moet een geldig UUID zijn.',
'single' => 'Bij gebruik van :attribute moet het de enige parameter zijn in de body van de aanvraag', 'single' => 'Bij gebruik van :attribute moet het de enige parameter zijn in de body van de aanvraag',
'onlyCustomOtpWithUri' => 'De uri parameter moet alleen of alleen worden verstrekt in combinatie met de \'custom_otp\' parameter', 'onlyCustomOtpWithUri' => 'De uri parameter moet alleen of alleen worden verstrekt in combinatie met de \'custom_otp\' parameter',
'IsValidRegex' => 'The :attribute field must be a valid regex pattern.', 'IsValidRegex' => 'The :attribute must be a valid regex pattern.',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@ -184,10 +184,10 @@
'image' => 'Ondersteunde formaat zijn jpeg, png, bmp, gif, svg of webp.', 'image' => 'Ondersteunde formaat zijn jpeg, png, bmp, gif, svg of webp.',
], ],
'uri' => [ 'uri' => [
'regex' => 'The :attribute field is not a valid otpauth uri.', 'regex' => 'Het :attribute is geen geldige otpauth uri.',
], ],
'otp_type' => [ 'otp_type' => [
'in' => 'The :attribute field is not supported.', 'in' => 'Het :attribute wordt niet ondersteund.',
], ],
'email' => [ 'email' => [
'exists' => 'Geen account gevonden met dit e-mailadres.', 'exists' => 'Geen account gevonden met dit e-mailadres.',
@ -195,13 +195,13 @@
'IsValidEmailList' => 'Alle e-mailadressen moeten geldig zijn en gescheiden worden door een buis' 'IsValidEmailList' => 'Alle e-mailadressen moeten geldig zijn en gescheiden worden door een buis'
], ],
'secret' => [ 'secret' => [
'isBase32Encoded' => 'The :attribute field must be a base32 encoded string.', 'isBase32Encoded' => 'Het :attribute moet een base32 gecodeerde tekenreeks zijn.',
], ],
'account' => [ 'account' => [
'regex' => 'The :attribute field must not contain colon.', 'regex' => 'Het :attribute mag leestekens bevatten.',
], ],
'service' => [ 'service' => [
'regex' => 'The :attribute field must not contain colon.', 'regex' => 'Het :attribute mag geen leestekens bevatten.',
], ],
'label' => [ 'label' => [
'required' => 'De uri moet een label hebben.', 'required' => 'De uri moet een label hebben.',

View File

@ -13,115 +13,115 @@
| |
*/ */
'accepted' => 'The :attribute field must be accepted.', 'accepted' => ':attribute kabul edilmelidir.',
'accepted_if' => 'The :attribute field must be accepted when :other is :value.', 'accepted_if' => ':other, :value olduğunda :attribute kabul edilmelidir.',
'active_url' => 'The :attribute field must be a valid URL.', 'active_url' => ':attribute geçerli bir URL değil.',
'after' => 'The :attribute field must be a date after :date.', 'after' => ':attribute şu tarihten :date sonra olmalı.',
'after_or_equal' => 'The :attribute field must be a date after or equal to :date.', 'after_or_equal' => ':attribute, :date tarihi ile aynı veya bundan sonraki bir tarih olmalıdır.',
'alpha' => 'The :attribute field must only contain letters.', 'alpha' => ':attribute yalnızca harf içermelidir.',
'alpha_dash' => 'The :attribute field must only contain letters, numbers, dashes, and underscores.', 'alpha_dash' => ':attribute yalnızca harfler, rakamlar, tireler ve alt çizgiler içermelidir.',
'alpha_num' => 'The :attribute field must only contain letters and numbers.', 'alpha_num' => ':attribute yalnızca harfler ve rakamlar içermelidir.',
'array' => 'The :attribute field must be an array.', 'array' => ':attribute bir dizi olmalıdır.',
'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.', 'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.',
'before' => 'The :attribute field must be a date before :date.', 'before' => ':attribute, :date tarihinden önce bir tarih olmalıdır.',
'before_or_equal' => 'The :attribute field must be a date before or equal to :date.', 'before_or_equal' => ':attribute, :date tarihi ile aynı veya önceki bir tarih olmalıdır.',
'between' => [ 'between' => [
'array' => 'The :attribute field must have between :min and :max items.', 'array' => ':attribute, :min ve :max aralığında olmalıdır.',
'file' => 'The :attribute field must be between :min and :max kilobytes.', 'file' => ':attribute, :min ve :max kilobyte aralığında olmalıdır.',
'numeric' => 'The :attribute field must be between :min and :max.', 'numeric' => ':attribute, :min ve :max aralığında olmalıdır.',
'string' => 'The :attribute field must be between :min and :max characters.', 'string' => ':attribute, :min ve :max karakter aralığında olmalıdır.',
], ],
'boolean' => ':attribute, doğru veya yanlış olmalıdır.', 'boolean' => ':attribute, doğru veya yanlış olmalıdır.',
'can' => 'The :attribute field contains an unauthorized value.', 'can' => 'The :attribute field contains an unauthorized value.',
'confirmed' => 'The :attribute field confirmation does not match.', 'confirmed' => ':attribute doğrulaması eşleşmedi.',
'contains' => 'The :attribute field is missing a required value.', 'contains' => 'The :attribute field is missing a required value.',
'current_password' => 'Parola hatalı.', 'current_password' => 'Parola hatalı.',
'date' => 'The :attribute field must be a valid date.', 'date' => ':attribute geçerli bir tarih değil.',
'date_equals' => 'The :attribute field must be a date equal to :date.', 'date_equals' => ':attribute tarihi, :date tarihine eşit olmalıdır.',
'date_format' => 'The :attribute field must match the format :format.', 'date_format' => ':attribute :format biçimi ile eşleşmiyor.',
'decimal' => 'The :attribute field must have :decimal decimal places.', 'decimal' => 'The :attribute field must have :decimal decimal places.',
'declined' => 'The :attribute field must be declined.', 'declined' => ':attribute reddedilmelidir.',
'declined_if' => 'The :attribute field must be declined when :other is :value.', 'declined_if' => ':other, :value olduğunda :attribute reddedilmelidir.',
'different' => 'The :attribute field and :other must be different.', 'different' => ':attribute ve :other birbirinden farklı olmalıdır.',
'digits' => 'The :attribute field must be :digits digits.', 'digits' => ':attribute, :digits rakam olmalıdır.',
'digits_between' => 'The :attribute field must be between :min and :max digits.', 'digits_between' => ':attribute, :min ve :max basamak aralığında olmalıdır.',
'dimensions' => 'The :attribute field has invalid image dimensions.', 'dimensions' => ':attribute geçersiz görüntü boyutlarına sahip.',
'distinct' => ':attribute alanı yinelenen bir değere sahip.', 'distinct' => ':attribute alanı yinelenen bir değere sahip.',
'doesnt_end_with' => 'The :attribute field must not end with one of the following: :values.', 'doesnt_end_with' => ':attribute şunlardan biriyle bitmemelidir: :values.',
'doesnt_start_with' => 'The :attribute field must not start with one of the following: :values.', 'doesnt_start_with' => ':attribute şunlardan biriyle başlamamalıdır: :values.',
'email' => 'The :attribute field must be a valid email address.', 'email' => ':attribute geçerli bir ePosta adresi olmalı.',
'ends_with' => 'The :attribute field must end with one of the following: :values.', 'ends_with' => ':attribute şunlardan biriyle bitmelidir: :values.',
'enum' => ':attribute seçimi geçersiz.', 'enum' => ':attribute seçimi geçersiz.',
'exists' => ':attribute seçimi geçersiz.', 'exists' => ':attribute seçimi geçersiz.',
'extensions' => 'The :attribute field must have one of the following extensions: :values.', 'extensions' => 'The :attribute field must have one of the following extensions: :values.',
'file' => 'The :attribute field must be a file.', 'file' => ':attribute bir dosya olmalıdır.',
'filled' => ':attribute alanının doldurulması zorunludur.', 'filled' => ':attribute alanının doldurulması zorunludur.',
'gt' => [ 'gt' => [
'array' => 'The :attribute field must have more than :value items.', 'array' => ':attribute :value öğelerinden daha fazla öğeye sahip olmalıdır.',
'file' => 'The :attribute field must be greater than :value kilobytes.', 'file' => ':attribute, :value kilobayttan fazla olmalıdır.',
'numeric' => 'The :attribute field must be greater than :value.', 'numeric' => ':attribute, :value değerinden büyük olmalıdır.',
'string' => 'The :attribute field must be greater than :value characters.', 'string' => ':attribute :value karakterden büyük olmalıdır.',
], ],
'gte' => [ 'gte' => [
'array' => 'The :attribute field must have :value items or more.', 'array' => ':attribute, :value veya daha fazla öğe içermelidir.',
'file' => 'The :attribute field must be greater than or equal to :value kilobytes.', 'file' => ':attribute :value kilobayttan büyük veya eşit olmalıdır.',
'numeric' => 'The :attribute field must be greater than or equal to :value.', 'numeric' => ':attribute, :value değerinden büyük veya eşit olmalıdır.',
'string' => 'The :attribute field must be greater than or equal to :value characters.', 'string' => ':attribute, en az :value karakter içermelidir.',
], ],
'hex_color' => 'The :attribute field must be a valid hexadecimal color.', 'hex_color' => 'The :attribute field must be a valid hexadecimal color.',
'image' => 'The :attribute field must be an image.', 'image' => ':attribute bir görsel olmalı.',
'in' => ':attribute seçimi geçersiz.', 'in' => ':attribute seçimi geçersiz.',
'in_array' => 'The :attribute field must exist in :other.', 'in_array' => ':attribute değeri :other içinde mevcut değil.',
'integer' => 'The :attribute field must be an integer.', 'integer' => ':attribute tamsayı olmalıdır.',
'ip' => 'The :attribute field must be a valid IP address.', 'ip' => ':attribute geçerli bir IP adresi olmalıdır.',
'ipv4' => 'The :attribute field must be a valid IPv4 address.', 'ipv4' => ':attribute geçerli bir IPv4 adresi olmalıdır.',
'ipv6' => 'The :attribute field must be a valid IPv6 address.', 'ipv6' => ':attribute geçerli bir IPv6 adresi olmalıdır.',
'json' => 'The :attribute field must be a valid JSON string.', 'json' => ':attribute geçerli bir JSON olmalı.',
'list' => 'The :attribute field must be a list.', 'list' => 'The :attribute field must be a list.',
'lowercase' => 'The :attribute field must be lowercase.', 'lowercase' => 'The :attribute field must be lowercase.',
'lt' => [ 'lt' => [
'array' => 'The :attribute field must have less than :value items.', 'array' => ':attribute, :value ögeden az olmalıdır.',
'file' => 'The :attribute field must be less than :value kilobytes.', 'file' => ':attribute, :value kilobayttan az olmalıdır.',
'numeric' => 'The :attribute field must be less than :value.', 'numeric' => ':attribute, :value değerinden küçük olmalıdır.',
'string' => 'The :attribute field must be less than :value characters.', 'string' => ':attribute, :value karakterden az olmalıdır.',
], ],
'lte' => [ 'lte' => [
'array' => 'The :attribute field must not have more than :value items.', 'array' => ':attribute, en fazla :value öge içermelidir.',
'file' => 'The :attribute field must be less than or equal to :value kilobytes.', 'file' => ':attribute, :value kilobayttan küçük ya da eşit olmalıdır.',
'numeric' => 'The :attribute field must be less than or equal to :value.', 'numeric' => ':attribute, :value değerinden küçük veya eşit olmalıdır.',
'string' => 'The :attribute field must be less than or equal to :value characters.', 'string' => ':attribute :value karakterden az ya da eşit olmalıdır.',
], ],
'mac_address' => 'The :attribute field must be a valid MAC address.', 'mac_address' => ':attribute geçerli bir MAC adresi olmalıdır.',
'max' => [ 'max' => [
'array' => 'The :attribute field must not have more than :max items.', 'array' => ':attribute, :max öğeden fazla öğeye sahip olmamalıdır.',
'file' => 'The :attribute field must not be greater than :max kilobytes.', 'file' => ':attribute değeri :max kilobayttan büyük olmamalıdır.',
'numeric' => 'The :attribute field must not be greater than :max.', 'numeric' => ':attribute değeri :max değerinden büyük olmamalıdır.',
'string' => 'The :attribute field must not be greater than :max characters.', 'string' => ':attribute, :max karakterden fazla olmamalıdır.',
], ],
'max_digits' => 'The :attribute field must not have more than :max digits.', 'max_digits' => ':attribute, :max rakamdan fazla rakama sahip olmamalıdır.',
'mimes' => 'The :attribute field must be a file of type: :values.', 'mimes' => ':attribute şu dosya biçimlerinden biri olmalıdır: :values.',
'mimetypes' => 'The :attribute field must be a file of type: :values.', 'mimetypes' => ':attribute şu dosya biçimlerinden biri olmalıdır: :values.',
'min' => [ 'min' => [
'array' => 'The :attribute field must have at least :min items.', 'array' => ':attribute en az :min nesneye sahip olmalıdır.',
'file' => 'The :attribute field must be at least :min kilobytes.', 'file' => ':attribute en az :min kilobayt olmalıdır.',
'numeric' => 'The :attribute field must be at least :min.', 'numeric' => ':attribute en az :min olmalıdır.',
'string' => 'The :attribute field must be at least :min characters.', 'string' => ':attribute en az :min karakter içermelidir.',
], ],
'min_digits' => 'The :attribute field must have at least :min digits.', 'min_digits' => ':attribute en az :min rakam içermelidir.',
'missing' => 'The :attribute field must be missing.', 'missing' => 'The :attribute field must be missing.',
'missing_if' => 'The :attribute field must be missing when :other is :value.', 'missing_if' => 'The :attribute field must be missing when :other is :value.',
'missing_unless' => 'The :attribute field must be missing unless :other is :value.', 'missing_unless' => 'The :attribute field must be missing unless :other is :value.',
'missing_with' => 'The :attribute field must be missing when :values is present.', 'missing_with' => 'The :attribute field must be missing when :values is present.',
'missing_with_all' => 'The :attribute field must be missing when :values are present.', 'missing_with_all' => 'The :attribute field must be missing when :values are present.',
'multiple_of' => 'The :attribute field must be a multiple of :value.', 'multiple_of' => ':attribute, :values değerinin katı olmalıdır.',
'not_in' => ':attribute seçimi geçersiz.', 'not_in' => ':attribute seçimi geçersiz.',
'not_regex' => 'The :attribute field format is invalid.', 'not_regex' => ':attribute formatı geçersiz.',
'numeric' => 'The :attribute field must be a number.', 'numeric' => ':attribute bir sayı olmalıdır.',
'password' => [ 'password' => [
'letters' => 'The :attribute field must contain at least one letter.', 'letters' => ':attribute en az bir harf içermelidir.',
'mixed' => 'The :attribute field must contain at least one uppercase and one lowercase letter.', 'mixed' => ':attribute en az bir büyük harf ve bir küçük harf içermelidir.',
'numbers' => 'The :attribute field must contain at least one number.', 'numbers' => ':attribute en az bir sayı içermelidir.',
'symbols' => 'The :attribute field must contain at least one symbol.', 'symbols' => ':attribute en az bir sembol içermelidir.',
'uncompromised' => 'Girilen :attribute bir veri sızıntısında ortaya çıktı. Lütfen farklı bir :attribute seçin.', 'uncompromised' => 'Girilen :attribute bir veri sızıntısında ortaya çıktı. Lütfen farklı bir :attribute seçin.',
], ],
'present' => ':attribute alanı dolu olmalı.', 'present' => ':attribute alanı dolu olmalı.',
@ -133,7 +133,7 @@
'prohibited_if' => ':other :value iken :attribute alanı engellenmiştir.', 'prohibited_if' => ':other :value iken :attribute alanı engellenmiştir.',
'prohibited_unless' => ':attribute alanı, :other alanı :value değerlerinden birine sahip olmadığı sürece engellenmiştir.', 'prohibited_unless' => ':attribute alanı, :other alanı :value değerlerinden birine sahip olmadığı sürece engellenmiştir.',
'prohibits' => ':attribute alanı :other değerinin mevcut olmasını engeller.', 'prohibits' => ':attribute alanı :other değerinin mevcut olmasını engeller.',
'regex' => 'The :attribute field format is invalid.', 'regex' => ':attribute formatı geçersiz.',
'required' => ':attribute alanı zorunludur.', 'required' => ':attribute alanı zorunludur.',
'required_array_keys' => ':attribute alanı aşağıdakiler için girişler içermelidir: :values.', 'required_array_keys' => ':attribute alanı aşağıdakiler için girişler içermelidir: :values.',
'required_if' => ':other :value iken :attribute alanı gereklidir.', 'required_if' => ':other :value iken :attribute alanı gereklidir.',
@ -144,26 +144,26 @@
'required_with_all' => ':values mevcut ise :attribute alanları zorunludur.', 'required_with_all' => ':values mevcut ise :attribute alanları zorunludur.',
'required_without' => ':attribute alanı :values yokken zorunludur.', 'required_without' => ':attribute alanı :values yokken zorunludur.',
'required_without_all' => 'Herhangi bir :values değeri mevcut olmadığında :attribute alanına değer girilmesi zorunludur.', 'required_without_all' => 'Herhangi bir :values değeri mevcut olmadığında :attribute alanına değer girilmesi zorunludur.',
'same' => 'The :attribute field must match :other.', 'same' => ':attribute ve :other aynı olmalı.',
'size' => [ 'size' => [
'array' => 'The :attribute field must contain :size items.', 'array' => ':attribute :size nesneye sahip olmalıdır.',
'file' => 'The :attribute field must be :size kilobytes.', 'file' => ':attribute :size kilobayt olmalıdır.',
'numeric' => 'The :attribute field must be :size.', 'numeric' => ':attribute, :size olmalıdır.',
'string' => 'The :attribute field must be :size characters.', 'string' => ': attribute en az :size karakter olmalıdır.',
], ],
'starts_with' => 'The :attribute field must start with one of the following: :values.', 'starts_with' => ':attribute şunlardan biriyle başlamalıdır: :values.',
'string' => 'The :attribute field must be a string.', 'string' => ':attribute bir dize olmalıdır.',
'timezone' => 'The :attribute field must be a valid timezone.', 'timezone' => ':attribute geçerli bir saat dilimi olmalıdır.',
'unique' => ':attribute daha önceden kayıt edilmiş.', 'unique' => ':attribute daha önceden kayıt edilmiş.',
'uploaded' => ':attribute yüklemesi başarısız.', 'uploaded' => ':attribute yüklemesi başarısız.',
'uppercase' => 'The :attribute field must be uppercase.', 'uppercase' => 'The :attribute field must be uppercase.',
'url' => 'The :attribute field must be a valid URL.', 'url' => ':attribute geçerli bir URL olmalıdır.',
'ulid' => 'The :attribute field must be a valid ULID.', 'ulid' => 'The :attribute field must be a valid ULID.',
'uuid' => 'The :attribute field must be a valid UUID.', 'uuid' => ':attribute geçerli bir UUID olmalıdır.',
'single' => ':attribute kullanıldığında, istek gövdesindeki tek parametre bu olmalıdır', 'single' => ':attribute kullanıldığında, istek gövdesindeki tek parametre bu olmalıdır',
'onlyCustomOtpWithUri' => 'Uri parametresi tek başına veya yalnızca \'custom_otp\' parametresiyle birlikte sağlanmalıdır', 'onlyCustomOtpWithUri' => 'Uri parametresi tek başına veya yalnızca \'custom_otp\' parametresiyle birlikte sağlanmalıdır',
'IsValidRegex' => 'The :attribute field must be a valid regex pattern.', 'IsValidRegex' => 'The :attribute must be a valid regex pattern.',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@ -184,10 +184,10 @@
'image' => 'Desteklenen formatlar jpeg, png, bmp, gif, svg veya webp\'dir.', 'image' => 'Desteklenen formatlar jpeg, png, bmp, gif, svg veya webp\'dir.',
], ],
'uri' => [ 'uri' => [
'regex' => 'The :attribute field is not a valid otpauth uri.', 'regex' => ':attribute geçerli bir otpauth uri\'si değil.',
], ],
'otp_type' => [ 'otp_type' => [
'in' => 'The :attribute field is not supported.', 'in' => ':attribute desteklenmiyor.',
], ],
'email' => [ 'email' => [
'exists' => 'Bu ePostayı kullanan bir hesap bulunamadı.', 'exists' => 'Bu ePostayı kullanan bir hesap bulunamadı.',
@ -195,13 +195,13 @@
'IsValidEmailList' => 'Tüm ePostaların geçerli ve dikey çubuk ile ayrılmış olması gerekiyor' 'IsValidEmailList' => 'Tüm ePostaların geçerli ve dikey çubuk ile ayrılmış olması gerekiyor'
], ],
'secret' => [ 'secret' => [
'isBase32Encoded' => 'The :attribute field must be a base32 encoded string.', 'isBase32Encoded' => ':attribute base32 kodlu bir dize olmalıdır.',
], ],
'account' => [ 'account' => [
'regex' => 'The :attribute field must not contain colon.', 'regex' => ':attribute iki nokta üst üste içermemelidir.',
], ],
'service' => [ 'service' => [
'regex' => 'The :attribute field must not contain colon.', 'regex' => ':attribute iki nokta üst üste içermemelidir.',
], ],
'label' => [ 'label' => [
'required' => 'Uri\'nin bir etiketi olmalıdır.', 'required' => 'Uri\'nin bir etiketi olmalıdır.',

View File

@ -13,115 +13,115 @@
| |
*/ */
'accepted' => 'The :attribute field must be accepted.', 'accepted' => '您必须接受 :attribute。',
'accepted_if' => 'The :attribute field must be accepted when :other is :value.', 'accepted_if' => '当 :other 为 :value 时,必须允许 :attribute 。',
'active_url' => 'The :attribute field must be a valid URL.', 'active_url' => ':attribute 不是一个有效的网址。',
'after' => 'The :attribute field must be a date after :date.', 'after' => ':attribute 必须要晚于 :date。',
'after_or_equal' => 'The :attribute field must be a date after or equal to :date.', 'after_or_equal' => ':attribute 必须要等于 :date 或更晚。',
'alpha' => 'The :attribute field must only contain letters.', 'alpha' => ':attribute 只能包含字母。',
'alpha_dash' => 'The :attribute field must only contain letters, numbers, dashes, and underscores.', 'alpha_dash' => ':attribute 只能包含字母、 数字、减号和下划线。',
'alpha_num' => 'The :attribute field must only contain letters and numbers.', 'alpha_num' => ':attribute 只能包含字母和数字',
'array' => 'The :attribute field must be an array.', 'array' => ':attribute 必须是一个数组。',
'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.', 'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.',
'before' => 'The :attribute field must be a date before :date.', 'before' => ':attribute 必须要早于 :date。',
'before_or_equal' => 'The :attribute field must be a date before or equal to :date.', 'before_or_equal' => ':attribute 必须要等于 :date 或更早。',
'between' => [ 'between' => [
'array' => 'The :attribute field must have between :min and :max items.', 'array' => ':attribute 必须只有 :min - :max 个单元。',
'file' => 'The :attribute field must be between :min and :max kilobytes.', 'file' => ':attribute 必须介于 :min - :max KB 之间。',
'numeric' => 'The :attribute field must be between :min and :max.', 'numeric' => ':attribute 必须介于 :min - :max 之间。',
'string' => 'The :attribute field must be between :min and :max characters.', 'string' => ':attribute 必须介于 :min - :max 个字符之间。',
], ],
'boolean' => ':attribute 必须为布尔值。', 'boolean' => ':attribute 必须为布尔值。',
'can' => 'The :attribute field contains an unauthorized value.', 'can' => 'The :attribute field contains an unauthorized value.',
'confirmed' => 'The :attribute field confirmation does not match.', 'confirmed' => ':attribute 两次输入不一致。',
'contains' => 'The :attribute field is missing a required value.', 'contains' => 'The :attribute field is missing a required value.',
'current_password' => '密码错误', 'current_password' => '密码错误',
'date' => 'The :attribute field must be a valid date.', 'date' => ':attribute 不是一个有效的日期。',
'date_equals' => 'The :attribute field must be a date equal to :date.', 'date_equals' => ':attribute 必须要等于 :date。',
'date_format' => 'The :attribute field must match the format :format.', 'date_format' => ':attribute 的格式必须为 :format。',
'decimal' => 'The :attribute field must have :decimal decimal places.', 'decimal' => 'The :attribute field must have :decimal decimal places.',
'declined' => 'The :attribute field must be declined.', 'declined' => '必须拒绝 :attribute. ',
'declined_if' => 'The :attribute field must be declined when :other is :value.', 'declined_if' => '当 :other 是 :value 时,:attribute 必须被拒绝.',
'different' => 'The :attribute field and :other must be different.', 'different' => ':attribute 和 :other 必须不同。',
'digits' => 'The :attribute field must be :digits digits.', 'digits' => ':attribute 必须是 :digits 位数字。',
'digits_between' => 'The :attribute field must be between :min and :max digits.', 'digits_between' => ':attribute 必须是介于 :min 和 :max 位的数字。',
'dimensions' => 'The :attribute field has invalid image dimensions.', 'dimensions' => ':attribute 图片尺寸不正确。',
'distinct' => ':attribute 已经存在。', 'distinct' => ':attribute 已经存在。',
'doesnt_end_with' => 'The :attribute field must not end with one of the following: :values.', 'doesnt_end_with' => ':attribute 不能以这些值结尾::values。',
'doesnt_start_with' => 'The :attribute field must not start with one of the following: :values.', 'doesnt_start_with' => ':attribute 不能以这些值开头::values。',
'email' => 'The :attribute field must be a valid email address.', 'email' => ':attribute 不是一个合法的邮箱。',
'ends_with' => 'The :attribute field must end with one of the following: :values.', 'ends_with' => ':attribute 必须以 :values 为结尾。',
'enum' => '选中的 :attribute 无效。', 'enum' => '选中的 :attribute 无效。',
'exists' => ':attribute 不存在。', 'exists' => ':attribute 不存在。',
'extensions' => 'The :attribute field must have one of the following extensions: :values.', 'extensions' => 'The :attribute field must have one of the following extensions: :values.',
'file' => 'The :attribute field must be a file.', 'file' => ':attribute 必须是文件。',
'filled' => ':attribute 不能为空。', 'filled' => ':attribute 不能为空。',
'gt' => [ 'gt' => [
'array' => 'The :attribute field must have more than :value items.', 'array' => ':attribute 必须多于 :value 个元素。',
'file' => 'The :attribute field must be greater than :value kilobytes.', 'file' => ':attribute 必须大于 :value KB。',
'numeric' => 'The :attribute field must be greater than :value.', 'numeric' => ':attribute 必须大于 :value。',
'string' => 'The :attribute field must be greater than :value characters.', 'string' => ':attribute 必须多于 :value 个字符。',
], ],
'gte' => [ 'gte' => [
'array' => 'The :attribute field must have :value items or more.', 'array' => ':attribute 必须多于或等于 :value 个元素。',
'file' => 'The :attribute field must be greater than or equal to :value kilobytes.', 'file' => ':attribute 必须大于或等于 :value KB。',
'numeric' => 'The :attribute field must be greater than or equal to :value.', 'numeric' => ':attribute 必须大于或等于 :value。',
'string' => 'The :attribute field must be greater than or equal to :value characters.', 'string' => ':attribute 必须大于或等于 :value 个字符。',
], ],
'hex_color' => 'The :attribute field must be a valid hexadecimal color.', 'hex_color' => 'The :attribute field must be a valid hexadecimal color.',
'image' => 'The :attribute field must be an image.', 'image' => ':attribute 必须是图片。',
'in' => '已选的属性 :attribute 无效。', 'in' => '已选的属性 :attribute 无效。',
'in_array' => 'The :attribute field must exist in :other.', 'in_array' => ':attribute 必须在 :other 中。',
'integer' => 'The :attribute field must be an integer.', 'integer' => ':attribute 必须是整数。',
'ip' => 'The :attribute field must be a valid IP address.', 'ip' => ':attribute 必须是正确的 IP 地址。',
'ipv4' => 'The :attribute field must be a valid IPv4 address.', 'ipv4' => ':attribute 必须是正确的 IPv4 地址。',
'ipv6' => 'The :attribute field must be a valid IPv6 address.', 'ipv6' => ':attribute 必须是正确的 IPv6 地址。',
'json' => 'The :attribute field must be a valid JSON string.', 'json' => ':attribute 必须是正确的 JSON 字符串。',
'list' => 'The :attribute field must be a list.', 'list' => 'The :attribute field must be a list.',
'lowercase' => 'The :attribute field must be lowercase.', 'lowercase' => 'The :attribute field must be lowercase.',
'lt' => [ 'lt' => [
'array' => 'The :attribute field must have less than :value items.', 'array' => ':attribute 必须少于 :value 个元素。',
'file' => 'The :attribute field must be less than :value kilobytes.', 'file' => ':attribute 必须小于 :value KB。',
'numeric' => 'The :attribute field must be less than :value.', 'numeric' => ':attribute 必须小于 :value。',
'string' => 'The :attribute field must be less than :value characters.', 'string' => ':attribute 必须少于 :value 个字符。',
], ],
'lte' => [ 'lte' => [
'array' => 'The :attribute field must not have more than :value items.', 'array' => ':attribute 必须少于或等于 :value 个元素。',
'file' => 'The :attribute field must be less than or equal to :value kilobytes.', 'file' => ':attribute 必须小于或等于 :value KB。',
'numeric' => 'The :attribute field must be less than or equal to :value.', 'numeric' => ':attribute 必须小于或等于 :value。',
'string' => 'The :attribute field must be less than or equal to :value characters.', 'string' => ':attribute 必须小于或等于 :value 个字符。',
], ],
'mac_address' => 'The :attribute field must be a valid MAC address.', 'mac_address' => ':attribute 必须是正确的 MAC 地址。',
'max' => [ 'max' => [
'array' => 'The :attribute field must not have more than :max items.', 'array' => ':attribute 必须少于 :max 项。',
'file' => 'The :attribute field must not be greater than :max kilobytes.', 'file' => ':attribute 必须小于 :max KB。',
'numeric' => 'The :attribute field must not be greater than :max.', 'numeric' => ':attribute 必须小于 :max。',
'string' => 'The :attribute field must not be greater than :max characters.', 'string' => ':attribute 必须少于 :max 个字符。',
], ],
'max_digits' => 'The :attribute field must not have more than :max digits.', 'max_digits' => ':attribute 必须少于 :max 位。',
'mimes' => 'The :attribute field must be a file of type: :values.', 'mimes' => ':attribute 必须是一个 :values 类型的文件。',
'mimetypes' => 'The :attribute field must be a file of type: :values.', 'mimetypes' => ':attribute 必须是一个 :values 类型的文件。',
'min' => [ 'min' => [
'array' => 'The :attribute field must have at least :min items.', 'array' => ':attribute 至少有 :min 个单元。',
'file' => 'The :attribute field must be at least :min kilobytes.', 'file' => ':attribute 大小不能小于 :min KB。',
'numeric' => 'The :attribute field must be at least :min.', 'numeric' => ':attribute 必须大于等于 :min。',
'string' => 'The :attribute field must be at least :min characters.', 'string' => ':attribute 至少为 :min 个字符。',
], ],
'min_digits' => 'The :attribute field must have at least :min digits.', 'min_digits' => ':attribute 必须多于 :min 位。',
'missing' => 'The :attribute field must be missing.', 'missing' => 'The :attribute field must be missing.',
'missing_if' => 'The :attribute field must be missing when :other is :value.', 'missing_if' => 'The :attribute field must be missing when :other is :value.',
'missing_unless' => 'The :attribute field must be missing unless :other is :value.', 'missing_unless' => 'The :attribute field must be missing unless :other is :value.',
'missing_with' => 'The :attribute field must be missing when :values is present.', 'missing_with' => 'The :attribute field must be missing when :values is present.',
'missing_with_all' => 'The :attribute field must be missing when :values are present.', 'missing_with_all' => 'The :attribute field must be missing when :values are present.',
'multiple_of' => 'The :attribute field must be a multiple of :value.', 'multiple_of' => ':attribute 必须是 :value 的倍数。',
'not_in' => '已选的属性 :attribute 非法。', 'not_in' => '已选的属性 :attribute 非法。',
'not_regex' => 'The :attribute field format is invalid.', 'not_regex' => ':attribute 的格式错误。',
'numeric' => 'The :attribute field must be a number.', 'numeric' => ':attribute 必须是一个数字。',
'password' => [ 'password' => [
'letters' => 'The :attribute field must contain at least one letter.', 'letters' => ':attribute 至少要包含一个字母。',
'mixed' => 'The :attribute field must contain at least one uppercase and one lowercase letter.', 'mixed' => ':attribute 至少要包含一个大写字母和一个小写字母。',
'numbers' => 'The :attribute field must contain at least one number.', 'numbers' => ':attribute 至少要包含一个数字。',
'symbols' => 'The :attribute field must contain at least one symbol.', 'symbols' => ':attribute 至少要包含一个符号。',
'uncompromised' => '输入的 :attribute 已在数据泄露中出现过。请选择其他的 :attribute。', 'uncompromised' => '输入的 :attribute 已在数据泄露中出现过。请选择其他的 :attribute。',
], ],
'present' => ':attribute 必须存在。', 'present' => ':attribute 必须存在。',
@ -133,7 +133,7 @@
'prohibited_if' => '当 :other 为 :value 时,:attribute 字段被禁止。', 'prohibited_if' => '当 :other 为 :value 时,:attribute 字段被禁止。',
'prohibited_unless' => '除非 :other 为 :values否则 :attribute 字段会被禁止。', 'prohibited_unless' => '除非 :other 为 :values否则 :attribute 字段会被禁止。',
'prohibits' => ':attribute 字段禁止出现 :other。', 'prohibits' => ':attribute 字段禁止出现 :other。',
'regex' => 'The :attribute field format is invalid.', 'regex' => ':attribute 格式不正确。',
'required' => ':attribute 不能为空。', 'required' => ':attribute 不能为空。',
'required_array_keys' => ':attribute 字段必须包含: :values。', 'required_array_keys' => ':attribute 字段必须包含: :values。',
'required_if' => '当 :other 为 :value 时 :attribute 不能为空。', 'required_if' => '当 :other 为 :value 时 :attribute 不能为空。',
@ -144,26 +144,26 @@
'required_with_all' => '当 :values 存在时 :attribute 不能为空。', 'required_with_all' => '当 :values 存在时 :attribute 不能为空。',
'required_without' => '当 :values 不存在时 :attribute 不能为空。', 'required_without' => '当 :values 不存在时 :attribute 不能为空。',
'required_without_all' => '当 :values 都不存在时 :attribute 不能为空。', 'required_without_all' => '当 :values 都不存在时 :attribute 不能为空。',
'same' => 'The :attribute field must match :other.', 'same' => ':attribute 和 :other 必须相同。',
'size' => [ 'size' => [
'array' => 'The :attribute field must contain :size items.', 'array' => ':attribute 必须为 :size 个单元。',
'file' => 'The :attribute field must be :size kilobytes.', 'file' => ':attribute 大小必须为 :size KB。',
'numeric' => 'The :attribute field must be :size.', 'numeric' => ':attribute 大小必须为 :size。',
'string' => 'The :attribute field must be :size characters.', 'string' => ':attribute 必须是 :size 个字符。',
], ],
'starts_with' => 'The :attribute field must start with one of the following: :values.', 'starts_with' => ':attribute 必须以 :values 为开头。',
'string' => 'The :attribute field must be a string.', 'string' => ':attribute 必须是一个字符串。',
'timezone' => 'The :attribute field must be a valid timezone.', 'timezone' => ':attribute 必须是一个有效的时区。',
'unique' => ':attribute 已经存在。', 'unique' => ':attribute 已经存在。',
'uploaded' => ':attribute 上传失败。', 'uploaded' => ':attribute 上传失败。',
'uppercase' => 'The :attribute field must be uppercase.', 'uppercase' => 'The :attribute field must be uppercase.',
'url' => 'The :attribute field must be a valid URL.', 'url' => ':attribute 必须是有效的 URL。',
'ulid' => 'The :attribute field must be a valid ULID.', 'ulid' => 'The :attribute field must be a valid ULID.',
'uuid' => 'The :attribute field must be a valid UUID.', 'uuid' => ':attribute 必须是有效的 UUID。',
'single' => '当使用 :attribute 时,请求的数据包中只能包含这一种参数。', 'single' => '当使用 :attribute 时,请求的数据包中只能包含这一种参数。',
'onlyCustomOtpWithUri' => '“uri” 参数必须单独提供,或与 “custom_otp” 参数同时提供。', 'onlyCustomOtpWithUri' => '“uri” 参数必须单独提供,或与 “custom_otp” 参数同时提供。',
'IsValidRegex' => 'The :attribute field must be a valid regex pattern.', 'IsValidRegex' => ':attribute 必须是正确的 regex 表达式。',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@ -184,10 +184,10 @@
'image' => '仅支持 jpeg、png、bmp、gif、svg 或 webp 格式。', 'image' => '仅支持 jpeg、png、bmp、gif、svg 或 webp 格式。',
], ],
'uri' => [ 'uri' => [
'regex' => 'The :attribute field is not a valid otpauth uri.', 'regex' => ':attribute 不是有效的 otpauth uri。',
], ],
'otp_type' => [ 'otp_type' => [
'in' => 'The :attribute field is not supported.', 'in' => '不支持 :attribute。',
], ],
'email' => [ 'email' => [
'exists' => '未找到与此邮箱匹配的账户。', 'exists' => '未找到与此邮箱匹配的账户。',
@ -195,13 +195,13 @@
'IsValidEmailList' => '所有邮箱地址必须是有效的,并用管道符隔开' 'IsValidEmailList' => '所有邮箱地址必须是有效的,并用管道符隔开'
], ],
'secret' => [ 'secret' => [
'isBase32Encoded' => 'The :attribute field must be a base32 encoded string.', 'isBase32Encoded' => ':attribute 必须是 Base32 编码的字符串。',
], ],
'account' => [ 'account' => [
'regex' => 'The :attribute field must not contain colon.', 'regex' => ':attribute 不能包含冒号。',
], ],
'service' => [ 'service' => [
'regex' => 'The :attribute field must not contain colon.', 'regex' => ':attribute 不能包含冒号。',
], ],
'label' => [ 'label' => [
'required' => '必须未 url 分配一个标签。', 'required' => '必须未 url 分配一个标签。',