Initial commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used during authentication for various
|
||||
| messages that we need to display to the user. You are free to modify
|
||||
| these language lines according to your application's requirements.
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => 'These credentials do not match our records.',
|
||||
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Previous',
|
||||
'next' => 'Next »',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reset Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
'reset' => 'Your password has been reset!',
|
||||
'sent' => 'We have 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.",
|
||||
|
||||
];
|
||||
@@ -0,0 +1,151 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| as the size rules. Feel free to tweak each of these messages here.
|
||||
|
|
||||
*/
|
||||
|
||||
'accepted' => 'The :attribute must be accepted.',
|
||||
'active_url' => 'The :attribute is not a valid URL.',
|
||||
'after' => 'The :attribute must be a date after :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => 'The :attribute may only contain letters.',
|
||||
'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.',
|
||||
'alpha_num' => 'The :attribute may only contain letters and numbers.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => 'The :attribute must be a date before :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => 'The :attribute must be between :min and :max.',
|
||||
'file' => 'The :attribute must be between :min and :max kilobytes.',
|
||||
'string' => 'The :attribute must be between :min and :max characters.',
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'date' => 'The :attribute is not a valid date.',
|
||||
'date_equals' => 'The :attribute must be a date equal to :date.',
|
||||
'date_format' => 'The :attribute does not match the format :format.',
|
||||
'different' => 'The :attribute and :other must be different.',
|
||||
'digits' => 'The :attribute must be :digits digits.',
|
||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'The :attribute must be a valid email address.',
|
||||
'ends_with' => 'The :attribute must end with one of the following: :values.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'gt' => [
|
||||
'numeric' => 'The :attribute must be greater than :value.',
|
||||
'file' => 'The :attribute must be greater than :value kilobytes.',
|
||||
'string' => 'The :attribute must be greater than :value characters.',
|
||||
'array' => 'The :attribute must have more than :value items.',
|
||||
],
|
||||
'gte' => [
|
||||
'numeric' => 'The :attribute must be greater than or equal :value.',
|
||||
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
|
||||
'string' => 'The :attribute must be greater than or equal :value characters.',
|
||||
'array' => 'The :attribute must have :value items or more.',
|
||||
],
|
||||
'image' => 'The :attribute must be an image.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'The :attribute must be an integer.',
|
||||
'ip' => 'The :attribute must be a valid IP address.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'lt' => [
|
||||
'numeric' => 'The :attribute must be less than :value.',
|
||||
'file' => 'The :attribute must be less than :value kilobytes.',
|
||||
'string' => 'The :attribute must be less than :value characters.',
|
||||
'array' => 'The :attribute must have less than :value items.',
|
||||
],
|
||||
'lte' => [
|
||||
'numeric' => 'The :attribute must be less than or equal :value.',
|
||||
'file' => 'The :attribute must be less than or equal :value kilobytes.',
|
||||
'string' => 'The :attribute must be less than or equal :value characters.',
|
||||
'array' => 'The :attribute must not have more than :value items.',
|
||||
],
|
||||
'max' => [
|
||||
'numeric' => 'The :attribute may not be greater than :max.',
|
||||
'file' => 'The :attribute may not be greater than :max kilobytes.',
|
||||
'string' => 'The :attribute may not be greater than :max characters.',
|
||||
'array' => 'The :attribute may not have more than :max items.',
|
||||
],
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'The :attribute must be at least :min.',
|
||||
'file' => 'The :attribute must be at least :min kilobytes.',
|
||||
'string' => 'The :attribute must be at least :min characters.',
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
],
|
||||
'not_in' => 'The selected :attribute is invalid.',
|
||||
'not_regex' => 'The :attribute format is invalid.',
|
||||
'numeric' => 'The :attribute must be a number.',
|
||||
'password' => 'The password is incorrect.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => 'The :attribute format is invalid.',
|
||||
'required' => 'The :attribute field is required.',
|
||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'The :attribute field is required when :values is present.',
|
||||
'required_with_all' => 'The :attribute field is required when :values are present.',
|
||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => 'The :attribute and :other must match.',
|
||||
'size' => [
|
||||
'numeric' => 'The :attribute must be :size.',
|
||||
'file' => 'The :attribute must be :size kilobytes.',
|
||||
'string' => 'The :attribute must be :size characters.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
],
|
||||
'starts_with' => 'The :attribute must start with one of the following: :values.',
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => 'The :attribute has already been taken.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => 'The :attribute format is invalid.',
|
||||
'uuid' => 'The :attribute must be a valid UUID.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => [
|
||||
'attribute-name' => [
|
||||
'rule-name' => 'custom-message',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Attributes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used to swap our attribute placeholder
|
||||
| with something more reader friendly such as "E-Mail Address" instead
|
||||
| of "email". This simply helps us make our message more expressive.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => [],
|
||||
|
||||
];
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
<?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
@@ -0,0 +1,21 @@
|
||||
<?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
@@ -0,0 +1,27 @@
|
||||
<?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
@@ -0,0 +1,19 @@
|
||||
<?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',
|
||||
];
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'full_name' => 'Full name',
|
||||
'email' => 'Email',
|
||||
'password' => 'Password',
|
||||
'retype_password' => 'Retype password',
|
||||
'remember_me' => 'Remember Me',
|
||||
'register' => 'Register',
|
||||
'register_a_new_membership' => 'Register a new membership',
|
||||
'i_forgot_my_password' => 'I forgot my password',
|
||||
'i_already_have_a_membership' => 'I already have a membership',
|
||||
'sign_in' => 'Sign In',
|
||||
'log_out' => 'Log Out',
|
||||
'toggle_navigation' => 'Toggle navigation',
|
||||
'login_message' => 'Sign in to start your session',
|
||||
'register_message' => 'Register a new membership',
|
||||
'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_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.',
|
||||
];
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
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',
|
||||
];
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'full_name' => 'Nombre completo',
|
||||
'email' => 'Email',
|
||||
'password' => 'Contraseña',
|
||||
'retype_password' => 'Confirmar la contraseña',
|
||||
'remember_me' => 'Recordarme',
|
||||
'register' => 'Registrarse',
|
||||
'register_a_new_membership' => 'Crear una nueva cuenta',
|
||||
'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',
|
||||
'confirm_password_message' => 'Por favor, confirme su contraseña para continuar.',
|
||||
];
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
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',
|
||||
];
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
<?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' => 'ارسال لینک بازنشانی رمز عبور',
|
||||
];
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'full_name' => 'Nom',
|
||||
'email' => 'Email',
|
||||
'password' => 'Mot de passe',
|
||||
'retype_password' => 'Entrez à nouveau le mot de passe',
|
||||
'remember_me' => 'Se souvenir de moi',
|
||||
'register' => 'Enregistrement',
|
||||
'register_a_new_membership' => 'Enregistrer un nouveau membre',
|
||||
'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',
|
||||
'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',
|
||||
];
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
<?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
@@ -0,0 +1,21 @@
|
||||
<?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',
|
||||
];
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'full_name' => 'Nama lengkap',
|
||||
'email' => 'Email',
|
||||
'password' => 'Kata sandi',
|
||||
'retype_password' => 'Ketik ulang kata sandi',
|
||||
'remember_me' => 'Ingat Saya',
|
||||
'register' => 'Daftar',
|
||||
'register_a_new_membership' => 'Daftar sebagai anggota baru',
|
||||
'i_forgot_my_password' => 'Saya lupa kata sandi',
|
||||
'i_already_have_a_membership' => 'Saya telah menjadi anggota',
|
||||
'sign_in' => 'Masuk',
|
||||
'log_out' => 'Keluar',
|
||||
'toggle_navigation' => 'Toggle navigasi',
|
||||
'login_message' => 'Masuk untuk memulai sesi Anda',
|
||||
'register_message' => 'Daftar sebagai anggota baru',
|
||||
'password_reset_message' => 'Atur Ulang Kata Sandi',
|
||||
'reset_password' => 'Atur Ulang Kata Sandi',
|
||||
'send_password_reset_link' => 'Kirim Tautan Atur Ulang Kata Sandi',
|
||||
'verify_message' => 'Akun Anda membutuhkan verifikasi',
|
||||
'verify_email_sent' => 'Tautan verifikasi baru telah dikirimkan ke email Anda.',
|
||||
'verify_check_your_email' => 'Sebelum melanjutkan, periksa email Anda untuk tautan verifikasi.',
|
||||
'verify_if_not_recieved' => 'Jika Anda tidak menerima email',
|
||||
'verify_request_another' => 'klik disini untuk meminta ulang',
|
||||
'confirm_password_message' => 'Konfirmasi kata sandi Anda untuk melanjutkan',
|
||||
];
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'main_navigation' => 'NAVIGASI UTAMA',
|
||||
'blog' => 'Blog',
|
||||
'pages' => 'Halaman',
|
||||
'account_settings' => 'PENGATURAN AKUN',
|
||||
'profile' => 'Profil',
|
||||
'change_password' => 'Ubah Kata Sandi',
|
||||
'multilevel' => 'Multi Level',
|
||||
'level_one' => 'Level 1',
|
||||
'level_two' => 'Level 2',
|
||||
'level_three' => 'Level 3',
|
||||
'labels' => 'LABEL',
|
||||
'important' => 'Penting',
|
||||
'warning' => 'Peringatan',
|
||||
'information' => 'Informasi',
|
||||
];
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
<?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
@@ -0,0 +1,27 @@
|
||||
<?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
@@ -0,0 +1,19 @@
|
||||
<?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
@@ -0,0 +1,22 @@
|
||||
<?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
@@ -0,0 +1,22 @@
|
||||
<?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',
|
||||
];
|
||||
@@ -0,0 +1,22 @@
|
||||
<?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
@@ -0,0 +1,19 @@
|
||||
<?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',
|
||||
];
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
<?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
@@ -0,0 +1,19 @@
|
||||
<?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' => 'Информация',
|
||||
];
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
<?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',
|
||||
'confirm_password_message' => 'Devam etmek için lütfen parolanızı doğrulayın.',
|
||||
|
||||
];
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
<?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
@@ -0,0 +1,23 @@
|
||||
<?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
@@ -0,0 +1,19 @@
|
||||
<?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
@@ -0,0 +1,22 @@
|
||||
<?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
@@ -0,0 +1,19 @@
|
||||
<?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',
|
||||
];
|
||||
@@ -0,0 +1,22 @@
|
||||
<?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
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'main_navigation' => '主导航',
|
||||
'blog' => '博客',
|
||||
'pages' => '页面',
|
||||
'account_settings' => '账户设置',
|
||||
'profile' => '用户信息',
|
||||
'change_password' => '修改密码',
|
||||
'multilevel' => '多级',
|
||||
'level_one' => '第一级',
|
||||
'level_two' => '第二级',
|
||||
'level_three' => '第三级',
|
||||
'labels' => '标签',
|
||||
'important' => '重要',
|
||||
'warning' => '警告',
|
||||
'information' => '信息',
|
||||
];
|
||||
Reference in New Issue
Block a user