Init
This commit is contained in:
9
lang/oc/auth.php
Normal file
9
lang/oc/auth.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'failed' => 'Aqueles identificants correspondon pas a nòstres enregistraments.',
|
||||
'password' => 'Lo senhal es incorrèct',
|
||||
'throttle' => 'Tròp d’ensages de connexion. Tornatz ensajar d’aquí :seconds segondas.',
|
||||
];
|
||||
8
lang/oc/pagination.php
Normal file
8
lang/oc/pagination.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'next' => 'Seguent »',
|
||||
'previous' => '« Predecent',
|
||||
];
|
||||
11
lang/oc/passwords.php
Normal file
11
lang/oc/passwords.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'reset' => 'Vòstre senhal es estat reïnicializat !',
|
||||
'sent' => 'Se vòstra adreça existís dins nòstra basa de donadas, recebretz un ligam de recuperacion de senhal a vòstra adreça electronica dins un momenton. Verificatz tanben los corrièls pas desirables.',
|
||||
'throttled' => 'Please wait before retrying.',
|
||||
'token' => 'Aqueste geton de reïnicializacion es invalid.',
|
||||
'user' => 'Trobam pas cap d’utilizaire amb aquesta adreça de corrièl.',
|
||||
];
|
||||
217
lang/oc/validation.php
Normal file
217
lang/oc/validation.php
Normal file
@@ -0,0 +1,217 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'accepted' => 'Lo camp :attribute deu èsser acceptat.',
|
||||
'accepted_if' => 'The :attribute must be accepted when :other is :value.',
|
||||
'active_url' => 'Lo camp :attribute es pas una URL valida.',
|
||||
'after' => 'Lo camp :attribute deu èsser una data posteriora a :date.',
|
||||
'after_or_equal' => 'Lo camp :attribute deu èsser una data posteriora o egala a :date.',
|
||||
'alpha' => 'Lo camp :attribute a de conténer solament de letras.',
|
||||
'alpha_dash' => 'Lo camp :attribute a de conténer solament de letras, nombres e de tirets.',
|
||||
'alpha_num' => 'Lo camp :attribute a de conténer solament de letras e nombres.',
|
||||
'array' => 'Lo camp :attribute deu èsser un tablèu.',
|
||||
'ascii' => 'The :attribute must only contain single-byte alphanumeric characters and symbols.',
|
||||
'before' => 'Lo camp :attribute deu èsser una data anteriora a :date.',
|
||||
'before_or_equal' => 'Lo camp :attribute deu èsser una data anteriora o egala a :date.',
|
||||
'between' => [
|
||||
'array' => 'Lo tablèu :attribute deu aver entre :min e :max elements.',
|
||||
'file' => 'La talha de :attribute deu èsser entre :min e :max kiloctets.',
|
||||
'numeric' => 'La valor de :attribute deu èsser entre :min e :max.',
|
||||
'string' => 'Lo tèxt :attribute deu conténer entre :min e :max caractèrs.',
|
||||
],
|
||||
'boolean' => 'Lo camp :attribute deu èsser true o false.',
|
||||
'can' => 'The :attribute field contains an unauthorized value.',
|
||||
'confirmed' => 'Lo camp de confirmacion :attribute correspond pas.',
|
||||
'current_password' => 'The password is incorrect.',
|
||||
'date' => 'Lo camp :attribute es pas una data valida.',
|
||||
'date_equals' => 'Lo camp :attribute deu èsser una data egala a :date.',
|
||||
'date_format' => ':Attribute correspond pas al format :format.',
|
||||
'decimal' => 'The :attribute must have :decimal decimal places.',
|
||||
'declined' => 'The :attribute must be declined.',
|
||||
'declined_if' => 'The :attribute must be declined when :other is :value.',
|
||||
'different' => 'Los camps :attribute e :other devon èsser diferents.',
|
||||
'digits' => ':Attribute deu èsser un nombre de :digits chifras.',
|
||||
'digits_between' => ':Attribute deu èsser entre :min e :max chifras.',
|
||||
'dimensions' => 'L’imatge :attribute a de dimensions invalidas.',
|
||||
'distinct' => 'Lo camp :attribute a un doblon.',
|
||||
'doesnt_end_with' => 'The :attribute may not end with one of the following: :values.',
|
||||
'doesnt_start_with' => 'The :attribute may not start with one of the following: :values.',
|
||||
'email' => ':Attribute deu èsser una adreça de corrièl valida.',
|
||||
'ends_with' => 'Lo camp :attribute deu acabar per una de las valors seguentas : :values',
|
||||
'enum' => 'The selected :attribute is invalid.',
|
||||
'exists' => 'Lo :attribute seleccionat es invalid.',
|
||||
'file' => 'Lo camp :attribute deu èsser un fichièr.',
|
||||
'filled' => 'Lo camp :attribute deu aver una valor.',
|
||||
'gt' => [
|
||||
'array' => 'Lo tablèu :attribute deu conténer mai de :value elements.',
|
||||
'file' => 'La talha del fichièr de :attribute deu èsser superiora a :value kilo-octets.',
|
||||
'numeric' => 'La valor de :attribute deu èsser superiora a :value.',
|
||||
'string' => 'Lo tèxt :attribute deu conténer mai de :value caractèrs.',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => 'Lo tablèu :attribute deu conténer almens :value elements.',
|
||||
'file' => 'La talha del fichièr de :attribute deu èsser superiora o egala a :value kilo-octets.',
|
||||
'numeric' => 'La valor de :attribute deu èsser superiora o egala a :value.',
|
||||
'string' => 'Lo tèxt :attribute deu conténer almens :value caractèrs.',
|
||||
],
|
||||
'image' => 'Lo camp :attribute deu èsser un imatge.',
|
||||
'in' => 'Lo camp :attribute selecionnat es invalid.',
|
||||
'in_array' => 'Lo camp :attribute existís pas dins :other.',
|
||||
'integer' => 'Lo camp :attribute deu èsser un nombre entièr.',
|
||||
'ip' => 'Lo camp :attribute deu èsser una adreça IP valida.',
|
||||
'ipv4' => 'Lo camp :attribute deu èsser una adreça IPv4 valida.',
|
||||
'ipv6' => 'Lo camp :attribute deu èsser una adreça IPv6 valida.',
|
||||
'json' => 'Lo camp :attribute deu èsser una cadena JSON valida.',
|
||||
'lowercase' => 'The :attribute must be lowercase.',
|
||||
'lt' => [
|
||||
'array' => 'Lo tablèu :attribute deu conténer almens :value elements.',
|
||||
'file' => 'La talha del fichièr de :attribute deu èsser inferiora a :value kilo-octets.',
|
||||
'numeric' => 'La valor de :attribute deu èsser inferiora a :value.',
|
||||
'string' => 'Lo tèxt :attribute deu conténer almens :value caractèrs.',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => 'Lo tablèu :attribute deu conténer al pus mai :value elements.',
|
||||
'file' => 'La talha del fichièr de :attribute deu èsser inferiora o egala :value kilo-octets.',
|
||||
'numeric' => 'La valor de :attribute deu èsser inferiora o egala a :value.',
|
||||
'string' => 'Lo tèxt :attribute deu conténer al pus mai :value caractèrs.',
|
||||
],
|
||||
'mac_address' => 'The :attribute must be a valid MAC address.',
|
||||
'max' => [
|
||||
'array' => 'Lo tablèu :attribute deu pas conténer mai de :max elements.',
|
||||
'file' => 'La talha del fichièr :attribute deu pas èsser superior a :max kiloctets.',
|
||||
'numeric' => 'La valor de :attribute deu pas èsser superiora a :max.',
|
||||
'string' => 'Lo tèxt :attribute deu èsser superior a :max caractèrs.',
|
||||
],
|
||||
'max_digits' => 'The :attribute must not have more than :max digits.',
|
||||
'mimes' => 'Lo camp :attribute deu èsser un fichièr del tipe : :values.',
|
||||
'mimetypes' => 'Lo camp :attribute deu èsser un fichièr del tipe : :values.',
|
||||
'min' => [
|
||||
'array' => 'Lo tablèu :attribute deu conténer almens :min elements.',
|
||||
'file' => 'La talha del fichièr de :attribute deu fa almens :min kiloctets.',
|
||||
'numeric' => 'La valor de :attribute deu fa almens :min o mai.',
|
||||
'string' => 'Lo tèxt :attribute deu fa almens :min caractèrs.',
|
||||
],
|
||||
'min_digits' => 'The :attribute must have at least :min digits.',
|
||||
'missing' => 'The :attribute field must be missing.',
|
||||
'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_with' => 'The :attribute field must be missing when :values is present.',
|
||||
'missing_with_all' => 'The :attribute field must be missing when :values are present.',
|
||||
'multiple_of' => 'La valor de :attribute deu èsser un multiple de :value',
|
||||
'not_in' => 'Lo camp :attribute seleccionat es invalid.',
|
||||
'not_regex' => 'Lo format :attribute es invalid.',
|
||||
'numeric' => 'Lo camp :attribute deu èsser un nombre.',
|
||||
'password' => [
|
||||
'letters' => 'The :attribute must contain at least one letter.',
|
||||
'mixed' => 'The :attribute must contain at least one uppercase and one lowercase letter.',
|
||||
'numbers' => 'The :attribute must contain at least one number.',
|
||||
'symbols' => 'The :attribute must contain at least one symbol.',
|
||||
'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.',
|
||||
],
|
||||
'present' => 'Lo camp :attribute deu èsser present.',
|
||||
'prohibited' => 'The :attribute field is prohibited.',
|
||||
'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
|
||||
'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',
|
||||
'prohibits' => 'The :attribute field prohibits :other from being present.',
|
||||
'regex' => 'Lo format :attribute es invalid.',
|
||||
'required' => 'Lo camp :attribute es obligatòri.',
|
||||
'required_array_keys' => 'The :attribute field must contain entries for: :values.',
|
||||
'required_if' => 'Lo camp :attribute es obligatòri quand :other es :value.',
|
||||
'required_if_accepted' => 'The :attribute field is required when :other is accepted.',
|
||||
'required_unless' => 'Lo camp :attribute es obligatòri levat se :other es dins :values.',
|
||||
'required_with' => 'Lo camp :attribute es obligatòri quand :values es present.',
|
||||
'required_with_all' => 'Lo camp :attribute es obligatòri quand :values es present.',
|
||||
'required_without' => 'Lo camp :attribute es obligatòri quand :values es pas present.',
|
||||
'required_without_all' => 'Lo camp :attribute es obligatòri quand cap de :values son presents.',
|
||||
'same' => 'Los camps :attribute e :other devon correspondre.',
|
||||
'size' => [
|
||||
'array' => 'Lo tablèu :attribute deu conténer :size elements.',
|
||||
'file' => 'La talha del fichièr de :attribute deu fa :size kiloctets.',
|
||||
'numeric' => 'La valor de :attribute deu fa :size.',
|
||||
'string' => 'Lo tèxt :attribute deu fa :size caractèrs.',
|
||||
],
|
||||
'starts_with' => 'Lo camp :attribute deu començar amb una de las valors seguentas : :values',
|
||||
'string' => 'Lo camp :attribute deu èsser una cadena de tèxt.',
|
||||
'timezone' => 'Lo camp :attribute deu èsser una zòna orària valida.',
|
||||
'ulid' => 'The :attribute must be a valid ULID.',
|
||||
'unique' => 'La valor del camp :attribute es ja presa.',
|
||||
'uploaded' => 'Lo fichièr de :attribute a pas pogut s’enviar.',
|
||||
'uppercase' => 'The :attribute must be uppercase.',
|
||||
'url' => 'Lo format de :attribute es invalid.',
|
||||
'uuid' => 'Lo camp :attribute deu èsser un UUID valid',
|
||||
'attributes' => [
|
||||
'address' => 'address',
|
||||
'age' => 'age',
|
||||
'amount' => 'amount',
|
||||
'area' => 'area',
|
||||
'available' => 'available',
|
||||
'birthday' => 'birthday',
|
||||
'body' => 'body',
|
||||
'city' => 'city',
|
||||
'content' => 'content',
|
||||
'country' => 'country',
|
||||
'created_at' => 'created at',
|
||||
'creator' => 'creator',
|
||||
'current_password' => 'current password',
|
||||
'date' => 'date',
|
||||
'date_of_birth' => 'date of birth',
|
||||
'day' => 'day',
|
||||
'deleted_at' => 'deleted at',
|
||||
'description' => 'description',
|
||||
'district' => 'district',
|
||||
'duration' => 'duration',
|
||||
'email' => 'email',
|
||||
'excerpt' => 'excerpt',
|
||||
'filter' => 'filter',
|
||||
'first_name' => 'first name',
|
||||
'gender' => 'gender',
|
||||
'group' => 'group',
|
||||
'hour' => 'hour',
|
||||
'image' => 'image',
|
||||
'last_name' => 'last name',
|
||||
'lesson' => 'lesson',
|
||||
'line_address_1' => 'line address 1',
|
||||
'line_address_2' => 'line address 2',
|
||||
'message' => 'message',
|
||||
'middle_name' => 'middle name',
|
||||
'minute' => 'minute',
|
||||
'mobile' => 'mobile',
|
||||
'month' => 'month',
|
||||
'name' => 'name',
|
||||
'national_code' => 'national code',
|
||||
'number' => 'number',
|
||||
'password' => 'password',
|
||||
'password_confirmation' => 'password confirmation',
|
||||
'phone' => 'phone',
|
||||
'photo' => 'photo',
|
||||
'postal_code' => 'postal code',
|
||||
'price' => 'price',
|
||||
'province' => 'province',
|
||||
'recaptcha_response_field' => 'recaptcha response field',
|
||||
'remember' => 'remember',
|
||||
'restored_at' => 'restored at',
|
||||
'result_text_under_image' => 'result text under image',
|
||||
'role' => 'role',
|
||||
'second' => 'second',
|
||||
'sex' => 'sex',
|
||||
'short_text' => 'short text',
|
||||
'size' => 'size',
|
||||
'state' => 'state',
|
||||
'street' => 'street',
|
||||
'student' => 'student',
|
||||
'subject' => 'subject',
|
||||
'teacher' => 'teacher',
|
||||
'terms' => 'terms',
|
||||
'test_description' => 'test description',
|
||||
'test_locale' => 'test locale',
|
||||
'test_name' => 'test name',
|
||||
'text' => 'text',
|
||||
'time' => 'time',
|
||||
'title' => 'title',
|
||||
'updated_at' => 'updated at',
|
||||
'username' => 'username',
|
||||
'year' => 'year',
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user