Initial release
This commit is contained in:
19
resources/lang/en/auth.php
Normal file
19
resources/lang/en/auth.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used during authentication for various
|
||||
| messages that we need to display to the user. You are free to modify
|
||||
| these language lines according to your application's requirements.
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => 'These credentials do not match our records.',
|
||||
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
||||
|
||||
];
|
||||
19
resources/lang/en/pagination.php
Normal file
19
resources/lang/en/pagination.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Previous',
|
||||
'next' => 'Next »',
|
||||
|
||||
];
|
||||
22
resources/lang/en/passwords.php
Normal file
22
resources/lang/en/passwords.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reset Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
'reset' => 'Your password has been reset!',
|
||||
'sent' => 'We have e-mailed your password reset link!',
|
||||
'throttled' => 'Please wait before retrying.',
|
||||
'token' => 'This password reset token is invalid.',
|
||||
'user' => "We can't find a user with that e-mail address.",
|
||||
|
||||
];
|
||||
151
resources/lang/en/validation.php
Normal file
151
resources/lang/en/validation.php
Normal file
@@ -0,0 +1,151 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| as the size rules. Feel free to tweak each of these messages here.
|
||||
|
|
||||
*/
|
||||
|
||||
'accepted' => 'The :attribute must be accepted.',
|
||||
'active_url' => 'The :attribute is not a valid URL.',
|
||||
'after' => 'The :attribute must be a date after :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => 'The :attribute may only contain letters.',
|
||||
'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.',
|
||||
'alpha_num' => 'The :attribute may only contain letters and numbers.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => 'The :attribute must be a date before :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => 'The :attribute must be between :min and :max.',
|
||||
'file' => 'The :attribute must be between :min and :max kilobytes.',
|
||||
'string' => 'The :attribute must be between :min and :max characters.',
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'date' => 'The :attribute is not a valid date.',
|
||||
'date_equals' => 'The :attribute must be a date equal to :date.',
|
||||
'date_format' => 'The :attribute does not match the format :format.',
|
||||
'different' => 'The :attribute and :other must be different.',
|
||||
'digits' => 'The :attribute must be :digits digits.',
|
||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'The :attribute must be a valid email address.',
|
||||
'ends_with' => 'The :attribute must end with one of the following: :values.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'gt' => [
|
||||
'numeric' => 'The :attribute must be greater than :value.',
|
||||
'file' => 'The :attribute must be greater than :value kilobytes.',
|
||||
'string' => 'The :attribute must be greater than :value characters.',
|
||||
'array' => 'The :attribute must have more than :value items.',
|
||||
],
|
||||
'gte' => [
|
||||
'numeric' => 'The :attribute must be greater than or equal :value.',
|
||||
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
|
||||
'string' => 'The :attribute must be greater than or equal :value characters.',
|
||||
'array' => 'The :attribute must have :value items or more.',
|
||||
],
|
||||
'image' => 'The :attribute must be an image.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'The :attribute must be an integer.',
|
||||
'ip' => 'The :attribute must be a valid IP address.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'lt' => [
|
||||
'numeric' => 'The :attribute must be less than :value.',
|
||||
'file' => 'The :attribute must be less than :value kilobytes.',
|
||||
'string' => 'The :attribute must be less than :value characters.',
|
||||
'array' => 'The :attribute must have less than :value items.',
|
||||
],
|
||||
'lte' => [
|
||||
'numeric' => 'The :attribute must be less than or equal :value.',
|
||||
'file' => 'The :attribute must be less than or equal :value kilobytes.',
|
||||
'string' => 'The :attribute must be less than or equal :value characters.',
|
||||
'array' => 'The :attribute must not have more than :value items.',
|
||||
],
|
||||
'max' => [
|
||||
'numeric' => 'The :attribute may not be greater than :max.',
|
||||
'file' => 'The :attribute may not be greater than :max kilobytes.',
|
||||
'string' => 'The :attribute may not be greater than :max characters.',
|
||||
'array' => 'The :attribute may not have more than :max items.',
|
||||
],
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'The :attribute must be at least :min.',
|
||||
'file' => 'The :attribute must be at least :min kilobytes.',
|
||||
'string' => 'The :attribute must be at least :min characters.',
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
],
|
||||
'not_in' => 'The selected :attribute is invalid.',
|
||||
'not_regex' => 'The :attribute format is invalid.',
|
||||
'numeric' => 'The :attribute must be a number.',
|
||||
'password' => 'The password is incorrect.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => 'The :attribute format is invalid.',
|
||||
'required' => 'The :attribute field is required.',
|
||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'The :attribute field is required when :values is present.',
|
||||
'required_with_all' => 'The :attribute field is required when :values are 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.',
|
||||
'same' => 'The :attribute and :other must match.',
|
||||
'size' => [
|
||||
'numeric' => 'The :attribute must be :size.',
|
||||
'file' => 'The :attribute must be :size kilobytes.',
|
||||
'string' => 'The :attribute must be :size characters.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
],
|
||||
'starts_with' => 'The :attribute must start with one of the following: :values.',
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => 'The :attribute has already been taken.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => 'The :attribute format is invalid.',
|
||||
'uuid' => 'The :attribute must be a valid UUID.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => [
|
||||
'attribute-name' => [
|
||||
'rule-name' => 'custom-message',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Attributes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used to swap our attribute placeholder
|
||||
| with something more reader friendly such as "E-Mail Address" instead
|
||||
| of "email". This simply helps us make our message more expressive.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => [],
|
||||
|
||||
];
|
||||
17
resources/lang/es/auth.php
Normal file
17
resources/lang/es/auth.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used during authentication for various
|
||||
| messages that we need to display to the user. You are free to modify
|
||||
| these language lines according to your application's requirements.
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => 'Estas credenciales no coinciden con nuestros registros.',
|
||||
'throttle' => 'Demasiados intentos de acceso. Por favor intente nuevamente en :seconds segundos.',
|
||||
];
|
||||
17
resources/lang/es/pagination.php
Normal file
17
resources/lang/es/pagination.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Anterior',
|
||||
'next' => 'Siguiente »',
|
||||
];
|
||||
20
resources/lang/es/passwords.php
Normal file
20
resources/lang/es/passwords.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
'password' => 'Las contraseñas deben coincidir y contener al menos 6 caracteres',
|
||||
'reset' => '¡Tu contraseña ha sido restablecida!',
|
||||
'sent' => '¡Te hemos enviado por correo el enlace para restablecer tu contraseña!',
|
||||
'token' => 'El token de recuperación de contraseña es inválido.',
|
||||
'user' => 'No podemos encontrar ningún usuario con ese correo electrónico.',
|
||||
];
|
||||
153
resources/lang/es/validation.php
Normal file
153
resources/lang/es/validation.php
Normal file
@@ -0,0 +1,153 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| as the size rules. Feel free to tweak each of these messages.
|
||||
|
|
||||
*/
|
||||
|
||||
'accepted' => ':attribute debe ser aceptado.',
|
||||
'active_url' => ':attribute no es una URL válida.',
|
||||
'after' => ':attribute debe ser una fecha posterior a :date.',
|
||||
'after_or_equal' => ':attribute debe ser una fecha posterior o igual a :date.',
|
||||
'alpha' => ':attribute sólo debe contener letras.',
|
||||
'alpha_dash' => ':attribute sólo debe contener letras, números y guiones.',
|
||||
'alpha_num' => ':attribute sólo debe contener letras y números.',
|
||||
'array' => ':attribute debe ser un conjunto.',
|
||||
'before' => ':attribute debe ser una fecha anterior a :date.',
|
||||
'before_or_equal' => ':attribute debe ser una fecha anterior o igual a :date.',
|
||||
'between' => [
|
||||
'numeric' => ':attribute tiene que estar entre :min - :max.',
|
||||
'file' => ':attribute debe pesar entre :min - :max kilobytes.',
|
||||
'string' => ':attribute tiene que tener entre :min - :max caracteres.',
|
||||
'array' => ':attribute tiene que tener entre :min - :max ítems.',
|
||||
],
|
||||
'boolean' => 'El campo :attribute debe tener un valor verdadero o falso.',
|
||||
'confirmed' => 'La confirmación de :attribute no coincide.',
|
||||
'date' => ':attribute no es una fecha válida.',
|
||||
'date_format' => ':attribute no corresponde al formato :format.',
|
||||
'different' => ':attribute y :other deben ser diferentes.',
|
||||
'digits' => ':attribute debe tener :digits dígitos.',
|
||||
'digits_between' => ':attribute debe tener entre :min y :max dígitos.',
|
||||
'dimensions' => 'Las dimensiones de la imagen :attribute no son válidas.',
|
||||
'distinct' => 'El campo :attribute contiene un valor duplicado.',
|
||||
'email' => ':attribute no es un correo válido',
|
||||
'exists' => ':attribute es inválido.',
|
||||
'file' => 'El campo :attribute debe ser un archivo.',
|
||||
'filled' => 'El campo :attribute es obligatorio.',
|
||||
'image' => ':attribute debe ser una imagen.',
|
||||
'in' => ':attribute es inválido.',
|
||||
'in_array' => 'El campo :attribute no existe en :other.',
|
||||
'integer' => ':attribute debe ser un número entero.',
|
||||
'ip' => ':attribute debe ser una dirección IP válida.',
|
||||
'ipv4' => ':attribute debe ser un dirección IPv4 válida',
|
||||
'ipv6' => ':attribute debe ser un dirección IPv6 válida.',
|
||||
'json' => 'El campo :attribute debe tener una cadena JSON válida.',
|
||||
'max' => [
|
||||
'numeric' => ':attribute no debe ser mayor a :max.',
|
||||
'file' => ':attribute no debe ser mayor que :max kilobytes.',
|
||||
'string' => ':attribute no debe ser mayor que :max caracteres.',
|
||||
'array' => ':attribute no debe tener más de :max elementos.',
|
||||
],
|
||||
'mimes' => ':attribute debe ser un archivo con formato: :values.',
|
||||
'mimetypes' => ':attribute debe ser un archivo con formato: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'El tamaño de :attribute debe ser de al menos :min.',
|
||||
'file' => 'El tamaño de :attribute debe ser de al menos :min kilobytes.',
|
||||
'string' => ':attribute debe contener al menos :min caracteres.',
|
||||
'array' => ':attribute debe tener al menos :min elementos.',
|
||||
],
|
||||
'not_in' => ':attribute es inválido.',
|
||||
'numeric' => ':attribute debe ser numérico.',
|
||||
'present' => 'El campo :attribute debe estar presente.',
|
||||
'regex' => 'El formato de :attribute es inválido.',
|
||||
'required' => 'El campo :attribute es obligatorio.',
|
||||
'required_if' => 'El campo :attribute es obligatorio cuando :other es :value.',
|
||||
'required_unless' => 'El campo :attribute es obligatorio a menos que :other esté en :values.',
|
||||
'required_with' => 'El campo :attribute es obligatorio cuando :values está presente.',
|
||||
'required_with_all' => 'El campo :attribute es obligatorio cuando :values 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én presentes.',
|
||||
'same' => ':attribute y :other deben coincidir.',
|
||||
'size' => [
|
||||
'numeric' => 'El tamaño de :attribute debe ser :size.',
|
||||
'file' => 'El tamaño de :attribute debe ser :size kilobytes.',
|
||||
'string' => ':attribute debe contener :size caracteres.',
|
||||
'array' => ':attribute debe contener :size elementos.',
|
||||
],
|
||||
'string' => 'El campo :attribute debe ser una cadena de caracteres.',
|
||||
'timezone' => 'El :attribute debe ser una zona válida.',
|
||||
'unique' => ':attribute ya ha sido registrado.',
|
||||
'uploaded' => 'Subir :attribute ha fallado.',
|
||||
'url' => 'El formato :attribute es inválido.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => [
|
||||
'password' => [
|
||||
'min' => 'La :attribute debe contener más de :min caracteres',
|
||||
],
|
||||
'email' => [
|
||||
'unique' => 'El :attribute ya ha sido registrado.',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Attributes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used to swap attribute place-holders
|
||||
| with something more reader friendly such as E-Mail Address instead
|
||||
| of "email". This simply helps us make messages a little cleaner.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => [
|
||||
'name' => 'nombre',
|
||||
'username' => 'usuario',
|
||||
'email' => 'correo electrónico',
|
||||
'first_name' => 'nombre',
|
||||
'last_name' => 'apellido',
|
||||
'password' => 'contraseña',
|
||||
'password_confirmation' => 'confirmación de la contraseña',
|
||||
'city' => 'ciudad',
|
||||
'country' => 'país',
|
||||
'address' => 'dirección',
|
||||
'phone' => 'teléfono',
|
||||
'mobile' => 'móvil',
|
||||
'age' => 'edad',
|
||||
'sex' => 'sexo',
|
||||
'gender' => 'género',
|
||||
'year' => 'año',
|
||||
'month' => 'mes',
|
||||
'day' => 'día',
|
||||
'hour' => 'hora',
|
||||
'minute' => 'minuto',
|
||||
'second' => 'segundo',
|
||||
'title' => 'título',
|
||||
'content' => 'contenido',
|
||||
'body' => 'contenido',
|
||||
'description' => 'descripción',
|
||||
'excerpt' => 'extracto',
|
||||
'date' => 'fecha',
|
||||
'time' => 'hora',
|
||||
'subject' => 'asunto',
|
||||
'message' => 'mensaje',
|
||||
],
|
||||
];
|
||||
16
resources/lang/fr/auth.php
Normal file
16
resources/lang/fr/auth.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used during authentication for various
|
||||
| messages that we need to display to the user. You are free to modify
|
||||
| these language lines according to your application's requirements.
|
||||
|
|
||||
*/
|
||||
'failed' => 'Ces identifiants ne correspondent pas à nos enregistrements',
|
||||
'throttle' => 'Trop de tentatives de connexion. Veuillez essayer de nouveau dans :seconds secondes.',
|
||||
];
|
||||
19
resources/lang/fr/pagination.php
Normal file
19
resources/lang/fr/pagination.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Précédent',
|
||||
'next' => 'Suivant »',
|
||||
|
||||
];
|
||||
19
resources/lang/fr/passwords.php
Normal file
19
resources/lang/fr/passwords.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
'password' => 'Les mots de passe doivent contenir au moins six caractères et doivent être identiques.',
|
||||
'reset' => 'Votre mot de passe a été réinitialisé !',
|
||||
'sent' => 'Nous vous avons envoyé par courriel le lien de réinitialisation du mot de passe !',
|
||||
'token' => "Ce jeton de réinitialisation du mot de passe n'est pas valide.",
|
||||
'user' => "Aucun utilisateur n'a été trouvé avec cette adresse e-mail.",
|
||||
];
|
||||
149
resources/lang/fr/validation.php
Normal file
149
resources/lang/fr/validation.php
Normal file
@@ -0,0 +1,149 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| such as the size rules. Feel free to tweak each of these messages.
|
||||
|
|
||||
*/
|
||||
|
||||
'accepted' => 'Le champ :attribute doit être accepté.',
|
||||
'active_url' => "Le champ :attribute n'est pas une URL valide.",
|
||||
'after' => 'Le champ :attribute doit être une date postérieure au :date.',
|
||||
'after_or_equal' => 'Le champ :attribute doit être une date postérieure ou égale au :date.',
|
||||
'alpha' => 'Le champ :attribute doit seulement contenir des lettres.',
|
||||
'alpha_dash' => 'Le champ :attribute doit seulement contenir des lettres, des chiffres et des tirets.',
|
||||
'alpha_num' => 'Le champ :attribute doit seulement contenir des chiffres et des lettres.',
|
||||
'array' => 'Le champ :attribute doit être un tableau.',
|
||||
'before' => 'Le champ :attribute doit être une date antérieure au :date.',
|
||||
'before_or_equal' => 'Le champ :attribute doit être une date antérieure ou égale au :date.',
|
||||
'between' => [
|
||||
'numeric' => 'La valeur de :attribute doit être comprise entre :min et :max.',
|
||||
'file' => 'La taille du fichier de :attribute doit être comprise entre :min et :max kilo-octets.',
|
||||
'string' => 'Le texte :attribute doit contenir entre :min et :max caractères.',
|
||||
'array' => 'Le tableau :attribute doit contenir entre :min et :max éléments.',
|
||||
],
|
||||
'boolean' => 'Le champ :attribute doit être vrai ou faux.',
|
||||
'confirmed' => 'Le champ de confirmation :attribute ne correspond pas.',
|
||||
'date' => "Le champ :attribute n'est pas une date valide.",
|
||||
'date_format' => 'Le champ :attribute ne correspond pas au format :format.',
|
||||
'different' => 'Les champs :attribute et :other doivent être différents.',
|
||||
'digits' => 'Le champ :attribute doit contenir :digits chiffres.',
|
||||
'digits_between' => 'Le champ :attribute doit contenir entre :min et :max chiffres.',
|
||||
'dimensions' => "La taille de l'image :attribute n'est pas conforme.",
|
||||
'distinct' => 'Le champ :attribute a une valeur dupliquée.',
|
||||
'email' => 'Le champ :attribute doit être une adresse e-mail valide.',
|
||||
'exists' => 'Le champ :attribute sélectionné est invalide.',
|
||||
'file' => 'Le champ :attribute doit être un fichier.',
|
||||
'filled' => 'Le champ :attribute est obligatoire.',
|
||||
'image' => 'Le champ :attribute doit être une image.',
|
||||
'in' => 'Le champ :attribute est invalide.',
|
||||
'in_array' => 'Le champ :attribute n\'existe pas dans :other.',
|
||||
'integer' => 'Le champ :attribute doit être un entier.',
|
||||
'ip' => 'Le champ :attribute doit être une adresse IP valide.',
|
||||
'json' => 'Le champ :attribute doit être un document JSON valide.',
|
||||
'max' => [
|
||||
'numeric' => 'La valeur de :attribute ne peut être supérieure à :max.',
|
||||
'file' => 'La taille du fichier de :attribute ne peut pas dépasser :max kilo-octets.',
|
||||
'string' => 'Le texte de :attribute ne peut contenir plus de :max caractères.',
|
||||
'array' => 'Le tableau :attribute ne peut contenir plus de :max éléments.',
|
||||
],
|
||||
'mimes' => 'Le champ :attribute doit être un fichier de type : :values.',
|
||||
'mimetypes' => 'Le champ :attribute doit être un fichier de type : :values.',
|
||||
'min' => [
|
||||
'numeric' => 'La valeur de :attribute doit être supérieure ou égale à :min.',
|
||||
'file' => 'La taille du fichier de :attribute doit être supérieure à :min kilo-octets.',
|
||||
'string' => 'Le texte :attribute doit contenir au moins :min caractères.',
|
||||
'array' => 'Le tableau :attribute doit contenir au moins :min éléments.',
|
||||
],
|
||||
'not_in' => "Le champ :attribute sélectionné n'est pas valide.",
|
||||
'numeric' => 'Le champ :attribute doit contenir un nombre.',
|
||||
'present' => 'Le champ :attribute doit être présent.',
|
||||
'regex' => 'Le format du champ :attribute est invalide.',
|
||||
'required' => 'Le champ :attribute est obligatoire.',
|
||||
'required_if' => 'Le champ :attribute est obligatoire quand la valeur de :other est :value.',
|
||||
'required_unless' => 'Le champ :attribute est obligatoire sauf si :other est :values.',
|
||||
'required_with' => 'Le champ :attribute est obligatoire quand :values est présent.',
|
||||
'required_with_all' => 'Le champ :attribute est obligatoire quand :values est présent.',
|
||||
'required_without' => "Le champ :attribute est obligatoire quand :values n'est pas présent.",
|
||||
'required_without_all' => "Le champ :attribute est requis quand aucun de :values n'est présent.",
|
||||
'same' => 'Les champs :attribute et :other doivent être identiques.',
|
||||
'size' => [
|
||||
'numeric' => 'La valeur de :attribute doit être :size.',
|
||||
'file' => 'La taille du fichier de :attribute doit être de :size kilo-octets.',
|
||||
'string' => 'Le texte de :attribute doit contenir :size caractères.',
|
||||
'array' => 'Le tableau :attribute doit contenir :size éléments.',
|
||||
],
|
||||
'string' => 'Le champ :attribute doit être une chaîne de caractères.',
|
||||
'timezone' => 'Le champ :attribute doit être un fuseau horaire valide.',
|
||||
'unique' => 'La valeur du champ :attribute est déjà utilisée.',
|
||||
'uploaded' => "Le fichier du champ :attribute n'a pu être téléchargé.",
|
||||
'url' => "Le format de l'URL de :attribute n'est pas valide.",
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => [
|
||||
'attribute-name' => [
|
||||
'rule-name' => 'custom-message',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Attributes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used to swap attribute place-holders
|
||||
| with something more reader friendly such as E-Mail Address instead
|
||||
| of "email". This simply helps us make messages a little cleaner.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => [
|
||||
'name' => 'nom',
|
||||
'username' => 'nom d\'utilisateur',
|
||||
'email' => 'adresse e-mail',
|
||||
'first_name' => 'prénom',
|
||||
'last_name' => 'nom',
|
||||
'password' => 'mot de passe',
|
||||
'password_confirmation' => 'confirmation du mot de passe',
|
||||
'city' => 'ville',
|
||||
'country' => 'pays',
|
||||
'address' => 'adresse',
|
||||
'phone' => 'téléphone',
|
||||
'mobile' => 'portable',
|
||||
'age' => 'âge',
|
||||
'sex' => 'sexe',
|
||||
'gender' => 'genre',
|
||||
'day' => 'jour',
|
||||
'month' => 'mois',
|
||||
'year' => 'année',
|
||||
'hour' => 'heure',
|
||||
'minute' => 'minute',
|
||||
'second' => 'seconde',
|
||||
'title' => 'titre',
|
||||
'content' => 'contenu',
|
||||
'description' => 'description',
|
||||
'excerpt' => 'extrait',
|
||||
'date' => 'date',
|
||||
'time' => 'heure',
|
||||
'available' => 'disponible',
|
||||
'size' => 'taille',
|
||||
],
|
||||
|
||||
];
|
||||
17
resources/lang/tr/auth.php
Normal file
17
resources/lang/tr/auth.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used during authentication for various
|
||||
| messages that we need to display to the user. You are free to modify
|
||||
| these language lines according to your application's requirements.
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => 'Girilmiş olan kullanıcı verileri sistemdekiler ile eşleşmemektedir.',
|
||||
'throttle' => 'Çok fazla oturum açma girişiminde bulundunuz. Lütfen :seconds saniye içerisinde tekrar deneyiz.',
|
||||
];
|
||||
17
resources/lang/tr/pagination.php
Normal file
17
resources/lang/tr/pagination.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Önceki',
|
||||
'next' => 'Sonraki »',
|
||||
];
|
||||
20
resources/lang/tr/passwords.php
Normal file
20
resources/lang/tr/passwords.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
'password' => 'Parolanız en az altı karakter olmalı ve doğrulama ile eşleşmelidir.',
|
||||
'reset' => 'Parolanız sıfırlandı!',
|
||||
'sent' => 'Parola sıfırlama bağlantınız e-posta ile gönderildi!',
|
||||
'token' => 'Parola sıfırlama adresi/kodu geçersiz.',
|
||||
'user' => 'Bu e-posta adresi ile kayıtlı bir üye bulunmuyor.',
|
||||
];
|
||||
145
resources/lang/tr/validation.php
Normal file
145
resources/lang/tr/validation.php
Normal file
@@ -0,0 +1,145 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| as the size rules. Feel free to tweak each of these messages.
|
||||
|
|
||||
*/
|
||||
|
||||
'accepted' => ':attribute kabul edilmelidir.',
|
||||
'active_url' => ':attribute geçerli bir URL olmalıdır.',
|
||||
'after' => ':attribute şundan daha eski bir tarih olmalıdır :date.',
|
||||
'after_or_equal' => ':attribute tarihi :date tarihinden sonra veya tarihine eşit olmalıdır.',
|
||||
'alpha' => ':attribute sadece harflerden oluşmalıdır.',
|
||||
'alpha_dash' => ':attribute sadece harfler, rakamlar ve tirelerden oluşmalıdır.',
|
||||
'alpha_num' => ':attribute sadece harfler ve rakamlar içermelidir.',
|
||||
'array' => ':attribute dizi olmalıdır.',
|
||||
'before' => ':attribute şundan daha önceki bir tarih olmalıdır :date.',
|
||||
'before_or_equal' => ':attribute tarihi :date tarihinden önce veya tarihine eşit olmalıdır.',
|
||||
'between' => [
|
||||
'numeric' => ':attribute :min - :max arasında olmalıdır.',
|
||||
'file' => ':attribute :min - :max arasındaki kilobayt değeri olmalıdır.',
|
||||
'string' => ':attribute :min - :max arasında karakterden oluşmalıdır.',
|
||||
'array' => ':attribute :min - :max arasında nesneye sahip olmalıdır.',
|
||||
],
|
||||
'boolean' => ':attribute sadece doğru veya yanlış olmalıdır.',
|
||||
'confirmed' => ':attribute tekrarı eşleşmiyor.',
|
||||
'date' => ':attribute geçerli bir tarih olmalıdır.',
|
||||
'date_format' => ':attribute :format biçimi ile eşleşmiyor.',
|
||||
'different' => ':attribute ile :other birbirinden farklı olmalıdır.',
|
||||
'digits' => ':attribute :digits rakam olmalıdır.',
|
||||
'digits_between' => ':attribute :min ile :max arasında rakam olmalıdır.',
|
||||
'dimensions' => ':attribute görsel ölçüleri geçersiz.',
|
||||
'distinct' => ':attribute alanı yinelenen bir değere sahip.',
|
||||
'email' => ':attribute biçimi geçersiz.',
|
||||
'exists' => 'Seçili :attribute geçersiz.',
|
||||
'file' => ':attribute dosya olmalıdır.',
|
||||
'filled' => ':attribute alanının doldurulması zorunludur.',
|
||||
'gt' => [
|
||||
'numeric' => 'The :attribute must be greater than :value.',
|
||||
'file' => 'The :attribute must be greater than :value kilobytes.',
|
||||
'string' => 'The :attribute must be greater than :value characters.',
|
||||
'array' => 'The :attribute must have more than :value items.',
|
||||
],
|
||||
'gte' => [
|
||||
'numeric' => 'The :attribute must be greater than or equal :value.',
|
||||
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
|
||||
'string' => 'The :attribute must be greater than or equal :value characters.',
|
||||
'array' => 'The :attribute must have :value items or more.',
|
||||
],
|
||||
'image' => ':attribute alanı resim dosyası olmalıdır.',
|
||||
'in' => ':attribute değeri geçersiz.',
|
||||
'in_array' => ':attribute alanı :other içinde mevcut değil.',
|
||||
'integer' => ':attribute tamsayı olmalıdır.',
|
||||
'ip' => ':attribute geçerli bir IP adresi olmalıdır.',
|
||||
'ipv4' => ':attribute geçerli bir IPv4 adresi olmalıdır.',
|
||||
'ipv6' => ':attribute geçerli bir IPv6 adresi olmalıdır.',
|
||||
'json' => ':attribute geçerli bir JSON değişkeni olmalıdır.',
|
||||
'lt' => [
|
||||
'numeric' => 'The :attribute must be less than :value.',
|
||||
'file' => 'The :attribute must be less than :value kilobytes.',
|
||||
'string' => 'The :attribute must be less than :value characters.',
|
||||
'array' => 'The :attribute must have less than :value items.',
|
||||
],
|
||||
'lte' => [
|
||||
'numeric' => 'The :attribute must be less than or equal :value.',
|
||||
'file' => 'The :attribute must be less than or equal :value kilobytes.',
|
||||
'string' => 'The :attribute must be less than or equal :value characters.',
|
||||
'array' => 'The :attribute must not have more than :value items.',
|
||||
],
|
||||
'max' => [
|
||||
'numeric' => ':attribute değeri :max değerinden küçük olmalıdır.',
|
||||
'file' => ':attribute değeri :max kilobayt değerinden küçük olmalıdır.',
|
||||
'string' => ':attribute değeri :max karakter değerinden küçük olmalıdır.',
|
||||
'array' => ':attribute değeri :max adedinden az nesneye sahip olmalıdır.',
|
||||
],
|
||||
'mimes' => ':attribute dosya biçimi :values olmalıdır.',
|
||||
'mimetypes' => ':attribute dosya biçimi :values olmalıdır.',
|
||||
'min' => [
|
||||
'numeric' => ':attribute değeri :min değerinden büyük olmalıdır.',
|
||||
'file' => ':attribute değeri :min kilobayt değerinden büyük olmalıdır.',
|
||||
'string' => ':attribute değeri :min karakter değerinden büyük olmalıdır.',
|
||||
'array' => ':attribute en az :min nesneye sahip olmalıdır.',
|
||||
],
|
||||
'not_in' => 'Seçili :attribute geçersiz.',
|
||||
'not_regex' => ':attribute biçimi geçersiz.',
|
||||
'numeric' => ':attribute sayı olmalıdır.',
|
||||
'present' => ':attribute alanı mevcut olmalıdır.',
|
||||
'regex' => ':attribute biçimi geçersiz.',
|
||||
'required' => ':attribute alanı gereklidir.',
|
||||
'required_if' => ':attribute alanı, :other :value değerine sahip olduğunda zorunludur.',
|
||||
'required_unless' => ':attribute alanı, :other alanı :value değerlerinden birine sahip olmadığında zorunludur.',
|
||||
'required_with' => ':attribute alanı :values varken zorunludur.',
|
||||
'required_with_all' => ':attribute alanı herhangi bir :values değeri varken zorunludur.',
|
||||
'required_without' => ':attribute alanı :values yokken zorunludur.',
|
||||
'required_without_all' => ':attribute alanı :values değerlerinden herhangi biri yokken zorunludur.',
|
||||
'same' => ':attribute ile :other eşleşmelidir.',
|
||||
'size' => [
|
||||
'numeric' => ':attribute :size olmalıdır.',
|
||||
'file' => ':attribute :size kilobyte olmalıdır.',
|
||||
'string' => ':attribute :size karakter olmalıdır.',
|
||||
'array' => ':attribute :size nesneye sahip olmalıdır.',
|
||||
],
|
||||
'string' => ':attribute dizge olmalıdır.',
|
||||
'timezone' => ':attribute geçerli bir saat dilimi olmalıdır.',
|
||||
'unique' => ':attribute daha önceden kayıt edilmiş.',
|
||||
'uploaded' => ':attribute yüklemesi başarısız.',
|
||||
'url' => ':attribute biçimi geçersiz.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => [
|
||||
'attribute-name' => [
|
||||
'rule-name' => 'custom-message',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Attributes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used to swap attribute place-holders
|
||||
| with something more reader friendly such as E-Mail Address instead
|
||||
| of "email". This simply helps us make messages a little cleaner.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => [
|
||||
],
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/ar/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/ar/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'جميع',
|
||||
'date' => 'تاريخ',
|
||||
'empty-logs' => 'قائمة سجلات فارغة!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/ar/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/ar/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'الجميع',
|
||||
'emergency' => 'حالات الطوارئ',
|
||||
'alert' => 'إنذار',
|
||||
'critical' => 'حرج',
|
||||
'error' => 'خطأ',
|
||||
'warning' => 'تحذير',
|
||||
'notice' => 'ملاحظة',
|
||||
'info' => 'المعلومات',
|
||||
'debug' => 'التصحيح',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/bg/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/bg/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Всички',
|
||||
'date' => 'Дата',
|
||||
'empty-logs' => 'Не са намерени логове!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/bg/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/bg/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Всички',
|
||||
'emergency' => 'Emergency',
|
||||
'alert' => 'Alert',
|
||||
'critical' => 'Critical',
|
||||
'error' => 'Error',
|
||||
'warning' => 'Warning',
|
||||
'notice' => 'Notice',
|
||||
'info' => 'Info',
|
||||
'debug' => 'Debug',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/de/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/de/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Alle',
|
||||
'date' => 'Datum',
|
||||
'empty-logs' => 'Keine Log Dateien gefunden!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/de/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/de/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Alle',
|
||||
'emergency' => 'Notfall',
|
||||
'alert' => 'Alarm',
|
||||
'critical' => 'Kritisch',
|
||||
'error' => 'Fehler',
|
||||
'warning' => 'Warnung',
|
||||
'notice' => 'Hinweis',
|
||||
'info' => 'Info',
|
||||
'debug' => 'Debug',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/en/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/en/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'All',
|
||||
'date' => 'Date',
|
||||
'empty-logs' => 'The list of logs is empty!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/en/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/en/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'All',
|
||||
'emergency' => 'Emergency',
|
||||
'alert' => 'Alert',
|
||||
'critical' => 'Critical',
|
||||
'error' => 'Error',
|
||||
'warning' => 'Warning',
|
||||
'notice' => 'Notice',
|
||||
'info' => 'Info',
|
||||
'debug' => 'Debug',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/es/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/es/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Todos',
|
||||
'date' => 'Fecha',
|
||||
'empty-logs' => 'La lista del log está vacía!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/es/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/es/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Todos',
|
||||
'emergency' => 'Emergencia',
|
||||
'alert' => 'Alerta',
|
||||
'critical' => 'Criticos',
|
||||
'error' => 'Errores',
|
||||
'warning' => 'Advertencia',
|
||||
'notice' => 'Aviso',
|
||||
'info' => 'Info',
|
||||
'debug' => 'Debug',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/et/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/et/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Kõik',
|
||||
'date' => 'Kuupäev',
|
||||
'empty-logs' => 'Logide nimekiri on tühi!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/et/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/et/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Kõik',
|
||||
'emergency' => 'Erakorraline',
|
||||
'alert' => 'Häire',
|
||||
'critical' => 'Kriitiline',
|
||||
'error' => 'Viga',
|
||||
'warning' => 'Hoiatus',
|
||||
'notice' => 'Teade',
|
||||
'info' => 'Info',
|
||||
'debug' => 'Silumine',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/fa/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/fa/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'همه',
|
||||
'date' => 'تاریخ',
|
||||
'empty-logs' => 'چیزی برای نمایش وجود ندارد!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/fa/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/fa/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'همه',
|
||||
'emergency' => 'اورژانسی',
|
||||
'alert' => 'اخطار',
|
||||
'critical' => 'بحرانی',
|
||||
'error' => 'خطا',
|
||||
'warning' => 'هشدار',
|
||||
'notice' => 'اعلان',
|
||||
'info' => 'اطلاعات',
|
||||
'debug' => 'دیباگ',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/fr/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/fr/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Tous',
|
||||
'date' => 'Date',
|
||||
'empty-logs' => 'La liste des logs est vide!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/fr/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/fr/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Tous',
|
||||
'emergency' => 'Urgence',
|
||||
'alert' => 'Alerte',
|
||||
'critical' => 'Critique',
|
||||
'error' => 'Erreur',
|
||||
'warning' => 'Avertissement',
|
||||
'notice' => 'Notice',
|
||||
'info' => 'Info',
|
||||
'debug' => 'Debug',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/hu/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/hu/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Összes',
|
||||
'date' => 'Dátum',
|
||||
'empty-logs' => 'A naplók listája üres!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/hu/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/hu/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Összes',
|
||||
'emergency' => 'Vészhelyzet',
|
||||
'alert' => 'Riasztás',
|
||||
'critical' => 'Kritikus',
|
||||
'error' => 'Hiba',
|
||||
'warning' => 'Figyelmeztetés',
|
||||
'notice' => 'Értesítés',
|
||||
'info' => 'Információ',
|
||||
'debug' => 'Hibakeresés',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/hy/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/hy/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Բոլորը',
|
||||
'date' => 'Ամսաթիվ',
|
||||
'empty-logs' => 'Լոգերի ցուցակը դատարկ է։',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/hy/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/hy/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Բոլորը',
|
||||
'emergency' => 'Վթարային',
|
||||
'alert' => 'Նախազգուշացում',
|
||||
'critical' => 'Կրիտիկական',
|
||||
'error' => 'Սխալ',
|
||||
'warning' => 'Նախազգուշացում',
|
||||
'notice' => 'Ծանուցում',
|
||||
'info' => 'Տեղեկատվություն',
|
||||
'debug' => 'Կարգաբերում',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/id/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/id/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Semua',
|
||||
'date' => 'Tanggal',
|
||||
'empty-logs' => 'Daftar Log Kosong',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/id/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/id/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Semua',
|
||||
'emergency' => 'Darurat',
|
||||
'alert' => 'Waspada',
|
||||
'critical' => 'Kritis',
|
||||
'error' => 'Kesalahan',
|
||||
'warning' => 'Peringatan',
|
||||
'notice' => 'Pemberitahuan',
|
||||
'info' => 'Info',
|
||||
'debug' => 'Debug',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/it/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/it/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Tutti',
|
||||
'date' => 'Data',
|
||||
'empty-logs' => 'L\'elenco dei log è vuoto!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/it/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/it/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Tutti',
|
||||
'emergency' => 'Emergenza',
|
||||
'alert' => 'Allarme',
|
||||
'critical' => 'Critico',
|
||||
'error' => 'Errore',
|
||||
'warning' => 'Avviso',
|
||||
'notice' => 'Notifica',
|
||||
'info' => 'Info',
|
||||
'debug' => 'Debug',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/ja/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/ja/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'すべて',
|
||||
'date' => '日付',
|
||||
'empty-logs' => 'ログリストが空です!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/ja/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/ja/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'すべて',
|
||||
'emergency' => '緊急',
|
||||
'alert' => '警戒',
|
||||
'critical' => '致命的',
|
||||
'error' => 'エラー',
|
||||
'warning' => '警告',
|
||||
'notice' => '通知',
|
||||
'info' => '情報',
|
||||
'debug' => 'デバッグ',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/ko/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/ko/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => '전체',
|
||||
'date' => '날짜',
|
||||
'empty-logs' => '로그가 없습니다.',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/ko/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/ko/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => '전체',
|
||||
'emergency' => '긴급',
|
||||
'alert' => '경고',
|
||||
'critical' => '심각',
|
||||
'error' => '오류',
|
||||
'warning' => '주의',
|
||||
'notice' => '알림',
|
||||
'info' => '정보',
|
||||
'debug' => '디버그',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/ms/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/ms/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Semua',
|
||||
'date' => 'Tarikh',
|
||||
'empty-logs' => 'Senarai log kosong!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/ms/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/ms/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Semua',
|
||||
'emergency' => 'Kecemasan',
|
||||
'alert' => 'Waspada',
|
||||
'critical' => 'Kritikal',
|
||||
'error' => 'Ralat',
|
||||
'warning' => 'Amaran',
|
||||
'notice' => 'Notis',
|
||||
'info' => 'Info',
|
||||
'debug' => 'Debug',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/nl/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/nl/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Alles',
|
||||
'date' => 'Datum',
|
||||
'empty-logs' => 'De lijst met logs is leeg!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/nl/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/nl/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Alle',
|
||||
'emergency' => 'Noodgeval',
|
||||
'alert' => 'Alarm',
|
||||
'critical' => 'Cruciaal',
|
||||
'error' => 'Error',
|
||||
'warning' => 'Waarschuwing',
|
||||
'notice' => 'Opmerking',
|
||||
'info' => 'Informatie',
|
||||
'debug' => 'Debug',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/pl/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/pl/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Wszystkie',
|
||||
'date' => 'Data',
|
||||
'empty-logs' => 'Lista logów jest pusta!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/pl/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/pl/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Wszystkie',
|
||||
'emergency' => 'Awaryjne',
|
||||
'alert' => 'Alerty',
|
||||
'critical' => 'Krytyczne',
|
||||
'error' => 'Błędy',
|
||||
'warning' => 'Ostrzeżenia',
|
||||
'notice' => 'Warte uwagi',
|
||||
'info' => 'Informacje',
|
||||
'debug' => 'Debug',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/pt-BR/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/pt-BR/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Todos',
|
||||
'date' => 'Data',
|
||||
'empty-logs' => 'A lista de logs está vazia!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/pt-BR/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/pt-BR/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Todos',
|
||||
'emergency' => 'Emergência',
|
||||
'alert' => 'Alerta',
|
||||
'critical' => 'Crítico',
|
||||
'error' => 'Erro',
|
||||
'warning' => 'Aviso',
|
||||
'notice' => 'Notícia',
|
||||
'info' => 'Informação',
|
||||
'debug' => 'Debug',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/ro/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/ro/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Toate',
|
||||
'date' => 'Dată',
|
||||
'empty-logs' => 'Nu există niciun log!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/ro/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/ro/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Toate',
|
||||
'emergency' => 'Urgență',
|
||||
'alert' => 'Alertă',
|
||||
'critical' => 'Critic',
|
||||
'error' => 'Eroare',
|
||||
'warning' => 'Pericol',
|
||||
'notice' => 'Avertisment',
|
||||
'info' => 'Informare',
|
||||
'debug' => 'Depanare',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/ru/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/ru/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Все',
|
||||
'date' => 'Дата',
|
||||
'empty-logs' => 'Список журналов пуст!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/ru/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/ru/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Все',
|
||||
'emergency' => 'Аварийная',
|
||||
'alert' => 'Предупреждение',
|
||||
'critical' => 'Критический',
|
||||
'error' => 'Ошибка',
|
||||
'warning' => 'Предупреждение',
|
||||
'notice' => 'Уведомление',
|
||||
'info' => 'Информация',
|
||||
'debug' => 'Отладка',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/sv/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/sv/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Alla',
|
||||
'date' => 'Datum',
|
||||
'empty-logs' => 'Det finns inga loggar att visa.',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/sv/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/sv/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Alla',
|
||||
'emergency' => 'Akut',
|
||||
'alert' => 'Alarmerande',
|
||||
'critical' => 'Kritisk',
|
||||
'error' => 'Error',
|
||||
'warning' => 'Varning',
|
||||
'notice' => 'Notis',
|
||||
'info' => 'Information',
|
||||
'debug' => 'Debug',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/th/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/th/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'ทั้งหมด',
|
||||
'date' => 'วันที่',
|
||||
'empty-logs' => 'ไม่มีรายการล็อก!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/th/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/th/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'ทั้งหมด',
|
||||
'emergency' => 'ฉุกเฉิน',
|
||||
'alert' => 'วิกฤติ',
|
||||
'critical' => 'ร้ายแรง',
|
||||
'error' => 'ข้อผิดพลาด',
|
||||
'warning' => 'คำเตือน',
|
||||
'notice' => 'ประกาศ',
|
||||
'info' => 'ข้อมูล',
|
||||
'debug' => 'ดีบัก',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/tr/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/tr/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Tümü',
|
||||
'date' => 'Tarih',
|
||||
'empty-logs' => 'Günlük listesi boş!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/tr/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/tr/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Tümü',
|
||||
'emergency' => 'Acil',
|
||||
'alert' => 'Alarm',
|
||||
'critical' => 'Kritik',
|
||||
'error' => 'Hata',
|
||||
'warning' => 'Uyarı',
|
||||
'notice' => 'Bildirim',
|
||||
'info' => 'Bilgi',
|
||||
'debug' => 'Hata ayıklama',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/uk/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/uk/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Всі',
|
||||
'date' => 'Дата',
|
||||
'empty-logs' => 'Список журналів порожній!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/uk/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/uk/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Всі',
|
||||
'emergency' => 'Аварійна',
|
||||
'alert' => 'Попередження',
|
||||
'critical' => 'Критична',
|
||||
'error' => 'Помилка',
|
||||
'warning' => 'Попереждення',
|
||||
'notice' => 'Сповіщення',
|
||||
'info' => 'Інформація',
|
||||
'debug' => 'Відладка',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/zh-TW/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/zh-TW/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => '全部',
|
||||
'date' => '日期',
|
||||
'empty-logs' => '列表中沒有任何紀錄!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/zh-TW/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/zh-TW/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => '全部',
|
||||
'emergency' => '緊急',
|
||||
'alert' => '警報',
|
||||
'critical' => '嚴重',
|
||||
'error' => '錯誤',
|
||||
'warning' => '警告',
|
||||
'notice' => '注意',
|
||||
'info' => '訊息',
|
||||
'debug' => '除錯',
|
||||
];
|
||||
7
resources/lang/vendor/log-viewer/zh/general.php
vendored
Normal file
7
resources/lang/vendor/log-viewer/zh/general.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => '全部',
|
||||
'date' => '日期',
|
||||
'empty-logs' => '日志列表为空!',
|
||||
];
|
||||
13
resources/lang/vendor/log-viewer/zh/levels.php
vendored
Normal file
13
resources/lang/vendor/log-viewer/zh/levels.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => '全部',
|
||||
'emergency' => '危急',
|
||||
'alert' => '紧急',
|
||||
'critical' => '严重',
|
||||
'error' => '错误',
|
||||
'warning' => '警告',
|
||||
'notice' => '注意',
|
||||
'info' => '信息',
|
||||
'debug' => '调试',
|
||||
];
|
||||
Reference in New Issue
Block a user