This commit is contained in:
2025-10-22 20:08:22 +05:00
commit 736e3bef18
2573 changed files with 120385 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
return [
'notifications' => [
'blocked' => [
'title' => 'Email address change blocked',
'body' => 'You have successfully blocked an email address change attempt to :email. If you did not make the original request, please contact us immediately.',
],
'failed' => [
'title' => 'Failed to block email address change',
'body' => 'Unfortunately, you were unable to prevent the email address from being changed to :email, since it was already verified before you blocked it. If you did not make the original request, please contact us immediately.',
],
],
];

View File

@@ -0,0 +1,14 @@
<?php
return [
'notifications' => [
'verified' => [
'title' => 'Email address changed',
'body' => 'Your email address has been successfully changed to :email.',
],
],
];

View File

@@ -0,0 +1,71 @@
<?php
return [
'label' => 'Turn off',
'modal' => [
'heading' => 'Disable authenticator app',
'description' => 'Are you sure you want to stop using the authenticator app? Disabling this will remove an extra layer of security from your account.',
'form' => [
'code' => [
'label' => 'Enter the 6-digit code from the authenticator app',
'validation_attribute' => 'code',
'actions' => [
'use_recovery_code' => [
'label' => 'Use a recovery code instead',
],
],
'messages' => [
'invalid' => 'The code you entered is invalid.',
],
],
'recovery_code' => [
'label' => 'Or, enter a recovery code',
'validation_attribute' => 'recovery code',
'messages' => [
'invalid' => 'The recovery code you entered is invalid.',
],
],
],
'actions' => [
'submit' => [
'label' => 'Disable authenticator app',
],
],
],
'notifications' => [
'disabled' => [
'title' => 'Authenticator app has been disabled',
],
],
];

View File

@@ -0,0 +1,77 @@
<?php
return [
'label' => 'Regenerate recovery codes',
'modal' => [
'heading' => 'Regenerate authenticator app recovery codes',
'description' => 'If you lose your recovery codes, you can regenerate them here. Your old recovery codes will be invalidated immediately.',
'form' => [
'code' => [
'label' => 'Enter the 6-digit code from the authenticator app',
'validation_attribute' => 'code',
'messages' => [
'invalid' => 'The code you entered is invalid.',
],
],
'password' => [
'label' => 'Or, enter your current password',
'validation_attribute' => 'password',
],
],
'actions' => [
'submit' => [
'label' => 'Regenerate recovery codes',
],
],
],
'notifications' => [
'regenerated' => [
'title' => 'New authenticator app recovery codes have been generated',
],
],
'show_new_recovery_codes' => [
'modal' => [
'heading' => 'New recovery codes',
'description' => 'Please save the following recovery codes in a safe place. They will only be shown once, but you\'ll need them if you lose access to your authenticator app:',
'actions' => [
'submit' => [
'label' => 'Close',
],
],
],
],
];

View File

@@ -0,0 +1,81 @@
<?php
return [
'label' => 'Set up',
'modal' => [
'heading' => 'Set up authenticator app',
'description' => <<<'BLADE'
You'll need an app like Google Authenticator (<x-filament::link href="https://itunes.apple.com/us/app/google-authenticator/id388497605" target="_blank">iOS</x-filament::link>, <x-filament::link href="https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2" target="_blank">Android</x-filament::link>) to complete this process.
BLADE,
'content' => [
'qr_code' => [
'instruction' => 'Scan this QR code with your authenticator app:',
'alt' => 'QR code to scan with an authenticator app',
],
'text_code' => [
'instruction' => 'Or enter this code manually:',
'messages' => [
'copied' => 'Copied',
],
],
'recovery_codes' => [
'instruction' => 'Please save the following recovery codes in a safe place. They will only be shown once, but you\'ll need them if you lose access to your authenticator app:',
],
],
'form' => [
'code' => [
'label' => 'Enter the 6-digit code from the authenticator app',
'validation_attribute' => 'code',
'below_content' => 'You will need to enter the 6-digit code from your authenticator app each time you sign in or perform sensitive actions.',
'messages' => [
'invalid' => 'The code you entered is invalid.',
],
],
],
'actions' => [
'submit' => [
'label' => 'Enable authenticator app',
],
],
],
'notifications' => [
'enabled' => [
'title' => 'Authenticator app has been enabled',
],
],
];

View File

@@ -0,0 +1,64 @@
<?php
return [
'management_schema' => [
'actions' => [
'label' => 'Authenticator app',
'below_content' => 'Use a secure app to generate a temporary code for login verification.',
'messages' => [
'enabled' => 'Enabled',
'disabled' => 'Disabled',
],
],
],
'login_form' => [
'label' => 'Use a code from your authenticator app',
'code' => [
'label' => 'Enter the 6-digit code from the authenticator app',
'validation_attribute' => 'code',
'actions' => [
'use_recovery_code' => [
'label' => 'Use a recovery code instead',
],
],
'messages' => [
'invalid' => 'The code you entered is invalid.',
],
],
'recovery_code' => [
'label' => 'Or, enter a recovery code',
'validation_attribute' => 'recovery code',
'messages' => [
'invalid' => 'The recovery code you entered is invalid.',
],
],
],
];

View File

@@ -0,0 +1,67 @@
<?php
return [
'label' => 'Turn off',
'modal' => [
'heading' => 'Disable email verification codes',
'description' => 'Are you sure you want to stop receiving email verification codes? Disabling this will remove an extra layer of security from your account.',
'form' => [
'code' => [
'label' => 'Enter the 6-digit code we sent you by email',
'validation_attribute' => 'code',
'actions' => [
'resend' => [
'label' => 'Send a new code by email',
'notifications' => [
'resent' => [
'title' => 'We\'ve sent you a new code by email',
],
],
],
],
'messages' => [
'invalid' => 'The code you entered is invalid.',
],
],
],
'actions' => [
'submit' => [
'label' => 'Disable email verification codes',
],
],
],
'notifications' => [
'disabled' => [
'title' => 'Email verification codes have been disabled',
],
],
];

View File

@@ -0,0 +1,67 @@
<?php
return [
'label' => 'Set up',
'modal' => [
'heading' => 'Set up email verification codes',
'description' => 'You\'ll need to enter the 6-digit code we send you by email each time you sign in or perform sensitive actions. Check your email for a 6-digit code to complete the setup.',
'form' => [
'code' => [
'label' => 'Enter the 6-digit code we sent you by email',
'validation_attribute' => 'code',
'actions' => [
'resend' => [
'label' => 'Send a new code by email',
'notifications' => [
'resent' => [
'title' => 'We\'ve sent you a new code by email',
],
],
],
],
'messages' => [
'invalid' => 'The code you entered is invalid.',
],
],
],
'actions' => [
'submit' => [
'label' => 'Enable email verification codes',
],
],
],
'notifications' => [
'enabled' => [
'title' => 'Email verification codes have been enabled',
],
],
];

View File

@@ -0,0 +1,12 @@
<?php
return [
'subject' => 'Here\'s your sign-in code',
'lines' => [
'Your sign-in code is: :code',
'This code will expire in a minute.|This code will expire in :minutes minutes.',
],
];

View File

