forked from miguel456/rbrecruiter
Compare commits
41 Commits
l10n_maste
...
translate
Author | SHA1 | Date | |
---|---|---|---|
66147e0ba3 | |||
ccd5d1df2b | |||
02b7905a97 | |||
ac27c2e5ce | |||
2be0084463 | |||
34c830bc8d | |||
abaf00e427 | |||
74e576d318 | |||
584d8e703a | |||
0230042c1a | |||
22f698bd1d | |||
abfbd82e23 | |||
a8648a9b50 | |||
5c57a5185f | |||
0e8b3d28a6 | |||
3c966036d9 | |||
a5e1ab5af8 | |||
87f8e63b24 | |||
9f3780d844 | |||
9241a83844 | |||
c6685331a8 | |||
9da9b8e6fc | |||
bb019f71e2 | |||
0cde3444ce | |||
b61fb5642e | |||
f7614916bf | |||
2ad1548cd6 | |||
43579c8fc9 | |||
0c9cea5c05 | |||
4371dd971c | |||
c57ace1ad9 | |||
c35b37d9b3 | |||
f25c9f7bc7 | |||
25cebeefab | |||
8b47dbe2e0 | |||
290dbe99b6 | |||
d7b506ec52 | |||
d41d94b934 | |||
b571d72eaf | |||
0c1f6f75eb | |||
5ea9e11a62 |
@@ -7,11 +7,10 @@ use Illuminate\Foundation\Auth\User as Authenticatable;
|
||||
use Illuminate\Notifications\Notifiable;
|
||||
use Spatie\Permission\Traits\HasRoles;
|
||||
|
||||
class User extends Authenticatable
|
||||
class User extends Authenticatable implements MustVerifyEmail
|
||||
{
|
||||
use Notifiable;
|
||||
use HasRoles;
|
||||
//use MustVerifyEmail;
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
|
@@ -209,74 +209,76 @@ return [
|
||||
|
||||
'menu' => [
|
||||
[
|
||||
'text' => 'Home',
|
||||
'text' => 'm_home',
|
||||
'icon' => 'fas fa-home',
|
||||
'url' => 'dashboard'
|
||||
],
|
||||
[
|
||||
'text' => 'Directory',
|
||||
'text' => 'm_directory',
|
||||
'icon' => 'fas fa-users',
|
||||
'url' => 'users/directory',
|
||||
'can' => 'profiles.view.others'
|
||||
],
|
||||
[
|
||||
'header' => 'Applications',
|
||||
'header' => 'h_applications',
|
||||
'can' => 'applications.view.own'
|
||||
],
|
||||
[
|
||||
'text' => 'My Applications',
|
||||
'text' => 'm_my_applications',
|
||||
'icon' => 'fas fa-fw fa-list-ul',
|
||||
'can' => 'applications.view.own',
|
||||
'submenu' => [
|
||||
[
|
||||
'text' => 'Current Applications',
|
||||
'text' => 'm_curr_applications',
|
||||
'icon' => 'fas fa-fw fa-check-double',
|
||||
'url' => '/applications/my-applications'
|
||||
]
|
||||
],
|
||||
|
||||
],
|
||||
'My Profile',
|
||||
[
|
||||
'text' => 'Profile Settings',
|
||||
'header' => 'h_my_profile',
|
||||
],
|
||||
[
|
||||
'text' => 'm_profile_settings',
|
||||
'url' => '/profile/settings',
|
||||
'icon' => 'fas fa-fw fa-cog'
|
||||
],
|
||||
[
|
||||
'text' => 'My Account Settings',
|
||||
'text' => 'm_account_settings',
|
||||
'icon' => 'fas fa-user-circle',
|
||||
'url' => '/profile/settings/account'
|
||||
],
|
||||
[
|
||||
'header' => 'Application Management',
|
||||
'header' => 'h_app_management',
|
||||
'can' => ['applications.view.all', 'applications.vote']
|
||||
],
|
||||
[
|
||||
'text' => 'All applications',
|
||||
'text' => 'm_all_apps',
|
||||
'url' => 'applications/staff/all',
|
||||
'icon' => 'fas fa-list-ol',
|
||||
'can' => 'applications.view.all'
|
||||
],
|
||||
[
|
||||
'text' => 'Outstanding Applications',
|
||||
'text' => 'm_outstanding_apps',
|
||||
'url' => '/applications/staff/outstanding',
|
||||
'icon' => 'far fa-folder-open',
|
||||
'can' => 'applications.view.all'
|
||||
],
|
||||
[
|
||||
'text' => 'Interview Queue',
|
||||
'text' => 'm_interview_queue',
|
||||
'url' => '/applications/staff/pending-interview',
|
||||
'icon' => 'fas fa-fw fa-microphone-alt',
|
||||
'can' => 'applications.view.all'
|
||||
],
|
||||
[
|
||||
'text' => 'Peer Approval Queue',
|
||||
'text' => 'm_peer_approval',
|
||||
'url' => '/applications/staff/peer-review',
|
||||
'icon' => 'fas fa-fw fa-search',
|
||||
'can' => 'applications.view.all'
|
||||
],
|
||||
[
|
||||
'header' => 'Administration',
|
||||
'header' => 'h_admin',
|
||||
'can' => [ // may need to be modified
|
||||
'admin.hiring.*',
|
||||
'admin.userlist',
|
||||
@@ -286,38 +288,38 @@ return [
|
||||
]
|
||||
],
|
||||
[
|
||||
'text' => 'Staff Members',
|
||||
'text' => 'm_staff_m',
|
||||
'icon' => 'fas fa-fw fa-users',
|
||||
'url' => '/hr/staff-members',
|
||||
'can' => 'admin.stafflist'
|
||||
],
|
||||
[ // players who haven't been promoted yet
|
||||
'text' => 'Registered Players',
|
||||
'text' => 'm_reg_players',
|
||||
'icon' => 'fas fa-fw fa-user-friends',
|
||||
'url' => '/hr/players',
|
||||
'can' => 'admin.userlist'
|
||||
],
|
||||
[
|
||||
'text' => 'Hiring Management',
|
||||
'text' => 'sm_hiring_man',
|
||||
'icon' => 'far fa-calendar-plus',
|
||||
'can' => 'admin.hiring.*',
|
||||
'submenu' => [
|
||||
[
|
||||
'text' => 'Open Positions',
|
||||
'text' => 'm_open_pos',
|
||||
'icon' => 'fas fa-box-open',
|
||||
'url' => '/admin/positions'
|
||||
],
|
||||
[
|
||||
'text' => 'Forms',
|
||||
'text' => 'sm_forms',
|
||||
'icon' => 'fab fa-wpforms',
|
||||
'submenu' => [
|
||||
[
|
||||
'text' => 'All forms',
|
||||
'text' => 'sm_all_forms',
|
||||
'icon' => 'far fa-list-alt',
|
||||
'url' => '/admin/forms'
|
||||
],
|
||||
[
|
||||
'text' => 'Form Builder',
|
||||
'text' => 'm_form_builder',
|
||||
'icon' => 'fas fa-fw fa-hammer',
|
||||
'url' => '/admin/forms/builder'
|
||||
]
|
||||
@@ -326,18 +328,18 @@ return [
|
||||
]
|
||||
],
|
||||
[
|
||||
'text' => 'App Settings',
|
||||
'text' => 'sm_app_settings',
|
||||
'icon' => 'fas fa-fw fa-cog',
|
||||
'can' => 'admin.notificationsettings',
|
||||
'submenu' => [
|
||||
[
|
||||
'text' => 'Global Application Settings',
|
||||
'text' => 'm_global_app_s',
|
||||
'icon' => 'fas fa-cogs',
|
||||
'url' => '/admin/settings',
|
||||
'can' => 'admin.settings.view'
|
||||
],
|
||||
[
|
||||
'text' => 'Developer Tools',
|
||||
'text' => 'm_devtools',
|
||||
'icon' => 'fas fa-code',
|
||||
'url' => '/admin/devtools',
|
||||
'can' => 'admin.developertools.use'
|
||||
@@ -345,7 +347,7 @@ return [
|
||||
]
|
||||
],
|
||||
[
|
||||
'text' => 'System Logs',
|
||||
'text' => 'm_s_logs',
|
||||
'url' => '/admin/maintenance/system-logs',
|
||||
'icon' => 'fas fa-clipboard-list',
|
||||
'can' => 'admin.maintenance.logs.view'
|
||||
|
@@ -1,5 +1,5 @@
|
||||
files:
|
||||
- source: /**/lang/en/*.php
|
||||
- source: /**/lang/**/en/*.php
|
||||
ignore:
|
||||
- /**/lang/en/*2.php
|
||||
translation: /**/lang/%two_letters_code%/%original_file_name%
|
||||
translation: /**/lang/**/%two_letters_code%/%original_file_name%
|
||||
|
@@ -475,6 +475,8 @@ return [
|
||||
'2fa_disable_consent' => '"I understand the possible consequences of disabling two factor authentication"',
|
||||
'2fa_remove' => 'Remove 2FA',
|
||||
'2fa_remove_extended' => 'Remove Two-Factor Authentication',
|
||||
'2fa_send_code' => 'Send 2FA Code',
|
||||
'2fa_send_code_s' => '2FA Code (ex. 41351)',
|
||||
|
||||
'security_lgotherdev' => 'For your security, you\'ll need to re-enter your password before logging out other devices. If you believe your account has been compromised, please change your password instead, as that will automatically log out anyone else who might using your account, and prevent them from signing back in.',
|
||||
'password_reenter' => 'Re-enter your password',
|
||||
|
@@ -13,7 +13,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => 'These credentials do not match our records.',
|
||||
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
||||
'failed' => 'Estas credenciales no coinciden con nuestros registros.',
|
||||
'throttle' => 'Demasiados intentos de inicio de sesión. Por favor, inténtalo de nuevo en :seconds segundos.',
|
||||
|
||||
];
|
||||
|
File diff suppressed because it is too large
Load Diff
@@ -13,7 +13,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Previous',
|
||||
'next' => 'Next »',
|
||||
'previous' => '« Anterior',
|
||||
'next' => 'Siguiente »',
|
||||
|
||||
];
|
||||
|
@@ -13,10 +13,10 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'reset' => 'Your password has been reset!',
|
||||
'sent' => 'We have emailed 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 email address.",
|
||||
'reset' => '¡Tu contraseña ha sido restablecida!',
|
||||
'sent' => '¡Hemos enviado por correo electrónico tu enlace de restablecimiento de contraseña!',
|
||||
'throttled' => 'Por favor, espere antes de reintentar.',
|
||||
'token' => 'Este token de restablecimiento de contraseña no es válido.',
|
||||
'user' => "No podemos encontrar un usuario con esa dirección de correo electrónico.",
|
||||
|
||||
];
|
||||
|
@@ -13,110 +13,110 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'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.',
|
||||
'accepted' => 'El campo :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 puede contener letras.',
|
||||
'alpha_dash' => ':attribute sólo puede contener letras, números, guiones y guiones bajos.',
|
||||
'alpha_num' => ':attribute sólo puede contener letras y números.',
|
||||
'array' => 'El campo :attribute debe ser un array.',
|
||||
'before' => ':attribute debe ser una fecha anterior a :date.',
|
||||
'before_or_equal' => ':attribute debe ser una fecha anterior o igual a :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.',
|
||||
'numeric' => ':attribute debe estar entre :min y :max.',
|
||||
'file' => ':attribute debe estar entre :min y :max kilobytes.',
|
||||
'string' => ':attribute debe tener entre :min y :max caracteres.',
|
||||
'array' => ':attribute debe tener entre :min y :max elementos.',
|
||||
],
|
||||
'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.',
|
||||
'boolean' => 'El campo :attribute debe ser verdadero o falso.',
|
||||
'confirmed' => 'El :attribute de confirmación no coincide.',
|
||||
'date' => ':attribute no es una fecha válida.',
|
||||
'date_equals' => ':attribute debe ser una fecha igual a :date.',
|
||||
'date_format' => ':attribute no coincide con el 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' => 'El campo :attribute tiene dimensiones de imagen inválidas.',
|
||||
'distinct' => 'El campo :attribute tiene un valor duplicado.',
|
||||
'email' => ':attribute debe ser una dirección de correo electrónico válida.',
|
||||
'ends_with' => 'El campo :attribute debe terminar con uno de los siguientes: :values.',
|
||||
'exists' => 'El :attribute seleccionado no es válido.',
|
||||
'file' => ':attribute debe ser un archivo.',
|
||||
'filled' => 'El campo :attribute debe tener un valor.',
|
||||
'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.',
|
||||
'numeric' => 'El campo :attribute debe ser mayor que :value.',
|
||||
'file' => ':attribute debe ser mayor que :value kilobytes.',
|
||||
'string' => ':attribute debe ser mayor que :value caracteres.',
|
||||
'array' => 'El campo :attribute debe tener más de :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.',
|
||||
'numeric' => 'El campo :attribute debe ser mayor o igual a :value.',
|
||||
'file' => ':attribute debe ser mayor o igual a :value kilobytes.',
|
||||
'string' => 'El campo :attribute debe ser mayor o igual a :value caracteres.',
|
||||
'array' => ':attribute debe tener :value o más.',
|
||||
],
|
||||
'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.',
|
||||
'image' => 'El campo :attribute debe ser una imagen.',
|
||||
'in' => 'El :attribute seleccionado no es válido.',
|
||||
'in_array' => 'El campo :attribute no existe en :other.',
|
||||
'integer' => 'El campo :attribute debe ser un entero.',
|
||||
'ip' => ':attribute debe ser una dirección IP válida.',
|
||||
'ipv4' => ':attribute debe ser una dirección IPv4 válida.',
|
||||
'ipv6' => ':attribute debe ser una dirección IPv6 válida.',
|
||||
'json' => ':attribute debe ser una cadena JSON válida.',
|
||||
'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.',
|
||||
'numeric' => 'El campo :attribute debe ser menor que :value.',
|
||||
'file' => ':attribute debe ser menor que :value kilobytes.',
|
||||
'string' => ':attribute debe tener menos de :value caracteres.',
|
||||
'array' => ':attribute debe tener menos de :value elementos.',
|
||||
],
|
||||
'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.',
|
||||
'numeric' => 'El campo :attribute debe ser menor o igual a :value.',
|
||||
'file' => ':attribute debe ser menor o igual a :value kilobytes.',
|
||||
'string' => ':attribute debe ser menor o igual a :value caracteres.',
|
||||
'array' => 'El campo :attribute no debe tener más de :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.',
|
||||
'numeric' => ':attribute no puede ser mayor que :max.',
|
||||
'file' => ':attribute no puede ser mayor que :max kilobytes.',
|
||||
'string' => ':attribute no puede ser mayor que :max caracteres.',
|
||||
'array' => ':attribute no puede tener más de :max elementos.',
|
||||
],
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimes' => 'El campo :attribute debe ser un archivo de tipo: :values.',
|
||||
'mimetypes' => 'El campo :attribute debe ser un archivo de tipo: :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.',
|
||||
'numeric' => ':attribute debe ser al menos :min.',
|
||||
'file' => ':attribute debe tener al menos :min kilobytes.',
|
||||
'string' => ':attribute debe tener al menos :min caracteres.',
|
||||
'array' => ':attribute debe tener al menos :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.',
|
||||
'not_in' => 'El :attribute seleccionado no es válido.',
|
||||
'not_regex' => 'El formato :attribute no es válido.',
|
||||
'numeric' => ':attribute debe ser un número.',
|
||||
'password' => 'La contraseña es incorrecta.',
|
||||
'present' => 'El campo :attribute debe estar presente.',
|
||||
'regex' => 'El formato :attribute no es vá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án presentes.',
|
||||
'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' => '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.',
|
||||
'numeric' => 'El campo :attribute debe ser :size.',
|
||||
'file' => ':attribute debe ser :size kilobytes.',
|
||||
'string' => 'El campo :attribute debe tener :size caracteres.',
|
||||
'array' => 'El campo :attribute debe contener :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.',
|
||||
'starts_with' => 'El campo :attribute debe comenzar con uno de los siguientes: :values.',
|
||||
'string' => 'El campo :attribute debe ser una cadena.',
|
||||
'timezone' => ':attribute debe ser una zona válida.',
|
||||
'unique' => 'El atributo :attribute ya está en uso.',
|
||||
'uploaded' => 'El atributo :attribute no se pudo cargar.',
|
||||
'url' => 'El formato :attribute no es válido.',
|
||||
'uuid' => ':attribute debe ser un UUID válido.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
@@ -131,7 +131,7 @@ return [
|
||||
|
||||
'custom' => [
|
||||
'attribute-name' => [
|
||||
'rule-name' => 'custom-message',
|
||||
'rule-name' => 'mensaje personalizado',
|
||||
],
|
||||
],
|
||||
|
||||
|
@@ -13,7 +13,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => 'These credentials do not match our records.',
|
||||
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
||||
'failed' => 'Ces identifiants ne correspondent pas à nos enregistrements.',
|
||||
'throttle' => 'Trop de tentatives de connexion. Veuillez réessayer dans :seconds secondes.',
|
||||
|
||||
];
|
||||
|
@@ -21,14 +21,14 @@ return [
|
||||
|
||||
'menu' => [
|
||||
|
||||
'my_apps' => 'My Applications',
|
||||
'current_apps' => 'Current Applications',
|
||||
'profile_settings' => 'Profile Settings',
|
||||
'hiring_man' => 'Hiring Management',
|
||||
'all_forms' => 'All Forms',
|
||||
'app_settings' => 'App Settings',
|
||||
'global_app_settings' => 'Global App Settings',
|
||||
'system_logs' => 'System Logs'
|
||||
'my_apps' => 'Mes applications',
|
||||
'current_apps' => 'Applications actuelles',
|
||||
'profile_settings' => 'Paramètres du profil',
|
||||
'hiring_man' => 'Gestion de l\'embauche',
|
||||
'all_forms' => 'Tous les formulaires',
|
||||
'app_settings' => 'Paramètres de l\'application',
|
||||
'global_app_settings' => 'Paramètres globaux de l\'application',
|
||||
'system_logs' => 'Journaux système'
|
||||
],
|
||||
|
||||
|
||||
@@ -36,376 +36,376 @@ return [
|
||||
// ============== REUSABLE, GENERIC STRINGS ===============
|
||||
|
||||
'reusable' => [
|
||||
'created_at' => 'Created at',
|
||||
'updated_at' => 'Updated at',
|
||||
'created_at' => 'Créé le',
|
||||
'updated_at' => 'Mis à jour le',
|
||||
'actions' => 'Actions',
|
||||
'delete' => 'Delete',
|
||||
'status' => 'Status',
|
||||
'view' => 'View',
|
||||
'view_c' => 'View Details',
|
||||
'no_access' => 'Application Access Denied',
|
||||
'validation_err' => 'Validation error!',
|
||||
'description' => 'Description',
|
||||
'join_date' => 'Join Date',
|
||||
'my_acc' => 'My Account',
|
||||
'confirm' => 'Please Confirm',
|
||||
'confirm_plain' => 'Confirm',
|
||||
'confirm_click' => 'Click to Confirm',
|
||||
'delete' => 'Supprimez',
|
||||
'status' => 'Statut',
|
||||
'view' => 'Voir',
|
||||
'view_c' => 'Voir les détails',
|
||||
'no_access' => 'Accès à l\'application refusé',
|
||||
'validation_err' => 'Erreur de validation !',
|
||||
'description' => 'Libellé',
|
||||
'join_date' => 'Date d\'inscription',
|
||||
'my_acc' => 'Mon Compte',
|
||||
'confirm' => 'Veuillez confirmer',
|
||||
'confirm_plain' => 'Valider',
|
||||
'confirm_click' => 'Cliquez pour confirmer',
|
||||
'date' => 'Date',
|
||||
'datetime' => 'Time & Date',
|
||||
'location' => 'Location',
|
||||
'none_yet' => 'None yet',
|
||||
'reason' => 'Reason',
|
||||
'days' => 'Days',
|
||||
'weeks' => 'Weeks',
|
||||
'months' => 'Months',
|
||||
'years' => 'Years',
|
||||
'yes' => 'Yes',
|
||||
'no' => 'No',
|
||||
'roles' => 'Roles',
|
||||
'member_since' => 'Member since :date',
|
||||
'lookup' => 'Lookup :ipAddress',
|
||||
'abt' => 'About',
|
||||
'acc' => 'Account',
|
||||
'settings' => 'Settings',
|
||||
'profile' => 'My Profile',
|
||||
'code' => 'code',
|
||||
'here' => 'here',
|
||||
'auth_req' => 'Please authenticate',
|
||||
'eligible' => 'Eligible',
|
||||
'datetime' => 'Heure & Date',
|
||||
'location' => 'Localisation',
|
||||
'none_yet' => 'Pas encore',
|
||||
'reason' => 'Raison',
|
||||
'days' => 'Jours',
|
||||
'weeks' => 'Semaines',
|
||||
'months' => 'Mois',
|
||||
'years' => 'Années',
|
||||
'yes' => 'Oui',
|
||||
'no' => 'Non',
|
||||
'roles' => 'Rôles',
|
||||
'member_since' => 'Membre depuis :date',
|
||||
'lookup' => 'Recherche :ipAddress',
|
||||
'abt' => 'À propos de',
|
||||
'acc' => 'Compte client',
|
||||
'settings' => 'Réglages',
|
||||
'profile' => 'Mon profil',
|
||||
'code' => 'Code',
|
||||
'here' => 'ici',
|
||||
'auth_req' => 'Veuillez vous authentifier',
|
||||
'eligible' => 'Éligible',
|
||||
'ineligible' => 'Ineligible',
|
||||
'schedule' => 'Schedule',
|
||||
'schedule_action' => 'Schedule an Appointment',
|
||||
'platform' => 'Platform',
|
||||
'notepad' => 'Shared Notepad', // Context: The shared notepad that appears when votes are needed,
|
||||
'appointment_info' => 'Appointment Information',
|
||||
'ip_info' => 'IP Address Information for'
|
||||
'schedule' => 'Planifier',
|
||||
'schedule_action' => 'Planifier un rendez-vous',
|
||||
'platform' => 'Plateforme',
|
||||
'notepad' => 'Bloc-notes partagé', // Context: The shared notepad that appears when votes are needed,
|
||||
'appointment_info' => 'Informations sur le rendez-vous',
|
||||
'ip_info' => 'Information d\'adresse IP pour'
|
||||
],
|
||||
|
||||
|
||||
// ============== HOMEPAGE MESSAGES ======================
|
||||
|
||||
'home' => 'Home',
|
||||
'homepagetxt' => 'Homepage',
|
||||
'login' => 'Sign in',
|
||||
'logout' => 'Sign out',
|
||||
'register' => 'Sign up',
|
||||
'dashboard' => 'Dashboard',
|
||||
'back' => 'Go back',
|
||||
'homepage_welcome' => 'Welcome to our team management center!',
|
||||
'homepage_explainer_line1' => 'Here, you can apply for open staff member positions, view your application status, and manage your profile.',
|
||||
'homepage_explainer_line2' => 'Sign up with Email to continue.',
|
||||
'footer_copy' => 'All rights reserved',
|
||||
'global_error' => 'An error occurred',
|
||||
'global_success' => 'Success!',
|
||||
'txt_learn_more' => 'Learn more',
|
||||
'opening_nodetails' => 'There don\'t seem to be any details',
|
||||
'opening_nodetails_exp' => 'This opening does not have any details yet.',
|
||||
'details_m_title' => 'Opening details',
|
||||
'open_positions' => 'Open Positions',
|
||||
'last_updated' => 'Last updated',
|
||||
'open_position_count' => '{1} There is :count open position!|[2,*] There are :count open positions!',
|
||||
'ineligible_days_remaining' => 'Ineligible (:days) day(s) remaining',
|
||||
'txt_apply' => 'Apply', // Context: Apply as in applying for a "job", e.g. registering for a job
|
||||
'home' => 'Domicile',
|
||||
'homepagetxt' => 'Page d\'accueil',
|
||||
'login' => 'Se connecter',
|
||||
'logout' => 'Se déconnecter',
|
||||
'register' => 'S\'inscrire',
|
||||
'dashboard' => 'Tableau de bord',
|
||||
'back' => 'Revenir en arrière',
|
||||
'homepage_welcome' => 'Bienvenue dans notre centre de gestion d\'équipe!',
|
||||
'homepage_explainer_line1' => 'Ici, vous pouvez poser votre candidature pour les postes ouverts du personnel, consulter le statut de votre application et gérer votre profil.',
|
||||
'homepage_explainer_line2' => 'Inscrivez-vous avec l\'e-mail pour continuer.',
|
||||
'footer_copy' => 'Tous droits réservés',
|
||||
'global_error' => 'Une erreur s\'est produite',
|
||||
'global_success' => 'Réussi !',
|
||||
'txt_learn_more' => 'En savoir plus',
|
||||
'opening_nodetails' => 'Il ne semble pas y avoir de détails',
|
||||
'opening_nodetails_exp' => 'Cette ouverture n\'a pas encore de détails.',
|
||||
'details_m_title' => 'Détails d\'ouverture',
|
||||
'open_positions' => 'Positions ouvertes',
|
||||
'last_updated' => 'Dernière mise à jour',
|
||||
'open_position_count' => '{1} Il y a :count position ouverte !|[2,*] Il y a :count positions ouvertes !',
|
||||
'ineligible_days_remaining' => 'Inéligible (:days) jour(s) restant(s)',
|
||||
'txt_apply' => 'Appliquer', // Context: Apply as in applying for a "job", e.g. registering for a job
|
||||
'txt_application' => 'Application',
|
||||
'application_closed' => 'Applications Closed',
|
||||
'application_closed_intro' => 'Hello there!',
|
||||
'application_closed' => 'Applications fermées',
|
||||
'application_closed_intro' => 'Bonjour !',
|
||||
'application_closed_intro_line2' => '
|
||||
We are currently not hiring any new staff members at the moment. If you\'d like to apply, check out our Discord\'s
|
||||
announcement channel for news when a new position opens.
|
||||
Our application cycle usually lasts two weeks, so if you\'re seeing this, it\'s because it finished, and new one will begin soon.
|
||||
Nous n\'embauchons pas de nouveaux membres du personnel pour le moment. Si vous souhaitez postuler, consultez notre canal d\'annonce
|
||||
de Discord pour savoir quand un nouveau poste s\'ouvre.
|
||||
Notre cycle d\'application dure généralement deux semaines, Donc si vous voyez cela, c\'est parce qu\'il est terminé, et un nouveau va bientôt commencer.
|
||||
',
|
||||
'where_work' => 'Where you\'ll work',
|
||||
'join_team' => 'Join The Team',
|
||||
'join_team_cta' => 'Join the team today and help out network grow and prosper!',
|
||||
'contact_cta' => 'Any questions? Leave a message!',
|
||||
'contact_disclaimer' => '*This is not an application form. Any applications sent here will be ignored.',
|
||||
'contactlabel_name' => 'Name',
|
||||
'contactlabel_email' => 'E-mail',
|
||||
'contactlabel_subject' => 'Subject (ex. Site Suggestion)',
|
||||
'contactlabel_send' => 'Send',
|
||||
'where_work' => 'Où vous travaillerez',
|
||||
'join_team' => 'Rejoignez l\'équipe',
|
||||
'join_team_cta' => 'Rejoignez l\'équipe dès aujourd\'hui et aidez le réseau à se développer et à prospérer!',
|
||||
'contact_cta' => 'Des questions ? Laissez un message !',
|
||||
'contact_disclaimer' => '*Ce n\'est pas un formulaire de demande. Toutes les demandes envoyées ici seront ignorées.',
|
||||
'contactlabel_name' => 'Nom',
|
||||
'contactlabel_email' => 'Courriel',
|
||||
'contactlabel_subject' => 'Sujet (ex. Suggestion de site)',
|
||||
'contactlabel_send' => 'Envoyer',
|
||||
|
||||
|
||||
|
||||
// ======================== AUTHENTICATION MESSAGES ===========================
|
||||
|
||||
'2fa_txt' => 'Two-Factor Authentication',
|
||||
'2fa_sronly' => 'Two-factor secret code (You can find this on Google Authenticator)',
|
||||
'2fa_lostcode' => 'Don\'t know the code?',
|
||||
'2fa_cancel_login' => 'Cancel login (logout)',
|
||||
'2fa_txt' => 'Authentification à deux facteurs',
|
||||
'2fa_sronly' => 'Code secret à deux facteurs (vous pouvez le trouver sur Google Authenticator)',
|
||||
'2fa_lostcode' => 'Vous ne connaissez pas le code?',
|
||||
'2fa_cancel_login' => 'Annuler la connexion (déconnexion)',
|
||||
|
||||
'terms' => 'Terms of Use',
|
||||
'ppolicy' => 'Privacy Policy',
|
||||
'terms' => 'Conditions d\'utilisation',
|
||||
'ppolicy' => 'Politique de confidentialité',
|
||||
|
||||
'signin_cta' => 'Sign into your account',
|
||||
'password' => 'Password',
|
||||
'remember_me' => 'Remember me',
|
||||
'forgot_pw' => 'Forgot password?',
|
||||
'register_cta' => 'Register here',
|
||||
'no_acc' => 'Don\'t have an account?',
|
||||
'register_acc' => 'Register a new account',
|
||||
'signin_cta' => 'Connectez-vous à votre compte',
|
||||
'password' => 'Mot de passe',
|
||||
'remember_me' => 'Se souvenir de moi',
|
||||
'forgot_pw' => 'Mot de passe oublié ?',
|
||||
'register_cta' => 'S\'inscrire ici',
|
||||
'no_acc' => 'Vous n\'avez pas de compte ?',
|
||||
'register_acc' => 'Créer un nouveau compte',
|
||||
'pwsec' => [
|
||||
'line1' => 'Basic password security',
|
||||
'line2' => 'For your security, we implement strict password policies. It\'s also advisable to let your password manager or browser generate and save passwords for you (if it\'s a private device).',
|
||||
'line3' => 'Passwords must be a combination of: ',
|
||||
'line4' => 'A minimum of 10 characters;',
|
||||
'line5' => 'At least 3 uppercase characters;',
|
||||
'line6' => 'At least 3 numbers;',
|
||||
'line7' => 'Any number of special characters.'
|
||||
'line1' => 'Sécurité de base du mot de passe',
|
||||
'line2' => 'Pour votre sécurité, nous mettons en œuvre des politiques strictes en matière de mots de passe. Il est également conseillé de laisser votre gestionnaire de mots de passe ou votre navigateur générer et enregistrer des mots de passe pour vous (si c\'est un appareil privé).',
|
||||
'line3' => 'Les mots de passe doivent être une combinaison de : ',
|
||||
'line4' => 'Un minimum de 10 caractères ;',
|
||||
'line5' => 'Au moins 3 caractères majuscules ;',
|
||||
'line6' => 'Au moins 3 chiffres ;',
|
||||
'line7' => 'Un nombre quelconque de caractères spéciaux.'
|
||||
],
|
||||
'sronly_confirmpassword' => 'Confirm Password', // hint: sronly stands for screen-reader only
|
||||
'sronly_mcusername' => 'Minecraft Username (Premium)',
|
||||
'have_account' => 'Have an account with us?',
|
||||
'login_here' => 'Login here',
|
||||
'register_txt' => 'Register',
|
||||
'sronly_confirmpassword' => 'Confirmer le mot de passe', // hint: sronly stands for screen-reader only
|
||||
'sronly_mcusername' => 'Nom d\'utilisateur Minecraft (Premium)',
|
||||
'have_account' => 'Vous avez un compte chez nous ?',
|
||||
'login_here' => 'Connectez-vous ici',
|
||||
'register_txt' => 'Inscription',
|
||||
|
||||
// ===================== DASHBOARD & COMPONENT MESSAGES ===========================
|
||||
|
||||
'modal_close' => 'Close',
|
||||
'component_nopermission' => 'We\'re sorry, but you do not have permission to access this web page.',
|
||||
'component_accessdenied' => 'Access Denied',
|
||||
'component_contact' => 'Please contact your administrator if you believe this was in error.',
|
||||
'welcome_back' => 'Welcome back,',
|
||||
'eligible' => 'Eligible',
|
||||
'modal_close' => 'Fermer',
|
||||
'component_nopermission' => 'Nous sommes désolés, mais vous n\'avez pas la permission d\'accéder à cette page Web.',
|
||||
'component_accessdenied' => 'Accès refusé',
|
||||
'component_contact' => 'Veuillez contacter votre administrateur si vous pensez que c\'était une erreur.',
|
||||
'welcome_back' => 'Bienvenue,',
|
||||
'eligible' => 'Éligible',
|
||||
'ineligible' => 'Ineligible',
|
||||
'eligibility_status' => 'Your current application eligibility status: :badgeStatus',
|
||||
'ongoing_apps' => 'Ongoing apps',
|
||||
'denied_apps' => 'Denied apps',
|
||||
'users_staff' => 'Total Users + Staff',
|
||||
'new_apps' => 'New applications',
|
||||
'v_backlog' => 'Vote backlog',
|
||||
'ranks' => 'Available ranks',
|
||||
'open' => 'Open',
|
||||
'closed' => 'Closed',
|
||||
'upcoming' => 'Your upcoming interviews',
|
||||
'soon' => 'Coming soon',
|
||||
'eligibility_status' => 'Statut d\'éligibilité de votre candidature actuelle: :badgeStatus',
|
||||
'ongoing_apps' => 'Applications en cours',
|
||||
'denied_apps' => 'Applications refusées',
|
||||
'users_staff' => 'Nombre total d\'utilisateurs + personnel',
|
||||
'new_apps' => 'Nouvelles applications',
|
||||
'v_backlog' => 'Historique des votes',
|
||||
'ranks' => 'Rangs disponibles',
|
||||
'open' => 'Ouvert',
|
||||
'closed' => 'Fermé',
|
||||
'upcoming' => 'Vos entrevues à venir',
|
||||
'soon' => 'Bientôt disponible',
|
||||
|
||||
|
||||
//=================== ADMINISTRATION MESSAGES (for all administration pages) ===============
|
||||
|
||||
'adm' => 'Administration',
|
||||
'devtools' => 'Developer Tools',
|
||||
'devtools_evn' => 'Event Management',
|
||||
'devoptions' => 'Developer Options',
|
||||
'forceeval' => 'Please choose an application to force re-evaluation',
|
||||
'appid' => 'Application ID',
|
||||
'no_valid_app' => 'There are no valid applications',
|
||||
'choose_app' => 'Choose an application',
|
||||
'dispatch_event' => 'Dispatch event now',
|
||||
'devtools_warn' => 'Do not use these options if you don\'t know what you\'re doing, even if you have access to this page.',
|
||||
'warn' => 'Warning',
|
||||
'override_votes' => 'Override Vote Evaluation',
|
||||
'artisan_evaluate' => 'Artisan: Evaluate Votes Now', // Tip: Artisan is a program name, therefore not translatable
|
||||
'devtools_info' => 'This panel may be also used to completely override the vote system in stalemate scenarios',
|
||||
'devtools' => 'Outils de développement',
|
||||
'devtools_evn' => 'Gestion des événements',
|
||||
'devoptions' => 'Options du développeur',
|
||||
'forceeval' => 'Veuillez choisir une application pour forcer la réévaluation',
|
||||
'appid' => 'ID de l\'application',
|
||||
'no_valid_app' => 'Il n\'y a pas d\'applications valides',
|
||||
'choose_app' => 'Choisir une application',
|
||||
'dispatch_event' => 'Événement d\'expédition maintenant',
|
||||
'devtools_warn' => 'N\'utilisez pas ces options si vous ne savez pas ce que vous faites, même si vous avez accès à cette page.',
|
||||
'warn' => 'Avertissement',
|
||||
'override_votes' => 'Remplacer l\'évaluation du vote',
|
||||
'artisan_evaluate' => 'Artisan: Évaluer les votes maintenant', // Tip: Artisan is a program name, therefore not translatable
|
||||
'devtools_info' => 'Ce panneau peut également être utilisé pour remplacer complètement le système de vote dans des scénarios de blocage',
|
||||
|
||||
|
||||
'forms' => 'Forms',
|
||||
'forms' => 'Formulaires',
|
||||
'positions' => 'Positions', // Context: Positions as in job opening
|
||||
'edit_form' => 'Edit Form',
|
||||
'edt' => 'Editor',
|
||||
'edit' => 'Edit',
|
||||
'edt_action' => 'Editing',
|
||||
'txtbox' => 'Textbox',
|
||||
'multiline' => 'Multi line answer',
|
||||
'checkbox' => 'Checkbox',
|
||||
'field_type' => 'Choose a field type',
|
||||
'save_exit' => 'Save & Quit',
|
||||
'new_field' => 'New field',
|
||||
'vacancy_edit' => 'Vacancy Editor',
|
||||
'new_vacancy' => 'New Vacancy',
|
||||
'form_consistency' => 'For consistency purposes, grayed out fields can\'t be edited.',
|
||||
'edit_form' => 'Modifier le formulaire',
|
||||
'edt' => 'Editeur',
|
||||
'edit' => 'Editer',
|
||||
'edt_action' => 'Édition en cours',
|
||||
'txtbox' => 'Boîte de texte',
|
||||
'multiline' => 'Réponse à plusieurs lignes',
|
||||
'checkbox' => 'Case à cocher',
|
||||
'field_type' => 'Choisissez un type de champ',
|
||||
'save_exit' => 'Enregistrer & Quitter',
|
||||
'new_field' => 'Nouveau champ',
|
||||
'vacancy_edit' => 'Éditeur de vacance',
|
||||
'new_vacancy' => 'Nouvelle vacance',
|
||||
'form_consistency' => 'Pour des raisons de cohérence, les champs grisés ne peuvent pas être modifiés.',
|
||||
|
||||
'vacancy' => [
|
||||
'add' => 'Add vacancy',
|
||||
'name' => 'Vacancy Name',
|
||||
'description' => 'Vacancy Description',
|
||||
'details' => 'Vacancy Details',
|
||||
'markdown' => 'Markdown Supported',
|
||||
'no_details' => 'No details yet... Add some!',
|
||||
'permission_group' => 'Permission Group',
|
||||
'permission_group_tooltip' => 'The permission group from your server/network\'s permissions manager. Compatible with Luckperms and PEX.',
|
||||
'discord_roleid' => 'Discord Role ID',
|
||||
'discord_roleid_tooltip' => 'Discord Desktop: Go to your Account Settings > Appearance -> Advanced and toggle Developer Mode. On your server\'s roles tab, right click any role to copy it\'s ID.',
|
||||
'current_form' => 'Current Form (uneditable)',
|
||||
'remaining_slots' => 'Remaining slots',
|
||||
'free_slots' => 'Free slots',
|
||||
'free_slots_tooltip' => 'How many submissions before the vacancy stops accepting new applicants?',
|
||||
'save' => 'Save Changes',
|
||||
'cancel' => 'Cancel',
|
||||
'close_vacancy' => 'Close Position',
|
||||
'description_tooltip' => 'Add things like admission requirements, rank resposibilities and roles, and anything else you feel is necessary',
|
||||
'add' => 'Ajouter un poste vacant',
|
||||
'name' => 'Nom de la vacance',
|
||||
'description' => 'Description de la vacance',
|
||||
'details' => 'Détails de la vacance',
|
||||
'markdown' => 'Markdown pris en charge',
|
||||
'no_details' => 'Pas encore de détails... Ajoutez-en !',
|
||||
'permission_group' => 'Groupe de Permissions',
|
||||
'permission_group_tooltip' => 'Le groupe de permissions de votre gestionnaire de permissions serveur/réseau. Compatible avec Luckperms et PEX.',
|
||||
'discord_roleid' => 'Identifiant du rôle Discord',
|
||||
'discord_roleid_tooltip' => 'Discord: Allez dans les paramètres de votre compte > Apparence -> Avancé et activez le mode développeur. Dans l\'onglet Rôles de votre serveur, faites un clic droit sur n\'importe quel rôle pour copier son ID.',
|
||||
'current_form' => 'Formulaire actuel (inéditable)',
|
||||
'remaining_slots' => 'Emplacements restants',
|
||||
'free_slots' => 'Emplacements libres',
|
||||
'free_slots_tooltip' => 'Combien de soumissions avant que la vacance de poste ne cesse d\'accepter de nouveaux candidats?',
|
||||
'save' => 'Enregistrer les modifications',
|
||||
'cancel' => 'Abandonner',
|
||||
'close_vacancy' => 'Fermer la position',
|
||||
'description_tooltip' => 'Ajoutez des éléments tels que les exigences d\'entrée, les possibilités de classement et les rôles, et tout ce que vous jugez nécessaire',
|
||||
''
|
||||
|
||||
],
|
||||
|
||||
'form' => 'Form',
|
||||
'form' => 'Forme',
|
||||
|
||||
'form_builder' => [
|
||||
'builder' => 'Form Builder',
|
||||
'builder_name' => 'Application Form Management Tool',
|
||||
'name_form' => 'Name your form...',
|
||||
'save_form' => 'Save Form',
|
||||
'builder' => 'Constructeur de formulaire',
|
||||
'builder_name' => 'Outil de gestion des formulaires de demande',
|
||||
'name_form' => 'Nommez votre formulaire...',
|
||||
'save_form' => 'Enregistrer le formulaire',
|
||||
],
|
||||
|
||||
'form_preview' => [
|
||||
'preview' => 'Preview',
|
||||
'title' => 'Application Form Preview',
|
||||
'looks' => 'This is how your form looks like to applicants',
|
||||
'f_info' => 'You may edit it and add more fields later.',
|
||||
'preview' => 'Aperçu',
|
||||
'title' => 'Aperçu du formulaire de demande',
|
||||
'looks' => 'Voici à quoi ressemble votre formulaire aux candidats',
|
||||
'f_info' => 'Vous pouvez le modifier et ajouter plus de champs plus tard.',
|
||||
''
|
||||
],
|
||||
|
||||
'forms_p' => [
|
||||
|
||||
'available_forms' => 'Available forms',
|
||||
'form_title' => 'Form title',
|
||||
'empty_noforms' => 'Nothing to see here! Please add some forms first.',
|
||||
'new_form' => 'NEW FORM'
|
||||
'available_forms' => 'Formulaires disponibles',
|
||||
'form_title' => 'Titre du formulaire',
|
||||
'empty_noforms' => 'Rien à voir ici ! Veuillez d\'abord ajouter quelques formulaires.',
|
||||
'new_form' => 'NOUVEAU FORM'
|
||||
],
|
||||
|
||||
'players' => [
|
||||
|
||||
'reg_players' => 'Registered Players',
|
||||
'reg_players_staff' => 'See Registered Players (Applicant Pool)',
|
||||
'total_banned' => 'Total Banned Players',
|
||||
'search' => 'Search players',
|
||||
'f_p_search' => 'Full/partial email search',
|
||||
'p_disclaimer' => 'Please note: This list only includes players registered in the team management portal. In a future release, all network players will be shown here.',
|
||||
'listing' => 'Player Listing',
|
||||
'reg_date' => 'Registration Date',
|
||||
'ign' => 'IGN', // Context: Short for In-Game Name
|
||||
'banned' => 'Banned',
|
||||
'active' => 'Active',
|
||||
'no_reg' => 'There are no registered players!',
|
||||
'reg_players' => 'Joueurs enregistrés',
|
||||
'reg_players_staff' => 'Voir les joueurs inscrits (Groupe de demandeurs)',
|
||||
'total_banned' => 'Nombre total de joueurs bannis',
|
||||
'search' => 'Rechercher des joueurs',
|
||||
'f_p_search' => 'Recherche complète / partielle par email',
|
||||
'p_disclaimer' => 'Remarque : Cette liste ne comprend que les joueurs inscrits sur le portail de gestion d\'équipe. Dans une version ultérieure, tous les joueurs du réseau seront affichés ici.',
|
||||
'listing' => 'Liste des joueurs',
|
||||
'reg_date' => 'Date d\'inscription',
|
||||
'ign' => 'IG', // Context: Short for In-Game Name
|
||||
'banned' => 'Banni',
|
||||
'active' => 'Actif',
|
||||
'no_reg' => 'Il n\'y a aucun joueur enregistré!',
|
||||
'no_reg_exp' => "
|
||||
Registered players are those without a staff role in the team management application.
|
||||
There may be other users registered in the platform, but they won't be displayed here.
|
||||
Les joueurs inscrits sont ceux qui n'ont pas de rôle de personnel dans l'application de gestion d'équipe.
|
||||
Il peut y avoir d'autres utilisateurs enregistrés sur la plate-forme, mais ils ne seront pas affichés ici.
|
||||
",
|
||||
'see_staff' => 'See Staff Members'
|
||||
'see_staff' => 'Voir les membres du personnel'
|
||||
|
||||
],
|
||||
|
||||
'positions_p' => [
|
||||
|
||||
'application_form' => 'Application Form',
|
||||
'select_form' => 'Select a form...',
|
||||
'application_form' => 'Formulaire de demande',
|
||||
'select_form' => 'Sélectionnez un formulaire...',
|
||||
'no_form_error' => "
|
||||
You cannot create a vacancy without any forms with which people would apply.
|
||||
create a form first, then, create a vacancy.
|
||||
A single form is allowed to have multiple vacancies, so you can attach future vacancies to the same form if you'd like.
|
||||
Vous ne pouvez pas créer de poste vacant sans aucun formulaire avec lequel des personnes pourraient postuler.
|
||||
créez d'abord un formulaire, puis créez un poste vacant.
|
||||
Une seule forme est autorisée à avoir plusieurs postes vacants, pour que vous puissiez joindre les postes vacants futurs au même formulaire si vous le souhaitez.
|
||||
",
|
||||
'new_pos' => 'NEW POSITION',
|
||||
'empty_pos_warning' => 'Nothing to see here! Open some vacancies first. This will get applicants pouring in! (hopefully)',
|
||||
'manage_forms' => 'MANAGE APPLICATION FORMS',
|
||||
'new_pos' => 'NOUVELLE POSITION',
|
||||
'empty_pos_warning' => 'Rien à voir ici ! Ouvrez d\'abord quelques postes vacants. Cela fera couler les candidats ! (espérons-le)',
|
||||
'manage_forms' => 'GÉRER LES FORMES D\'APPLICATION',
|
||||
|
||||
],
|
||||
|
||||
'settings' => [
|
||||
|
||||
'settings' => 'Settings',
|
||||
'settings_header' => 'Notification Settings',
|
||||
'settings_p' => 'Change which notifications are sent here.',
|
||||
'back_btn' => 'Back to Dashboard'
|
||||
'settings' => 'Réglages',
|
||||
'settings_header' => 'Paramètres de notification',
|
||||
'settings_p' => 'Modifier les notifications envoyées ici.',
|
||||
'back_btn' => 'Retour au tableau de bord'
|
||||
|
||||
],
|
||||
|
||||
'staff' => [
|
||||
|
||||
'members' => 'Staff Members',
|
||||
'active_sm' => 'Active Staff Members',
|
||||
'm_listing' => 'Member Listing',
|
||||
'f_name' => 'Full Name',
|
||||
'rank' => 'Rank',
|
||||
'members' => 'Membres du personnel',
|
||||
'active_sm' => 'Membres du personnel actif',
|
||||
'm_listing' => 'Liste des membres',
|
||||
'f_name' => 'Nom complet',
|
||||
'rank' => 'Rang',
|
||||
],
|
||||
|
||||
// ======================== APPLICATION RENDERING MESSAGES =========================
|
||||
|
||||
'application_r' => [
|
||||
|
||||
'appl_submit_warn' => 'Are you sure you want to submit your application? Please review each of your answers carefully before doing so.',
|
||||
'appl_submit_doublewarn' => 'Please note: Applications CANNOT be modified once they\'re submitted!',
|
||||
'acceptsend' => 'Accept & Send',
|
||||
'review' => 'Review',
|
||||
'applying_for' => 'You are applying for: :name',
|
||||
'appl_submit_warn' => 'Êtes-vous sûr de vouloir soumettre votre candidature ? Veuillez examiner chacune de vos réponses avec soin avant de le faire.',
|
||||
'appl_submit_doublewarn' => 'Veuillez noter que les demandes ne peuvent être modifiées une fois qu\'elles ont été envoyées !',
|
||||
'acceptsend' => 'Accepter et envoyer',
|
||||
'review' => 'Évaluer',
|
||||
'applying_for' => 'Vous postulez pour : :name',
|
||||
'welcome' => [
|
||||
'yrs_old' => 'Years old', // Context: "years old" as in: Tom is 24 years old
|
||||
'line1' => 'We\'re glad you\'ve decided to apply. Generally, applications take 48 hours to be processed and reviewed. Depending on the circumstances and the volume of applications, you may receive an answer in a shorter time.',
|
||||
'line2' => 'Please fill out the form below. Keep all answers concise and complete. Please keep in mind that the age requirement is at least :agerqr.',
|
||||
'line3' => 'Asking about your application will result in instant denial. Everything you need to know is here.'
|
||||
'yrs_old' => 'Années', // Context: "years old" as in: Tom is 24 years old
|
||||
'line1' => 'Nous sommes heureux que vous ayez décidé de postuler. En général, les demandes prennent 48 heures pour être traitées et examinées. Selon les circonstances et le volume des demandes, vous pouvez recevoir une réponse dans un délai plus court.',
|
||||
'line2' => 'Veuillez remplir le formulaire ci-dessous. Gardez toutes les réponses concises et complètes. Veuillez garder à l\'esprit que l\'âge requis est d\'au moins :agerqr.',
|
||||
'line3' => 'Demander à propos de votre application entraînera un refus instantané. Tout ce que vous devez savoir est ici.'
|
||||
],
|
||||
'app_timeout' => 'Your account is not permitted to submit another application. Please wait :days more days before trying to submit an application.'
|
||||
'app_timeout' => 'Votre compte n\'est pas autorisé à soumettre une autre demande. Veuillez attendre :days plus de jours avant d\'essayer de soumettre une demande.'
|
||||
],
|
||||
|
||||
|
||||
'application_m' => [
|
||||
'title' => 'Application Management',
|
||||
'all_apps' => 'All Applications',
|
||||
'modal_confirm' => 'Are you sure?',
|
||||
'really_delete' => 'Really delete this?',
|
||||
'title' => 'Gestion des applications',
|
||||
'all_apps' => 'Toutes les applications',
|
||||
'modal_confirm' => 'Êtes-vous sûr(e) ?',
|
||||
'really_delete' => 'Voulez-vous vraiment supprimer ceci?',
|
||||
|
||||
|
||||
'outstanding_sm' => 'Outstanding',
|
||||
'outstanding_apps' => 'Outstanding Applications',
|
||||
'outstanding_subm' => 'Outstanding (Submitted)',
|
||||
'outstanding_sm' => 'En attente',
|
||||
'outstanding_apps' => 'Applications en cours',
|
||||
'outstanding_subm' => 'En attente (Envoyé)',
|
||||
|
||||
'interview_q' => 'Interview Queue',
|
||||
'interview_q' => 'File d\'attente des entretiens',
|
||||
'interview_p' => 'Interview',
|
||||
'interview_s' => 'Interview Scheduled',
|
||||
'finished_int' => 'Finished Interviews',
|
||||
'schedule_int' => 'Schedule Interviews',
|
||||
'p_review' => 'Peer Review',
|
||||
'applicant' => 'Applicant',
|
||||
'interviewee' => 'Interviewee',
|
||||
'pending_int' => 'Pending Interview',
|
||||
'schedule' => 'Schedule',
|
||||
'interview_s' => 'Interview programmée',
|
||||
'finished_int' => 'Interviews terminées',
|
||||
'schedule_int' => 'Planifier les entrevues',
|
||||
'p_review' => 'Examen par les pairs',
|
||||
'applicant' => 'Demandeur',
|
||||
'interviewee' => 'Interlocuteur',
|
||||
'pending_int' => 'Interview en attente',
|
||||
'schedule' => 'Planifier',
|
||||
|
||||
'view_interview_queue' => 'View Interview Queue',
|
||||
'view_approval_queue' => 'View Approval Queue',
|
||||
'view_outstanding_queue' => 'View Outstanding Queue',
|
||||
'view_interview_queue' => 'Voir la file d\'attente des entretiens',
|
||||
'view_approval_queue' => 'Voir la file d’attente d’approbation',
|
||||
'view_outstanding_queue' => 'Voir la file d\'attente en suspens',
|
||||
|
||||
'approved' => 'Approved',
|
||||
'denied' => 'Denied',
|
||||
'unknown_stat' => 'Unknown',
|
||||
'approved' => 'Approuvé',
|
||||
'denied' => 'Refusé',
|
||||
'unknown_stat' => 'Inconnu',
|
||||
|
||||
'consequence_irreversible' => 'IRREVERSIBLE',
|
||||
'delete_action_warning' => 'This action is :consequence.',
|
||||
'delete_explainer' => 'Comments, appointments and any votes attached to this application WILL be deleted too. Please make sure this application really needs to be deleted.',
|
||||
'consequence_irreversible' => 'IRRÉVERSIBLE',
|
||||
'delete_action_warning' => 'Cette action est la :conséquence.',
|
||||
'delete_explainer' => 'Les commentaires, les rendez-vous et tous les votes attachés à cette application seront également supprimés. Veuillez vous assurer que cette application doit vraiment être supprimée.',
|
||||
|
||||
'all_apps_header' => 'You\'re looking at all applications ever received',
|
||||
'all_apps_exp' => 'Here, you have quick and easy access to all applications ever received by the system.',
|
||||
'all_apps_header' => 'Vous regardez toutes les demandes reçues',
|
||||
'all_apps_exp' => 'Ici, vous avez un accès rapide et facile à toutes les applications jamais reçues par le système.',
|
||||
|
||||
'no_apps' => 'There are no applications here',
|
||||
'no_apps_exp' => 'We couldn\'t find any applications. Maybe no one has applied yet? Please try again later.',
|
||||
'no_apps' => 'Il n\'y a aucune application ici',
|
||||
'no_apps_exp' => 'Nous n\'avons trouvé aucune application. Peut-être que personne n\'a encore postulé ? Veuillez réessayer plus tard.',
|
||||
'int_applications' => 'Applications',
|
||||
|
||||
'no_apps_pending_int' => 'No Applications Pending Interview',
|
||||
'no_apps_pending_int_exp' => 'There are no applications that have been moved up to the Interview stage. Please check the outstanding queue.There are no applications that have been moved up to the Interview stage. Please check the outstanding queue.',
|
||||
'upcoming_int' => 'My Upcoming Interviews',
|
||||
'pending_schedule' => 'Pending Schedule',
|
||||
'no_apps_pending_int' => 'Aucune application en attente d\'entretien',
|
||||
'no_apps_pending_int_exp' => 'Il n\'y a aucune application qui ait été déplacée jusqu\'à l\'étape d\'entrevue. Veuillez vérifier la file d\'attente en cours. ici ne sont pas des applications qui ont été déplacées jusqu\'à l\'étape d\'entrevue. Veuillez vérifier la file d\'attente en cours.',
|
||||
'upcoming_int' => 'Mes entrevues à venir',
|
||||
'pending_schedule' => 'Horaire en attente',
|
||||
|
||||
'no_upcoming' => 'There are no upcoming interviews',
|
||||
'no_upcoming_exp' => 'Please check other queues down in the application process. Applicants here may have already been interviewed.',
|
||||
'no_upcoming' => 'Il n\'y a pas d\'entrevue à venir',
|
||||
'no_upcoming_exp' => 'Veuillez vérifier les autres files d\'attente dans le processus de candidature. Les candidats ici ont peut-être déjà été interviewés.',
|
||||
|
||||
'no_outstanding' => 'Seeing no applications? Check with an Administrator to make sure that there are available open positions.',
|
||||
'no_outstanding_exp' => 'Advertising on relevant forums made for this purpose is also a good idea.',
|
||||
'no_outstanding' => 'Vous ne voyez aucune candidature ? Vérifiez avec un administrateur pour vous assurer qu\'il y a des postes ouverts disponibles.',
|
||||
'no_outstanding_exp' => 'La publicité sur des forums pertinents conçus à cet effet est également une bonne idée.',
|
||||
|
||||
'applicant_name' => 'Applicant Name',
|
||||
'application_date' => 'Application Date',
|
||||
'applicant_name' => 'Nom du candidat',
|
||||
'application_date' => 'Date de la candidature',
|
||||
|
||||
'no_pending' => 'There are no pending applications',
|
||||
'no_pending_exp' => 'It seems like no one new has applied yet. Checkout the interview and approval queues for applications that might have moved up the ladder by now.',
|
||||
'no_pending' => 'Il n\'y a aucune demande en attente',
|
||||
'no_pending_exp' => 'Il semble que personne de nouveau n\'a encore postulé. Consultez les files d’attente d’entrevue et d’approbation pour les applications qui auraient pu faire monter l’échelle maintenant.',
|
||||
|
||||
'voting_reminder' => [
|
||||
|
||||
'title' => 'Voting Reminder',
|
||||
'line1' => 'Applications which gain more than 50% of positive votes are automatically approved after one day.',
|
||||
'line2' => 'Conversely, applications that do not reach this number are automatically denied.',
|
||||
'line3' => 'Please note that the vote system can be overridden'
|
||||
'title' => 'Rappel de vote',
|
||||
'line1' => 'Les candidatures qui gagnent plus de 50% de votes positifs sont automatiquement approuvées après une journée.',
|
||||
'line2' => 'Inversement, les applications qui n\'atteignent pas ce numéro sont automatiquement refusées.',
|
||||
'line3' => 'Veuillez noter que le système de vote peut être outrepassé'
|
||||
|
||||
],
|
||||
|
||||
'no_pending_review' => 'There are no applications pending review',
|
||||
'no_pending_review_exp' => 'Check the other queues for any applications! Applications will be shown here as soon as their interview is completed. You\'ll be able to view meeting notes and vote based on your observations.',
|
||||
'no_pending_review' => 'Il n\'y a pas de demandes en attente de révision',
|
||||
'no_pending_review_exp' => 'Consultez les autres files d’attente pour toutes les candidatures! Les candidatures seront affichées ici dès que leur entrevue sera terminée. Vous pourrez consulter les notes de la réunion et voter en fonction de vos observations.',
|
||||
|
||||
],
|
||||
|
||||
@@ -413,113 +413,115 @@ return [
|
||||
|
||||
'profile' => [
|
||||
|
||||
'title' => ':name\'s profile',
|
||||
'profile' => 'Profile',
|
||||
'users' => 'Users',
|
||||
'account_banned' => 'Account banned',
|
||||
'account_banned_exp' => 'This user has been banned by the moderators.',
|
||||
'ban_confirm' => 'Please confirm that you want to ban this user account. You\'ll need to add a reason and expiration date to confirm this. Bans don\'t transfer to connected Minecraft networks (yet).',
|
||||
'leave_empty' => 'Leave empty for a permanent ban',
|
||||
'duration' => 'Duration',
|
||||
'p_duration' => 'Punishment duration',
|
||||
'p_duration_exp' => 'e.g. Spamming',
|
||||
'ban' => 'Ban',
|
||||
'title' => 'Profil de :name',
|
||||
'profile' => 'Profil',
|
||||
'users' => 'Utilisateurs',
|
||||
'account_banned' => 'Compte banni',
|
||||
'account_banned_exp' => 'Cet utilisateur a été banni par les modérateurs.',
|
||||
'ban_confirm' => 'Veuillez confirmer que vous souhaitez bannir ce compte utilisateur. Vous devrez ajouter une raison et une date d\'expiration pour confirmer cela. Les bannissements ne sont pas encore transférés vers les réseaux Minecraft connectés.',
|
||||
'leave_empty' => 'Laisser vide pour un bannissement permanent',
|
||||
'duration' => 'Durée',
|
||||
'p_duration' => 'Durée de la sanction',
|
||||
'p_duration_exp' => 'par exemple Spamming',
|
||||
'ban' => 'Bannir',
|
||||
|
||||
'terminate_notice' => 'You are about to terminate a staff member',
|
||||
'terminate_notice_warning' => 'Terminating a staff member will remove their privileges on the team management site and Network.
|
||||
They will be notified of their termination. Make sure to have discussed this with them first.',
|
||||
'terminate_notice_consequence' => 'THIS PROCESS IS IRREVERSIBLE AND IMMEDIATE',
|
||||
'terminate_txt' => 'Terminate Staff Member',
|
||||
'terminate_notice' => 'Vous êtes sur le point de terminer un membre du personnel',
|
||||
'terminate_notice_warning' => 'Terminer un membre du personnel supprimera ses privilèges sur le site de gestion d\'équipe et le réseau.
|
||||
Ils seront informés de leur résiliation. Assurez-vous d\'en avoir discuté avec eux en premier.',
|
||||
'terminate_notice_consequence' => 'CE PROCESS EST IRRÉVERSIBLE ET IMMÉDIÉ',
|
||||
'terminate_txt' => 'Terminer le membre du personnel',
|
||||
|
||||
'delete_acc_warn' => 'WARNING: This is a potentially destructive action!',
|
||||
'delete_acc_consequence' => 'Deleting a user\'s account is an irreversible process. Historic and current applications, votes, and profile content, as well as any personally identifiable information will be immediately erased.',
|
||||
'type_to_confirm' => 'Type to confirm:',
|
||||
'type_placeholder' => 'Please type the above',
|
||||
'delete_acc_warn' => 'AVERTISSEMENT : C\'est une action potentiellement destructrice !',
|
||||
'delete_acc_consequence' => 'La suppression du compte d\'un utilisateur est un processus irréversible. Les candidatures historiques et actuelles, les votes et le contenu du profil, ainsi que toute information personnellement identifiable seront immédiatement effacés.',
|
||||
'type_to_confirm' => 'Tapez pour confirmer:',
|
||||
'type_placeholder' => 'Veuillez saisir ce qui précède',
|
||||
|
||||
'delete_acc' => 'Delete Account',
|
||||
'edit_acc' => 'Edit Account',
|
||||
'delete_acc' => 'Supprimer le compte',
|
||||
'edit_acc' => 'Modifier le compte',
|
||||
|
||||
'ban_acc' => 'Ban Account',
|
||||
'unban_acc' => 'Unban Account',
|
||||
'ban_acc' => 'Bannir le compte',
|
||||
'unban_acc' => 'Débannir le compte',
|
||||
|
||||
'search_result' => 'Search results',
|
||||
'search_result' => 'Résultats de recherche',
|
||||
|
||||
'origin_cc' => 'Origin country',
|
||||
'state_prov' => 'State/Province',
|
||||
'district' => 'District (if any)',
|
||||
'city' => 'City',
|
||||
'zipcode' => 'Zipcode',
|
||||
'coords' => 'Coordinates',
|
||||
'european' => 'European?',
|
||||
'isp' => 'ISP', // Internet service provider
|
||||
'org' => 'Organization (if any)',
|
||||
'origin_cc' => 'Pays d\'origine',
|
||||
'state_prov' => 'État/Province',
|
||||
'district' => 'District (le cas échéant)',
|
||||
'city' => 'Ville',
|
||||
'zipcode' => 'Code postal',
|
||||
'coords' => 'Coordonnées',
|
||||
'european' => 'Européen ?',
|
||||
'isp' => 'FAI', // Internet service provider
|
||||
'org' => 'Organisation (le cas échéant)',
|
||||
'ctype' => 'C. Type', // Internet Connection type
|
||||
'timezone' => 'Timezone',
|
||||
'noresults' => 'This query returned no results.',
|
||||
'noresults' => 'Cette requête n\'a retourné aucun résultat.',
|
||||
|
||||
'edituser' => 'Edit PII and Roles', // PII: Personally identifiable information
|
||||
'edituser_consequence' => 'Warning! This is a sensitive setting! Changing this could have unintended consequences!',
|
||||
'acc_management' => 'Account Management (Admin)',
|
||||
'discord_tag' => 'User\'s Discord Tag: :discordTag',
|
||||
'account_settings' => 'Account Settings',
|
||||
'account_settings_personal' => 'My Account Settings',
|
||||
'edituser' => 'Modifier les PII et Rôles', // PII: Personally identifiable information
|
||||
'edituser_consequence' => 'Attention ! Ceci est un paramètre sensible ! Changer ceci pourrait avoir des conséquences involontaires !',
|
||||
'acc_management' => 'Gestion du compte (Admin)',
|
||||
'discord_tag' => 'Étiquette Discord de l\'utilisateur : :discordTag',
|
||||
'account_settings' => 'Paramètres du compte',
|
||||
'account_settings_personal' => 'Paramètres de mon compte',
|
||||
|
||||
'2fa_welcome' => 'We\'re glad you decided to increase your account\'s security!',
|
||||
'supported_apps' => 'Supported apps you can install: ',
|
||||
'scan_code' => 'Scan the :scannable code with your preferred app, and then copy the code here.',
|
||||
'otp' => 'One-time code',
|
||||
'2fa_enable' => 'Enable 2FA',
|
||||
'2fa_remove_consequence' => 'Removing two-factor authentication will reduce the security of your account.',
|
||||
'2fa_password_confirm' => 'Confirm your password to continue',
|
||||
'2fa_password_confirm_exp' => 'To prevent unauthorized changes, a password is always required for sensitive operations.',
|
||||
'2fa_disable_consent' => '"I understand the possible consequences of disabling two factor authentication"',
|
||||
'2fa_remove' => 'Remove 2FA',
|
||||
'2fa_remove_extended' => 'Remove Two-Factor Authentication',
|
||||
'2fa_welcome' => 'Nous sommes heureux que vous ayez décidé d\'augmenter la sécurité de votre compte !',
|
||||
'supported_apps' => 'Applications supportées que vous pouvez installer: ',
|
||||
'scan_code' => 'Scannez le code :scannable avec votre application préférée, puis copiez le code ici.',
|
||||
'otp' => 'Code unique',
|
||||
'2fa_enable' => 'Activer l\'A2F',
|
||||
'2fa_remove_consequence' => 'La suppression de l\'authentification à deux facteurs réduira la sécurité de votre compte.',
|
||||
'2fa_password_confirm' => 'Confirmez votre mot de passe pour continuer',
|
||||
'2fa_password_confirm_exp' => 'Pour éviter toute modification non autorisée, un mot de passe est toujours requis pour les opérations sensibles.',
|
||||
'2fa_disable_consent' => '"Je comprends les conséquences possibles de la désactivation de l\'authentification à deux facteurs"',
|
||||
'2fa_remove' => 'Supprimer 2FA',
|
||||
'2fa_remove_extended' => 'Supprimer l\'authentification à deux facteurs',
|
||||
'2fa_send_code' => 'Envoyer le code 2FA',
|
||||
'2fa_send_code_s' => 'Code 2FA (ex. 41351)',
|
||||
|
||||
'security_lgotherdev' => 'For your security, you\'ll need to re-enter your password before logging out other devices. If you believe your account has been compromised, please change your password instead, as that will automatically log out anyone else who might using your account, and prevent them from signing back in.',
|
||||
'password_reenter' => 'Re-enter your password',
|
||||
'security_lgotherdev' => 'Pour votre sécurité, vous devrez saisir à nouveau votre mot de passe avant de vous déconnecter d\'autres appareils. Si vous pensez que votre compte a été compromis, veuillez changer votre mot de passe à la place, car cela déconnectera automatiquement toute autre personne qui pourrait utiliser votre compte et les empêchera de se reconnecter.',
|
||||
'password_reenter' => 'Entrez à nouveau votre mot de passe',
|
||||
|
||||
'acc_security' => 'Account Security',
|
||||
'2fa' => 'Two Factor Authentication',
|
||||
'acc_security' => 'Sécurité du compte',
|
||||
'2fa' => 'Authentification en deux étapes',
|
||||
'sessions' => 'Sessions',
|
||||
'contact_settings' => 'Contact Settings (E-Mail)',
|
||||
'contact_settings' => 'Paramètres de contact (E-Mail)',
|
||||
|
||||
'change_password' => 'Change Password',
|
||||
'change_password_exp' => 'Change your password here. This will log you out from all existing sessions for your security.',
|
||||
'change_password' => 'Changer le mot de passe',
|
||||
'change_password_exp' => 'Changez votre mot de passe ici. Cela vous déconnectera de toutes les sessions existantes pour votre sécurité.',
|
||||
|
||||
'old_pass' => 'Old Password',
|
||||
'forgot_pw' => 'Forgot your password? Reset it :link',
|
||||
'new_pw' => 'New Password',
|
||||
'old_pass' => 'Ancien mot de passe',
|
||||
'forgot_pw' => 'Vous avez oublié votre mot de passe ? Réinitialisez-le :link',
|
||||
'new_pw' => 'Nouveau mot de passe',
|
||||
|
||||
'2fa_enable_success' => 'Hooray! 2FA is setup correctly for your account. A code will be asked each time you login.',
|
||||
'2fa_avail' => 'Two-factor auth is available for your account.',
|
||||
'2fa_avail_exp' => ' Enabling this security option greatly increases your account\'s security in case your password ever gets stolen.',
|
||||
'2fa_enable_success' => 'Hourra ! 2FA est configuré correctement pour votre compte. Un code sera demandé chaque fois que vous vous connectez.',
|
||||
'2fa_avail' => 'L\'authentification à deux facteurs est disponible pour votre compte.',
|
||||
'2fa_avail_exp' => ' Activer cette option de sécurité augmente considérablement la sécurité de votre compte en cas de vol de votre mot de passe.',
|
||||
|
||||
'session_manager' => 'Session Manager',
|
||||
'terminate_others' => 'Terminating other sessions is generally a good idea if your account has been compromised.',
|
||||
'current_session' => 'Your current session: logged in from :ipAddress',
|
||||
'flush_session' => 'Flush sessions',
|
||||
'personal_data_change' => 'Need to change personal data? You can do so here.',
|
||||
'current_email' => 'Current Email Address',
|
||||
'new_email' => 'New Email Address',
|
||||
'current_password' => 'Current Password',
|
||||
'security_nochangepw' => 'For security reasons, you cannot make important account changes without confirming your password. You\'ll also need to verify your new email.',
|
||||
'change_email' => 'Change Email Address',
|
||||
'session_manager' => 'Gestionnaire de session',
|
||||
'terminate_others' => 'Terminer d\'autres sessions est généralement une bonne idée si votre compte a été compromis.',
|
||||
'current_session' => 'Votre session actuelle: connectée depuis :ipAddress',
|
||||
'flush_session' => 'Vider les sessions',
|
||||
'personal_data_change' => 'Vous avez besoin de changer vos données personnelles ? Vous pouvez le faire ici.',
|
||||
'current_email' => 'Adresse e-mail actuelle',
|
||||
'new_email' => 'Nouvelle adresse e-mail',
|
||||
'current_password' => 'Mot de passe actuel',
|
||||
'security_nochangepw' => 'Pour des raisons de sécurité, vous ne pouvez pas effectuer de modifications importantes de votre compte sans confirmer votre mot de passe. Vous devrez également vérifier votre nouvel e-mail.',
|
||||
'change_email' => 'Changer l\'adresse e-mail',
|
||||
|
||||
'basic_info' => 'Basic Information',
|
||||
'fl_name' => 'First / Last Name',
|
||||
'shortbio' => 'Short Bio',
|
||||
'about_me' => 'About Me',
|
||||
'pref_media' => 'Preferences & Media',
|
||||
'avatar_source' => 'Retrieve avatar from: ',
|
||||
'social_media' => 'Social Media',
|
||||
'basic_info' => 'Informations de base',
|
||||
'fl_name' => 'Prénom / Nom',
|
||||
'shortbio' => 'Courte Bio',
|
||||
'about_me' => 'À propos de moi',
|
||||
'pref_media' => 'Préférences & Médias',
|
||||
'avatar_source' => 'Récupérer l\'avatar depuis: ',
|
||||
'social_media' => 'Réseaux sociaux',
|
||||
|
||||
'github_user' => 'Github Username',
|
||||
'twitter_user' => 'Twitter Username',
|
||||
'insta_user' => 'Instagram Username',
|
||||
'discord_user' => 'Discord Handle',
|
||||
'twitter_user' => 'Nom d\'utilisateur Twitter',
|
||||
'insta_user' => 'Nom d\'utilisateur Instagram',
|
||||
'discord_user' => 'Handle Discord',
|
||||
|
||||
'update_prfl' => 'Update Profile'
|
||||
'update_prfl' => 'Mettre à jour le profil'
|
||||
|
||||
],
|
||||
|
||||
@@ -528,28 +530,28 @@ return [
|
||||
'user' => [
|
||||
|
||||
'app_process' => [
|
||||
'title' => 'Application Process',
|
||||
'line1' => 'Please allow up to three days for your application to be processed. Your application will be reviewed by every team member, and will move up in stages.',
|
||||
'line2' => 'If an interview is scheduled, you\'ll need to open your application here and confirm the time, date, and location assigned for you.'
|
||||
'title' => 'Processus de candidature',
|
||||
'line1' => 'Veuillez prévoir jusqu\'à trois jours pour que votre demande soit traitée. Votre candidature sera examinée par chaque membre de l\'équipe et passera par étapes.',
|
||||
'line2' => 'Si une entrevue est programmée, vous devrez ouvrir votre candidature ici et confirmer l\'heure, la date et le lieu qui vous sont attribués.'
|
||||
],
|
||||
|
||||
'account_standing' => 'Account Standing',
|
||||
'account_eligibility' => 'Your account is currently :eligibility for application',
|
||||
'days_remaining_acc_alt' => 'As of today, there are :days remaining until you\'re permitted to submit another application.',
|
||||
'my_ongoingapps' => 'My Ongoing Applications',
|
||||
'account_standing' => 'Compte en cours',
|
||||
'account_eligibility' => 'Votre compte est actuellement :éligibilité pour la demande',
|
||||
'days_remaining_acc_alt' => 'À partir d\'aujourd\'hui, il reste :days jusqu\'à ce que vous soyez autorisé à soumettre une autre demande.',
|
||||
'my_ongoingapps' => 'Mes applications en cours',
|
||||
|
||||
'submitted' => 'Submitted',
|
||||
'peer_approval' => 'Peer Approval',
|
||||
'peer_approval_q' => 'Peer Approval Queue',
|
||||
'submitted' => 'Soumis',
|
||||
'peer_approval' => 'Approbation par les pairs',
|
||||
'peer_approval_q' => 'File d\'attente d\'approbation par les pairs',
|
||||
|
||||
'nothing_to_show' => 'Nothing to show',
|
||||
'nothing_to_show_exp' => 'You currently have no applications to display. If you\'re eligible, you may apply once every month.',
|
||||
'nothing_to_show' => 'Rien à afficher',
|
||||
'nothing_to_show_exp' => 'Vous n\'avez actuellement aucune demande à afficher. Si vous êtes admissible, vous pouvez postuler une fois par mois.',
|
||||
|
||||
'directory' => [
|
||||
|
||||
'itsyou' => 'It\'s you!',
|
||||
'title' => 'User Directory',
|
||||
'directory' => 'Directory'
|
||||
'itsyou' => 'C\'est vous !',
|
||||
'title' => 'Répertoire utilisateur',
|
||||
'directory' => 'Répertoire'
|
||||
|
||||
]
|
||||
|
||||
@@ -557,51 +559,51 @@ return [
|
||||
|
||||
'view_app' => [
|
||||
|
||||
'title' => 'Viewing application',
|
||||
'viewing_app' => 'Viewing :user\'s application',
|
||||
'cantvote' => 'You cannot vote on this application anymore.',
|
||||
'no_notes' => 'There are no notes yet. Add some!',
|
||||
'deny_confirm' => 'Are you sure you want to deny this application? Please keep in mind that this user will only be allowed to apply 30 days after their first application.',
|
||||
'deny_confirm_consequence' => 'This action cannot be undone.',
|
||||
'deny_confirm_btn' => 'Confirm: Deny Applicant',
|
||||
'form_updated_alert' => 'If this form has been updated, new fields and updated questions will not show up here!',
|
||||
'context_info' => 'Contextual Information',
|
||||
'appl_ip' => 'Applicant IP Address',
|
||||
'appl_for' => 'Applying for',
|
||||
'currentstatus' => 'Current Status',
|
||||
'decisionmod' => 'Decision & Moderation Tools',
|
||||
'denyapp' => 'Deny applicant',
|
||||
'nextstage' => 'Move to next stage',
|
||||
'appointment_desc' => 'Appointment description',
|
||||
'int_date_time' => 'Interview Date & Time',
|
||||
'choosedate' => 'Click to choose a date',
|
||||
'appointment_loc' => 'Appointment Location',
|
||||
'pref_platform' => 'Select your preferred platform',
|
||||
'coming_soon_int' => 'Embedded in-house video conferencing coming soon, powered by Jitsi Meet',
|
||||
'scheduled_for' => 'Interview Scheduled for:',
|
||||
'platform' => 'Platform',
|
||||
'finish_meeting' => 'Finish Meeting',
|
||||
'view_notes' => 'View Meeting Notes',
|
||||
'vote_app' => 'Vote on this application',
|
||||
'title' => 'Visualisation de l\'application',
|
||||
'viewing_app' => 'Visualisation de l\'application :user',
|
||||
'cantvote' => 'Vous ne pouvez plus voter sur cette application.',
|
||||
'no_notes' => 'Il n\'y a pas encore de notes. Ajoutez-en !',
|
||||
'deny_confirm' => 'Êtes-vous sûr de vouloir refuser cette application ? Veuillez garder à l\'esprit que cet utilisateur ne sera autorisé à appliquer 30 jours après sa première application.',
|
||||
'deny_confirm_consequence' => 'Cette action ne peut être annulée.',
|
||||
'deny_confirm_btn' => 'Confirmation : Refuser le candidat',
|
||||
'form_updated_alert' => 'Si ce formulaire a été mis à jour, de nouveaux champs et des questions mises à jour n\'apparaîtront pas ici!',
|
||||
'context_info' => 'Informations contextuelles',
|
||||
'appl_ip' => 'Adresse IP du candidat',
|
||||
'appl_for' => 'Candidature pour',
|
||||
'currentstatus' => 'Statut actuel',
|
||||
'decisionmod' => 'Outils de décision et de modération',
|
||||
'denyapp' => 'Refuser le candidat',
|
||||
'nextstage' => 'Passer à l\'étape suivante',
|
||||
'appointment_desc' => 'Description du rendez-vous',
|
||||
'int_date_time' => 'Date et heure de l\'entrevue',
|
||||
'choosedate' => 'Cliquer pour choisir une date',
|
||||
'appointment_loc' => 'Lieu du rendez-vous',
|
||||
'pref_platform' => 'Sélectionnez votre plateforme préférée',
|
||||
'coming_soon_int' => 'La vidéoconférence intégrée à l’intérieur de la maison arrive bientôt, propulsée par Jitsi Meet',
|
||||
'scheduled_for' => 'Interview programmée pour:',
|
||||
'platform' => 'Plateforme',
|
||||
'finish_meeting' => 'Terminer la réunion',
|
||||
'view_notes' => 'Voir les notes de la réunion',
|
||||
'vote_app' => 'Voter pour cette candidature',
|
||||
|
||||
'vote_explainer' => [
|
||||
|
||||
'line1' => 'If you weren\'t present during this meeting, you can view the shared meeting notepad to help you make a decision.',
|
||||
'line2' => 'You may vote on as many applications as needed; However, you can only vote once per application.',
|
||||
'line3' => 'Votes carry no weight based on rank. This system has been designed with fairness and ease of use in mind.'
|
||||
'line1' => 'Si vous n\'étiez pas présent pendant cette réunion, vous pouvez voir le bloc-notes de réunion partagé pour vous aider à prendre une décision.',
|
||||
'line2' => 'Vous pouvez voter sur autant de candidatures que nécessaire. Cependant, vous ne pouvez voter qu\'une seule fois par candidature.',
|
||||
'line3' => 'Les votes ne portent aucun poids basé sur le rang. Ce système a été conçu avec équité et facilité d\'utilisation.'
|
||||
|
||||
],
|
||||
|
||||
'vote_approve' => 'Vote: Approve Applicant',
|
||||
'vote_deny' => 'Vote: Deny Applicant',
|
||||
'm_notes' => 'Meeting notes',
|
||||
'view_more' => 'View more Applications',
|
||||
'comments' => 'Comments',
|
||||
'no_comments' => 'There are no comments here.',
|
||||
'no_comments_exp' => 'There are no comments here! Comments are only visible to staff members. Be the first to share your input! Commenting may help with decision-making when time comes to vote for an application.',
|
||||
'commenting_as' => 'Commenting as :username',
|
||||
'max_chars' => 'max characters', // Context: A number is added before max characters
|
||||
'post' => 'Post', // Context: Post as in post comment
|
||||
'vote_approve' => 'Vote: Approuver le candidat',
|
||||
'vote_deny' => 'Vote: Refuser le candidat',
|
||||
'm_notes' => 'Notes de réunion',
|
||||
'view_more' => 'Voir plus d\'applications',
|
||||
'comments' => 'Commentaires',
|
||||
'no_comments' => 'Il n\'y a aucun commentaire ici.',
|
||||
'no_comments_exp' => 'Il n\'y a aucun commentaire ici ! Les commentaires ne sont visibles que pour les membres du personnel. Soyez le premier à partager vos commentaires! Commenter peut aider à prendre des décisions quand vient le temps de voter pour une demande.',
|
||||
'commenting_as' => 'Commenter en tant que :username',
|
||||
'max_chars' => 'nombre maximum de caractères', // Context: A number is added before max characters
|
||||
'post' => 'Poster', // Context: Post as in post comment
|
||||
|
||||
]
|
||||
|
||||
|
@@ -13,7 +13,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Previous',
|
||||
'next' => 'Next »',
|
||||
'previous' => '« Précédent',
|
||||
'next' => 'Suivant »',
|
||||
|
||||
];
|
||||
|
@@ -13,10 +13,10 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'reset' => 'Your password has been reset!',
|
||||
'sent' => 'We have emailed 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 email address.",
|
||||
'reset' => 'Votre mot de passe a été réinitialisé !',
|
||||
'sent' => 'Nous avons envoyé un e-mail pour réinitialiser votre mot de passe!',
|
||||
'throttled' => 'Veuillez patienter avant de réessayer.',
|
||||
'token' => 'Ce jeton de réinitialisation de mot de passe est invalide.',
|
||||
'user' => "Nous ne pouvons pas trouver un utilisateur avec cette adresse e-mail.",
|
||||
|
||||
];
|
||||
|
@@ -13,110 +13,110 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'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.',
|
||||
'accepted' => 'L\'attribut :attribute doit être accepté.',
|
||||
'active_url' => 'Le champ :attribute n\'est pas une URL valide.',
|
||||
'after' => 'Le champ :attribute doit être une date après :date.',
|
||||
'after_or_equal' => 'Le champ :attribute doit être une date postérieure ou égale à :date.',
|
||||
'alpha' => 'Le champ :attribute ne peut contenir que des lettres.',
|
||||
'alpha_dash' => ':attribute ne peut contenir que des lettres, des chiffres, des tirets et des tirets bas.',
|
||||
'alpha_num' => 'Le champ :attribute ne peut contenir que des lettres et des chiffres.',
|
||||
'array' => ':attribute doit être un tableau.',
|
||||
'before' => 'Le champ :attribute doit être une date avant :date.',
|
||||
'before_or_equal' => ':attribute doit être une date antérieure ou égale à :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.',
|
||||
'numeric' => 'Le champ :attribute doit être entre :min et :max.',
|
||||
'file' => 'Le champ :attribute doit être compris entre :min et :max kilo-octets.',
|
||||
'string' => 'Le champ :attribute doit contenir entre :min et :max caractères.',
|
||||
'array' => 'Le champ :attribute doit avoir entre :min et :max éléments.',
|
||||
],
|
||||
'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.',
|
||||
'boolean' => 'Le champ :attribute doit être vrai ou faux.',
|
||||
'confirmed' => 'La confirmation de l\'attribut :attribute ne correspond pas.',
|
||||
'date' => 'Le champ :attribute n\'est pas une date valide.',
|
||||
'date_equals' => 'Le champ :attribute doit être une date égale à :date.',
|
||||
'date_format' => 'Le champ :attribute ne correspond pas au format :format.',
|
||||
'different' => ':attribute et :other doivent être différents.',
|
||||
'digits' => ':attribute doit être de :digits chiffres.',
|
||||
'digits_between' => 'Le champ :attribute doit contenir entre :min et :max chiffres.',
|
||||
'dimensions' => ':attribute a des dimensions d\'image non valides.',
|
||||
'distinct' => 'Le champ :attribute a une valeur en double.',
|
||||
'email' => 'Le champ :attribute doit être une adresse e-mail valide.',
|
||||
'ends_with' => ':attribute doit se terminer par un des :values suivantes.',
|
||||
'exists' => 'Le champ :attribute sélectionné est invalide.',
|
||||
'file' => 'Le champ :attribute doit être un fichier.',
|
||||
'filled' => 'Le champ :attribute doit avoir une valeur.',
|
||||
'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.',
|
||||
'numeric' => 'Le champ :attribute doit être supérieur à :value.',
|
||||
'file' => ':attribute doit être plus grand que :value kilo-octets.',
|
||||
'string' => 'Le champ :attribute doit être plus grand que :value caractères.',
|
||||
'array' => 'Le champ :attribute doit avoir plus de :value éléments.',
|
||||
],
|
||||
'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.',
|
||||
'numeric' => 'Le champ :attribute doit être supérieur ou égal à :value.',
|
||||
'file' => ':attribute doit être supérieur ou égal à :value kilo-octets.',
|
||||
'string' => 'Le champ :attribute doit être supérieur ou égal à :value caractères.',
|
||||
'array' => 'L\'attribut :attribute doit avoir :value éléments ou plus.',
|
||||
],
|
||||
'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.',
|
||||
'image' => 'Le champ :attribute doit être une image.',
|
||||
'in' => 'Le champ :attribute sélectionné est invalide.',
|
||||
'in_array' => 'Le champ :attribute n\'existe pas dans :other.',
|
||||
'integer' => ':attribute doit être un nombre entier.',
|
||||
'ip' => 'Le champ :attribute doit être une adresse IP valide.',
|
||||
'ipv4' => 'Le champ :attribute doit être une adresse IPv4 valide.',
|
||||
'ipv6' => 'Le champ :attribute doit être une adresse IPv6 valide.',
|
||||
'json' => 'Le champ :attribute doit être une chaîne JSON valide.',
|
||||
'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.',
|
||||
'numeric' => 'Le champ :attribute doit être inférieur à :value.',
|
||||
'file' => ':attribute doit être inférieur à :value kilo-octets.',
|
||||
'string' => 'Le champ :attribute doit être inférieur à :value caractères.',
|
||||
'array' => 'Le champ :attribute doit avoir moins de :value éléments.',
|
||||
],
|
||||
'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.',
|
||||
'numeric' => 'Le champ :attribute doit être inférieur ou égal à :value.',
|
||||
'file' => ':attribute doit être inférieur ou égal à :value kilo-octets.',
|
||||
'string' => 'Le champ :attribute doit être inférieur ou égal à :value caractères.',
|
||||
'array' => 'Le champ :attribute ne doit pas avoir plus de :value éléments.',
|
||||
],
|
||||
'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.',
|
||||
'numeric' => 'Le champ :attribute ne peut pas être plus grand que :max.',
|
||||
'file' => ':attribute ne doit pas être plus grand que :max kilo-octets.',
|
||||
'string' => 'Le champ :attribute ne doit pas être plus grand que :max caractères.',
|
||||
'array' => ':attribute ne peut pas avoir plus de :max éléments.',
|
||||
],
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimes' => ':attribute doit être un fichier de type: :values.',
|
||||
'mimetypes' => ':attribute doit être un fichier de 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.',
|
||||
'numeric' => 'Le champ :attribute doit être d\'au moins :min.',
|
||||
'file' => 'Le champ :attribute doit être d\'au moins :min kilo-octets.',
|
||||
'string' => 'Le champ :attribute doit contenir au moins :min caractères.',
|
||||
'array' => 'Le champ :attribute doit avoir au moins :min éléments.',
|
||||
],
|
||||
'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.',
|
||||
'not_in' => 'Le champ :attribute sélectionné est invalide.',
|
||||
'not_regex' => 'Le format de l\'attribut :attribute est invalide.',
|
||||
'numeric' => 'Le champ :attribute doit être un nombre.',
|
||||
'password' => 'Le mot de passe est incorrect.',
|
||||
'present' => 'Le champ :attribute doit être présent.',
|
||||
'regex' => 'Le format de l\'attribut :attribute est invalide.',
|
||||
'required' => 'Le champ :attribute est requis.',
|
||||
'required_if' => 'Le champ :attribute est requis lorsque :other est :value.',
|
||||
'required_unless' => 'Le champ :attribute est requis sauf si :other est en :values.',
|
||||
'required_with' => 'Le champ :attribute est requis lorsque :values est présent.',
|
||||
'required_with_all' => 'Le champ :attribute est requis lorsque :values sont présentes.',
|
||||
'required_without' => 'Le champ :attribute est requis lorsque :values n\'est pas présent.',
|
||||
'required_without_all' => 'Le champ :attribute est requis quand aucun des :values n\'est présent.',
|
||||
'same' => ':attribute et :other doivent correspondre.',
|
||||
'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.',
|
||||
'numeric' => 'Le champ :attribute doit être :size.',
|
||||
'file' => ':attribute doit être de :size kilo-octets.',
|
||||
'string' => 'Le champ :attribute doit être de :size caractères.',
|
||||
'array' => ':attribute doit contenir :size éléments.',
|
||||
],
|
||||
'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.',
|
||||
'starts_with' => ':attribute doit commencer par l\'un des :values suivants.',
|
||||
'string' => 'Le champ :attribute doit être une chaîne.',
|
||||
'timezone' => 'Le champ :attribute doit être une zone valide.',
|
||||
'unique' => 'Le champ :attribute a déjà été pris.',
|
||||
'uploaded' => 'L\'attribut :attribute n\'a pas pu être envoyé.',
|
||||
'url' => 'Le format de l\'attribut :attribute est invalide.',
|
||||
'uuid' => ':attribute doit être un UUID valide.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
@@ -131,7 +131,7 @@ return [
|
||||
|
||||
'custom' => [
|
||||
'attribute-name' => [
|
||||
'rule-name' => 'custom-message',
|
||||
'rule-name' => 'message personnalisé',
|
||||
],
|
||||
],
|
||||
|
||||
|
@@ -121,7 +121,7 @@ return [
|
||||
'contact_cta' => 'Alguma pergunta? Deixe uma mensagem!',
|
||||
'contact_disclaimer' => '*Este não é um formulário de candidatura. Qualquer candidatura enviada aqui será ignorada.',
|
||||
'contactlabel_name' => 'Nome',
|
||||
'contactlabel_email' => 'E-mail',
|
||||
'contactlabel_email' => 'Endereço E-mail',
|
||||
'contactlabel_subject' => 'Assunto (ex. sugestão do site)',
|
||||
'contactlabel_send' => 'Enviar',
|
||||
|
||||
@@ -475,6 +475,8 @@ return [
|
||||
'2fa_disable_consent' => '"Eu compreendo as possíveis consequências de desativar a autenticação de dois fatores"',
|
||||
'2fa_remove' => 'Remover 2FA',
|
||||
'2fa_remove_extended' => 'Desativar autenticação em dois passos',
|
||||
'2fa_send_code' => 'Enviar código 2FA',
|
||||
'2fa_send_code_s' => 'Código de autenticação (ex. 41351)',
|
||||
|
||||
'security_lgotherdev' => 'Para sua segurança, você precisará re-introduzir a sua senha antes de desconectar outros dispositivos. Se você acredita que sua conta foi comprometida, altere sua senha em vez disso, já que isso desconectará automaticamente qualquer pessoa que poderá estar usando sua conta e impedir que faça login novamente.',
|
||||
'password_reenter' => 'Repita a sua palavra-passe',
|
||||
|
21
resources/lang/vendor/adminlte/ar/adminlte.php
vendored
21
resources/lang/vendor/adminlte/ar/adminlte.php
vendored
@@ -1,21 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'full_name' => 'الاسم الثلاثي',
|
||||
'email' => 'البريد الإلكتروني',
|
||||
'password' => 'كلمة السر',
|
||||
'retype_password' => 'أعد إدخال كلمة السر',
|
||||
'remember_me' => 'ذكرني',
|
||||
'register' => 'تسجيل جديد',
|
||||
'register_a_new_membership' => 'تسجيل عضوية جديدة',
|
||||
'i_forgot_my_password' => 'نسيت كلمة السر؟',
|
||||
'i_already_have_a_membership' => 'هذا الحساب لديه عضوية سابقة',
|
||||
'sign_in' => 'تسجيل الدخول',
|
||||
'log_out' => 'تسجيل خروج',
|
||||
'toggle_navigation' => 'القائمة الجانبية',
|
||||
'login_message' => 'يجب تسجيل الدخول',
|
||||
'register_message' => 'تم تسجيل العضوية الجديدة ',
|
||||
'password_reset_message' => 'تم إعادة تعيين كلمة المرور',
|
||||
'reset_password' => 'إعادة تعيين كلمة السر',
|
||||
'send_password_reset_link' => 'إرسال رابط إعادة تعيين كلمة السر',
|
||||
];
|
21
resources/lang/vendor/adminlte/ca/adminlte.php
vendored
21
resources/lang/vendor/adminlte/ca/adminlte.php
vendored
@@ -1,21 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'full_name' => 'Nom complet',
|
||||
'email' => 'Email',
|
||||
'password' => 'Contrasenya',
|
||||
'retype_password' => 'Confirmar la contrasenya',
|
||||
'remember_me' => 'Recordar-me',
|
||||
'register' => 'Registrar-se',
|
||||
'register_a_new_membership' => 'Crear un nou compte',
|
||||
'i_forgot_my_password' => 'He oblidat la meva contrasenya',
|
||||
'i_already_have_a_membership' => 'Ja tinc un compte',
|
||||
'sign_in' => 'Accedir',
|
||||
'log_out' => 'Sortir',
|
||||
'toggle_navigation' => 'Commutar la navegació',
|
||||
'login_message' => 'Autenticar-se per a iniciar sessió',
|
||||
'register_message' => 'Crear un nou compte',
|
||||
'password_reset_message' => 'Restablir la contrasenya',
|
||||
'reset_password' => 'Restablir la contrasenya',
|
||||
'send_password_reset_link' => 'Enviar enllaç de restabliment de contrasenya',
|
||||
];
|
27
resources/lang/vendor/adminlte/de/adminlte.php
vendored
27
resources/lang/vendor/adminlte/de/adminlte.php
vendored
@@ -1,27 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'full_name' => 'Vollständiger Name',
|
||||
'email' => 'E-Mail',
|
||||
'password' => 'Passwort',
|
||||
'retype_password' => 'Passwort bestätigen',
|
||||
'remember_me' => 'Angemeldet bleiben',
|
||||
'register' => 'Registrieren',
|
||||
'register_a_new_membership' => 'Ein neues Konto registrieren',
|
||||
'i_forgot_my_password' => 'Ich habe mein Passwort vergessen',
|
||||
'i_already_have_a_membership' => 'Ich bin bereits registriert',
|
||||
'sign_in' => 'Anmelden',
|
||||
'log_out' => 'Abmelden',
|
||||
'toggle_navigation' => 'Navigation umschalten',
|
||||
'login_message' => 'Bitte melden Sie sich an, um auf den geschützten Bereich zuzugreifen',
|
||||
'register_message' => 'Bitte füllen Sie das Formular aus, um ein neues Konto zu registrieren',
|
||||
'password_reset_message' => 'Bitte geben Sie Ihre E-Mail Adresse ein, um Ihr Passwort zurückzusetzen',
|
||||
'reset_password' => 'Passwort zurücksetzen',
|
||||
'send_password_reset_link' => 'Link zur Passwortwiederherstellung senden',
|
||||
'verify_message' => 'Ihr Account muss noch bestätigt werden',
|
||||
'verify_email_sent' => 'Es wurde ein neuer Bestätigungslink an Ihre E-Mail Adresse gesendet.',
|
||||
'verify_check_your_email' => 'Bevor Sie fortfahren, überprüfen Sie bitte Ihre E-Mail auf einen Bestätigungslink.',
|
||||
'verify_if_not_recieved' => 'Wenn Sie die E-Mail nicht empfangen haben',
|
||||
'verify_request_another' => 'klicken Sie hier, um eine neue E-Mail anzufordern',
|
||||
];
|
19
resources/lang/vendor/adminlte/de/menu.php
vendored
19
resources/lang/vendor/adminlte/de/menu.php
vendored
@@ -1,19 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'main_navigation' => 'HAUPTMENÜ',
|
||||
'blog' => 'Blog',
|
||||
'pages' => 'Seiten',
|
||||
'account_settings' => 'KONTOEINSTELLUNGEN',
|
||||
'profile' => 'Profil',
|
||||
'change_password' => 'Passwort ändern',
|
||||
'multilevel' => 'Multi Level',
|
||||
'level_one' => 'Level 1',
|
||||
'level_two' => 'Level 2',
|
||||
'level_three' => 'Level 3',
|
||||
'labels' => 'Beschriftungen',
|
||||
'important' => 'Wichtig',
|
||||
'warning' => 'Warnung',
|
||||
'information' => 'Information',
|
||||
];
|
@@ -19,9 +19,10 @@ return [
|
||||
'password_reset_message' => 'Reset Password',
|
||||
'reset_password' => 'Reset Password',
|
||||
'send_password_reset_link' => 'Send Password Reset Link',
|
||||
'verify_message' => 'Your account needs a verification',
|
||||
'verify_email_sent' => 'A fresh verification link has been sent to your email address.',
|
||||
'verify_message' => 'Your account needs verification',
|
||||
'verify_email_sent' => 'A fresh verification link has been sent to your email address.',
|
||||
'verify_check_your_email' => 'Before proceeding, please check your email for a verification link.',
|
||||
'verify_if_not_recieved' => 'If you did not receive the email',
|
||||
'verify_request_another' => 'click here to request another',
|
||||
'confirm_password_message' => 'Please, confirm your password to continue.',
|
||||
];
|
||||
|
41
resources/lang/vendor/adminlte/en/menu.php
vendored
41
resources/lang/vendor/adminlte/en/menu.php
vendored
@@ -2,18 +2,31 @@
|
||||
|
||||
return [
|
||||
|
||||
'main_navigation' => 'MAIN NAVIGATION',
|
||||
'blog' => 'Blog',
|
||||
'pages' => 'Pages',
|
||||
'account_settings' => 'ACCOUNT SETTINGS',
|
||||
'profile' => 'Profile',
|
||||
'change_password' => 'Change Password',
|
||||
'multilevel' => 'Multi Level',
|
||||
'level_one' => 'Level 1',
|
||||
'level_two' => 'Level 2',
|
||||
'level_three' => 'Level 3',
|
||||
'labels' => 'LABELS',
|
||||
'important' => 'Important',
|
||||
'warning' => 'Warning',
|
||||
'information' => 'Information',
|
||||
'm_home' => 'Home',
|
||||
'm_directory' => 'Directory',
|
||||
'h_applications' => 'Applications',
|
||||
'm_my_applications' => 'My Applications',
|
||||
'm_curr_applications' => 'Current Applications',
|
||||
'h_my_profile' => 'My Profile',
|
||||
'm_profile_settings' => 'Profile Settings',
|
||||
'm_account_settings' => 'My Account Settings',
|
||||
'h_app_management' => 'Application Management',
|
||||
'm_all_apps' => 'All Applications',
|
||||
'm_outstanding_apps' => 'Outstanding Applications',
|
||||
'm_interview_queue' => 'Interview Queue',
|
||||
'm_peer_approval' => 'Peer Approval Queue',
|
||||
'h_admin' => 'Administration',
|
||||
'm_staff_m' => 'Staff Members',
|
||||
'm_reg_players' => 'Registered Players',
|
||||
'sm_hiring_man' => 'Hiring Management',
|
||||
'm_open_pos' => 'Open Positions',
|
||||
'sm_forms' => 'Forms',
|
||||
'sm_all_forms' => 'All Forms',
|
||||
'm_form_builder' => 'Form Builder',
|
||||
'sm_app_settings' => 'App Settings',
|
||||
'm_global_app_s' => 'Global App Settings',
|
||||
'm_devtools' => 'Developer Tools',
|
||||
'm_s_logs' => 'System Logs'
|
||||
|
||||
|
||||
];
|
||||
|
35
resources/lang/vendor/adminlte/es/adminlte.php
vendored
35
resources/lang/vendor/adminlte/es/adminlte.php
vendored
@@ -3,25 +3,26 @@
|
||||
return [
|
||||
|
||||
'full_name' => 'Nombre completo',
|
||||
'email' => 'Email',
|
||||
'email' => 'E-mail',
|
||||
'password' => 'Contraseña',
|
||||
'retype_password' => 'Confirmar la contraseña',
|
||||
'retype_password' => 'Repetir contraseña',
|
||||
'remember_me' => 'Recordarme',
|
||||
'register' => 'Registrarse',
|
||||
'register_a_new_membership' => 'Crear una nueva cuenta',
|
||||
'register_a_new_membership' => 'Registrar una nueva membresía',
|
||||
'i_forgot_my_password' => 'Olvidé mi contraseña',
|
||||
'i_already_have_a_membership' => 'Ya tengo una cuenta',
|
||||
'sign_in' => 'Acceder',
|
||||
'log_out' => 'Salir',
|
||||
'toggle_navigation' => 'Alternar barra de navegación',
|
||||
'login_message' => 'Autenticarse para iniciar sesión',
|
||||
'register_message' => 'Crear una nueva cuenta',
|
||||
'password_reset_message' => 'Restablecer la contraseña',
|
||||
'reset_password' => 'Restablecer la contraseña',
|
||||
'send_password_reset_link' => 'Enviar enlace para restablecer la contraseña',
|
||||
'verify_message' => 'Tu cuenta necesita una verificación',
|
||||
'verify_email_sent' => 'Se ha enviado un nuevo enlace de verificación a su correo electrónico.',
|
||||
'verify_check_your_email' => 'Antes de continuar, busque en su correo electrónico un enlace de verificación.',
|
||||
'verify_if_not_recieved' => 'Si no has recibido el correo electrónico',
|
||||
'verify_request_another' => 'haga clic aquí para solicitar otro',
|
||||
'i_already_have_a_membership' => 'Ya tengo una membresía',
|
||||
'sign_in' => 'Iniciar sesión',
|
||||
'log_out' => 'Cerrar sesión',
|
||||
'toggle_navigation' => 'Cambiar navegación',
|
||||
'login_message' => 'Inicia sesión para iniciar tu sesión',
|
||||
'register_message' => 'Registrar una nueva membresía',
|
||||
'password_reset_message' => 'Restablecer contraseña',
|
||||
'reset_password' => 'Restablecer contraseña',
|
||||
'send_password_reset_link' => 'Enviar enlace de restablecimiento de contraseña',
|
||||
'verify_message' => 'Tu cuenta necesita verificación',
|
||||
'verify_email_sent' => 'Se ha enviado un nuevo enlace de verificación a tu dirección de correo electrónico.',
|
||||
'verify_check_your_email' => 'Antes de proceder, por favor revisa tu correo electrónico para ver un enlace de verificación.',
|
||||
'verify_if_not_recieved' => 'Si no recibiste el correo electrónico',
|
||||
'verify_request_another' => 'haz clic aquí para solicitar otro',
|
||||
'confirm_password_message' => 'Por favor, confirma tu contraseña para continuar.',
|
||||
];
|
||||
|
41
resources/lang/vendor/adminlte/es/menu.php
vendored
41
resources/lang/vendor/adminlte/es/menu.php
vendored
@@ -2,18 +2,31 @@
|
||||
|
||||
return [
|
||||
|
||||
'main_navigation' => 'MENU PRINCIPAL',
|
||||
'blog' => 'Blog',
|
||||
'pages' => 'Páginas',
|
||||
'account_settings' => 'AJUSTES DE LA CUENTA',
|
||||
'profile' => 'Perfil',
|
||||
'change_password' => 'Cambiar Contraseña',
|
||||
'multilevel' => 'Multi Nivel',
|
||||
'level_one' => 'Nivel 1',
|
||||
'level_two' => 'Nivel 2',
|
||||
'level_three' => 'Nivel 3',
|
||||
'labels' => 'ETIQUETAS',
|
||||
'important' => 'Importante',
|
||||
'warning' => 'Advertencia',
|
||||
'information' => 'Información',
|
||||
'm_home' => 'Inicio',
|
||||
'm_directory' => 'Directorio',
|
||||
'h_applications' => 'Aplicaciones',
|
||||
'm_my_applications' => 'Mis Aplicaciones',
|
||||
'm_curr_applications' => 'Aplicaciones actuales',
|
||||
'h_my_profile' => 'Mi perfil',
|
||||
'm_profile_settings' => 'Ajustes del perfil',
|
||||
'm_account_settings' => 'Ajustes de mi cuenta',
|
||||
'h_app_management' => 'Gestión de aplicaciones',
|
||||
'm_all_apps' => 'Todas las aplicaciones',
|
||||
'm_outstanding_apps' => 'Aplicaciones pendientes',
|
||||
'm_interview_queue' => 'Cola de entrevistas',
|
||||
'm_peer_approval' => 'Cola de aprobación por pares',
|
||||
'h_admin' => 'Administración',
|
||||
'm_staff_m' => 'Miembros del personal',
|
||||
'm_reg_players' => 'Jugadores registrados',
|
||||
'sm_hiring_man' => 'Gestión de contratación',
|
||||
'm_open_pos' => 'Abrir posiciones',
|
||||
'sm_forms' => 'Formularios',
|
||||
'sm_all_forms' => 'Todos los formularios',
|
||||
'm_form_builder' => 'Constructor de Formularios',
|
||||
'sm_app_settings' => 'Ajustes de app',
|
||||
'm_global_app_s' => 'Configuración global de la aplicación',
|
||||
'm_devtools' => 'Herramientas para desarrolladores',
|
||||
'm_s_logs' => 'Registros del sistema'
|
||||
|
||||
|
||||
];
|
||||
|
22
resources/lang/vendor/adminlte/fa/adminlte.php
vendored
22
resources/lang/vendor/adminlte/fa/adminlte.php
vendored
@@ -1,22 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'full_name' => 'نام',
|
||||
'email' => 'ایمیل',
|
||||
'password' => 'رمز عبور',
|
||||
'retype_password' => 'تکرار رمز عبور',
|
||||
'remember_me' => 'مرا به یاد داشته باش',
|
||||
'register' => 'ثبت نام',
|
||||
'register_a_new_membership' => 'ایجاد یک عضویت جدید',
|
||||
'i_forgot_my_password' => 'رمز عبور را فراموش کرده ام',
|
||||
'i_already_have_a_membership' => 'قبلا ثبت نام کرده ام',
|
||||
'sign_in' => 'ورود',
|
||||
'log_out' => 'خروج',
|
||||
'toggle_navigation' => 'نمایش/مخفی کردن منو',
|
||||
'login_message' => 'وارد شوید',
|
||||
'register_message' => 'ثبت نام',
|
||||
'password_reset_message' => 'بازنشانی رمز عبور',
|
||||
'reset_password' => 'بازنشانی رمز عبور',
|
||||
'send_password_reset_link' => 'ارسال لینک بازنشانی رمز عبور',
|
||||
];
|
30
resources/lang/vendor/adminlte/fr/adminlte.php
vendored
30
resources/lang/vendor/adminlte/fr/adminlte.php
vendored
@@ -2,21 +2,27 @@
|
||||
|
||||
return [
|
||||
|
||||
'full_name' => 'Nom',
|
||||
'email' => 'Email',
|
||||
'full_name' => 'Nom complet',
|
||||
'email' => 'Courriel',
|
||||
'password' => 'Mot de passe',
|
||||
'retype_password' => 'Entrez à nouveau le mot de passe',
|
||||
'retype_password' => 'Retapez le mot de passe',
|
||||
'remember_me' => 'Se souvenir de moi',
|
||||
'register' => 'Enregistrement',
|
||||
'register_a_new_membership' => 'Enregistrer un nouveau membre',
|
||||
'register' => 'Inscription',
|
||||
'register_a_new_membership' => 'Inscrire une nouvelle adhésion',
|
||||
'i_forgot_my_password' => 'J\'ai oublié mon mot de passe',
|
||||
'i_already_have_a_membership' => 'J\'ai déjà un compte',
|
||||
'sign_in' => 'Connexion',
|
||||
'i_already_have_a_membership' => 'J\'ai déjà une adhésion',
|
||||
'sign_in' => 'Se connecter',
|
||||
'log_out' => 'Déconnexion',
|
||||
'toggle_navigation' => 'Basculer la navigation',
|
||||
'login_message' => 'Connectez-vous pour commencer une session',
|
||||
'register_message' => 'Enregistrement d\'un nouveau membre',
|
||||
'password_reset_message' => 'Réinitialisation du mot de passe',
|
||||
'reset_password' => 'Réinitialisation du mot de passe',
|
||||
'send_password_reset_link' => 'Envoi de la réinitialisation du mot de passe',
|
||||
'login_message' => 'Connectez-vous pour démarrer votre session',
|
||||
'register_message' => 'Inscrire une nouvelle adhésion',
|
||||
'password_reset_message' => 'Réinitialiser le mot de passe',
|
||||
'reset_password' => 'Réinitialiser le mot de passe',
|
||||
'send_password_reset_link' => 'Envoyer le lien de réinitialisation du mot de passe',
|
||||
'verify_message' => 'Votre compte a besoin d\'une vérification',
|
||||
'verify_email_sent' => 'Un nouveau lien de vérification a été envoyé à votre adresse e-mail.',
|
||||
'verify_check_your_email' => 'Avant de continuer, veuillez vérifier votre e-mail pour un lien de vérification.',
|
||||
'verify_if_not_recieved' => 'Si vous n\'avez pas reçu l\'e-mail',
|
||||
'verify_request_another' => 'cliquez ici pour en demander un autre',
|
||||
'confirm_password_message' => 'Veuillez confirmer votre mot de passe pour continuer.',
|
||||
];
|
||||
|
32
resources/lang/vendor/adminlte/fr/menu.php
vendored
Normal file
32
resources/lang/vendor/adminlte/fr/menu.php
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'm_home' => 'Domicile',
|
||||
'm_directory' => 'Répertoire',
|
||||
'h_applications' => 'Applications',
|
||||
'm_my_applications' => 'Mes applications',
|
||||
'm_curr_applications' => 'Applications actuelles',
|
||||
'h_my_profile' => 'Mon profil',
|
||||
'm_profile_settings' => 'Paramètres du profil',
|
||||
'm_account_settings' => 'Paramètres de mon compte',
|
||||
'h_app_management' => 'Gestion des applications',
|
||||
'm_all_apps' => 'Toutes les applications',
|
||||
'm_outstanding_apps' => 'Applications en cours',
|
||||
'm_interview_queue' => 'File d\'attente des entretiens',
|
||||
'm_peer_approval' => 'File d\'attente d\'approbation par les pairs',
|
||||
'h_admin' => 'Administration',
|
||||
'm_staff_m' => 'Membres du personnel',
|
||||
'm_reg_players' => 'Joueurs enregistrés',
|
||||
'sm_hiring_man' => 'Gestion de l\'embauche',
|
||||
'm_open_pos' => 'Positions ouvertes',
|
||||
'sm_forms' => 'Formulaires',
|
||||
'sm_all_forms' => 'Tous les formulaires',
|
||||
'm_form_builder' => 'Constructeur de formulaire',
|
||||
'sm_app_settings' => 'Paramètres de l\'application',
|
||||
'm_global_app_s' => 'Paramètres globaux de l\'application',
|
||||
'm_devtools' => 'Outils de développement',
|
||||
'm_s_logs' => 'Journaux système'
|
||||
|
||||
|
||||
];
|
22
resources/lang/vendor/adminlte/hr/adminlte.php
vendored
22
resources/lang/vendor/adminlte/hr/adminlte.php
vendored
@@ -1,22 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'full_name' => 'Ime',
|
||||
'email' => 'Email',
|
||||
'password' => 'Lozinka',
|
||||
'retype_password' => 'Ponovljena lozinka',
|
||||
'remember_me' => 'Zapamti me',
|
||||
'register' => 'Novi korisnik',
|
||||
'register_a_new_membership' => 'Registracija',
|
||||
'i_forgot_my_password' => 'Zaboravljena zaporka',
|
||||
'i_already_have_a_membership' => 'Već imam korisnički račun',
|
||||
'sign_in' => 'Prijava',
|
||||
'log_out' => 'Odjava',
|
||||
'toggle_navigation' => 'Pregled navigacije',
|
||||
'login_message' => 'Prijava',
|
||||
'register_message' => 'Registracija',
|
||||
'password_reset_message' => 'Nova lozinka',
|
||||
'reset_password' => 'Nova lozinka',
|
||||
'send_password_reset_link' => 'Pošalji novi zahtjev lozinke',
|
||||
];
|
21
resources/lang/vendor/adminlte/hu/adminlte.php
vendored
21
resources/lang/vendor/adminlte/hu/adminlte.php
vendored
@@ -1,21 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'full_name' => 'Teljes név',
|
||||
'email' => 'Email',
|
||||
'password' => 'Jelszó',
|
||||
'retype_password' => 'Jelszó újra',
|
||||
'remember_me' => 'Emlékezz rám',
|
||||
'register' => 'Regisztráció',
|
||||
'register_a_new_membership' => 'Regisztrálás új tagként',
|
||||
'i_forgot_my_password' => 'Elfelejtetem a jelszavam',
|
||||
'i_already_have_a_membership' => 'Már tag vagyok',
|
||||
'sign_in' => 'Belépés',
|
||||
'log_out' => 'Kilépés',
|
||||
'toggle_navigation' => 'Lenyíló navigáció',
|
||||
'login_message' => 'Belépés a munkamenet elkezdéséhez',
|
||||
'register_message' => 'Regisztrálás új tagként',
|
||||
'password_reset_message' => 'Jelszó visszaállítása',
|
||||
'reset_password' => 'Jelszó visszaállítása',
|
||||
'send_password_reset_link' => 'Jelszó visszaállítás link küldése',
|
||||
];
|
22
resources/lang/vendor/adminlte/it/adminlte.php
vendored
22
resources/lang/vendor/adminlte/it/adminlte.php
vendored
@@ -1,22 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'full_name' => 'Nome completo',
|
||||
'email' => 'Email',
|
||||
'password' => 'Password',
|
||||
'retype_password' => 'Ripeti password',
|
||||
'remember_me' => 'Ricordami',
|
||||
'register' => 'Registrazione',
|
||||
'register_a_new_membership' => 'Registra un nuovo abbonamento',
|
||||
'i_forgot_my_password' => 'Ho dimenticato la password',
|
||||
'i_already_have_a_membership' => 'Ho già un abbonamento',
|
||||
'sign_in' => 'Accedi',
|
||||
'log_out' => 'Logout',
|
||||
'toggle_navigation' => 'Attiva la navigazione',
|
||||
'login_message' => 'Accedi per iniziare la tua sessione',
|
||||
'register_message' => 'Registra un nuovo abbonamento',
|
||||
'password_reset_message' => 'Resetta la password',
|
||||
'reset_password' => 'Resetta la password',
|
||||
'send_password_reset_link' => 'Invia link di reset della password',
|
||||
];
|
27
resources/lang/vendor/adminlte/ja/adminlte.php
vendored
27
resources/lang/vendor/adminlte/ja/adminlte.php
vendored
@@ -1,27 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'full_name' => '氏名',
|
||||
'email' => 'メールアドレス',
|
||||
'password' => 'パスワード',
|
||||
'retype_password' => 'もう一度入力',
|
||||
'remember_me' => 'パスワードを記憶する',
|
||||
'register' => '登録する',
|
||||
'register_a_new_membership' => 'アカウントを登録する',
|
||||
'i_forgot_my_password' => 'パスワードを忘れた',
|
||||
'i_already_have_a_membership' => 'すでにアカウントを持っている',
|
||||
'sign_in' => 'ログイン',
|
||||
'log_out' => 'ログアウト',
|
||||
'toggle_navigation' => 'ナビゲーションを開閉',
|
||||
'login_message' => 'ログインしてセッションを開始する',
|
||||
'register_message' => 'アカウントを登録する',
|
||||
'password_reset_message' => 'パスワードをリセットする',
|
||||
'reset_password' => 'パスワードをリセットする',
|
||||
'send_password_reset_link' => 'パスワードリセットリンクを送信する。',
|
||||
'verify_message' => 'あなたのアカウントは認証が必要です。',
|
||||
'verify_email_sent' => 'あなたのメールアドレスに認証用のリンクを送信しました。',
|
||||
'verify_check_your_email' => '続行する前に、認証用リンクについてメールを確認してください。',
|
||||
'verify_if_not_recieved' => 'メールが届かない場合',
|
||||
'verify_request_another' => 'ここをクリックしてもう一度送信する',
|
||||
];
|
19
resources/lang/vendor/adminlte/ja/menu.php
vendored
19
resources/lang/vendor/adminlte/ja/menu.php
vendored
@@ -1,19 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'main_navigation' => 'メインメニュー',
|
||||
'blog' => 'ブログ',
|
||||
'pages' => 'ページ',
|
||||
'account_settings' => 'アカウント設定',
|
||||
'profile' => 'プロフィール',
|
||||
'change_password' => 'パスワード変更',
|
||||
'multilevel' => 'マルチ階層',
|
||||
'level_one' => '階層 1',
|
||||
'level_two' => '階層 2',
|
||||
'level_three' => '階層 3',
|
||||
'labels' => 'ラベル',
|
||||
'important' => '重要',
|
||||
'warning' => '警告',
|
||||
'information' => 'インフォメーション',
|
||||
];
|
22
resources/lang/vendor/adminlte/nl/adminlte.php
vendored
22
resources/lang/vendor/adminlte/nl/adminlte.php
vendored
@@ -1,22 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'full_name' => 'Volledige naam',
|
||||
'email' => 'E-mailadres',
|
||||
'password' => 'Wachtwoord',
|
||||
'retype_password' => 'Wachtwoord nogmaals invoeren',
|
||||
'remember_me' => 'Ingelogd blijven',
|
||||
'register' => 'Registreren',
|
||||
'register_a_new_membership' => 'Registreer een nieuw lidmaatschap',
|
||||
'i_forgot_my_password' => 'Ik ben mijn wachtwoord vergeten',
|
||||
'i_already_have_a_membership' => 'Ik heb al een lidmaatschap',
|
||||
'sign_in' => 'Inloggen',
|
||||
'log_out' => 'Uitloggen',
|
||||
'toggle_navigation' => 'Schakel navigatie',
|
||||
'login_message' => 'Log in om je sessie te starten',
|
||||
'register_message' => 'Registreer een nieuw lidmaatschap',
|
||||
'password_reset_message' => 'Wachtwoord herstellen',
|
||||
'reset_password' => 'Wachtwoord herstellen',
|
||||
'send_password_reset_link' => 'Verzend link voor wachtwoordherstel',
|
||||
];
|
22
resources/lang/vendor/adminlte/pl/adminlte.php
vendored
22
resources/lang/vendor/adminlte/pl/adminlte.php
vendored
@@ -1,22 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'full_name' => 'Imię i nazwisko',
|
||||
'email' => 'Email',
|
||||
'password' => 'Hasło',
|
||||
'retype_password' => 'Powtórz hasło',
|
||||
'remember_me' => 'Zapamiętaj mnie',
|
||||
'register' => 'Zarejestruj',
|
||||
'register_a_new_membership' => 'Załóż nowe konto',
|
||||
'i_forgot_my_password' => 'Zapomniałem hasła',
|
||||
'i_already_have_a_membership' => 'Mam już konto',
|
||||
'sign_in' => 'Zaloguj',
|
||||
'log_out' => 'Wyloguj',
|
||||
'toggle_navigation' => 'Przełącz nawigację',
|
||||
'login_message' => 'Zaloguj się aby uzyskać dostęp do panelu',
|
||||
'register_message' => 'Załóż nowe konto',
|
||||
'password_reset_message' => 'Resetuj hasło',
|
||||
'reset_password' => 'Resetuj hasło',
|
||||
'send_password_reset_link' => 'Wyślij link do resetowania hasła',
|
||||
];
|
@@ -1,22 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'full_name' => 'Nome completo',
|
||||
'email' => 'Email',
|
||||
'password' => 'Senha',
|
||||
'retype_password' => 'Repita a senha',
|
||||
'remember_me' => 'Lembrar-me',
|
||||
'register' => 'Registrar',
|
||||
'register_a_new_membership' => 'Registrar um novo membro',
|
||||
'i_forgot_my_password' => 'Esqueci minha senha',
|
||||
'i_already_have_a_membership' => 'Já sou um membro',
|
||||
'sign_in' => 'Entrar',
|
||||
'log_out' => 'Sair',
|
||||
'toggle_navigation' => 'Trocar navegação',
|
||||
'login_message' => 'Entre para iniciar uma nova sessão',
|
||||
'register_message' => 'Registrar um novo membro',
|
||||
'password_reset_message' => 'Recuperar senha',
|
||||
'reset_password' => 'Recuperar senha',
|
||||
'send_password_reset_link' => 'Enviar link de recuperação de senha',
|
||||
];
|
19
resources/lang/vendor/adminlte/pt-br/menu.php
vendored
19
resources/lang/vendor/adminlte/pt-br/menu.php
vendored
@@ -1,19 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'main_navigation' => 'Navegação Principal',
|
||||
'blog' => 'Blog',
|
||||
'pages' => 'Página',
|
||||
'account_settings' => 'Configurações da Conta',
|
||||
'profile' => 'Perfil',
|
||||
'change_password' => 'Mudar Senha',
|
||||
'multilevel' => 'Multinível',
|
||||
'level_one' => 'Nível 1',
|
||||
'level_two' => 'Nível 2',
|
||||
'level_three' => 'Nível 3',
|
||||
'labels' => 'Etiquetas',
|
||||
'Important' => 'Importante',
|
||||
'Warning' => 'Aviso',
|
||||
'Information' => 'Informação',
|
||||
];
|
28
resources/lang/vendor/adminlte/pt/adminlte.php
vendored
Normal file
28
resources/lang/vendor/adminlte/pt/adminlte.php
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'full_name' => 'Nome completo',
|
||||
'email' => 'Email',
|
||||
'password' => 'Palavra-passe',
|
||||
'retype_password' => 'Insira novamente a palavra-passe',
|
||||
'remember_me' => 'Lembrar-me',
|
||||
'register' => 'Registe-se',
|
||||
'register_a_new_membership' => 'Registrar um novo membro',
|
||||
'i_forgot_my_password' => 'Esqueci-me da minha palavra-passe',
|
||||
'i_already_have_a_membership' => 'Já tenho conta',
|
||||
'sign_in' => 'Iniciar Sessão',
|
||||
'log_out' => 'Terminar sessão',
|
||||
'toggle_navigation' => 'Ativar/desativar navegação',
|
||||
'login_message' => 'Faça o login para iniciar sua sessão',
|
||||
'register_message' => 'Registar um novo membro',
|
||||
'password_reset_message' => 'Repor Palavra-Passe',
|
||||
'reset_password' => 'Repor Palavra-Passe',
|
||||
'send_password_reset_link' => 'Enviar Link para Recuperação de Senha',
|
||||
'verify_message' => 'A sua conta precisa de verificação',
|
||||
'verify_email_sent' => 'Um e-mail com um link de verificação foi enviado para seu endereço de e-mail.',
|
||||
'verify_check_your_email' => 'Antes de prosseguir, verifique seu e-mail para um link de verificação.',
|
||||
'verify_if_not_recieved' => 'Se você não recebeu o e-mail',
|
||||
'verify_request_another' => 'clique aqui para solicitar outro',
|
||||
'confirm_password_message' => 'Por favor, confirma a tua palavra-passe para continuar.',
|
||||
];
|
32
resources/lang/vendor/adminlte/pt/menu.php
vendored
Normal file
32
resources/lang/vendor/adminlte/pt/menu.php
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'm_home' => 'Início',
|
||||
'm_directory' => 'Diretório',
|
||||
'h_applications' => 'Candidaturas',
|
||||
'm_my_applications' => 'As minhas Candidaturas',
|
||||
'm_curr_applications' => 'Candidaturas Atuais',
|
||||
'h_my_profile' => 'Meu perfil',
|
||||
'm_profile_settings' => 'Configurações do Perfil',
|
||||
'm_account_settings' => 'Definições de Conta',
|
||||
'h_app_management' => 'Gestão de Candidaturas',
|
||||
'm_all_apps' => 'Todas as Candidaturas',
|
||||
'm_outstanding_apps' => 'Candidaturas Pendendes',
|
||||
'm_interview_queue' => 'Fila de entrevistas',
|
||||
'm_peer_approval' => 'Fila de Aprovação por Pares',
|
||||
'h_admin' => 'Administração',
|
||||
'm_staff_m' => 'Membros da Equipa',
|
||||
'm_reg_players' => 'Jogadores registados',
|
||||
'sm_hiring_man' => 'Gestão de Contratação',
|
||||
'm_open_pos' => 'Vagas',
|
||||
'sm_forms' => 'Formulários',
|
||||
'sm_all_forms' => 'Todos os Formulários',
|
||||
'm_form_builder' => 'Construtor de Formulários',
|
||||
'sm_app_settings' => 'Configurações da App',
|
||||
'm_global_app_s' => 'Definições Globais',
|
||||
'm_devtools' => 'Ferramentas de Programador',
|
||||
'm_s_logs' => 'Registos do Sistema'
|
||||
|
||||
|
||||
];
|
23
resources/lang/vendor/adminlte/ru/adminlte.php
vendored
23
resources/lang/vendor/adminlte/ru/adminlte.php
vendored
@@ -1,23 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'full_name' => 'Полное имя',
|
||||
'email' => 'Почта',
|
||||
'password' => 'Пароль',
|
||||
'retype_password' => 'Подтверждение пароля',
|
||||
'remember_me' => 'Запомнить меня',
|
||||
'register' => 'Регистрация',
|
||||
'register_a_new_membership' => 'Регистрация нового пользователя',
|
||||
'i_forgot_my_password' => 'Восстановление пароля',
|
||||
'i_already_have_a_membership' => 'Я уже зарегистрирован',
|
||||
'sign_in' => 'Вход',
|
||||
'log_out' => 'Выход',
|
||||
'toggle_navigation' => 'Переключить навигацию',
|
||||
'login_message' => 'Вход в систему',
|
||||
'register_message' => 'Регистрация нового пользователя',
|
||||
'password_reset_message' => 'Восстановление пароля',
|
||||
'reset_password' => 'Восстановление пароля',
|
||||
'send_password_reset_link' => 'Отправить ссылку для восстановления пароля',
|
||||
|
||||
];
|
19
resources/lang/vendor/adminlte/ru/menu.php
vendored
19
resources/lang/vendor/adminlte/ru/menu.php
vendored
@@ -1,19 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'main_navigation' => 'ГЛАВНОЕ МЕНЮ',
|
||||
'blog' => 'Блог',
|
||||
'pages' => 'Страницы',
|
||||
'account_settings' => 'НАСТРОЙКИ ПРОФИЛЯ',
|
||||
'profile' => 'Профиль',
|
||||
'change_password' => 'Изменить пароль',
|
||||
'multilevel' => 'Многоуровневое меню',
|
||||
'level_one' => 'Уровень 1',
|
||||
'level_two' => 'Уровень 2',
|
||||
'level_three' => 'Уровень 3',
|
||||
'labels' => 'Метки',
|
||||
'important' => 'Важно',
|
||||
'warning' => 'Внимание',
|
||||
'information' => 'Информация',
|
||||
];
|
27
resources/lang/vendor/adminlte/tr/adminlte.php
vendored
27
resources/lang/vendor/adminlte/tr/adminlte.php
vendored
@@ -1,27 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'full_name' => 'Ad ve Soyadı',
|
||||
'email' => 'E-Posta Adresi',
|
||||
'password' => 'Parola',
|
||||
'retype_password' => 'Yeniden Parola',
|
||||
'remember_me' => 'Beni Hatırla',
|
||||
'register' => 'Kaydol',
|
||||
'register_a_new_membership' => 'Yeni üye kaydı',
|
||||
'i_forgot_my_password' => 'Parolamı unuttum',
|
||||
'i_already_have_a_membership' => 'Zaten üye kaydım var',
|
||||
'sign_in' => 'Giriş Yap',
|
||||
'log_out' => 'Çıkış Yap',
|
||||
'toggle_navigation' => 'Ana menüyü aç/kapa',
|
||||
'login_message' => 'Oturumunuzu devam ettirmek için giriş yapmalısınız',
|
||||
'register_message' => 'Yeni üye kaydı oluştur',
|
||||
'password_reset_message' => 'Parola Sıfırlama',
|
||||
'reset_password' => 'Parola Sıfırlama',
|
||||
'send_password_reset_link' => 'Parola Sıfırlama Linki Gönder',
|
||||
'verify_message' => 'Hesabınızın doğrulanmaya ihtiyacı var',
|
||||
'verify_email_sent' => 'Hesap doğrulama linki E-posta adresinize gönderildi.',
|
||||
'verify_check_your_email' => 'İşlemlere devam etmeden önce doğrulama linki için e-posta adresinizi kontrol edin.',
|
||||
'verify_if_not_recieved' => 'Eğer doğrulama e-postası adresinize ulaşmadıysa',
|
||||
'verify_request_another' => 'buraya tıklayarak yeni bir doğrulama linki talep edebilirsiniz',
|
||||
];
|
19
resources/lang/vendor/adminlte/tr/menu.php
vendored
19
resources/lang/vendor/adminlte/tr/menu.php
vendored
@@ -1,19 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'main_navigation' => 'ANA MENÜ',
|
||||
'blog' => 'Blog',
|
||||
'pages' => 'Sayfalar',
|
||||
'account_settings' => 'HESAP AYARLARI',
|
||||
'profile' => 'Profil',
|
||||
'change_password' => 'Parolanı değiştir',
|
||||
'multilevel' => 'Çoklu Seviye',
|
||||
'level_one' => 'Seviye 1',
|
||||
'level_two' => 'Seviye 2',
|
||||
'level_three' => 'Seviye 3',
|
||||
'labels' => 'ETİKETLER',
|
||||
'important' => 'Önemli',
|
||||
'warning' => 'Uyarı',
|
||||
'information' => 'Bilgi',
|
||||
];
|
23
resources/lang/vendor/adminlte/uk/adminlte.php
vendored
23
resources/lang/vendor/adminlte/uk/adminlte.php
vendored
@@ -1,23 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'full_name' => 'Повне і\'мя',
|
||||
'email' => 'Пошта',
|
||||
'password' => 'Пароль',
|
||||
'retype_password' => 'Підтвердження пароля',
|
||||
'remember_me' => 'Запам\'ятати мене',
|
||||
'register' => 'Реєстрація',
|
||||
'register_a_new_membership' => 'Реєстрація нового користувача',
|
||||
'i_forgot_my_password' => 'Відновлення пароля',
|
||||
'i_already_have_a_membership' => 'Я вже зареєстрований',
|
||||
'sign_in' => 'Вхід',
|
||||
'log_out' => 'Вихід',
|
||||
'toggle_navigation' => 'Переключити навігацію',
|
||||
'login_message' => 'Вхід до системи',
|
||||
'register_message' => 'Реєстрація нового користувача',
|
||||
'password_reset_message' => 'Відновлення пароля',
|
||||
'reset_password' => 'Відновлення пароля',
|
||||
'send_password_reset_link' => 'Відправити посилання для відновлення пароля',
|
||||
|
||||
];
|
19
resources/lang/vendor/adminlte/uk/menu.php
vendored
19
resources/lang/vendor/adminlte/uk/menu.php
vendored
@@ -1,19 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'main_navigation' => 'ГОЛОВНЕ МЕНЮ',
|
||||
'blog' => 'Блог',
|
||||
'pages' => 'Сторінки',
|
||||
'account_settings' => 'НАЛАШТУВАННЯ ПРОФІЛЮ',
|
||||
'profile' => 'Профіль',
|
||||
'change_password' => 'Змінити пароль',
|
||||
'multilevel' => 'Багаторівневе меню',
|
||||
'level_one' => 'Рівень 1',
|
||||
'level_two' => 'Рівень 2',
|
||||
'level_three' => 'Рівень 3',
|
||||
'labels' => 'Мітки',
|
||||
'important' => 'Важливо',
|
||||
'warning' => 'Увага',
|
||||
'information' => 'Інформація',
|
||||
];
|
22
resources/lang/vendor/adminlte/vi/adminlte.php
vendored
22
resources/lang/vendor/adminlte/vi/adminlte.php
vendored
@@ -1,22 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'full_name' => 'Tên đầy đủ',
|
||||
'email' => 'Email',
|
||||
'password' => 'Mật khẩu',
|
||||
'retype_password' => 'Nhập lại mật khẩu',
|
||||
'remember_me' => 'Nhớ tôi',
|
||||
'register' => 'Đăng ký',
|
||||
'register_a_new_membership' => 'Đăng ký thành viên mới',
|
||||
'i_forgot_my_password' => 'Tôi quên mật khẩu của tôi',
|
||||
'i_already_have_a_membership' => 'Tôi đã là thành viên',
|
||||
'sign_in' => 'Đăng nhập',
|
||||
'log_out' => 'Đăng xuất',
|
||||
'toggle_navigation' => 'Chuyển đổi điều hướng',
|
||||
'login_message' => 'Đăng nhập để bắt đầu phiên của bạn',
|
||||
'register_message' => 'Đăng ký thành viên mới',
|
||||
'password_reset_message' => 'Đặt lại mật khẩu',
|
||||
'reset_password' => 'Đặt lại mật khẩu',
|
||||
'send_password_reset_link' => 'Gửi liên kết đặt lại mật khẩu',
|
||||
];
|
19
resources/lang/vendor/adminlte/vi/menu.php
vendored
19
resources/lang/vendor/adminlte/vi/menu.php
vendored
@@ -1,19 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'main_navigation' => 'ĐIỀU HƯỚNG CHÍNH',
|
||||
'blog' => 'Blog',
|
||||
'pages' => 'Trang',
|
||||
'account_settings' => 'CÀI ĐẶT TÀI KHOẢN',
|
||||
'profile' => 'Hồ sơ',
|
||||
'change_password' => 'Đổi mật khẩu',
|
||||
'multilevel' => 'Đa cấp',
|
||||
'level_one' => 'Cấp độ 1',
|
||||
'level_two' => 'Cấp độ 2',
|
||||
'level_three' => 'Cấp độ 3',
|
||||
'labels' => 'NHÃN',
|
||||
'Important' => 'Quan trọng',
|
||||
'Warning' => 'Cảnh báo',
|
||||
'Information' => 'Thông tin',
|
||||
];
|
@@ -1,22 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'full_name' => '姓名',
|
||||
'email' => '邮箱',
|
||||
'password' => '密码',
|
||||
'retype_password' => '重输密码',
|
||||
'remember_me' => '记住我',
|
||||
'register' => '注册',
|
||||
'register_a_new_membership' => '注册新用户',
|
||||
'i_forgot_my_password' => '忘记密码',
|
||||
'i_already_have_a_membership' => '已经有账户',
|
||||
'sign_in' => '登录',
|
||||
'log_out' => '退出',
|
||||
'toggle_navigation' => '切换导航',
|
||||
'login_message' => '请先登录',
|
||||
'register_message' => '注册新用户',
|
||||
'password_reset_message' => '重置密码',
|
||||
'reset_password' => '重置密码',
|
||||
'send_password_reset_link' => '发送密码重置链接',
|
||||
];
|
@@ -18,9 +18,9 @@
|
||||
@csrf
|
||||
<div class="form-group">
|
||||
<label for="name" class="sr-only">{{__('messages.2fa_sronly')}}</label>
|
||||
<input type="text" name="otp" id="name" class="form-control" placeholder="2FA Code (e.g. 543324)">
|
||||
<input type="text" name="otp" id="name" class="form-control" placeholder="{{__('messages.profile.2fa_send_code_s')}}">
|
||||
</div>
|
||||
<input name="register" id="register" class="btn btn-block login-btn mb-4" type="submit" value="Send 2FA Code">
|
||||
<input name="register" id="register" class="btn btn-block login-btn mb-4" type="submit" value="{{__('messages.profile.2fa_send_code')}}">
|
||||
</form>
|
||||
<p class="login-card-footer-text">{{__('messages.2fa_lostcode')}} <a href="{{ route('logout') }}" class="text-reset">{{__('messages.2fa_cancel_login')}}</a></p>
|
||||
<nav class="login-card-footer-nav">
|
||||
|
@@ -12,7 +12,7 @@
|
||||
<div class="card-body">
|
||||
<div class="brand-wrapper">
|
||||
<img src="{{ config('adminlte.logo_img') }}" alt="logo" class="logo">{{ config('adminlte.logo') }}
|
||||
</div>
|
||||
</div> <!-- main content start -->
|
||||
<p class="login-card-description">{{__('messages.register_acc')}}</p>
|
||||
<div class="alert alert-warning alert-dismissible">
|
||||
<a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
|
||||
|
@@ -1 +1,42 @@
|
||||
@extends('adminlte::auth.verify')
|
||||
@extends('breadcrumbs.auth.main')
|
||||
|
||||
@section('authpage')
|
||||
|
||||
<div class="container">
|
||||
<div class="card login-card">
|
||||
<div class="row no-gutters">
|
||||
<div class="col-md-5">
|
||||
<img src="/img/login.jpg" alt="login" class="login-card-img">
|
||||
</div>
|
||||
<div class="col-md-7">
|
||||
<div class="card-body">
|
||||
<div class="brand-wrapper">
|
||||
<img src="{{ config('adminlte.logo_img') }}" alt="logo" class="logo">{{ config('adminlte.logo') }}
|
||||
</div> <!-- main content start -->
|
||||
<p class="login-card-description">{{__('adminlte::adminlte.verify_message')}}</p>
|
||||
|
||||
@if(session('resent'))
|
||||
<div class="alert alert-success" role="alert">
|
||||
{{ __('adminlte::adminlte.verify_email_sent') }}
|
||||
</div>
|
||||
@endif
|
||||
|
||||
{{ __('adminlte::adminlte.verify_check_your_email') }}
|
||||
{{ __('adminlte::adminlte.verify_if_not_recieved') }},
|
||||
|
||||
<form class="d-inline" method="POST" action="{{ route('verification.resend') }}">
|
||||
@csrf
|
||||
<input name="resend" id="resend" class="btn btn-block login-btn mb-4" type="submit" value="{{ __('adminlte::adminlte.verify_request_another') }}">
|
||||
</form>
|
||||
|
||||
<nav class="login-card-footer-nav">
|
||||
<a href="#!">{{__('messages.terms')}}</a>
|
||||
<a href="#!">{{__('messages.ppolicy')}}</a>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@stop
|
||||
|
@@ -17,7 +17,7 @@ Route::group(['prefix' => LaravelLocalization::setLocale(), 'middleware' => [ 'l
|
||||
|
||||
Route::group(['prefix' => 'auth', 'middleware' => ['usernameUUID']], function (){
|
||||
|
||||
Auth::routes();
|
||||
Auth::routes(['verify' => true]);
|
||||
|
||||
Route::post('/twofa/authenticate', 'Auth\TwofaController@verify2FA')
|
||||
->name('verify2FA');
|
||||
@@ -31,7 +31,7 @@ Route::group(['prefix' => LaravelLocalization::setLocale(), 'middleware' => [ 'l
|
||||
->name('sendSubmission');
|
||||
|
||||
|
||||
Route::group(['middleware' => ['auth', 'forcelogout', '2fa']], function(){
|
||||
Route::group(['middleware' => ['auth', 'forcelogout', '2fa', 'verified']], function(){
|
||||
|
||||
Route::get('/dashboard', 'DashboardController@index')
|
||||
->name('dashboard')
|
||||
|
Reference in New Issue
Block a user