@@ -0,0 +1,60 @@
<?php
return [
'management_schema' => [
'actions' => [
'label' => 'Email verification codes',
'below_content' => 'Receive a temporary code at your email address to verify your identity during login.',
'messages' => [
'enabled' => 'Enabled',
'disabled' => 'Disabled',
],
],
],
'login_form' => [
'label' => 'Send a code to your email',
'code' => [
'label' => 'Enter the 6-digit code we sent you by email',
'validation_attribute' => 'code',
'actions' => [
'resend' => [
'label' => 'Send a new code by email',
'notifications' => [
'resent' => [
'title' => 'We\'ve sent you a new code by email',
],
],
],
],
'messages' => [
'invalid' => 'The code you entered is invalid.',
],
],
],
];

View File

@@ -0,0 +1,19 @@
<?php
return [
'title' => 'Set up two-factor authentication (2FA)',
'heading' => 'Set up two-factor authentication',
'subheading' => '2FA adds an extra layer of security to your account by requiring a second form of verification when signing in.',
'actions' => [
'continue' => [
'label' => 'Continue',
],
],
];

View File

@@ -0,0 +1,27 @@
<?php
return [
'actions' => [
'Click to',
'copy' => [
'label' => 'copy',
],
'or',
'download' => [
'label' => 'download',
],
'all the codes at once.',
],
'messages' => [
'copied' => 'Copied',
],
];

View File

@@ -0,0 +1,16 @@
<?php
return [
'subject' => 'Your email address is being changed',
'lines' => [
'We received a request to change the email address associated with your account. Your password was used to confirm this change.',
'Once verified, the new email address on your account will be: :email.',
'You can block the change before it is verified by clicking the button below.',
'If you did not make this request, please contact us immediately.',
],
'action' => 'Block Email Change',
];

View File

@@ -0,0 +1,68 @@
<?php
return [
'label' => 'Profile',
'form' => [
'email' => [
'label' => 'Email address',
],
'name' => [
'label' => 'Name',
],
'password' => [
'label' => 'New password',
'validation_attribute' => 'password',
],
'password_confirmation' => [
'label' => 'Confirm new password',
'validation_attribute' => 'password confirmation',
],
'current_password' => [
'label' => 'Current password',
'below_content' => 'For security, please confirm your password to continue.',
'validation_attribute' => 'current password',
],
'actions' => [
'save' => [
'label' => 'Save changes',
],
],
],
'multi_factor_authentication' => [
'label' => 'Two-factor authentication (2FA)',
],
'notifications' => [
'email_change_verification_sent' => [
'title' => 'Email address change request sent',
'body' => 'A request to change your email address has been sent to :email. Please check your email to verify the change.',
],
'saved' => [
'title' => 'Saved',
],
],
'actions' => [
'cancel' => [
'label' => 'Cancel',
],
],
];

View File

@@ -0,0 +1,35 @@
<?php
return [
'title' => 'Verify your email address',
'heading' => 'Verify your email address',
'actions' => [
'resend_notification' => [
'label' => 'Resend it',
],
],
'messages' => [
'notification_not_received' => 'Not received the email we sent?',
'notification_sent' => 'We\'ve sent an email to :email containing instructions on how to verify your email address.',
],
'notifications' => [
'notification_resent' => [
'title' => 'We\'ve resent the email.',
],
'notification_resend_throttled' => [
'title' => 'Too many resend attempts',
'body' => 'Please try again in :seconds seconds.',
],
],
];

View File

@@ -0,0 +1,85 @@
<?php
return [
'title' => 'Login',
'heading' => 'Sign in',
'actions' => [
'register' => [
'before' => 'or',
'label' => 'sign up for an account',
],
'request_password_reset' => [
'label' => 'Forgot password?',
],
],
'form' => [
'email' => [
'label' => 'Email address',
],
'password' => [
'label' => 'Password',
],
'remember' => [
'label' => 'Remember me',
],
'actions' => [
'authenticate' => [
'label' => 'Sign in',
],
],
],
'multi_factor' => [
'heading' => 'Verify your identity',
'subheading' => 'To continue signing in, you need to verify your identity.',
'form' => [
'provider' => [
'label' => 'How would you like to verify?',
],
'actions' => [
'authenticate' => [
'label' => 'Confirm sign in',
],
],
],
],
'messages' => [
'failed' => 'These credentials do not match our records.',
],
'notifications' => [
'throttled' => [
'title' => 'Too many login attempts',
'body' => 'Please try again in :seconds seconds.',
],
],
];

View File

@@ -0,0 +1,46 @@
<?php
return [
'title' => 'Reset your password',
'heading' => 'Forgot password?',
'actions' => [
'login' => [
'label' => 'back to login',
],
],
'form' => [
'email' => [
'label' => 'Email address',
],
'actions' => [
'request' => [
'label' => 'Send email',
],
],
],
'notifications' => [
'sent' => [
'body' => 'If your account doesn\'t exist, you will not receive the email.',
],
'throttled' => [
'title' => 'Too many requests',
'body' => 'Please try again in :seconds seconds.',
],
],
];

View File

@@ -0,0 +1,43 @@
<?php
return [
'title' => 'Reset your password',
'heading' => 'Reset your password',
'form' => [
'email' => [
'label' => 'Email address',
],
'password' => [
'label' => 'Password',
'validation_attribute' => 'password',
],
'password_confirmation' => [
'label' => 'Confirm password',
],
'actions' => [
'reset' => [
'label' => 'Reset password',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'Too many reset attempts',
'body' => 'Please try again in :seconds seconds.',
],
],
];

View File

@@ -0,0 +1,56 @@
<?php
return [
'title' => 'Register',
'heading' => 'Sign up',
'actions' => [
'login' => [
'before' => 'or',
'label' => 'sign in to your account',
],
],
'form' => [
'email' => [
'label' => 'Email address',
],
'name' => [
'label' => 'Name',
],
'password' => [
'label' => 'Password',
'validation_attribute' => 'password',
],
'password_confirmation' => [
'label' => 'Confirm password',
],
'actions' => [
'register' => [
'label' => 'Sign up',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'Too many registration attempts',
'body' => 'Please try again in :seconds seconds.',
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'title' => 'Error while loading page',
'body' => 'There was an error while attempting to load this page. Please try again later.',
];

View File

@@ -0,0 +1,12 @@
<?php
return [
'field' => [
'label' => 'Global search',
'placeholder' => 'Search',
],
'no_results_message' => 'No search results found.',
];

View File

@@ -0,0 +1,72 @@
<?php
return [
'direction' => 'ltr',
'actions' => [
'billing' => [
'label' => 'Manage subscription',
],
'logout' => [
'label' => 'Sign out',
],
'open_database_notifications' => [
'label' => 'Notifications',
],
'open_user_menu' => [
'label' => 'User menu',
],
'sidebar' => [
'collapse' => [
'label' => 'Collapse sidebar',
],
'expand' => [
'label' => 'Expand sidebar',
],
],
'theme_switcher' => [
'dark' => [
'label' => 'Enable dark theme',
],
'light' => [
'label' => 'Enable light theme',
],
'system' => [
'label' => 'Enable system theme',
],
],
],
'avatar' => [
'alt' => 'Avatar of :name',
],
'logo' => [
'alt' => ':name logo',
],
'tenant_menu' => [
'search_field' => [
'label' => 'Tenant search',
'placeholder' => 'Search',
],
],
];

View File

@@ -0,0 +1,33 @@
<?php
return [
'title' => 'Dashboard',
'actions' => [
'filter' => [
'label' => 'Filter',
'modal' => [
'heading' => 'Filter',
'actions' => [
'apply' => [
'label' => 'Apply',
],
],
],
],
],
];

View File

@@ -0,0 +1,25 @@
<?php
return [
'form' => [
'actions' => [
'save' => [
'label' => 'Save changes',
],
],
],
'notifications' => [
'saved' => [
'title' => 'Saved',
],
],
];

View File

@@ -0,0 +1,37 @@
<?php
return [
'title' => 'Create :label',
'breadcrumb' => 'Create',
'form' => [
'actions' => [
'cancel' => [
'label' => 'Cancel',
],
'create' => [
'label' => 'Create',
],
'create_another' => [
'label' => 'Create & create another',
],
],
],
'notifications' => [
'created' => [
'title' => 'Created',
],
],
];

View File

@@ -0,0 +1,43 @@
<?php
return [
'title' => 'Edit :label',
'breadcrumb' => 'Edit',
'navigation_label' => 'Edit',
'form' => [
'actions' => [
'cancel' => [
'label' => 'Cancel',
],
'save' => [
'label' => 'Save changes',
],
],
],
'content' => [
'tab' => [
'label' => 'Edit',
],
],
'notifications' => [
'saved' => [
'title' => 'Saved',
],
],
];

View File

@@ -0,0 +1,7 @@
<?php
return [
'breadcrumb' => 'List',
];

View File

@@ -0,0 +1,7 @@
<?php
return [
'title' => 'Manage :label :relationship',
];

View File

@@ -0,0 +1,19 @@
<?php
return [
'title' => 'View :label',
'breadcrumb' => 'View',
'navigation_label' => 'View',
'content' => [
'tab' => [
'label' => 'View',
],
],
];

View File

@@ -0,0 +1,7 @@
<?php
return [
'body' => 'You have unsaved changes. Are you sure you want to leave this page?',
];

View File

@@ -0,0 +1,15 @@
<?php
return [
'actions' => [
'logout' => [
'label' => 'Sign out',
],
],
'welcome' => 'Welcome',
];

View File

@@ -0,0 +1,17 @@
<?php
return [
'actions' => [
'open_documentation' => [
'label' => 'Documentation',
],
'open_github' => [
'label' => 'GitHub',
],
],
];

View File

@@ -0,0 +1,19 @@
<?php
return [
'notifications' => [
'blocked' => [
'title' => 'Изменение email-адреса заблокировано',
'body' => 'Вы успешно заблокировали попытку изменения email-адреса на :email. Если вы не делали первоначальный запрос, немедленно свяжитесь с нами.',
],
'failed' => [
'title' => 'Не удалось заблокировать изменение email-адреса',
'body' => 'К сожалению, вам не удалось предотвратить изменение email-адреса на :email, поскольку он уже был подтвержден до того, как вы заблокировали его. Если вы не делали первоначальный запрос, немедленно свяжитесь с нами.',
],
],
];

View File

@@ -0,0 +1,14 @@
<?php
return [
'notifications' => [
'verified' => [
'title' => 'Email-адрес изменен',
'body' => 'Ваш email-адрес успешно изменен на :email.',
],
],
];

View File

@@ -0,0 +1,71 @@
<?php
return [
'label' => 'Отключить',
'modal' => [
'heading' => 'Отключить 2FA-приложение',
'description' => 'Вы уверены, что хотите прекратить использовать 2FA-приложение? Отключение удалит дополнительный уровень безопасности из вашей учетной записи.',
'form' => [
'code' => [
'label' => 'Введите 6-значный код из 2FA-приложения',
'validation_attribute' => 'код',
'actions' => [
'use_recovery_code' => [
'label' => 'Использовать код восстановления',
],
],
'messages' => [
'invalid' => 'Введенный код неверен.',
],
],
'recovery_code' => [
'label' => 'Или введите код восстановления',
'validation_attribute' => 'код восстановления',
'messages' => [
'invalid' => 'Введенный код восстановления неверен.',
],
],
],
'actions' => [
'submit' => [
'label' => 'Отключить 2FA-приложение',
],
],
],
'notifications' => [
'disabled' => [
'title' => '2FA-приложение отключено',
],
],
];

View File

@@ -0,0 +1,77 @@
<?php
return [
'label' => 'Создать новые коды восстановления',
'modal' => [
'heading' => 'Создание новых кодов восстановления для 2FA-приложение',
'description' => 'Если вы потеряли коды восстановления, вы можете создать новые здесь. Ваши старые коды восстановления будут немедленно аннулированы.',
'form' => [
'code' => [
'label' => 'Введите 6-значный код из 2FA-приложения',
'validation_attribute' => 'код',
'messages' => [
'invalid' => 'Введенный код неверен.',
],
],
'password' => [
'label' => 'Или введите ваш текущий пароль',
'validation_attribute' => 'пароль',
],
],
'actions' => [
'submit' => [
'label' => 'Создать новые коды восстановления',
],
],
],
'notifications' => [
'regenerated' => [
'title' => 'Созданы новые коды восстановления для 2FA-приложения',
],
],
'show_new_recovery_codes' => [
'modal' => [
'heading' => 'Новые коды восстановления',
'description' => 'Пожалуйста, сохраните следующие коды восстановления в безопасном месте. Они будут показаны только один раз, но понадобятся вам, если вы потеряете доступ к 2FA-приложению:',
'actions' => [
'submit' => [
'label' => 'Закрыть',
],
],
],
],
];

View File

@@ -0,0 +1,81 @@
<?php
return [
'label' => 'Включить',
'modal' => [
'heading' => 'Настройка 2FA-приложения',
'description' => <<<'BLADE'
Для завершения процесса вам понадобится приложение наподобие Google Authenticator (<x-filament::link href="https://itunes.apple.com/us/app/google-authenticator/id388497605" target="_blank">iOS</x-filament::link>, <x-filament::link href="https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2" target="_blank">Android</x-filament::link>).
BLADE,
'content' => [
'qr_code' => [
'instruction' => 'Отсканируйте этот QR-код с помощью 2FA-приложения:',
'alt' => 'QR-код для сканирования 2FA-приложением',
],
'text_code' => [
'instruction' => 'Или введите этот код вручную:',
'messages' => [
'copied' => 'Скопировано',
],
],
'recovery_codes' => [
'instruction' => 'Пожалуйста, сохраните следующие коды восстановления в безопасном месте. Они будут показаны только один раз, но понадобятся вам, если вы потеряете доступ к 2FA-приложению:',
],
],
'form' => [
'code' => [
'label' => 'Введите 6-значный код из 2FA-приложения',
'validation_attribute' => 'код',
'below_content' => 'Вам потребуется вводить 6-значный код из 2FA-приложения каждый раз при входе в систему или выполнении конфиденциальных действий.',
'messages' => [
'invalid' => 'Введенный код неверен.',
],
],
],
'actions' => [
'submit' => [
'label' => 'Включить 2FA-приложение',
],
],
],
'notifications' => [
'enabled' => [
'title' => '2FA-приложение включено',
],
],
];

View File

@@ -0,0 +1,64 @@
<?php
return [
'management_schema' => [
'actions' => [
'label' => '2FA-приложение',
'below_content' => 'Используйте 2FA-приложение для генерации временного кода для подтверждения входа.',
'messages' => [
'enabled' => 'Включено',
'disabled' => 'Отключено',
],
],
],
'login_form' => [
'label' => 'Используйте код из вашего 2FA-приложения',
'code' => [
'label' => 'Введите 6-значный код из 2FA-приложения',
'validation_attribute' => 'код',
'actions' => [
'use_recovery_code' => [
'label' => 'Использовать код восстановления',
],
],
'messages' => [
'invalid' => 'веденный код неверен.',
],
],
'recovery_code' => [
'label' => 'Или введите код восстановления',
'validation_attribute' => 'код восстановления',
'messages' => [
'invalid' => 'Введенный код восстановления неверен.',
],
],
],
];

View File

@@ -0,0 +1,67 @@
<?php
return [
'label' => 'Отключить',
'modal' => [
'heading' => 'Отключить подтверждение по email',
'description' => 'Вы уверены, что хотите прекратить получать коды подтверждения по email? Отключение удалит дополнительный уровень безопасности вашей учетной записи.',
'form' => [
'code' => [
'label' => 'Введите 6-значный код, который мы отправили вам по email',
'validation_attribute' => 'код',
'actions' => [
'resend' => [
'label' => 'Отправить новый код по email',
'notifications' => [
'resent' => [
'title' => 'Мы отправили вам новый код по email',
],
],
],
],
'messages' => [
'invalid' => 'Введенный код неверен.',
],
],
],
'actions' => [
'submit' => [
'label' => 'Отключить подтверждение по email',
],
],
],
'notifications' => [
'disabled' => [
'title' => 'Подтверждение по email отключено',
],
],
];

View File

@@ -0,0 +1,67 @@
<?php
return [
'label' => 'Включить',
'modal' => [
'heading' => 'Настройка подтверждения через email',
'description' => 'Вам потребуется вводить 6-значный код, который мы отправляем по email, каждый раз при входе в систему или выполнении конфиденциальных действий. Проверьте вашу почту на наличие 6-значного кода для завершения настройки.',
'form' => [
'code' => [
'label' => 'Введите 6-значный код, который мы отправили вам по email',
'validation_attribute' => 'код',
'actions' => [
'resend' => [
'label' => 'Отправить новый код по email',
'notifications' => [
'resent' => [
'title' => 'Мы отправили вам новый код по email',
],
],
],
],
'messages' => [
'invalid' => 'Введенный код неверен.',
],
],
],
'actions' => [
'submit' => [
'label' => 'Включить подтверждение через email',
],
],
],
'notifications' => [
'enabled' => [
'title' => 'Подтверждение через email включено',
],
],
];

View File

@@ -0,0 +1,12 @@
<?php
return [
'subject' => 'Ваш код для входа',
'lines' => [
'Ваш код для входа: :code',
'Этот код истечет через минуту.|Этот код истечет через :minutes мин.',
],
];

View File

@@ -0,0 +1,60 @@
<?php
return [
'management_schema' => [
'actions' => [
'label' => 'Подтверждение через email',
'below_content' => 'Получите временный код на ваш email-адрес для подтверждения при входе.',
'messages' => [
'enabled' => 'Включено',
'disabled' => 'Отключено',
],
],
],
'login_form' => [
'label' => 'Отправить код на ваш email',
'code' => [
'label' => 'Введите 6-значный код, который мы отправили вам по email',
'validation_attribute' => 'код',
'actions' => [
'resend' => [
'label' => 'Отправить новый код по email',
'notifications' => [
'resent' => [
'title' => 'Мы отправили вам новый код по email',
],
],
],
],
'messages' => [
'invalid' => 'Введенный код неверен.',
],
],
],
];

View File

@@ -0,0 +1,19 @@
<?php
return [
'title' => 'Настройка двухфакторной аутентификации (2FA)',
'heading' => 'Настройка двухфакторной аутентификации',
'subheading' => '2FA добавляет дополнительный уровень безопасности к вашей учетной записи, требуя подтверждение при входе.',
'actions' => [
'continue' => [
'label' => 'Продолжить',
],
],
];

View File

@@ -0,0 +1,27 @@
<?php
return [
'actions' => [
'Нажмите, чтобы',
'copy' => [
'label' => 'скопировать',
],
'или',
'download' => [
'label' => 'скачать',
],
'все коды сразу.',
],
'messages' => [
'copied' => 'Скопировано',
],
];

View File

@@ -0,0 +1,16 @@
<?php
return [
'subject' => 'Ваш email-адрес изменяется',
'lines' => [
'Мы получили запрос на изменение email-адреса, связанного с вашей учетной записью. Ваш пароль был использован для подтверждения этого изменения.',
'После подтверждения новый email-адрес в вашей учетной записи будет: :email.',
'Вы можете заблокировать изменение до его подтверждения, нажав кнопку ниже.',
'Если вы не делали этот запрос, немедленно свяжитесь с нами.',
],
'action' => 'Заблокировать изменение email',
];

View File

@@ -0,0 +1,68 @@
<?php
return [
'label' => 'Профиль',
'form' => [
'email' => [
'label' => 'Адрес электронной почты',
],
'name' => [
'label' => 'Имя',
],
'password' => [
'label' => 'Новый пароль',
'validation_attribute' => 'пароль',
],
'password_confirmation' => [
'label' => 'Подтвердите новый пароль',
'validation_attribute' => 'подтверждение пароля',
],
'current_password' => [
'label' => 'Текущий пароль',
'below_content' => 'В целях безопасности подтвердите ваш пароль, чтобы продолжить.',
'validation_attribute' => 'текущий пароль',
],
'actions' => [
'save' => [
'label' => 'Сохранить изменения',
],
],
],
'multi_factor_authentication' => [
'label' => 'Двухфакторная аутентификация (2FA)',
],
'notifications' => [
'email_change_verification_sent' => [
'title' => 'Отправлен запрос на изменение email-адреса',
'body' => 'Запрос на изменение вашего email-адреса отправлен на :email. Проверьте вашу почту для подтверждения изменения.',
],
'saved' => [
'title' => 'Сохранено',
],
],
'actions' => [
'cancel' => [
'label' => 'назад',
],
],
];

View File

@@ -0,0 +1,35 @@
<?php
return [
'title' => 'Подтвердите свой адрес электронной почты',
'heading' => 'Подтвердите свой адрес электронной почты',
'actions' => [
'resend_notification' => [
'label' => 'Отправить еще раз',
],
],
'messages' => [
'notification_not_received' => 'Не получили письмо, которое мы отправили?',
'notification_sent' => 'Мы отправили электронное письмо на адрес :email, содержащее инструкции о том, как подтвердить свой адрес электронной почты.',
],
'notifications' => [
'notification_resent' => [
'title' => 'Мы повторно отправили электронное письмо.',
],
'notification_resend_throttled' => [
'title' => 'Слишком много попыток повторной отправки',
'body' => 'Пожалуйста, попробуйте еще раз через :seconds секунд.',
],
],
];

View File

@@ -0,0 +1,85 @@
<?php
return [
'title' => 'Авторизоваться',
'heading' => 'Войдите в свой аккаунт',
'actions' => [
'register' => [
'before' => 'или',
'label' => 'зарегистрируйте учетную запись',
],
'request_password_reset' => [
'label' => 'Забыли свой пароль?',
],
],
'form' => [
'email' => [
'label' => 'Адрес электронной почты',
],
'password' => [
'label' => 'Пароль',
],
'remember' => [
'label' => 'Запомнить меня',
],
'actions' => [
'authenticate' => [
'label' => 'Войти',
],
],
],
'multi_factor' => [
'heading' => 'Подтвердите свою личность',
'subheading' => 'Чтобы продолжить вход в систему, вам необходимо подтвердить свою личность.',
'form' => [
'provider' => [
'label' => 'Как бы вы хотели это подтвердить?',
],
'actions' => [
'authenticate' => [
'label' => 'Вход',
],
],
],
],
'messages' => [
'failed' => 'Неверное имя пользователя или пароль.',
],
'notifications' => [
'throttled' => [
'title' => 'Слишком много попыток входа',
'body' => 'Пожалуйста, попробуйте еще раз через :seconds секунд.',
],
],
];

View File

@@ -0,0 +1,46 @@
<?php
return [
'title' => 'Сбросить пароль',
'heading' => 'Забыли свой пароль?',
'actions' => [
'login' => [
'label' => 'назад на страницу входа',
],
],
'form' => [
'email' => [
'label' => 'Адрес электронной почты',
],
'actions' => [
'request' => [
'label' => 'Отправить письмо',
],
],
],
'notifications' => [
'sent' => [
'body' => 'Если вашего аккаунта не существует, вы не получите письмо.',
],
'throttled' => [
'title' => 'Слишком много попыток',
'body' => 'Пожалуйста, попробуйте еще раз через :seconds секунд.',
],
],
];

View File

@@ -0,0 +1,43 @@
<?php
return [
'title' => 'Сбросить пароль',
'heading' => 'Сбросить пароль',
'form' => [
'email' => [
'label' => 'Адрес электронной почты',
],
'password' => [
'label' => 'Пароль',
'validation_attribute' => 'password',
],
'password_confirmation' => [
'label' => 'Подтвердите пароль',
],
'actions' => [
'reset' => [
'label' => 'Сбросить пароль',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'Слишком много попыток сброса',
'body' => 'Пожалуйста, попробуйте еще раз через :seconds секунд.',
],
],
];

View File

@@ -0,0 +1,56 @@
<?php
return [
'title' => 'Регистрация',
'heading' => 'Регистрация учетной записи',
'actions' => [
'login' => [
'before' => 'или',
'label' => 'войти в свой аккаунт',
],
],
'form' => [
'email' => [
'label' => 'Адрес электронной почты',
],
'name' => [
'label' => 'Имя',
],
'password' => [
'label' => 'Пароль',
'validation_attribute' => 'password',
],
'password_confirmation' => [
'label' => 'Подтвердите пароль',
],
'actions' => [
'register' => [
'label' => 'Зарегистрироваться',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'Слишком много попыток регистрации',
'body' => 'Пожалуйста, попробуйте еще раз через :seconds секунд.',
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'title' => 'Ошибка при загрузке страницы',
'body' => 'При попытке загрузить эту страницу произошла ошибка. Пожалуйста, повторите попытку позже.',
];

View File

@@ -0,0 +1,12 @@
<?php
return [
'field' => [
'label' => 'Глобальный поиск',
'placeholder' => 'Поиск',
],
'no_results_message' => 'Ничего не найдено.',
];

View File

@@ -0,0 +1,62 @@
<?php
return [
'direction' => 'ltr',
'actions' => [
'billing' => [
'label' => 'Управление подпиской',
],
'logout' => [
'label' => 'Выйти',
],
'open_database_notifications' => [
'label' => 'Открыть уведомления',
],
'open_user_menu' => [
'label' => 'Меню пользователя',
],
'sidebar' => [
'collapse' => [
'label' => 'Свернуть боковую панель',
],
'expand' => [
'label' => 'Раскрыть боковую панель',
],
],
'theme_switcher' => [
'dark' => [
'label' => 'Включить темный режим',
],
'light' => [
'label' => 'Включить светлый режим',
],
'system' => [
'label' => 'Включить системный режим',
],
],
],
'avatar' => [
'alt' => 'Аватар :name',
],
'logo' => [
'alt' => 'Логотип :name',
],
];

View File

@@ -0,0 +1,33 @@
<?php
return [
'title' => 'Инфопанель',
'actions' => [
'filter' => [
'label' => 'Фильтр',
'modal' => [
'heading' => 'Фильтр',
'actions' => [
'apply' => [
'label' => 'Применить',
],
],
],
],
],
];

View File

@@ -0,0 +1,25 @@
<?php
return [
'form' => [
'actions' => [
'save' => [
'label' => 'Сохранить изменения',
],
],
],
'notifications' => [
'saved' => [
'title' => 'Сохранено',
],
],
];

View File

@@ -0,0 +1,37 @@
<?php
return [
'title' => 'Создать :label',
'breadcrumb' => 'Создать',
'form' => [
'actions' => [
'cancel' => [
'label' => 'Отмена',
],
'create' => [
'label' => 'Создать',
],
'create_another' => [
'label' => 'Создать и Создать еще',
],
],
],
'notifications' => [
'created' => [
'title' => 'Создано',
],
],
];

View File

@@ -0,0 +1,41 @@
<?php
return [
'title' => 'Редактирование :label',
'breadcrumb' => 'Редактирование',
'form' => [
'actions' => [
'cancel' => [
'label' => 'Отмена',
],
'save' => [
'label' => 'Сохранить',
],
],
],
'content' => [
'tab' => [
'label' => 'Изменить',
],
],
'notifications' => [
'saved' => [
'title' => 'Сохранено',
],
],
];

View File

@@ -0,0 +1,7 @@
<?php
return [
'breadcrumb' => 'Список',
];

View File

@@ -0,0 +1,17 @@
<?php
return [
'title' => 'Просмотр :label',
'breadcrumb' => 'Просмотр',
'content' => [
'tab' => [
'label' => 'Просмотр',
],
],
];

View File

@@ -0,0 +1,7 @@
<?php
return [
'body' => 'У вас есть несохраненные изменения. Вы уверены, что хотите покинуть эту страницу?',
];

View File

@@ -0,0 +1,15 @@
<?php
return [
'actions' => [
'logout' => [
'label' => 'Выход',
],
],
'welcome' => 'Добро пожаловать',
];

View File

@@ -0,0 +1,17 @@
<?php
return [
'actions' => [
'open_documentation' => [
'label' => 'Документация',
],
'open_github' => [
'label' => 'GitHub',
],
],
];

View File

@@ -0,0 +1,19 @@
<?php
return [
'notifications' => [
'blocked' => [
'title' => 'E-poçta salgysynyň üýtgemesi blokirlendi',
'body' => ':email-e e-poçta salgysynyň üýtgemek synanyşygyny üstünlikli blokirlediňiz. Asyl talapy siz etmedik bolsaňyz, derhal bize ýüz tutuň.',
],
'failed' => [
'title' => 'E-poçta salgysynyň üýtgemesini blokirläp bolmady',
'body' => 'Gynansagam, siz blokirlemezden ozal tassyklanany üçin e-poçta salgysyny :email-e üýtgedilmeginiň öňüni alyp bilmediňiz. Asyl talapy siz etmedik bolsaňyz, derhal bize ýüz tutuň.',
],
],
];

View File

@@ -0,0 +1,14 @@
<?php
return [
'notifications' => [
'verified' => [
'title' => 'E-poçta salgysy üýtgedildi',
'body' => 'E-poçta salgysyňyz üstünlikli :email-e üýtgedildi.',
],
],
];

View File

@@ -0,0 +1,71 @@
<?php
return [
'label' => 'Öçüriň',
'modal' => [
'heading' => 'Tassyklaýjy programmany öçüriň',
'description' => 'Tassyklaýjy programmany ulanmagy bes etmek isleýärsiňizmi? Muny öçürmek hasabyňyzdan goşmaça howpsuzlyk gatlagyny aýyrar.',
'form' => [
'code' => [
'label' => 'Tassyklaýjy programmadan 6 sanly kody giriziň',
'validation_attribute' => 'kod',
'actions' => [
'use_recovery_code' => [
'label' => 'Onuň ýerine dikeltme kodyny ulanyň',
],
],
'messages' => [
'invalid' => 'Giriziňiz kod nädogry.',
],
],
'recovery_code' => [
'label' => 'Ýa-da dikeltme kodyny giriziň',
'validation_attribute' => 'dikeltme kody',
'messages' => [
'invalid' => 'Giriziňiz dikeltme kody nädogry.',
],
],
],
'actions' => [
'submit' => [
'label' => 'Tassyklaýjy programmany öçüriň',
],
],
],
'notifications' => [
'disabled' => [
'title' => 'Tassyklaýjy programma öçürildi',
],
],
];

View File

@@ -0,0 +1,77 @@
<?php
return [
'label' => 'Dikeltme kodlaryny täzeden dörediň',
'modal' => [
'heading' => 'Tassyklaýjy programmanyň dikeltme kodlaryny täzeden dörediň',
'description' => 'Dikeltme kodlaryňyzy ýitirseňiz, olary bu ýerde täzeden döredip bilersiňiz. Köne dikeltme kodlaryňyz derrew işjeňleşdirilmez.',
'form' => [
'code' => [
'label' => 'Tassyklaýjy programmadan 6 sanly kody giriziň',
'validation_attribute' => 'kod',
'messages' => [
'invalid' => 'Giriziňiz kod nädogry.',
],
],
'password' => [
'label' => 'Ýa-da häzirki parolyňyzy giriziň',
'validation_attribute' => 'parol',
],
],
'actions' => [
'submit' => [
'label' => 'Dikeltme kodlaryny täzeden dörediň',
],
],
],
'notifications' => [
'regenerated' => [
'title' => 'Tassyklaýjy programmanyň täze dikeltme kodlary döredildi',
],
],
'show_new_recovery_codes' => [
'modal' => [
'heading' => 'Täze dikeltme kodlary',
'description' => 'Aşakdaky dikeltme kodlaryny howpsuz ýerde saklaň. Olar diňe bir gezek görkeziler, ýöne tassyklaýjy programmaňyza girmek mümkinçiligiňizi ýitirseňiz gerek bolar:',
'actions' => [
'submit' => [
'label' => 'Ýap',
],
],
],
],
];

View File

@@ -0,0 +1,81 @@
<?php
return [
'label' => 'Sazla',
'modal' => [
'heading' => 'Tassyklaýjy programmany sazlaň',
'description' => <<<'BLADE'
Bu prosesi tamamlamak üçin Google Authenticator (<x-filament::link href="https://itunes.apple.com/us/app/google-authenticator/id388497605" target="_blank">iOS</x-filament::link>, <x-filament::link href="https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2" target="_blank">Android</x-filament::link>) ýaly programma gerek bolar.
BLADE,
'content' => [
'qr_code' => [
'instruction' => 'Bu QR kody tassyklaýjy programmaňyz bilen skanirlediň:',
'alt' => 'Tassyklaýjy programma bilen skanirlemek üçin QR kody',
],
'text_code' => [
'instruction' => 'Ýa-da bu kody el bilen giriziň:',
'messages' => [
'copied' => 'Göçürildi',
],
],
'recovery_codes' => [
'instruction' => 'Aşakdaky dikeltme kodlaryny howpsuz ýerde saklaň. Olar diňe bir gezek görkeziler, ýöne tassyklaýjy programmaňyza girmek mümkinçiligiňizi ýitirseňiz gerek bolar:',
],
],
'form' => [
'code' => [
'label' => 'Tassyklaýjy programmadan 6 sanly kody giriziň',
'validation_attribute' => 'kod',
'below_content' => 'Her gezek giriş edendegiňizde ýa-da duýgur hereketleri ýerine ýetirendegiňizde tassyklaýjy programmaňyzdan 6 sanly kody girmeli bolarsyňyz.',
'messages' => [
'invalid' => 'Giriziňiz kod nädogry.',
],
],
],
'actions' => [
'submit' => [
'label' => 'Tassyklaýjy programmany açyň',
],
],
],
'notifications' => [
'enabled' => [
'title' => 'Tassyklaýjy programma açyldy',
],
],
];

View File

@@ -0,0 +1,64 @@
<?php
return [
'management_schema' => [
'actions' => [
'label' => 'Tassyklaýjy programma',
'below_content' => 'Giriş tassyklamagy üçin wagtlaýyn kod döretmek üçin howpsuz programmany ulanyň.',
'messages' => [
'enabled' => 'Açyk',
'disabled' => 'Ýapyk',
],
],
],
'login_form' => [
'label' => 'Tassyklaýjy programmaňyzdan kody ulanyň',
'code' => [
'label' => 'Tassyklaýjy programmadan 6 sanly kody giriziň',
'validation_attribute' => 'kod',
'actions' => [
'use_recovery_code' => [
'label' => 'Onuň ýerine dikeltme kodyny ulanyň',
],
],
'messages' => [
'invalid' => 'Giriziňiz kod nädogry.',
],
],
'recovery_code' => [
'label' => 'Ýa-da dikeltme kodyny giriziň',
'validation_attribute' => 'dikeltme kody',
'messages' => [
'invalid' => 'Giriziňiz dikeltme kody nädogry.',
],
],
],
];

View File

@@ -0,0 +1,67 @@
<?php
return [
'label' => 'Öçüriň',
'modal' => [
'heading' => 'E-poçta tassyklama kodlaryny öçüriň',
'description' => 'E-poçta tassyklama kodlaryny almakdan ýüz öwürmek isleýärsiňizmi? Muny öçürmek hasabyňyzdan goşmaça howpsuzlyk gatlagyny aýyrar.',
'form' => [
'code' => [
'label' => 'E-poçta arkaly iberen 6 sanly kody giriziň',
'validation_attribute' => 'kod',
'actions' => [
'resend' => [
'label' => 'E-poçta arkaly täze kod iberiň',
'notifications' => [
'resent' => [
'title' => 'E-poçta arkaly täze kod iberdik',
],
],
],
],
'messages' => [
'invalid' => 'Giriziňiz kod nädogry.',
],
],
],
'actions' => [
'submit' => [
'label' => 'E-poçta tassyklama kodlaryny öçüriň',
],
],
],
'notifications' => [
'disabled' => [
'title' => 'E-poçta tassyklama kodlary öçürildi',
],
],
];

View File

@@ -0,0 +1,67 @@
<?php
return [
'label' => 'Sazla',
'modal' => [
'heading' => 'E-poçta tassyklama kodlaryny sazlaň',
'description' => 'Her gezek giriş edendegiňizde ýa-da duýgur hereketleri ýerine ýetirendegiňizde e-poçta arkaly iberen 6 sanly kody girmeli bolarsyňyz. Sazlamagy tamamlamak üçin e-poçtaňyzy 6 sanly kod üçin barlaň.',
'form' => [
'code' => [
'label' => 'E-poçta arkaly iberen 6 sanly kody giriziň',
'validation_attribute' => 'kod',
'actions' => [
'resend' => [
'label' => 'E-poçta arkaly täze kod iberiň',
'notifications' => [
'resent' => [
'title' => 'E-poçta arkaly täze kod iberdik',
],
],
],
],
'messages' => [
'invalid' => 'Giriziňiz kod nädogry.',
],
],
],
'actions' => [
'submit' => [
'label' => 'E-poçta tassyklama kodlaryny açyň',
],
],
],
'notifications' => [
'enabled' => [
'title' => 'E-poçta tassyklama kodlary açyldy',
],
],
];

View File

@@ -0,0 +1,12 @@
<?php
return [
'subject' => 'Ine, giriş kodyňyz',
'lines' => [
'Giriş kodyňyz: :code',
'Bu kod bir minutda möhleti dolar.|Bu kod :minutes minutda möhleti dolar.',
],
];

View File

@@ -0,0 +1,60 @@
<?php
return [
'management_schema' => [
'actions' => [
'label' => 'E-poçta tassyklama kodlary',
'below_content' => 'Giriş wagtynda şahsyýetiňizi tassyklamak üçin e-poçta salgysyna wagtlaýyn kod alyň.',
'messages' => [
'enabled' => 'Açyk',
'disabled' => 'Ýapyk',
],
],
],
'login_form' => [
'label' => 'E-poçtaňyza kod iberiň',
'code' => [
'label' => 'E-poçta arkaly iberen 6 sanly kody giriziň',
'validation_attribute' => 'kod',
'actions' => [
'resend' => [
'label' => 'E-poçta arkaly täze kod iberiň',
'notifications' => [
'resent' => [
'title' => 'E-poçta arkaly täze kod iberdik',
],
],
],
],
'messages' => [
'invalid' => 'Giriziňiz kod nädogry.',
],
],
],
];

View File

@@ -0,0 +1,19 @@
<?php
return [
'title' => 'Iki faktorly tassyklamagy (2FA) sazlaň',
'heading' => 'Iki faktorly tassyklamagy sazlaň',
'subheading' => '2FA giriş edendegiňizde ikinji tassyklama görnüşini talap edip hasabyňyza goşmaça howpsuzlyk gatlagyny goşýar.',
'actions' => [
'continue' => [
'label' => 'Dowam et',
],
],
];

View File

@@ -0,0 +1,27 @@
<?php
return [
'actions' => [
'Basyň',
'copy' => [
'label' => 'göçürmek',
],
'ýa-da',
'download' => [
'label' => 'ýüklemek',
],
'üçin ähli kodlary bir wagtda.',
],
'messages' => [
'copied' => 'Göçürildi',
],
];

View File

@@ -0,0 +1,16 @@
<?php
return [
'subject' => 'E-poçta salgysyňyz üýtgedilýär',
'lines' => [
'Hasabyňyza bagly e-poçta salgysyny üýtgetmek üçin talap aldyk. Bu üýtgetmäni tassyklamak üçin parolyňyz ulanyld.',
'Tassyklanandan soň hasabyňyzdaky täze e-poçta salgysy bolar: :email.',
'Aşakdaky düwmä basmak arkaly üýtgetmegi tassyklanmazdan öň blokirläp bilersiňiz.',
'Bu talapy siz etmedik bolsaňyz, derhal bize ýüz tutuň.',
],
'action' => 'E-poçta üýtgetmesini blokirle',
];

View File

@@ -0,0 +1,68 @@
<?php
return [
'label' => 'Profil',
'form' => [
'email' => [
'label' => 'E-poçta salgysy',
],
'name' => [
'label' => 'Ady',
],
'password' => [
'label' => 'Täze parol',
'validation_attribute' => 'parol',
],
'password_confirmation' => [
'label' => 'Täze paroly tassyklaň',
'validation_attribute' => 'parol tassyklamagy',
],
'current_password' => [
'label' => 'Häzirki parol',
'below_content' => 'Howpsuzlyk üçin dowam etmek üçin parolyňyzy tassyklaň.',
'validation_attribute' => 'häzirki parol',
],
'actions' => [
'save' => [
'label' => 'Üýtgetmeleri ýatda sakla',
],
],
],
'multi_factor_authentication' => [
'label' => 'Iki faktorly tassyklama (2FA)',
],
'notifications' => [
'email_change_verification_sent' => [
'title' => 'E-poçta salgysynyň üýtgemegi talaby iberildi',
'body' => ':email salgysyna e-poçta salgysyny üýtgetmek üçin talap iberildi. Üýtgetmäni tassyklamak üçin e-poçtaňyzy barlaň.',
],
'saved' => [
'title' => 'Ýatda saklandy',
],
],
'actions' => [
'cancel' => [
'label' => 'Ýatyrmak',
],
],
];

View File

@@ -0,0 +1,35 @@
<?php
return [
'title' => 'E-poçta salgysyny tassyklaň',
'heading' => 'E-poçta salgysyny tassyklaň',
'actions' => [
'resend_notification' => [
'label' => 'Täzeden iber',
],
],
'messages' => [
'notification_not_received' => 'Biz iberen e-poçta almadyňyzmy?',
'notification_sent' => 'E-poçta salgysyny nähili tassyklamalydygy barada görkezmeleri öz içine alýan e-poçta :email-e iberdik.',
],
'notifications' => [
'notification_resent' => [
'title' => 'E-poçta täzeden iberildi.',
],
'notification_resend_throttled' => [
'title' => 'Täzeden iberiş synanyşyklary köp boldy',
'body' => ':seconds sekuntdan soň täzeden synanyşyň.',
],
],
];

View File

@@ -0,0 +1,85 @@
<?php
return [
'title' => 'Girmek',
'heading' => 'Içeri gir',
'actions' => [
'register' => [
'before' => 'ýa-da',
'label' => 'hasaba alynmak',
],
'request_password_reset' => [
'label' => 'Parolyňyzy ýatdan çykardyňyzmy?',
],
],
'form' => [
'email' => [
'label' => 'E-poçta salgysy',
],
'password' => [
'label' => 'Parol',
],
'remember' => [
'label' => 'Meni ýatda sakla',
],
'actions' => [
'authenticate' => [
'label' => 'Içeri gir',
],
],
],
'multi_factor' => [
'heading' => 'Şahsyýetiňizi tassyklaň',
'subheading' => 'Girmegi dowam etdirmek üçin şahsyýetiňizi tassyklaň.',
'form' => [
'provider' => [
'label' => 'Nähili tassyklamak isleýärsiňiz?',
],
'actions' => [
'authenticate' => [
'label' => 'Girmegi tassykla',
],
],
],
],
'messages' => [
'failed' => 'Bu maglumatlary ýazgylarda tapyp bilmedik.',
],
'notifications' => [
'throttled' => [
'title' => 'Girmek synanyşyklary köp boldy',
'body' => ':seconds sekuntdan soň täzeden synanyşyň.',
],
],
];

View File

@@ -0,0 +1,46 @@
<?php
return [
'title' => 'Parolyňyzy täzeden dikediň',
'heading' => 'Parolyňyzy ýatdan çykardyňyzmy?',
'actions' => [
'login' => [
'label' => 'giriş sahypasyna dolan',
],
],
'form' => [
'email' => [
'label' => 'E-poçta salgysy',
],
'actions' => [
'request' => [
'label' => 'E-poçta iber',
],
],
],
'notifications' => [
'sent' => [
'body' => 'Hasabyňyz ýok bolsa, e-poçta almarsyňyz.',
],
'throttled' => [
'title' => 'Talaplary köp boldy',
'body' => ':seconds sekuntdan soň täzeden synanyşyň.',
],
],
];

View File

@@ -0,0 +1,43 @@
<?php
return [
'title' => 'Parolyňyzy täzeden dikediň',
'heading' => 'Parolyňyzy täzeden dikediň',
'form' => [
'email' => [
'label' => 'E-poçta salgysy',
],
'password' => [
'label' => 'Parol',
'validation_attribute' => 'parol',
],
'password_confirmation' => [
'label' => 'Paroly tassyklaň',
],
'actions' => [
'reset' => [
'label' => 'Paroly täzeden dikediň',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'Täzeden dikeltmek synanyşyklary köp boldy',
'body' => ':seconds sekuntdan soň täzeden synanyşyň.',
],
],
];

View File

@@ -0,0 +1,56 @@
<?php
return [
'title' => 'Hasaba alynmak',
'heading' => 'Hasaba alyň',
'actions' => [
'login' => [
'before' => 'ýa-da',
'label' => 'hasabyňyza giriň',
],
],
'form' => [
'email' => [
'label' => 'E-poçta salgysy',
],
'name' => [
'label' => 'Ady',
],
'password' => [
'label' => 'Parol',
'validation_attribute' => 'parol',
],
'password_confirmation' => [
'label' => 'Paroly tassyklaň',
],
'actions' => [
'register' => [
'label' => 'Hasaba alyň',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'Hasaba alynmak synanyşyklary köp boldy',
'body' => ':seconds sekuntdan soň täzeden synanyşyň.',
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'title' => 'Sahypa ýüklenende ýalňyşlyk ýüze çykdy',
'body' => 'Bu sahypany ýüklemek synanyşylanda ýalňyşlyk ýüze çykdy. Soňra täzeden synanyşyň.',
];

View File

@@ -0,0 +1,12 @@
<?php
return [
'field' => [
'label' => 'Umumy gözleg',
'placeholder' => 'Gözle',
],
'no_results_message' => 'Gözleg netijeleri tapylmady.',
];

View File

@@ -0,0 +1,72 @@
<?php
return [
'direction' => 'ltr',
'actions' => [
'billing' => [
'label' => 'Abunany dolandyr',
],
'logout' => [
'label' => 'Çykmak',
],
'open_database_notifications' => [
'label' => 'Bildirijiler',
],
'open_user_menu' => [
'label' => 'Ulanyjy menýusy',
],
'sidebar' => [
'collapse' => [
'label' => 'Gapdal paneli ýygjamlaşdyr',
],
'expand' => [
'label' => 'Gapdal paneli giňelt',
],
],
'theme_switcher' => [
'dark' => [
'label' => 'Garaňky temany açmak',
],
'light' => [
'label' => 'Ýagty temany açmak',
],
'system' => [
'label' => 'Ulgam temasyny açmak',
],
],
],
'avatar' => [
'alt' => ':name-nyň suraty',
],
'logo' => [
'alt' => ':name logotipi',
],
'tenant_menu' => [
'search_field' => [
'label' => 'Gözleg',
'placeholder' => 'Gözle',
],
],
];

View File

@@ -0,0 +1,33 @@
<?php
return [
'title' => 'Dolandyryş paneli',
'actions' => [
'filter' => [
'label' => 'Süzgüç',
'modal' => [
'heading' => 'Süzgüç',
'actions' => [
'apply' => [
'label' => 'Ulanyň',
],
],
],
],
],
];

View File

@@ -0,0 +1,25 @@
<?php
return [
'form' => [
'actions' => [
'save' => [
'label' => 'Üýtgetmeleri ýatda sakla',
],
],
],
'notifications' => [
'saved' => [
'title' => 'Ýatda saklandy',
],
],
];

View File

@@ -0,0 +1,37 @@
<?php
return [
'title' => ':label döret',
'breadcrumb' => 'Döret',
'form' => [
'actions' => [
'cancel' => [
'label' => 'Ýatyrmak',
],
'create' => [
'label' => 'Döret',
],
'create_another' => [
'label' => 'Döret we başgasyny döret',
],
],
],
'notifications' => [
'created' => [
'title' => 'Döredildi',
],
],
];

View File

@@ -0,0 +1,43 @@
<?php
return [
'title' => ':label üýtget',
'breadcrumb' => 'Üýtget',
'navigation_label' => 'Üýtget',
'form' => [
'actions' => [
'cancel' => [
'label' => 'Ýatyrmak',
],
'save' => [
'label' => 'Üýtgetmeleri ýatda sakla',
],
],
],
'content' => [
'tab' => [
'label' => 'Üýtget',
],
],
'notifications' => [
'saved' => [
'title' => 'Ýatda saklandy',
],
],
];

View File

@@ -0,0 +1,7 @@
<?php
return [
'breadcrumb' => 'Sanaw',
];

View File

@@ -0,0 +1,7 @@
<?php
return [
'title' => ':label :relationship dolandyryň',
];

View File

@@ -0,0 +1,19 @@
<?php
return [
'title' => ':label görkeziň',
'breadcrumb' => 'Görkez',
'navigation_label' => 'Görkez',
'content' => [
'tab' => [
'label' => 'Görkez',
],
],
];

View File

@@ -0,0 +1,7 @@
<?php
return [
'body' => 'Ýatda saklanmadyk üýtgetmeler bar. Bu sahypadan çykmak isleýärsiňizmi?',
];

View File

@@ -0,0 +1,15 @@
<?php
return [
'actions' => [
'logout' => [
'label' => 'Çykmak',
],
],
'welcome' => 'Hoş geldiňiz',
];

View File

@@ -0,0 +1,17 @@
<?php
return [
'actions' => [
'open_documentation' => [
'label' => 'Resminamalar',
],
'open_github' => [
'label' => 'GitHub',
],
],
];