modify translations 🤦
This commit is contained in:
@@ -23,6 +23,7 @@ class User extends Authenticatable
|
||||
'name',
|
||||
'email',
|
||||
'password',
|
||||
'locale',
|
||||
];
|
||||
|
||||
/**
|
||||
|
||||
@@ -5,6 +5,7 @@ namespace App\Nova\Resources;
|
||||
use App\Nova\Resource;
|
||||
use Illuminate\Http\Request;
|
||||
use Laravel\Nova\Fields\ID;
|
||||
use Laravel\Nova\Fields\Text;
|
||||
use Laravel\Nova\Http\Requests\NovaRequest;
|
||||
use Nurmuhammet\NovaInputmask\NovaInputmask;
|
||||
|
||||
@@ -44,6 +45,8 @@ class Test extends Resource
|
||||
return [
|
||||
ID::make()->sortable(),
|
||||
|
||||
Text::make('phone'),
|
||||
|
||||
// NovaInputmask::make('Phone', 'phone')
|
||||
// ->mask('+(\\9\\93)-69-99-99-99')
|
||||
// ->storeRawValue(),
|
||||
|
||||
@@ -25,7 +25,7 @@ class NovaRepo
|
||||
$user = $event->request->user();
|
||||
|
||||
if (array_key_exists($user?->locale, config('app.locales'))) {
|
||||
app()->setLocale($user->locale);
|
||||
app()->setLocale($user->locale);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -49,7 +49,6 @@ class NovaRepo
|
||||
public static function dependsOnRegion(string $attribute = 'region', string $model = Province::class): Closure
|
||||
{
|
||||
return function ($field, $request, $formData) use ($attribute, $model) {
|
||||
info($formData->{$attribute});
|
||||
$field->options(
|
||||
$formData->{$attribute}
|
||||
? $model::where('region', $formData->{$attribute})->pluck('name', 'id')
|
||||
|
||||
21
app/Rules/OnlyLetters.php
Normal file
21
app/Rules/OnlyLetters.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Rules;
|
||||
|
||||
use Closure;
|
||||
use Illuminate\Contracts\Validation\ValidationRule;
|
||||
|
||||
class OnlyLetters implements ValidationRule
|
||||
{
|
||||
/**
|
||||
* Run the validation rule.
|
||||
*
|
||||
* @param \Closure(string): \Illuminate\Translation\PotentiallyTranslatedString $fail
|
||||
*/
|
||||
public function validate(string $attribute, mixed $value, Closure $fail): void
|
||||
{
|
||||
if (! preg_match('/^([a-zA-Zа-яZžŽäÄňŇöÖşŞüÜçÇýÝ])+$/', $value)) {
|
||||
$fail('The :attribute field must only contain letters.');
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -22,6 +22,7 @@
|
||||
},
|
||||
"require-dev": {
|
||||
"fakerphp/faker": "^1.9.1",
|
||||
"laravel-lang/common": "^5.3",
|
||||
"laravel/pint": "^1.0",
|
||||
"laravel/sail": "^1.18",
|
||||
"mockery/mockery": "^1.4.4",
|
||||
|
||||
979
composer.lock
generated
979
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -83,13 +83,12 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'locale' => 'en',
|
||||
'locale' => 'tk',
|
||||
|
||||
'locales' => [
|
||||
'tk' => 'Türkmen',
|
||||
'ru' => 'Русский',
|
||||
'en' => 'English',
|
||||
// 'es' => 'Espanyol',
|
||||
],
|
||||
|
||||
/*
|
||||
|
||||
98
config/localization.php
Normal file
98
config/localization.php
Normal file
@@ -0,0 +1,98 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* This file is part of the "laravel-lang/publisher" project.
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*
|
||||
* @author Andrey Helldar <helldar@dragon-code.pro>
|
||||
* @copyright 2023 Laravel Lang Team
|
||||
* @license MIT
|
||||
*
|
||||
* @see https://laravel-lang.com
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use LaravelLang\Locales\Enums\Locale;
|
||||
|
||||
return [
|
||||
/*
|
||||
* Determines what type of files to use when updating language files.
|
||||
*
|
||||
* `true` means inline files will be used.
|
||||
* `false` means that default files will be used.
|
||||
*
|
||||
* For example, the difference between them can be seen here:
|
||||
*
|
||||
* The :attribute must be accepted. // default
|
||||
* This field must be accepted. // inline
|
||||
*
|
||||
* By default, `false`.
|
||||
*/
|
||||
|
||||
'inline' => (bool) env('LANG_PUBLISHER_INLINE', false),
|
||||
|
||||
/*
|
||||
* Do arrays need to be aligned by keys before processing arrays?
|
||||
*
|
||||
* By default, true
|
||||
*/
|
||||
|
||||
'align' => (bool) env('LANG_PUBLISHER_ALIGN', true),
|
||||
|
||||
/*
|
||||
* This option determines the mechanism for converting translation
|
||||
* keys into a typographic version.
|
||||
*
|
||||
* For example:
|
||||
* for `false`:
|
||||
* "It's super-configurable... you can even use additional extensions to expand its capabilities -- just like this one!"
|
||||
* for `true`:
|
||||
* “It’s super-configurable… you can even use additional extensions to expand its capabilities – just like this one!”
|
||||
*
|
||||
* By default, false
|
||||
*/
|
||||
|
||||
'smart_punctuation' => [
|
||||
'enable' => false,
|
||||
|
||||
'common' => [
|
||||
'double_quote_opener' => '“',
|
||||
'double_quote_closer' => '”',
|
||||
'single_quote_opener' => '‘',
|
||||
'single_quote_closer' => '’',
|
||||
],
|
||||
|
||||
'locales' => [
|
||||
Locale::French->value => [
|
||||
'double_quote_opener' => '« ',
|
||||
'double_quote_closer' => ' »',
|
||||
'single_quote_opener' => '‘',
|
||||
'single_quote_closer' => '’',
|
||||
],
|
||||
|
||||
Locale::Russian->value => [
|
||||
'double_quote_opener' => '«',
|
||||
'double_quote_closer' => '»',
|
||||
'single_quote_opener' => '‘',
|
||||
'single_quote_closer' => '’',
|
||||
],
|
||||
|
||||
Locale::Ukrainian->value => [
|
||||
'double_quote_opener' => '«',
|
||||
'double_quote_closer' => '»',
|
||||
'single_quote_opener' => '‘',
|
||||
'single_quote_closer' => '’',
|
||||
],
|
||||
|
||||
Locale::Belarusian->value => [
|
||||
'double_quote_opener' => '«',
|
||||
'double_quote_closer' => '»',
|
||||
'single_quote_opener' => '‘',
|
||||
'single_quote_closer' => '’',
|
||||
],
|
||||
],
|
||||
],
|
||||
];
|
||||
20
lang/en/auth.php
Normal file
20
lang/en/auth.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?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.',
|
||||
'password' => 'The provided password is incorrect.',
|
||||
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
||||
|
||||
];
|
||||
19
lang/en/pagination.php
Normal file
19
lang/en/pagination.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Previous',
|
||||
'next' => 'Next »',
|
||||
|
||||
];
|
||||
22
lang/en/passwords.php
Normal file
22
lang/en/passwords.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reset Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
'reset' => 'Your password has been reset.',
|
||||
'sent' => 'We have 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.",
|
||||
|
||||
];
|
||||
190
lang/en/validation.php
Normal file
190
lang/en/validation.php
Normal file
@@ -0,0 +1,190 @@
|
||||
<?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 field must be accepted.',
|
||||
'accepted_if' => 'The :attribute field must be accepted when :other is :value.',
|
||||
'active_url' => 'The :attribute field must be a valid URL.',
|
||||
'after' => 'The :attribute field must be a date after :date.',
|
||||
'after_or_equal' => 'The :attribute field must be a date after or equal to :date.',
|
||||
'alpha' => 'The :attribute field must only contain letters.',
|
||||
'alpha_dash' => 'The :attribute field must only contain letters, numbers, dashes, and underscores.',
|
||||
'alpha_num' => 'The :attribute field must only contain letters and numbers.',
|
||||
'array' => 'The :attribute field must be an array.',
|
||||
'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.',
|
||||
'before' => 'The :attribute field must be a date before :date.',
|
||||
'before_or_equal' => 'The :attribute field must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'array' => 'The :attribute field must have between :min and :max items.',
|
||||
'file' => 'The :attribute field must be between :min and :max kilobytes.',
|
||||
'numeric' => 'The :attribute field must be between :min and :max.',
|
||||
'string' => 'The :attribute field must be between :min and :max characters.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'can' => 'The :attribute field contains an unauthorized value.',
|
||||
'confirmed' => 'The :attribute field confirmation does not match.',
|
||||
'current_password' => 'The password is incorrect.',
|
||||
'date' => 'The :attribute field must be a valid date.',
|
||||
'date_equals' => 'The :attribute field must be a date equal to :date.',
|
||||
'date_format' => 'The :attribute field must match the format :format.',
|
||||
'decimal' => 'The :attribute field must have :decimal decimal places.',
|
||||
'declined' => 'The :attribute field must be declined.',
|
||||
'declined_if' => 'The :attribute field must be declined when :other is :value.',
|
||||
'different' => 'The :attribute field and :other must be different.',
|
||||
'digits' => 'The :attribute field must be :digits digits.',
|
||||
'digits_between' => 'The :attribute field must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute field has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'doesnt_end_with' => 'The :attribute field must not end with one of the following: :values.',
|
||||
'doesnt_start_with' => 'The :attribute field must not start with one of the following: :values.',
|
||||
'email' => 'The :attribute field must be a valid email address.',
|
||||
'ends_with' => 'The :attribute field must end with one of the following: :values.',
|
||||
'enum' => 'The selected :attribute is invalid.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'The :attribute field must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'gt' => [
|
||||
'array' => 'The :attribute field must have more than :value items.',
|
||||
'file' => 'The :attribute field must be greater than :value kilobytes.',
|
||||
'numeric' => 'The :attribute field must be greater than :value.',
|
||||
'string' => 'The :attribute field must be greater than :value characters.',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => 'The :attribute field must have :value items or more.',
|
||||
'file' => 'The :attribute field must be greater than or equal to :value kilobytes.',
|
||||
'numeric' => 'The :attribute field must be greater than or equal to :value.',
|
||||
'string' => 'The :attribute field must be greater than or equal to :value characters.',
|
||||
],
|
||||
'hex_color' => 'The :attribute field must be a valid hexadecimal color.',
|
||||
'image' => 'The :attribute field must be an image.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field must exist in :other.',
|
||||
'integer' => 'The :attribute field must be an integer.',
|
||||
'ip' => 'The :attribute field must be a valid IP address.',
|
||||
'ipv4' => 'The :attribute field must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute field must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute field must be a valid JSON string.',
|
||||
'lowercase' => 'The :attribute field must be lowercase.',
|
||||
'lt' => [
|
||||
'array' => 'The :attribute field must have less than :value items.',
|
||||
'file' => 'The :attribute field must be less than :value kilobytes.',
|
||||
'numeric' => 'The :attribute field must be less than :value.',
|
||||
'string' => 'The :attribute field must be less than :value characters.',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => 'The :attribute field must not have more than :value items.',
|
||||
'file' => 'The :attribute field must be less than or equal to :value kilobytes.',
|
||||
'numeric' => 'The :attribute field must be less than or equal to :value.',
|
||||
'string' => 'The :attribute field must be less than or equal to :value characters.',
|
||||
],
|
||||
'mac_address' => 'The :attribute field must be a valid MAC address.',
|
||||
'max' => [
|
||||
'array' => 'The :attribute field must not have more than :max items.',
|
||||
'file' => 'The :attribute field must not be greater than :max kilobytes.',
|
||||
'numeric' => 'The :attribute field must not be greater than :max.',
|
||||
'string' => 'The :attribute field must not be greater than :max characters.',
|
||||
],
|
||||
'max_digits' => 'The :attribute field must not have more than :max digits.',
|
||||
'mimes' => 'The :attribute field must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute field must be a file of type: :values.',
|
||||
'min' => [
|
||||
'array' => 'The :attribute field must have at least :min items.',
|
||||
'file' => 'The :attribute field must be at least :min kilobytes.',
|
||||
'numeric' => 'The :attribute field must be at least :min.',
|
||||
'string' => 'The :attribute field must be at least :min characters.',
|
||||
],
|
||||
'min_digits' => 'The :attribute field must have at least :min digits.',
|
||||
'missing' => 'The :attribute field must be missing.',
|
||||
'missing_if' => 'The :attribute field must be missing when :other is :value.',
|
||||
'missing_unless' => 'The :attribute field must be missing unless :other is :value.',
|
||||
'missing_with' => 'The :attribute field must be missing when :values is present.',
|
||||
'missing_with_all' => 'The :attribute field must be missing when :values are present.',
|
||||
'multiple_of' => 'The :attribute field must be a multiple of :value.',
|
||||
'not_in' => 'The selected :attribute is invalid.',
|
||||
'not_regex' => 'The :attribute field format is invalid.',
|
||||
'numeric' => 'The :attribute field must be a number.',
|
||||
'password' => [
|
||||
'letters' => 'The :attribute field must contain at least one letter.',
|
||||
'mixed' => 'The :attribute field must contain at least one uppercase and one lowercase letter.',
|
||||
'numbers' => 'The :attribute field must contain at least one number.',
|
||||
'symbols' => 'The :attribute field must contain at least one symbol.',
|
||||
'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.',
|
||||
],
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'present_if' => 'The :attribute field must be present when :other is :value.',
|
||||
'present_unless' => 'The :attribute field must be present unless :other is :value.',
|
||||
'present_with' => 'The :attribute field must be present when :values is present.',
|
||||
'present_with_all' => 'The :attribute field must be present when :values are present.',
|
||||
'prohibited' => 'The :attribute field is prohibited.',
|
||||
'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
|
||||
'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',
|
||||
'prohibits' => 'The :attribute field prohibits :other from being present.',
|
||||
'regex' => 'The :attribute field format is invalid.',
|
||||
'required' => 'The :attribute field is required.',
|
||||
'required_array_keys' => 'The :attribute field must contain entries for: :values.',
|
||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||
'required_if_accepted' => 'The :attribute field is required when :other is accepted.',
|
||||
'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 field must match :other.',
|
||||
'size' => [
|
||||
'array' => 'The :attribute field must contain :size items.',
|
||||
'file' => 'The :attribute field must be :size kilobytes.',
|
||||
'numeric' => 'The :attribute field must be :size.',
|
||||
'string' => 'The :attribute field must be :size characters.',
|
||||
],
|
||||
'starts_with' => 'The :attribute field must start with one of the following: :values.',
|
||||
'string' => 'The :attribute field must be a string.',
|
||||
'timezone' => 'The :attribute field must be a valid timezone.',
|
||||
'unique' => 'The :attribute has already been taken.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'uppercase' => 'The :attribute field must be uppercase.',
|
||||
'url' => 'The :attribute field must be a valid URL.',
|
||||
'ulid' => 'The :attribute field must be a valid ULID.',
|
||||
'uuid' => 'The :attribute field 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' => [],
|
||||
|
||||
];
|
||||
125
lang/ru.json
Normal file
125
lang/ru.json
Normal file
@@ -0,0 +1,125 @@
|
||||
{
|
||||
"(and :count more error)": "(и ещё :count ошибка)",
|
||||
"(and :count more errors)": "(и ещё :count ошибок)",
|
||||
"A fresh verification link has been sent to your email address.": "Новая ссылка подтверждения отправлена на Ваш адрес электронной почты.",
|
||||
"A Timeout Occurred": "Время ожидания истекло",
|
||||
"Accepted": "Принято",
|
||||
"All rights reserved.": "Все права защищены.",
|
||||
"Already Reported": "Уже сообщалось",
|
||||
"Bad Gateway": "Плохой шлюз",
|
||||
"Bad Request": "Некорректный запрос",
|
||||
"Bandwidth Limit Exceeded": "Исчерпана пропускная ширина канала",
|
||||
"Before proceeding, please check your email for a verification link.": "Прежде чем продолжить, проверьте свою электронную почту на наличие ссылки для подтверждения.",
|
||||
"click here to request another": "нажмите здесь для запроса другой ссылки",
|
||||
"Client Closed Request": "Клиент прервал запрос",
|
||||
"Confirm Password": "Подтвердить пароль",
|
||||
"Conflict": "Конфликт",
|
||||
"Connection Closed Without Response": "Соединение закрыто без ответа",
|
||||
"Connection Timed Out": "Соединение не отвечает",
|
||||
"Continue": "Продолжай",
|
||||
"Created": "Создано",
|
||||
"Dashboard": "Панель",
|
||||
"Email Address": "Адрес электронной почты",
|
||||
"Expectation Failed": "Ожидание не удалось",
|
||||
"Failed Dependency": "Ошибка зависимости",
|
||||
"Forbidden": "Запрещено",
|
||||
"Forgot Your Password?": "Забыли пароль?",
|
||||
"Found": "Найдено",
|
||||
"Gateway Timeout": "Шлюз не отвечает",
|
||||
"Go to page :page": "Перейти к :page-й странице",
|
||||
"Gone": "Удалено",
|
||||
"Hello!": "Здравствуйте!",
|
||||
"HTTP Version Not Supported": "Версия HTTP не поддерживается",
|
||||
"I'm a teapot": "Я - чайник",
|
||||
"If you did not create an account, no further action is required.": "Если Вы не создавали учетную запись, никаких дополнительных действий не требуется.",
|
||||
"If you did not receive the email": "Если Вы не получили письмо",
|
||||
"If you did not request a password reset, no further action is required.": "Если Вы не запрашивали восстановление пароля, никаких дополнительных действий не требуется.",
|
||||
"If you're having trouble clicking the \":actionText\" button, copy and paste the URL below\ninto your web browser:": "Если у Вас возникли проблемы с нажатием кнопки \":actionText\", скопируйте и вставьте приведенный ниже URL-адрес в свой браузер:",
|
||||
"IM Used": "Использовано IM",
|
||||
"Insufficient Storage": "Переполнение хранилища",
|
||||
"Internal Server Error": "Внутренняя ошибка сервера",
|
||||
"Invalid JSON was returned from the route.": "Маршрут вернул некорректный JSON.",
|
||||
"Invalid SSL Certificate": "Недействительный SSL сертификат",
|
||||
"Length Required": "Необходима длина",
|
||||
"Locked": "Доступ заблокирован",
|
||||
"Login": "Войти",
|
||||
"Logout": "Выйти",
|
||||
"Loop Detected": "Обнаружено бесконечное перенаправление",
|
||||
"Maintenance Mode": "Ведутся технические работы",
|
||||
"Method Not Allowed": "Метод запрещен",
|
||||
"Misdirected Request": "Неверный запрос",
|
||||
"Moved Permanently": "Перемещено навсегда",
|
||||
"Multi-Status": "Много статусов",
|
||||
"Multiple Choices": "Множество выбора",
|
||||
"Name": "Имя",
|
||||
"Network Authentication Required": "Требуется сетевая аутентификация",
|
||||
"Network Connect Timeout Error": "Истекло время подключения",
|
||||
"Network Read Timeout Error": "Истекло время ожидания",
|
||||
"No Content": "Содержимое отсутствует",
|
||||
"Non-Authoritative Information": "Информация не авторитетна",
|
||||
"Not Acceptable": "Неприемлемо",
|
||||
"Not Extended": "Не расширено",
|
||||
"Not Found": "Не найдено",
|
||||
"Not Implemented": "Не реализовано",
|
||||
"Not Modified": "Не изменялось",
|
||||
"of": "из",
|
||||
"OK": "ОК",
|
||||
"Origin Is Unreachable": "Источник недоступен",
|
||||
"Page Expired": "Страница устарела",
|
||||
"Pagination Navigation": "Навигация",
|
||||
"Partial Content": "Частичное содержимое",
|
||||
"Password": "Пароль",
|
||||
"Payload Too Large": "Полезная нагрузка слишком велика",
|
||||
"Payment Required": "Требуется оплата",
|
||||
"Permanent Redirect": "Постоянное перенаправление",
|
||||
"Please click the button below to verify your email address.": "Пожалуйста, нажмите кнопку ниже, чтобы подтвердить свой адрес электронной почты.",
|
||||
"Please confirm your password before continuing.": "Пожалуйста, подтвердите свой пароль, прежде чем продолжить.",
|
||||
"Precondition Failed": "Условие ложно",
|
||||
"Precondition Required": "Требуется предусловие",
|
||||
"Processing": "Идет обработка",
|
||||
"Proxy Authentication Required": "Требуется аутентификация прокси",
|
||||
"Railgun Error": "Ошибка соединения с Railgun",
|
||||
"Range Not Satisfiable": "Диапазон недостижим",
|
||||
"Regards": "С уважением",
|
||||
"Register": "Регистрация",
|
||||
"Remember Me": "Запомнить меня",
|
||||
"Request Header Fields Too Large": "Поля заголовка слишком большие",
|
||||
"Request Timeout": "Истекло время ожидания",
|
||||
"Reset Content": "Сбросить содержимое",
|
||||
"Reset Password": "Сбросить пароль",
|
||||
"Reset Password Notification": "Оповещение о сбросе пароля",
|
||||
"results": "результатов",
|
||||
"Retry With": "Повторить с",
|
||||
"See Other": "Смотри другое",
|
||||
"Send Password Reset Link": "Отправить ссылку сброса пароля",
|
||||
"Server Error": "Ошибка сервера",
|
||||
"Service Unavailable": "Сервис недоступен",
|
||||
"Session Has Expired": "Сессия устарела",
|
||||
"Showing": "Показано с",
|
||||
"SSL Handshake Failed": "Квитирование SSL не удалось",
|
||||
"Switching Protocols": "Переключение протоколов",
|
||||
"Temporary Redirect": "Временное перенаправление",
|
||||
"The given data was invalid.": "Указанные данные недействительны.",
|
||||
"The response is not a streamed response.": "Ответ не является потоковым.",
|
||||
"The response is not a view.": "Ответ не является представлением.",
|
||||
"This password reset link will expire in :count minutes.": "Срок действия ссылки для сброса пароля истекает через :count минут.",
|
||||
"to": "по",
|
||||
"Toggle navigation": "Переключить навигацию",
|
||||
"Too Early": "Слишком рано",
|
||||
"Too Many Requests": "Слишком много запросов",
|
||||
"Unauthorized": "Не авторизован",
|
||||
"Unavailable For Legal Reasons": "Недоступно по юридическим причинам",
|
||||
"Unknown Error": "Неизвестная ошибка",
|
||||
"Unprocessable Entity": "Необрабатываемый экземпляр",
|
||||
"Unsupported Media Type": "Неподдерживаемый тип данных",
|
||||
"Upgrade Required": "Требуется обновление",
|
||||
"URI Too Long": "URI слишком длинный",
|
||||
"Use Proxy": "Используй прокси",
|
||||
"Variant Also Negotiates": "Вариант тоже проводит согласование",
|
||||
"Verify Email Address": "Подтвердить адрес электронной почты",
|
||||
"Verify Your Email Address": "Подтвердите Ваш адрес электронной почты",
|
||||
"Web Server is Down": "Веб-сервер не работает",
|
||||
"Whoops!": "Упс!",
|
||||
"You are logged in!": "Вы вошли в систему.",
|
||||
"You are receiving this email because we received a password reset request for your account.": "Вы получили это письмо, потому что мы получили запрос на сброс пароля для Вашей учётной записи."
|
||||
}
|
||||
9
lang/ru/auth.php
Normal file
9
lang/ru/auth.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'failed' => 'Неверное имя пользователя или пароль.',
|
||||
'password' => 'Некорректный пароль.',
|
||||
'throttle' => 'Слишком много попыток входа. Пожалуйста, попробуйте ещё раз через :seconds секунд.',
|
||||
];
|
||||
84
lang/ru/http-statuses.php
Normal file
84
lang/ru/http-statuses.php
Normal file
@@ -0,0 +1,84 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'0' => 'Неизвестная ошибка',
|
||||
'100' => 'Продолжай',
|
||||
'101' => 'Переключение протоколов',
|
||||
'102' => 'Идет обработка',
|
||||
'200' => 'ОК',
|
||||
'201' => 'Создано',
|
||||
'202' => 'Принято',
|
||||
'203' => 'Информация не авторитетна',
|
||||
'204' => 'Содержимое отсутствует',
|
||||
'205' => 'Сбросить содержимое',
|
||||
'206' => 'Частичное содержимое',
|
||||
'207' => 'Много статусов',
|
||||
'208' => 'Уже сообщалось',
|
||||
'226' => 'Использовано IM',
|
||||
'300' => 'Множество выбора',
|
||||
'301' => 'Перемещено навсегда',
|
||||
'302' => 'Найдено',
|
||||
'303' => 'Смотри другое',
|
||||
'304' => 'Не изменялось',
|
||||
'305' => 'Используй прокси',
|
||||
'307' => 'Временное перенаправление',
|
||||
'308' => 'Постоянное перенаправление',
|
||||
'400' => 'Некорректный запрос',
|
||||
'401' => 'Не авторизован',
|
||||
'402' => 'Необходима оплата',
|
||||
'403' => 'Доступ запрещен',
|
||||
'404' => 'Не найдено',
|
||||
'405' => 'Метод запрещен',
|
||||
'406' => 'Неприемлемо',
|
||||
'407' => 'Требуется аутентификация прокси',
|
||||
'408' => 'Истекло время ожидания',
|
||||
'409' => 'Конфликт',
|
||||
'410' => 'Удалено',
|
||||
'411' => 'Необходима длина',
|
||||
'412' => 'Условие ложно',
|
||||
'413' => 'Полезная нагрузка слишком велика',
|
||||
'414' => 'URI слишком длинный',
|
||||
'415' => 'Неподдерживаемый тип данных',
|
||||
'416' => 'Диапазон недостижим',
|
||||
'417' => 'Ожидание не удалось',
|
||||
'418' => 'Я - чайник',
|
||||
'419' => 'Сессия устарела',
|
||||
'421' => 'Неверный запрос',
|
||||
'422' => 'Необрабатываемый экземпляр',
|
||||
'423' => 'Доступ заблокирован',
|
||||
'424' => 'Ошибка зависимости',
|
||||
'425' => 'Слишком рано',
|
||||
'426' => 'Требуется обновление',
|
||||
'428' => 'Требуется предусловие',
|
||||
'429' => 'Слишком много запросов',
|
||||
'431' => 'Поля заголовка слишком большие',
|
||||
'444' => 'Соединение закрыто без ответа',
|
||||
'449' => 'Повторить с',
|
||||
'451' => 'Недоступно по юридическим причинам',
|
||||
'499' => 'Клиент прервал запрос',
|
||||
'500' => 'Внутренняя ошибка сервера',
|
||||
'501' => 'Не реализовано',
|
||||
'502' => 'Плохой шлюз',
|
||||
'503' => 'Ведутся технические работы',
|
||||
'504' => 'Шлюз не отвечает',
|
||||
'505' => 'Версия HTTP не поддерживается',
|
||||
'506' => 'Вариант тоже проводит согласование',
|
||||
'507' => 'Переполнение хранилища',
|
||||
'508' => 'Обнаружено бесконечное перенаправление',
|
||||
'509' => 'Исчерпана пропускная ширина канала',
|
||||
'510' => 'Не расширено',
|
||||
'511' => 'Требуется сетевая аутентификация',
|
||||
'520' => 'Неизвестная ошибка',
|
||||
'521' => 'Веб-сервер не работает',
|
||||
'522' => 'Соединение не отвечает',
|
||||
'523' => 'Источник недоступен',
|
||||
'524' => 'Время ожидания истекло',
|
||||
'525' => 'Квитирование SSL не удалось',
|
||||
'526' => 'Недействительный SSL сертификат',
|
||||
'527' => 'Ошибка соединения с Railgun',
|
||||
'598' => 'Истекло время ожидания',
|
||||
'599' => 'Истекло время подключения',
|
||||
'unknownError' => 'Неизвестная ошибка',
|
||||
];
|
||||
8
lang/ru/pagination.php
Normal file
8
lang/ru/pagination.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'next' => 'Вперёд »',
|
||||
'previous' => '« Назад',
|
||||
];
|
||||
11
lang/ru/passwords.php
Normal file
11
lang/ru/passwords.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'reset' => 'Ваш пароль был сброшен.',
|
||||
'sent' => 'Ссылка на сброс пароля была отправлена.',
|
||||
'throttled' => 'Пожалуйста, подождите перед повторной попыткой.',
|
||||
'token' => 'Ошибочный код сброса пароля.',
|
||||
'user' => 'Не удалось найти пользователя с указанным электронным адресом.',
|
||||
];
|
||||
223
lang/ru/validation.php
Normal file
223
lang/ru/validation.php
Normal file
@@ -0,0 +1,223 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'accepted' => 'Вы должны принять :attribute.',
|
||||
'accepted_if' => 'Вы должны принять :attribute, когда :other соответствует :value.',
|
||||
'active_url' => 'Значение поля :attribute должно быть действительным URL адресом.',
|
||||
'after' => 'Значение поля :attribute должно быть датой после :date.',
|
||||
'after_or_equal' => 'Значение поля :attribute должно быть датой после или равной :date.',
|
||||
'alpha' => 'Значение поля :attribute может содержать только буквы.',
|
||||
'alpha_dash' => 'Значение поля :attribute может содержать только буквы, цифры, дефис и нижнее подчеркивание.',
|
||||
'alpha_num' => 'Значение поля :attribute может содержать только буквы и цифры.',
|
||||
'array' => 'Значение поля :attribute должно быть массивом.',
|
||||
'ascii' => 'Значение поля :attribute должно содержать только однобайтовые цифро-буквенные символы.',
|
||||
'before' => 'Значение поля :attribute должно быть датой до :date.',
|
||||
'before_or_equal' => 'Значение поля :attribute должно быть датой до или равной :date.',
|
||||
'between' => [
|
||||
'array' => 'Количество элементов в поле :attribute должно быть между :min и :max.',
|
||||
'file' => 'Размер файла в поле :attribute должен быть между :min и :max Кб.',
|
||||
'numeric' => 'Значение поля :attribute должно быть между :min и :max.',
|
||||
'string' => 'Количество символов в поле :attribute должно быть между :min и :max.',
|
||||
],
|
||||
'boolean' => 'Значение поля :attribute должно быть логического типа.',
|
||||
'can' => 'Значение поля :attribute должно быть авторизованным.',
|
||||
'confirmed' => 'Значение поля :attribute не совпадает с подтверждаемым.',
|
||||
'current_password' => 'Неверный пароль.',
|
||||
'date' => 'Значение поля :attribute должно быть корректной датой.',
|
||||
'date_equals' => 'Значение поля :attribute должно быть датой равной :date.',
|
||||
'date_format' => 'Значение поля :attribute должно соответствовать формату даты :format.',
|
||||
'decimal' => 'Значение поля :attribute должно содержать :decimal цифр десятичных разрядов.',
|
||||
'declined' => 'Поле :attribute должно быть отклонено.',
|
||||
'declined_if' => 'Поле :attribute должно быть отклонено, когда :other равно :value.',
|
||||
'different' => 'Значения полей :attribute и :other должны различаться.',
|
||||
'digits' => 'Количество символов в поле :attribute должно быть равным :digits.',
|
||||
'digits_between' => 'Количество символов в поле :attribute должно быть между :min и :max.',
|
||||
'dimensions' => 'Изображение, указанное в поле :attribute, имеет недопустимые размеры.',
|
||||
'distinct' => 'Значения поля :attribute не должны повторяться.',
|
||||
'doesnt_end_with' => 'Значение поля :attribute не должно заканчиваться одним из следующих: :values.',
|
||||
'doesnt_start_with' => 'Значение поля :attribute не должно начинаться с одного из следующих: :values.',
|
||||
'email' => 'Значение поля :attribute должно быть действительным электронным адресом.',
|
||||
'ends_with' => 'Значение поля :attribute должно заканчиваться одним из следующих: :values',
|
||||
'enum' => 'Значение поля :attribute некорректно.',
|
||||
'exists' => 'Значение поля :attribute не существует.',
|
||||
'extensions' => 'Файл в поле :attribute должен иметь одно из следующих расширений: :values.',
|
||||
'file' => 'В поле :attribute должен быть указан файл.',
|
||||
'filled' => 'Значение поля :attribute обязательно для заполнения.',
|
||||
'gt' => [
|
||||
'array' => 'Количество элементов в поле :attribute должно быть больше :value.',
|
||||
'file' => 'Размер файла, указанный в поле :attribute, должен быть больше :value Кб.',
|
||||
'numeric' => 'Значение поля :attribute должно быть больше :value.',
|
||||
'string' => 'Количество символов в поле :attribute должно быть больше :value.',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => 'Количество элементов в поле :attribute должно быть :value или больше.',
|
||||
'file' => 'Размер файла, указанный в поле :attribute, должен быть :value Кб или больше.',
|
||||
'numeric' => 'Значение поля :attribute должно быть :value или больше.',
|
||||
'string' => 'Количество символов в поле :attribute должно быть :value или больше.',
|
||||
],
|
||||
'hex_color' => 'Значение поля :attribute должно быть корректным цветом в HEX формате.',
|
||||
'image' => 'Файл, указанный в поле :attribute, должен быть изображением.',
|
||||
'in' => 'Значение поля :attribute некорректно.',
|
||||
'in_array' => 'Значение поля :attribute должно присутствовать в :other.',
|
||||
'integer' => 'Значение поля :attribute должно быть целым числом.',
|
||||
'ip' => 'Значение поля :attribute должно быть действительным IP-адресом.',
|
||||
'ipv4' => 'Значение поля :attribute должно быть действительным IPv4-адресом.',
|
||||
'ipv6' => 'Значение поля :attribute должно быть действительным IPv6-адресом.',
|
||||
'json' => 'Значение поля :attribute должно быть JSON строкой.',
|
||||
'lowercase' => 'Значение поля :attribute должно быть в нижнем регистре.',
|
||||
'lt' => [
|
||||
'array' => 'Количество элементов в поле :attribute должно быть меньше :value.',
|
||||
'file' => 'Размер файла, указанный в поле :attribute, должен быть меньше :value Кб.',
|
||||
'numeric' => 'Значение поля :attribute должно быть меньше :value.',
|
||||
'string' => 'Количество символов в поле :attribute должно быть меньше :value.',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => 'Количество элементов в поле :attribute должно быть :value или меньше.',
|
||||
'file' => 'Размер файла, указанный в поле :attribute, должен быть :value Кб или меньше.',
|
||||
'numeric' => 'Значение поля :attribute должно быть равным или меньше :value.',
|
||||
'string' => 'Количество символов в поле :attribute должно быть :value или меньше.',
|
||||
],
|
||||
'mac_address' => 'Значение поля :attribute должно быть корректным MAC-адресом.',
|
||||
'max' => [
|
||||
'array' => 'Количество элементов в поле :attribute не может превышать :max.',
|
||||
'file' => 'Размер файла в поле :attribute не может быть больше :max Кб.',
|
||||
'numeric' => 'Значение поля :attribute не может быть больше :max.',
|
||||
'string' => 'Количество символов в значении поля :attribute не может превышать :max.',
|
||||
],
|
||||
'max_digits' => 'Значение поля :attribute не должно содержать больше :max цифр.',
|
||||
'mimes' => 'Файл, указанный в поле :attribute, должен быть одного из следующих типов: :values.',
|
||||
'mimetypes' => 'Файл, указанный в поле :attribute, должен быть одного из следующих типов: :values.',
|
||||
'min' => [
|
||||
'array' => 'Количество элементов в поле :attribute должно быть не меньше :min.',
|
||||
'file' => 'Размер файла, указанный в поле :attribute, должен быть не меньше :min Кб.',
|
||||
'numeric' => 'Значение поля :attribute должно быть не меньше :min.',
|
||||
'string' => 'Количество символов в поле :attribute должно быть не меньше :min.',
|
||||
],
|
||||
'min_digits' => 'Значение поля :attribute должно содержать не меньше :min цифр.',
|
||||
'missing' => 'Значение поля :attribute должно отсутствовать.',
|
||||
'missing_if' => 'Значение поля :attribute должно отсутствовать, когда :other равно :value.',
|
||||
'missing_unless' => 'Значение поля :attribute должно отсутствовать, когда :other не равно :value.',
|
||||
'missing_with' => 'Значение поля :attribute должно отсутствовать, если :values указано.',
|
||||
'missing_with_all' => 'Значение поля :attribute должно отсутствовать, когда указаны все :values.',
|
||||
'multiple_of' => 'Значение поля :attribute должно быть кратным :value',
|
||||
'not_in' => 'Значение поля :attribute некорректно.',
|
||||
'not_regex' => 'Значение поля :attribute имеет некорректный формат.',
|
||||
'numeric' => 'Значение поля :attribute должно быть числом.',
|
||||
'password' => [
|
||||
'letters' => 'Значение поля :attribute должно содержать хотя бы одну букву.',
|
||||
'mixed' => 'Значение поля :attribute должно содержать хотя бы одну прописную и одну строчную буквы.',
|
||||
'numbers' => 'Значение поля :attribute должно содержать хотя бы одну цифру.',
|
||||
'symbols' => 'Значение поля :attribute должно содержать хотя бы один символ.',
|
||||
'uncompromised' => 'Значение поля :attribute обнаружено в утёкших данных. Пожалуйста, выберите другое значение для :attribute.',
|
||||
],
|
||||
'present' => 'Значение поля :attribute должно быть.',
|
||||
'present_if' => 'Значение поля :attribute должно быть когда :other равно :value.',
|
||||
'present_unless' => 'Значение поля :attribute должно быть, если только :other не равно :value.',
|
||||
'present_with' => 'Значение поля :attribute должно быть когда одно из :values присутствуют.',
|
||||
'present_with_all' => 'Значение поля :attribute должно быть когда все из значений присутствуют: :values.',
|
||||
'prohibited' => 'Значение поля :attribute запрещено.',
|
||||
'prohibited_if' => 'Значение поля :attribute запрещено, когда :other равно :value.',
|
||||
'prohibited_unless' => 'Значение поля :attribute запрещено, если :other не состоит в :values.',
|
||||
'prohibits' => 'Значение поля :attribute запрещает присутствие :other.',
|
||||
'regex' => 'Значение поля :attribute имеет некорректный формат.',
|
||||
'required' => 'Поле :attribute обязательно.',
|
||||
'required_array_keys' => 'Массив в поле :attribute обязательно должен иметь ключи: :values',
|
||||
'required_if' => 'Поле :attribute обязательно для заполнения, когда :other равно :value.',
|
||||
'required_if_accepted' => 'Поле :attribute обязательно, когда :other принято.',
|
||||
'required_unless' => 'Поле :attribute обязательно для заполнения, когда :other не равно :values.',
|
||||
'required_with' => 'Поле :attribute обязательно для заполнения, когда :values указано.',
|
||||
'required_with_all' => 'Поле :attribute обязательно для заполнения, когда :values указано.',
|
||||
'required_without' => 'Поле :attribute обязательно для заполнения, когда :values не указано.',
|
||||
'required_without_all' => 'Поле :attribute обязательно для заполнения, когда ни одно из :values не указано.',
|
||||
'same' => 'Значения полей :attribute и :other должны совпадать.',
|
||||
'size' => [
|
||||
'array' => 'Количество элементов в поле :attribute должно быть равным :size.',
|
||||
'file' => 'Размер файла, указанный в поле :attribute, должен быть равен :size Кб.',
|
||||
'numeric' => 'Значение поля :attribute должно быть равным :size.',
|
||||
'string' => 'Количество символов в поле :attribute должно быть равным :size.',
|
||||
],
|
||||
'starts_with' => 'Поле :attribute должно начинаться с одного из следующих значений: :values',
|
||||
'string' => 'Значение поля :attribute должно быть строкой.',
|
||||
'timezone' => 'Значение поля :attribute должно быть действительным часовым поясом.',
|
||||
'ulid' => 'Значение поля :attribute должно быть корректным ULID.',
|
||||
'unique' => 'Такое значение поля :attribute уже существует.',
|
||||
'uploaded' => 'Загрузка файла из поля :attribute не удалась.',
|
||||
'uppercase' => 'Значение поля :attribute должно быть в верхнем регистре.',
|
||||
'url' => 'Значение поля :attribute имеет ошибочный формат URL.',
|
||||
'uuid' => 'Значение поля :attribute должно быть корректным UUID.',
|
||||
'attributes' => [
|
||||
'address' => 'адрес',
|
||||
'age' => 'возраст',
|
||||
'amount' => 'количество',
|
||||
'area' => 'область',
|
||||
'available' => 'доступно',
|
||||
'birthday' => 'дата рождения',
|
||||
'body' => 'контент',
|
||||
'city' => 'город',
|
||||
'content' => 'контент',
|
||||
'country' => 'страна',
|
||||
'created_at' => 'создано в',
|
||||
'creator' => 'создатель',
|
||||
'current_password' => 'текущий пароль',
|
||||
'date' => 'дата',
|
||||
'date_of_birth' => 'день рождения',
|
||||
'day' => 'день',
|
||||
'deleted_at' => 'удалено в',
|
||||
'description' => 'описание',
|
||||
'district' => 'округ',
|
||||
'duration' => 'продолжительность',
|
||||
'email' => 'email адрес',
|
||||
'excerpt' => 'выдержка',
|
||||
'filter' => 'фильтр',
|
||||
'first_name' => 'имя',
|
||||
'gender' => 'пол',
|
||||
'group' => 'группа',
|
||||
'hour' => 'час',
|
||||
'image' => 'изображение',
|
||||
'last_name' => 'фамилия',
|
||||
'lesson' => 'урок',
|
||||
'line_address_1' => 'строка адреса 1',
|
||||
'line_address_2' => 'строка адреса 2',
|
||||
'message' => 'сообщение',
|
||||
'middle_name' => 'отчество',
|
||||
'minute' => 'минута',
|
||||
'mobile' => 'моб. номер',
|
||||
'month' => 'месяц',
|
||||
'name' => 'имя',
|
||||
'national_code' => 'национальный код',
|
||||
'number' => 'номер',
|
||||
'password' => 'пароль',
|
||||
'password_confirmation' => 'подтверждение пароля',
|
||||
'phone' => 'номер телефона',
|
||||
'photo' => 'фотография',
|
||||
'postal_code' => 'индекс',
|
||||
'price' => 'стоимость',
|
||||
'province' => 'провинция',
|
||||
'recaptcha_response_field' => 'ошибка рекапчи',
|
||||
'remember' => 'запомнить',
|
||||
'restored_at' => 'восстановлено в',
|
||||
'result_text_under_image' => 'текст под изображением',
|
||||
'role' => 'роль',
|
||||
'second' => 'секунда',
|
||||
'sex' => 'пол',
|
||||
'short_text' => 'короткое описание',
|
||||
'size' => 'размер',
|
||||
'state' => 'штат',
|
||||
'street' => 'улица',
|
||||
'student' => 'студент',
|
||||
'subject' => 'заголовок',
|
||||
'teacher' => 'учитель',
|
||||
'terms' => 'правила',
|
||||
'test_description' => 'тестовое описание',
|
||||
'test_locale' => 'тестовая локализация',
|
||||
'test_name' => 'тестовое имя',
|
||||
'text' => 'текст',
|
||||
'time' => 'время',
|
||||
'title' => 'наименование',
|
||||
'updated_at' => 'обновлено в',
|
||||
'username' => 'никнейм',
|
||||
'year' => 'год',
|
||||
],
|
||||
];
|
||||
135
lang/tk.json
135
lang/tk.json
@@ -1,87 +1,208 @@
|
||||
{
|
||||
"(and :count more error)": "(we ýene :count ýalňyşlyk)",
|
||||
"(and :count more errors)": "(we ýene :count ýalňyşlyk)",
|
||||
"A fresh verification link has been sent to your email address.": "E-poçta salgyňyza täze tassyklama baglanyşygy iberildi.",
|
||||
"A Timeout Occurred": "Wagt gutardy",
|
||||
"Accepted": "Kabul edildi",
|
||||
"Active": "Işjeň",
|
||||
"Address": "Salgysy",
|
||||
"Ahal": "Ahal",
|
||||
"All rights reserved.": "Rightshli hukuklar goralandyr.",
|
||||
"Already Reported": "Eýýäm habar berildi",
|
||||
"Arkadag": "Arkadag",
|
||||
"Ashgabat": "Aşgabat",
|
||||
"Bad Gateway": "Erbet şlıuz",
|
||||
"Bad Request": "Erbet haýyş",
|
||||
"Balkan": "Balkan",
|
||||
"Bandwidth Limit Exceeded": "Zolak giňligi çäklendirildi",
|
||||
"Before proceeding, please check your email for a verification link.": "Dowam etmezden ozal tassyklama baglanyşygy üçin e-poçtaňyzy barlaň.",
|
||||
"Billing password": "Hasap paroly",
|
||||
"Billing username": "Hasap ulanyjy ady",
|
||||
"Born place (passport)": "Doglan ýeri (pasport)",
|
||||
"Branch": "Şahamça",
|
||||
"Branches": "Şahamçalar",
|
||||
"Cancelled": "Ýatyrylan",
|
||||
"click here to request another": "başga birini soramak üçin şu ýere basyň",
|
||||
"Client Closed Request": "Müşderiniň ýapyk haýyşy",
|
||||
"Completed": "Tamamlanan",
|
||||
"Confirm Password": "Paroly tassykla",
|
||||
"Conflict": "Konflikt",
|
||||
"Connection Closed Without Response": "Jogapsyz birikme ýapyldy",
|
||||
"Connection Timed Out": "Baglanyşyk wagty gutardy",
|
||||
"Contact data": "Habarlaşmak üçin maglumatlar",
|
||||
"Continue": "Dowam et",
|
||||
"Created": "Döredildi",
|
||||
"Current Residence": "Häzirki ýaşaýyş ýeri",
|
||||
"Name": "Ady",
|
||||
"Patronic name": "Ataňyzyň ady",
|
||||
"Surname": "Familiýa",
|
||||
"Dashboard": "Dolandyryş paneli",
|
||||
"Dashoguz": "Daşoguz",
|
||||
"Date of birth": "Doglan gün",
|
||||
"Divorced": "Aýrylşan",
|
||||
"Education": "Bilim",
|
||||
"Email": "E-poçta",
|
||||
"Email Address": "Email adres",
|
||||
"Expectation Failed": "Garaşmak başa barmady",
|
||||
"Failed Dependency": "Şowsuzlyk",
|
||||
"Forbidden": "Gadagan",
|
||||
"Forgot Your Password?": "Parolyňyzy ýatdan çykardyňyzmy?",
|
||||
"Found": "Tapyldy",
|
||||
"Gateway Timeout": "Derweze wagty",
|
||||
"Go to page :page": ":Page-nji sahypa geçiň",
|
||||
"Gone": "Boldy",
|
||||
"Guard name": "Guard name",
|
||||
"Hello!": "Salam!",
|
||||
"High education": "Ýokary bilim",
|
||||
"Home phone": "Öý telefony",
|
||||
"HR department work number": "Işgärler bölüminiň iş belgisi",
|
||||
"HTTP Version Not Supported": "HTTP wersiýasy goldanylmaýar",
|
||||
"I'm a teapot": "Men çaýdan",
|
||||
"If you did not create an account, no further action is required.": "Hasap açmadyk bolsaňyz, mundan başga çäre görülmeli däl.",
|
||||
"If you did not receive the email": "E-poçta almadyk bolsaňyz",
|
||||
"If you did not request a password reset, no further action is required.": "Paroly täzeden dikeltmegi talap etmedik bolsaňyz, mundan başga çäre görülmeli däl.",
|
||||
"If you're having trouble clicking the \":actionText\" button, copy and paste the URL below\ninto your web browser:": "\":actionText\" düwmesine basmakda kynçylyk çekýän bolsaňyz, aşakdaky URL-i göçüriň\nweb brauzeriňize:",
|
||||
"IM Used": "SH ulanylýar",
|
||||
"Insufficient Storage": "Ammary ýeterlik däl",
|
||||
"Internal Server Error": "Içerki serwer säwligi",
|
||||
"Invalid JSON was returned from the route.": "Nädogry JSON ugurdan yzyna berildi.",
|
||||
"Invalid SSL Certificate": "Nädogry SSL şahadatnamasy",
|
||||
"Job": "Iş",
|
||||
"Lebap": "Lebap",
|
||||
"Legal Marriage": "Kanuny nika",
|
||||
"Length Required": "Uzynlyk talap edilýär",
|
||||
"Loan": "Karz",
|
||||
"Loan order": "Karz sargyt",
|
||||
"Loan orders": "Karz sargytlary",
|
||||
"Loan type": "Karz görnüşi",
|
||||
"Loan types": "Karz görnüşleri",
|
||||
"Location": "Ýerleşýän ýeri",
|
||||
"Locked": "Gulply",
|
||||
"Login": "Giriş",
|
||||
"Logout": "Hasapdan çykmak",
|
||||
"Loop Detected": "Aýlaw tapyldy",
|
||||
"Maintenance Mode": "Bejeriş tertibi",
|
||||
"Marriage status": "Nika ýagdaýy",
|
||||
"Married": "Öýlenen",
|
||||
"Mary": "Mary",
|
||||
"Masters ED": "Ussalar",
|
||||
"Maturity": "Kämillik",
|
||||
"Method Not Allowed": "Usul rugsat berilmedi",
|
||||
"Middle school": "Orta mekdep",
|
||||
"Misdirected Request": "Nädogry haýyş",
|
||||
"Moved Permanently": "Hemişelik göçürildi",
|
||||
"Multi-Status": "Köp ýagdaý",
|
||||
"Multiple Choices": "Birnäçe saýlaw",
|
||||
"My Profile": "Meniň profilim",
|
||||
"Name": "Ady",
|
||||
"Network Authentication Required": "Tor tanamak hökmany",
|
||||
"Network Connect Timeout Error": "Ulgam birikdirmesiniň gutarmak säwligi",
|
||||
"Network Read Timeout Error": "Tor okamak wagtynyň ýalňyşlygy",
|
||||
"No Content": "Mazmuny ýok",
|
||||
"Non-Authoritative Information": "Ygtyýarly däl maglumatlar",
|
||||
"None": "Hiç",
|
||||
"Not Acceptable": "Kabul ederliksiz",
|
||||
"Not Extended": "Giňeldilmedik",
|
||||
"Not Found": "Tapylmady",
|
||||
"Not Implemented": "Durmuşa geçirilmedi",
|
||||
"Not Modified": "Üýtgedilmedi",
|
||||
"Notes": "Bellikler",
|
||||
"of": "of",
|
||||
"OK": "Bolýar",
|
||||
"Orders": "Sargytlar",
|
||||
"Origin Is Unreachable": "Gelip çykyşy elýeterli däl",
|
||||
"Page Expired": "Sahypanyň möhleti gutardy",
|
||||
"Pagination Navigation": "Sahypa nawigasiýasy",
|
||||
"Partial Content": "Bölekleýin mazmun",
|
||||
"Passport": "Pasport",
|
||||
"Passport (page 1)": "Pasport (sahypa 1)",
|
||||
"Passport (page 2-3)": "Pasport (2-3-nji sahypa)",
|
||||
"Passport (page 8-9)": "Pasport (8-9 sahypa)",
|
||||
"Passport (page 32)": "Pasport (32-nji sahypa)",
|
||||
"Passport (page 8-9)": "Pasport (8-9 sahypa)",
|
||||
"Passport date of issue": "Pasport berlen senesi",
|
||||
"Passport given by": "Kim tarapyndan berildi",
|
||||
"Passport id": "Pasport belgisi",
|
||||
"Passport serie": "Pasport seriýasy",
|
||||
"Password": "Parol",
|
||||
"Patronic name": "Ataňyzyň ady",
|
||||
"Payload Too Large": "Loadük gaty uly",
|
||||
"Payment Required": "Töleg talap edilýär",
|
||||
"Pending": "Garaşylýar",
|
||||
"Permanent Redirect": "Hemişelik gönükdirme",
|
||||
"Personal data": "Şahsy maglumatlar",
|
||||
"PHD": "PHD",
|
||||
"Phone": "Telefon",
|
||||
"Phone Additional": "Telefon goşmaça",
|
||||
"Please click the button below to verify your email address.": "E-poçta salgyňyzy barlamak üçin aşakdaky düwmä basyň.",
|
||||
"Please confirm your password before continuing.": "Dowam etmezden ozal parolyňyzy tassyklaň.",
|
||||
"Position": "Wezipe",
|
||||
"Processing": "Işlenilýär",
|
||||
"Precondition Failed": "Deslapky şert şowsuz",
|
||||
"Precondition Required": "Deslapky şert",
|
||||
"Processing": "Gaýtadan işlemek",
|
||||
"Province": "Etrap",
|
||||
"Provinces": "Etraplar",
|
||||
"Proxy Authentication Required": "Proksi tanamak zerur",
|
||||
"Railgun Error": "Demirýol säwligi",
|
||||
"Range Not Satisfiable": "Aralyk doýmaýar",
|
||||
"Regards": "Hormat bilen",
|
||||
"Region": "Welaýat",
|
||||
"Regions": "Welaýatlar",
|
||||
"Register": "Hasaba al",
|
||||
"Registered": "Bellige alyndy",
|
||||
"Remember Me": "Meni ýatla",
|
||||
"Request Header Fields Too Large": "Sözbaşy meýdanlaryny gaty uly haýyş",
|
||||
"Request Timeout": "Wagt gutarmagyny haýyş",
|
||||
"Reset Content": "Mazmuny täzeden düzmek",
|
||||
"Reset Password": "Paroly täzeden düzmek",
|
||||
"Reset Password Notification": "Parol habarnamasyny täzeden düzmek",
|
||||
"Residence (passport)": "Ýazgy edilen salgyňyz",
|
||||
"results": "Netijeler",
|
||||
"Retry With": "Gaýtadan synanyşyň",
|
||||
"Role": "Rol",
|
||||
"Roles": "Rollar",
|
||||
"Salary": "Aýlygyň möçberi (TMT)",
|
||||
"School": "Mekdep",
|
||||
"School drop out": "Mekdep okuwy taşlady",
|
||||
"See Other": "Başgalaryna serediň",
|
||||
"Send Password Reset Link": "Paroly täzeden düzmek baglanyşygyny iber",
|
||||
"Server Error": "Serwer ýalňyşlygy",
|
||||
"Service Unavailable": "Hyzmat elýeterli däl",
|
||||
"Session Has Expired": "Sessiýa gutardy",
|
||||
"Showing": "Görkezmek",
|
||||
"Single": "Leeke",
|
||||
"SSL Handshake Failed": "SSL el çarpmak şowsuz boldy",
|
||||
"Surname": "Familiýa",
|
||||
"Switching Protocols": "Protokollary çalyşmak",
|
||||
"System": "Ulgam",
|
||||
"Tax": "Salgyt",
|
||||
"Temporary Redirect": "Wagtlaýyn gönükdirme",
|
||||
"The given data was invalid.": "Berlen maglumatlar nädogry",
|
||||
"The response is not a streamed response.": "Jogap akymly jogap däl.",
|
||||
"The response is not a view.": "Jogap görünmeýär.",
|
||||
"This password reset link will expire in :count minutes.": "Bu paroly täzeden dikeltmek baglanyşygy :count minutda gutarar.",
|
||||
"to": "to",
|
||||
"Toggle navigation": "Nawigasiýany üýtgediň",
|
||||
"Too Early": "Örän ir",
|
||||
"Too Many Requests": "Gaty köp haýyş",
|
||||
"Unauthorized": "Rugsat berilmedik",
|
||||
"Unavailable For Legal Reasons": "Hukuk sebäpleri üçin elýeterli däl",
|
||||
"Unfinished high education": "Gutarylmadyk ýokary bilim",
|
||||
"Unique code": "Unikal belgi",
|
||||
"Unique id": "Unikal belgi",
|
||||
"Unknown Error": "Näbelli säwlik",
|
||||
"Unprocessable Entity": "Işlenip bilinmeýän kärhana",
|
||||
"Unsupported Media Type": "Goldaw berilmeýän media görnüşi",
|
||||
"Upgrade Required": "Döwrebaplaşdyrmak zerur",
|
||||
"URI Too Long": "URI gaty uzyn",
|
||||
"Use Proxy": "Proksi ulanyň",
|
||||
"User": "Ulanyjy",
|
||||
"Variant Also Negotiates": "Wariant hem gepleşik geçirýär",
|
||||
"Verify Email Address": "E-poçta salgysyny barlaň",
|
||||
"Verify Your Email Address": "E-poçta salgyňyzy barlaň",
|
||||
"Web Server is Down": "Web Serwer ýapyk",
|
||||
"Whoops!": "Wah!",
|
||||
"Widow": "Dul aýal",
|
||||
"Work company name": "Işleýän edaranyň/kärhananyň ady",
|
||||
"Work province": "Işleýän etrabyňyz",
|
||||
"Work region": "Işleýän welaýatyňyz",
|
||||
"Work started at": "Işe başlan wagtyňyz"
|
||||
}
|
||||
"Work started at": "Işe başlan wagtyňyz",
|
||||
"You are logged in!": "Sessiýa açdyňyz",
|
||||
"You are receiving this email because we received a password reset request for your account.": "Bu e-poçta alýarsyňyz, sebäbi hasabyňyz üçin paroly täzeden düzmek haýyşyny aldyk."
|
||||
}
|
||||
9
lang/tk/auth.php
Normal file
9
lang/tk/auth.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'failed' => 'Bu şahsyýetnamalar, ýazgylarymyza gabat gelmeýär.',
|
||||
'password' => 'Parol nädogry',
|
||||
'throttle' => 'Giriş synanyşyklary gaty köp. :seconds sekuntda gaýtadan synanyşmagyňyzy haýyş edýäris.',
|
||||
];
|
||||
84
lang/tk/http-statuses.php
Normal file
84
lang/tk/http-statuses.php
Normal file
@@ -0,0 +1,84 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'0' => 'Näbelli säwlik',
|
||||
'100' => 'Dowam et',
|
||||
'101' => 'Protokollary çalyşmak',
|
||||
'102' => 'Gaýtadan işlemek',
|
||||
'200' => 'Bolýar',
|
||||
'201' => 'Döredildi',
|
||||
'202' => 'Kabul edildi',
|
||||
'203' => 'Ygtyýarly däl maglumatlar',
|
||||
'204' => 'Mazmuny ýok',
|
||||
'205' => 'Mazmuny täzeden düzmek',
|
||||
'206' => 'Bölekleýin mazmun',
|
||||
'207' => 'Köp ýagdaý',
|
||||
'208' => 'Eýýäm habar berildi',
|
||||
'226' => 'SH ulanylýar',
|
||||
'300' => 'Birnäçe saýlaw',
|
||||
'301' => 'Hemişelik göçürildi',
|
||||
'302' => 'Tapyldy',
|
||||
'303' => 'Başgalaryna serediň',
|
||||
'304' => 'Üýtgedilmedi',
|
||||
'305' => 'Proksi ulanyň',
|
||||
'307' => 'Wagtlaýyn gönükdirme',
|
||||
'308' => 'Hemişelik gönükdirme',
|
||||
'400' => 'Erbet haýyş',
|
||||
'401' => 'Rugsat berilmedik',
|
||||
'402' => 'Töleg talap edilýär',
|
||||
'403' => 'Gadagan',
|
||||
'404' => 'Tapylmady',
|
||||
'405' => 'Usul rugsat berilmedi',
|
||||
'406' => 'Kabul ederliksiz',
|
||||
'407' => 'Proksi tanamak zerur',
|
||||
'408' => 'Wagt gutarmagyny haýyş',
|
||||
'409' => 'Konflikt',
|
||||
'410' => 'Boldy',
|
||||
'411' => 'Uzynlyk talap edilýär',
|
||||
'412' => 'Deslapky şert şowsuz',
|
||||
'413' => 'Loadük gaty uly',
|
||||
'414' => 'URI gaty uzyn',
|
||||
'415' => 'Goldaw berilmeýän media görnüşi',
|
||||
'416' => 'Aralyk doýmaýar',
|
||||
'417' => 'Garaşmak başa barmady',
|
||||
'418' => 'Men çaýdan',
|
||||
'419' => 'Sessiýa gutardy',
|
||||
'421' => 'Nädogry haýyş',
|
||||
'422' => 'Işlenip bilinmeýän kärhana',
|
||||
'423' => 'Gulply',
|
||||
'424' => 'Şowsuzlyk',
|
||||
'425' => 'Örän ir',
|
||||
'426' => 'Döwrebaplaşdyrmak zerur',
|
||||
'428' => 'Deslapky şert',
|
||||
'429' => 'Gaty köp haýyş',
|
||||
'431' => 'Sözbaşy meýdanlaryny gaty uly haýyş',
|
||||
'444' => 'Jogapsyz birikme ýapyldy',
|
||||
'449' => 'Gaýtadan synanyşyň',
|
||||
'451' => 'Hukuk sebäpleri üçin elýeterli däl',
|
||||
'499' => 'Müşderiniň ýapyk haýyşy',
|
||||
'500' => 'Içerki serwer säwligi',
|
||||
'501' => 'Durmuşa geçirilmedi',
|
||||
'502' => 'Erbet şlıuz',
|
||||
'503' => 'Bejeriş tertibi',
|
||||
'504' => 'Derweze wagty',
|
||||
'505' => 'HTTP wersiýasy goldanylmaýar',
|
||||
'506' => 'Wariant hem gepleşik geçirýär',
|
||||
'507' => 'Ammary ýeterlik däl',
|
||||
'508' => 'Aýlaw tapyldy',
|
||||
'509' => 'Zolak giňligi çäklendirildi',
|
||||
'510' => 'Giňeldilmedik',
|
||||
'511' => 'Tor tanamak hökmany',
|
||||
'520' => 'Näbelli säwlik',
|
||||
'521' => 'Web Serwer ýapyk',
|
||||
'522' => 'Baglanyşyk wagty gutardy',
|
||||
'523' => 'Gelip çykyşy elýeterli däl',
|
||||
'524' => 'Wagt gutardy',
|
||||
'525' => 'SSL el çarpmak şowsuz boldy',
|
||||
'526' => 'Nädogry SSL şahadatnamasy',
|
||||
'527' => 'Demirýol säwligi',
|
||||
'598' => 'Tor okamak wagtynyň ýalňyşlygy',
|
||||
'599' => 'Ulgam birikdirmesiniň gutarmak säwligi',
|
||||
'unknownError' => 'Näbelli säwlik',
|
||||
];
|
||||
8
lang/tk/pagination.php
Normal file
8
lang/tk/pagination.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'next' => 'Indiki »',
|
||||
'previous' => '« Öňki',
|
||||
];
|
||||
11
lang/tk/passwords.php
Normal file
11
lang/tk/passwords.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'reset' => 'Açarsöz üýtgedildi!',
|
||||
'sent' => 'Açarsöz ýatlatmasy ugradyldy!',
|
||||
'throttled' => 'Gaýtadan synanyşmazdan ozal garaşmagyňyzy haýyş edýäris.',
|
||||
'token' => 'Açarsöz tazeleme söz birligi ýalňyş.',
|
||||
'user' => 'Bu e-mail adrese degişli ulanyjy tapylmady.',
|
||||
];
|
||||
223
lang/tk/validation.php
Normal file
223
lang/tk/validation.php
Normal file
@@ -0,0 +1,223 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'accepted' => ':Attribute kabul edilmelidir.',
|
||||
'accepted_if' => ':Other-i :value bolanda :attribute-i kabul etmeli.',
|
||||
'active_url' => ':Attribute dogry URL bolmalydyr.',
|
||||
'after' => ':Attribute şundan has köne sene bolmalydyr :date.',
|
||||
'after_or_equal' => ':Attribute-den soň bir sene bolmaly ýa-da :date-e deň bolmaly.',
|
||||
'alpha' => ':Attribute dine harplardan durmalydyr.',
|
||||
'alpha_dash' => ':Attribute dine harplardan, sanlardan we tirelerden durmalydyr.',
|
||||
'alpha_num' => ':Attribute dine harplardan we sanlardan durmalydyr.',
|
||||
'array' => ':Attribute ýygyndy bolmalydyr.',
|
||||
'ascii' => ':Attribute-de diňe bir baýtly harp sanlary we nyşanlary bolmaly.',
|
||||
'before' => ':Attribute şundan has irki sene bolmalydyr :date.',
|
||||
'before_or_equal' => ':Attribute-den öň bir sene bolmaly ýa-da :date-e deň bolmaly.',
|
||||
'between' => [
|
||||
'array' => ':Attribute :min - :max arasynda madda eýe bolmalydyr.',
|
||||
'file' => ':Attribute :min - :max kilobaýt arasynda bolmalydyr.',
|
||||
'numeric' => ':Attribute :min - :max arasynda bolmalydyr.',
|
||||
'string' => ':Attribute :min - :max harplar arasynda bolmalydyr.',
|
||||
],
|
||||
'boolean' => ':Attribute diňe dogry ýada ýalňyş bolmalydyr.',
|
||||
'can' => ':Attribute meýdanda birugsat baha bar.',
|
||||
'confirmed' => ':Attribute tassyklamasy deň däl.',
|
||||
'current_password' => 'Parol nädogry',
|
||||
'date' => ':Attribute dogry sene bolmalydyr.',
|
||||
'date_equals' => ':Attribute-i :date-e deň bolan sene bolmaly.',
|
||||
'date_format' => ':Attribute :format formatyna deň däl.',
|
||||
'decimal' => ':Attribute-de :decimal onluk ýer bolmaly.',
|
||||
'declined' => ':Attribute-den ýüz öwürmeli.',
|
||||
'declined_if' => ':Other :value bolanda :attribute-den ýüz öwürmeli.',
|
||||
'different' => ':Attribute bilen :other birbirinden tapawutly bolmalydyr.',
|
||||
'digits' => ':Attribute :digits san bolmalydyr.',
|
||||
'digits_between' => ':Attribute :min bilen :max arasynda san bolmalydyr.',
|
||||
'dimensions' => ':Attribute-de nädogry şekil ölçegleri bar.',
|
||||
'distinct' => ':Attribute meýdanyň dublikat bahasy bar.',
|
||||
'doesnt_end_with' => ':Attribute aşakdakylaryň biri bilen gutarman biler: :values.',
|
||||
'doesnt_start_with' => ':Attribute aşakdakylardan biri bilen başlamazlygy mümkin: :values.',
|
||||
'email' => ':Attribute formaty ýalňyş.',
|
||||
'ends_with' => ':Attribute aşakdakylaryň biri bilen gutarmaly: :values.',
|
||||
'enum' => 'Saýlanan :attribute nädogry.',
|
||||
'exists' => 'Saýlanan :attribute ýalňyş.',
|
||||
'extensions' => ':attribute meýdançada aşakdaky giňeltmeleriň biri bolmaly: :values.',
|
||||
'file' => ':Attribute faýl bolmaly.',
|
||||
'filled' => ':Attribute meýdany zerur.',
|
||||
'gt' => [
|
||||
'array' => ':Attribute-de :value-den gowrak zat bolmaly.',
|
||||
'file' => ':Attribute :value kilobaýtdan uly bolmaly.',
|
||||
'numeric' => ':Attribute-den :value-den uly bolmaly.',
|
||||
'string' => ':Attribute simwoldan uly bolmaly.',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => ':Attribute-de :value element ýa-da ondan köp zat bolmaly.',
|
||||
'file' => ':Attribute :value kilobaýtdan uly ýa-da deň bolmaly.',
|
||||
'numeric' => ':Attribute :value-den uly ýa-da deň bolmaly.',
|
||||
'string' => ':Attribute :value simwoldan uly ýa-da deň bolmaly.',
|
||||
],
|
||||
'hex_color' => ':attribute meýdan dogry altyburç reňk bolmaly.',
|
||||
'image' => ':Attribute surat bolmalydyr.',
|
||||
'in' => ':Attribute mukdary ýalňyş.',
|
||||
'in_array' => ':Attribute meýdan :other-de ýok.',
|
||||
'integer' => ':Attribute san bolmalydyr.',
|
||||
'ip' => ':Attribute dogry IP adres bolmalydyr.',
|
||||
'ipv4' => ':Attribute dogry IPv4 salgy bolmaly.',
|
||||
'ipv6' => ':Attribute dogry IPv6 salgy bolmaly.',
|
||||
'json' => ':Attribute dogry JSON setiri bolmaly.',
|
||||
'lowercase' => ':Attribute kiçi harp bolmaly',
|
||||
'lt' => [
|
||||
'array' => ':Attribute-de :value-den az zat bolmaly.',
|
||||
'file' => ':Attribute :value kilobaýtdan az bolmalydyr.',
|
||||
'numeric' => ':Attribute-den :value-den az bolmaly.',
|
||||
'string' => ':Attribute simwoldan :value simwoldan az bolmaly.',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => ':Attribute-de :value-den köp zat bolmaly däldir.',
|
||||
'file' => ':Attribute :value kilobaýtdan az ýa-da deň bolmaly.',
|
||||
'numeric' => ':Attribute-den :value-den az ýa-da deň bolmaly.',
|
||||
'string' => ':Attribute :value simwoldan az ýa-da deň bolmaly.',
|
||||
],
|
||||
'mac_address' => ':Attribute dogry MAC salgysy bolmaly.',
|
||||
'max' => [
|
||||
'array' => ':Attribute iň az :max maddadan ybarat bolmalydyr.',
|
||||
'file' => ':Attribute :max kilobaýtdan kiçi bolmalydyr.',
|
||||
'numeric' => ':Attribute :max den kiçi bolmalydyr.',
|
||||
'string' => ':Attribute :max harpdan kiçi bolmalydyr.',
|
||||
],
|
||||
'max_digits' => ':Attribute-de :max sandan köp bolmaly däldir.',
|
||||
'mimes' => ':Attribute faýlň formaty :values bolmalydyr.',
|
||||
'mimetypes' => ':Attribute faýlň formaty :values bolmalydyr.',
|
||||
'min' => [
|
||||
'array' => ':Attribute iň az :min harpdan bolmalydyr.',
|
||||
'file' => ':Attribute mukdary :min kilobaýtdan köp bolmalydyr.',
|
||||
'numeric' => ':Attribute mukdary :min dan köp bolmalydyr.',
|
||||
'string' => ':Attribute mukdary :min harpdan köp bolmalydyr.',
|
||||
],
|
||||
'min_digits' => ':Attribute-de azyndan :min san bolmaly.',
|
||||
'missing' => ':Attribute meýdan ýok bolmaly.',
|
||||
'missing_if' => ':Other meýdan :value bolanda :attribute meýdan ýok bolmaly.',
|
||||
'missing_unless' => ':Other meýdan :value bolmasa, :attribute meýdan ýok bolmaly.',
|
||||
'missing_with' => ':Values meýdançada :attribute meýdan ýok bolmaly.',
|
||||
'missing_with_all' => ':Values meýdançada :attribute meýdan ýok bolmaly.',
|
||||
'multiple_of' => ':Attribute :value-den köp bolmaly.',
|
||||
'not_in' => 'Saýlanan :attribute geçersiz.',
|
||||
'not_regex' => ':Attribute format nädogry.',
|
||||
'numeric' => ':Attribute san bolmalydyr.',
|
||||
'password' => [
|
||||
'letters' => ':Attribute-de azyndan bir harp bolmaly.',
|
||||
'mixed' => ':Attribute-de azyndan bir baş harp we bir kiçi harp bolmaly.',
|
||||
'numbers' => ':Attribute-de azyndan bir san bolmaly.',
|
||||
'symbols' => ':Attribute-de azyndan bir nyşan bolmaly.',
|
||||
'uncompromised' => 'Berlen :attribute maglumat syzdyrylyşynda peýda boldy. Başga :attribute saýlaň.',
|
||||
],
|
||||
'present' => ':Attribute meýdan bolmaly.',
|
||||
'present_if' => ':other meýdan :value bolanda :attribute meýdan bolmaly.',
|
||||
'present_unless' => ':other meýdan :value bolmasa, :attribute meýdan bolmaly.',
|
||||
'present_with' => ':values meýdan bolanda :attribute meýdan bolmaly.',
|
||||
'present_with_all' => ':values meýdança :values meýdança bar bolmaly.',
|
||||
'prohibited' => ':Attribute meýdan gadagan.',
|
||||
'prohibited_if' => ':Other meýdan :value bolanda :attribute meýdan gadagan.',
|
||||
'prohibited_unless' => ':Other meýdança :values bolmasa, :attribute meýdan gadagan.',
|
||||
'prohibits' => ':Attribute meýdança :other adamyň gatnaşmagyny gadagan edýär.',
|
||||
'regex' => ':Attribute formaty ýalňyş.',
|
||||
'required' => ':Attribute meýdany zerur.',
|
||||
'required_array_keys' => ':Attribute meýdançada: :values üçin ýazgylar bolmaly.',
|
||||
'required_if' => ':Attribute meýdany, :other :value hümmetine eýe bolanynda zerurdyr.',
|
||||
'required_if_accepted' => ':Other kabul edilende :attribute meýdan talap edilýär.',
|
||||
'required_unless' => ':Other meýdan :values-de bolmasa, :attribute meýdan talap edilýär.',
|
||||
'required_with' => ':Attribute meýdany :values bar bolanda zerurdyr.',
|
||||
'required_with_all' => ':Attribute meýdany haýsyda bolsa bir :values bar bolanda zerurdyr.',
|
||||
'required_without' => ':Attribute meýdany :values ýok bolanda zerurdyr.',
|
||||
'required_without_all' => ':Attribute meýdany :values dan haýsyda bolsa biri ýok bolanda zerurdyr.',
|
||||
'same' => ':Attribute bilen :other deň bolmalydyr.',
|
||||
'size' => [
|
||||
'array' => ':Attribute :size madda eýe bolmalydyr.',
|
||||
'file' => ':Attribute :size kilobaýt bolmalydyr.',
|
||||
'numeric' => ':Attribute :size sandan ybarat bolmalydyr.',
|
||||
'string' => ':Attribute :size harp bolmalydyr.',
|
||||
],
|
||||
'starts_with' => 'The :attribute must start with one of the following: :values.',
|
||||
'string' => ':Attribute setir bolmaly.',
|
||||
'timezone' => ':Attribute dogry zolak bolmalydyr.',
|
||||
'ulid' => ':Attribute-i dogry ULID bolmaly.',
|
||||
'unique' => ':Attribute önden hasaba alyndy.',
|
||||
'uploaded' => ':Attribute adam ýükläp bilmedi.',
|
||||
'uppercase' => ':Attribute baş harp bolmaly.',
|
||||
'url' => ':Attribute formaty ýalňyş.',
|
||||
'uuid' => ':Attribute-i dogry UUID bolmaly.',
|
||||
'attributes' => [
|
||||
'address' => 'salgysy',
|
||||
'age' => 'ýaşy',
|
||||
'amount' => 'mukdary',
|
||||
'area' => 'meýdany',
|
||||
'available' => 'elýeterli',
|
||||
'birthday' => 'doglan güni',
|
||||
'body' => 'beden',
|
||||
'city' => 'şäher',
|
||||
'content' => 'mazmuny',
|
||||
'country' => 'ýurt',
|
||||
'created_at' => 'döredildi',
|
||||
'creator' => 'dörediji',
|
||||
'current_password' => 'Hazirki parolynyz',
|
||||
'date' => 'senesi',
|
||||
'date_of_birth' => 'doglan gün',
|
||||
'day' => 'gün',
|
||||
'deleted_at' => 'öçürildi',
|
||||
'description' => 'beýany',
|
||||
'district' => 'etrap',
|
||||
'duration' => 'dowamlylygy',
|
||||
'email' => 'e-poçta iberiň',
|
||||
'excerpt' => 'bölek',
|
||||
'filter' => 'süzgüç',
|
||||
'first_name' => 'ady',
|
||||
'gender' => 'jyns',
|
||||
'group' => 'topary',
|
||||
'hour' => 'sagat',
|
||||
'image' => 'şekil',
|
||||
'last_name' => 'familiýa',
|
||||
'lesson' => 'sapak',
|
||||
'line_address_1' => 'setir salgysy 1',
|
||||
'line_address_2' => 'setir salgysy 2',
|
||||
'message' => 'habar',
|
||||
'middle_name' => 'orta ady',
|
||||
'minute' => 'minut',
|
||||
'mobile' => 'ykjam',
|
||||
'month' => 'aý',
|
||||
'name' => 'ady',
|
||||
'national_code' => 'milli kod',
|
||||
'number' => 'sany',
|
||||
'password' => 'parol',
|
||||
'password_confirmation' => 'paroly tassyklamak',
|
||||
'phone' => 'telefon',
|
||||
'photo' => 'surat',
|
||||
'postal_code' => 'poçta kody',
|
||||
'price' => 'bahasy',
|
||||
'province' => 'welaýaty',
|
||||
'recaptcha_response_field' => 'jogap meýdany',
|
||||
'remember' => 'ýadyňyzda saklaň',
|
||||
'restored_at' => 'dikeldildi',
|
||||
'result_text_under_image' => 'netijäniň teksti',
|
||||
'role' => 'roly',
|
||||
'second' => 'ikinji',
|
||||
'sex' => 'jyns',
|
||||
'short_text' => 'gysga tekst',
|
||||
'size' => 'ululygy',
|
||||
'state' => 'ýagdaýy',
|
||||
'street' => 'köçe',
|
||||
'student' => 'okuwçy',
|
||||
'subject' => 'mowzuk',
|
||||
'teacher' => 'mugallym',
|
||||
'terms' => 'şertleri',
|
||||
'test_description' => 'synag beýany',
|
||||
'test_locale' => 'synag sebiti',
|
||||
'test_name' => 'synag ady',
|
||||
'text' => 'tekst',
|
||||
'time' => 'wagt',
|
||||
'title' => 'ady',
|
||||
'updated_at' => 'täzelendi',
|
||||
'username' => 'ulanyjy ady',
|
||||
'year' => 'ýyl',
|
||||
],
|
||||
];
|
||||
945
lang/vendor/nova/ru.json
vendored
945
lang/vendor/nova/ru.json
vendored
@@ -1,473 +1,474 @@
|
||||
{
|
||||
"Actions": "Actions",
|
||||
"Details": "Details",
|
||||
"If you did not request a password reset, no further action is required.": "If you did not request a password reset, no further action is required.",
|
||||
"Reset Password": "Reset Password",
|
||||
"Sorry! You are not authorized to perform this action.": "Sorry! You are not authorized to perform this action.",
|
||||
"You are receiving this email because we received a password reset request for your account.": "You are receiving this email because we received a password reset request for your account.",
|
||||
"Error": "Error",
|
||||
"Confirm Password": "Confirm Password",
|
||||
"We have emailed your password reset link!": "We have emailed your password reset link!",
|
||||
"Dashboard": "Dashboard",
|
||||
"Email Address": "Email Address",
|
||||
"Forgot Password": "Forgot Password",
|
||||
"Forgot your password?": "Forgot your password?",
|
||||
"Log In": "Log In",
|
||||
"Logout": "Logout",
|
||||
"Password": "Password",
|
||||
"Remember me": "Remember me",
|
||||
"Resources": "Resources",
|
||||
"Send Password Reset Link": "Send Password Reset Link",
|
||||
"Welcome Back!": "Welcome Back!",
|
||||
"Delete Resource": "Delete Resource",
|
||||
"Delete": "Delete",
|
||||
"Soft Deleted": "Soft Deleted",
|
||||
"Detach Resource": "Detach Resource",
|
||||
"Detach": "Detach",
|
||||
"Detach Selected": "Detach Selected",
|
||||
"Delete Selected": "Delete Selected",
|
||||
"Force Delete Selected": "Force Delete Selected",
|
||||
"Restore Selected": "Restore Selected",
|
||||
"Restore Resource": "Restore Resource",
|
||||
"Restore": "Restore",
|
||||
"Force Delete Resource": "Force Delete Resource",
|
||||
"Force Delete": "Force Delete",
|
||||
"Are you sure you want to delete this resource?": "Are you sure you want to delete this resource?",
|
||||
"Are you sure you want to delete the selected resources?": "Are you sure you want to delete the selected resources?",
|
||||
"Are you sure you want to detach this resource?": "Are you sure you want to detach this resource?",
|
||||
"Are you sure you want to detach the selected resources?": "Are you sure you want to detach the selected resources?",
|
||||
"Are you sure you want to force delete this resource?": "Are you sure you want to force delete this resource?",
|
||||
"Are you sure you want to force delete the selected resources?": "Are you sure you want to force delete the selected resources?",
|
||||
"Are you sure you want to restore this resource?": "Are you sure you want to restore this resource?",
|
||||
"Are you sure you want to restore the selected resources?": "Are you sure you want to restore the selected resources?",
|
||||
"Are you sure you want to remove this item?": "Are you sure you want to remove this item?",
|
||||
"No :resource matched the given criteria.": "No :resource matched the given criteria.",
|
||||
"Failed to load :resource!": "Failed to load :resource!",
|
||||
"Another user has updated this resource since this page was loaded. Please refresh the page and try again.": "Another user has updated this resource since this page was loaded. Please refresh the page and try again.",
|
||||
"Are you sure you want to delete this file?": "Are you sure you want to delete this file?",
|
||||
"Are you sure you want to run this action?": "Are you sure you want to run this action?",
|
||||
"Attach": "Attach",
|
||||
"Attach & Attach Another": "Attach & Attach Another",
|
||||
"Close": "Close",
|
||||
"Cancel": "Cancel",
|
||||
"Choose": "Choose",
|
||||
"Choose File": "Choose File",
|
||||
"Choose Files": "Choose Files",
|
||||
"Drop file or click to choose": "Drop file or click to choose",
|
||||
"Drop files or click to choose": "Drop files or click to choose",
|
||||
"Choose Type": "Choose Type",
|
||||
"Choose an option": "Choose an option",
|
||||
"Click to choose": "Click to choose",
|
||||
"Reset Filters": "Reset Filters",
|
||||
"Create": "Create",
|
||||
"Create & Add Another": "Create & Add Another",
|
||||
"Delete File": "Delete File",
|
||||
"Edit": "Edit",
|
||||
"Edit Attached": "Edit Attached",
|
||||
"Go Home": "Go Home",
|
||||
"Hold Up!": "Hold Up!",
|
||||
"Lens": "Lens",
|
||||
"New": "New",
|
||||
"Next": "Next",
|
||||
"Only Trashed": "Only Trashed",
|
||||
"Per Page": "Per Page",
|
||||
"Preview": "Preview",
|
||||
"Previous": "Previous",
|
||||
"No Data": "No Data",
|
||||
"No Current Data": "No Current Data",
|
||||
"No Prior Data": "No Prior Data",
|
||||
"No Increase": "No Increase",
|
||||
"No Results Found.": "No Results Found.",
|
||||
"Standalone Actions": "Standalone Actions",
|
||||
"Run Action": "Run Action",
|
||||
"Select Action": "Select Action",
|
||||
"Search": "Search",
|
||||
"Press / to search": "Press / to search",
|
||||
"Select All Dropdown": "Select All Dropdown",
|
||||
"Select all": "Select all",
|
||||
"Select this page": "Select this page",
|
||||
"Something went wrong.": "Something went wrong.",
|
||||
"The action was executed successfully.": "The action was executed successfully.",
|
||||
"The government won't let us show you what's behind these doors": "The government won't let us show you what's behind these doors",
|
||||
"Update": "Update",
|
||||
"Update & Continue Editing": "Update & Continue Editing",
|
||||
"View": "View",
|
||||
"We're lost in space. The page you were trying to view does not exist.": "We're lost in space. The page you were trying to view does not exist.",
|
||||
"Show Content": "Show Content",
|
||||
"Hide Content": "Hide Content",
|
||||
"Whoops": "Whoops",
|
||||
"Whoops!": "Whoops!",
|
||||
"With Trashed": "With Trashed",
|
||||
"Trashed": "Trashed",
|
||||
"Write": "Write",
|
||||
"total": "total",
|
||||
"January": "January",
|
||||
"February": "February",
|
||||
"March": "March",
|
||||
"April": "April",
|
||||
"May": "May",
|
||||
"June": "June",
|
||||
"July": "July",
|
||||
"August": "August",
|
||||
"September": "September",
|
||||
"October": "October",
|
||||
"November": "November",
|
||||
"December": "December",
|
||||
"Afghanistan": "Afghanistan",
|
||||
"Aland Islands": "Åland Islands",
|
||||
"Albania": "Albania",
|
||||
"Algeria": "Algeria",
|
||||
"American Samoa": "American Samoa",
|
||||
"Andorra": "Andorra",
|
||||
"Angola": "Angola",
|
||||
"Anguilla": "Anguilla",
|
||||
"Antarctica": "Antarctica",
|
||||
"Antigua And Barbuda": "Antigua and Barbuda",
|
||||
"Argentina": "Argentina",
|
||||
"Armenia": "Armenia",
|
||||
"Aruba": "Aruba",
|
||||
"Australia": "Australia",
|
||||
"Austria": "Austria",
|
||||
"Azerbaijan": "Azerbaijan",
|
||||
"Bahamas": "Bahamas",
|
||||
"Bahrain": "Bahrain",
|
||||
"Bangladesh": "Bangladesh",
|
||||
"Barbados": "Barbados",
|
||||
"Belarus": "Belarus",
|
||||
"Belgium": "Belgium",
|
||||
"Belize": "Belize",
|
||||
"Benin": "Benin",
|
||||
"Bermuda": "Bermuda",
|
||||
"Bhutan": "Bhutan",
|
||||
"Bolivia": "Bolivia",
|
||||
"Bonaire, Sint Eustatius and Saba": "Bonaire, Sint Eustatius and Saba",
|
||||
"Bosnia And Herzegovina": "Bosnia and Herzegovina",
|
||||
"Botswana": "Botswana",
|
||||
"Bouvet Island": "Bouvet Island",
|
||||
"Brazil": "Brazil",
|
||||
"British Indian Ocean Territory": "British Indian Ocean Territory",
|
||||
"Brunei Darussalam": "Brunei",
|
||||
"Bulgaria": "Bulgaria",
|
||||
"Burkina Faso": "Burkina Faso",
|
||||
"Burundi": "Burundi",
|
||||
"Cambodia": "Cambodia",
|
||||
"Cameroon": "Cameroon",
|
||||
"Canada": "Canada",
|
||||
"Cape Verde": "Cape Verde",
|
||||
"Cayman Islands": "Cayman Islands",
|
||||
"Central African Republic": "Central African Republic",
|
||||
"Chad": "Chad",
|
||||
"Chile": "Chile",
|
||||
"China": "China",
|
||||
"Christmas Island": "Christmas Island",
|
||||
"Cocos (Keeling) Islands": "Cocos (Keeling) Islands",
|
||||
"Colombia": "Colombia",
|
||||
"Comoros": "Comoros",
|
||||
"Congo": "Congo",
|
||||
"Congo, Democratic Republic": "Congo, Democratic Republic",
|
||||
"Cook Islands": "Cook Islands",
|
||||
"Costa Rica": "Costa Rica",
|
||||
"Cote D'Ivoire": "Côte d'Ivoire",
|
||||
"Croatia": "Croatia",
|
||||
"Cuba": "Cuba",
|
||||
"Curaçao": "Curaçao",
|
||||
"Cyprus": "Cyprus",
|
||||
"Czech Republic": "Czechia",
|
||||
"Denmark": "Denmark",
|
||||
"Djibouti": "Djibouti",
|
||||
"Dominica": "Dominica",
|
||||
"Dominican Republic": "Dominican Republic",
|
||||
"Ecuador": "Ecuador",
|
||||
"Egypt": "Egypt",
|
||||
"El Salvador": "El Salvador",
|
||||
"Equatorial Guinea": "Equatorial Guinea",
|
||||
"Eritrea": "Eritrea",
|
||||
"Estonia": "Estonia",
|
||||
"Ethiopia": "Ethiopia",
|
||||
"Falkland Islands (Malvinas)": "Falkland Islands (Malvinas)",
|
||||
"Faroe Islands": "Faroe Islands",
|
||||
"Fiji": "Fiji",
|
||||
"Finland": "Finland",
|
||||
"France": "France",
|
||||
"French Guiana": "French Guiana",
|
||||
"French Polynesia": "French Polynesia",
|
||||
"French Southern Territories": "French Southern Territories",
|
||||
"Gabon": "Gabon",
|
||||
"Gambia": "Gambia",
|
||||
"Georgia": "Georgia",
|
||||
"Germany": "Germany",
|
||||
"Ghana": "Ghana",
|
||||
"Gibraltar": "Gibraltar",
|
||||
"Greece": "Greece",
|
||||
"Greenland": "Greenland",
|
||||
"Grenada": "Grenada",
|
||||
"Guadeloupe": "Guadeloupe",
|
||||
"Guam": "Guam",
|
||||
"Guatemala": "Guatemala",
|
||||
"Guernsey": "Guernsey",
|
||||
"Guinea": "Guinea",
|
||||
"Guinea-Bissau": "Guinea-Bissau",
|
||||
"Guyana": "Guyana",
|
||||
"Haiti": "Haiti",
|
||||
"Heard Island & Mcdonald Islands": "Heard Island and McDonald Islands",
|
||||
"Holy See (Vatican City State)": "Vatican City",
|
||||
"Honduras": "Honduras",
|
||||
"Hong Kong": "Hong Kong",
|
||||
"Hungary": "Hungary",
|
||||
"Iceland": "Iceland",
|
||||
"India": "India",
|
||||
"Indonesia": "Indonesia",
|
||||
"Iran, Islamic Republic Of": "Iran",
|
||||
"Iraq": "Iraq",
|
||||
"Ireland": "Ireland",
|
||||
"Isle Of Man": "Isle of Man",
|
||||
"Israel": "Israel",
|
||||
"Italy": "Italy",
|
||||
"Jamaica": "Jamaica",
|
||||
"Japan": "Japan",
|
||||
"Jersey": "Jersey",
|
||||
"Jordan": "Jordan",
|
||||
"Kazakhstan": "Kazakhstan",
|
||||
"Kenya": "Kenya",
|
||||
"Kiribati": "Kiribati",
|
||||
"Korea, Democratic People's Republic of": "North Korea",
|
||||
"Korea": "South Korea",
|
||||
"Kosovo": "Kosovo",
|
||||
"Kuwait": "Kuwait",
|
||||
"Kyrgyzstan": "Kyrgyzstan",
|
||||
"Lao People's Democratic Republic": "Laos",
|
||||
"Latvia": "Latvia",
|
||||
"Lebanon": "Lebanon",
|
||||
"Lesotho": "Lesotho",
|
||||
"Liberia": "Liberia",
|
||||
"Libyan Arab Jamahiriya": "Libya",
|
||||
"Liechtenstein": "Liechtenstein",
|
||||
"Lithuania": "Lithuania",
|
||||
"Luxembourg": "Luxembourg",
|
||||
"Macao": "Macao",
|
||||
"Macedonia": "North Macedonia",
|
||||
"Madagascar": "Madagascar",
|
||||
"Malawi": "Malawi",
|
||||
"Malaysia": "Malaysia",
|
||||
"Maldives": "Maldives",
|
||||
"Mali": "Mali",
|
||||
"Malta": "Malta",
|
||||
"Marshall Islands": "Marshall Islands",
|
||||
"Martinique": "Martinique",
|
||||
"Mauritania": "Mauritania",
|
||||
"Mauritius": "Mauritius",
|
||||
"Mayotte": "Mayotte",
|
||||
"Mexico": "Mexico",
|
||||
"Micronesia, Federated States Of": "Micronesia",
|
||||
"Moldova": "Moldova",
|
||||
"Monaco": "Monaco",
|
||||
"Mongolia": "Mongolia",
|
||||
"Montenegro": "Montenegro",
|
||||
"Montserrat": "Montserrat",
|
||||
"Morocco": "Morocco",
|
||||
"Mozambique": "Mozambique",
|
||||
"Myanmar": "Myanmar",
|
||||
"Namibia": "Namibia",
|
||||
"Nauru": "Nauru",
|
||||
"Nepal": "Nepal",
|
||||
"Netherlands": "Netherlands",
|
||||
"New Caledonia": "New Caledonia",
|
||||
"New Zealand": "New Zealand",
|
||||
"Nicaragua": "Nicaragua",
|
||||
"Niger": "Niger",
|
||||
"Nigeria": "Nigeria",
|
||||
"Niue": "Niue",
|
||||
"Norfolk Island": "Norfolk Island",
|
||||
"Northern Mariana Islands": "Northern Mariana Islands",
|
||||
"Norway": "Norway",
|
||||
"Oman": "Oman",
|
||||
"Pakistan": "Pakistan",
|
||||
"Palau": "Palau",
|
||||
"Palestinian Territory, Occupied": "Palestinian Territories",
|
||||
"Panama": "Panama",
|
||||
"Papua New Guinea": "Papua New Guinea",
|
||||
"Paraguay": "Paraguay",
|
||||
"Peru": "Peru",
|
||||
"Philippines": "Philippines",
|
||||
"Pitcairn": "Pitcairn Islands",
|
||||
"Poland": "Poland",
|
||||
"Portugal": "Portugal",
|
||||
"Puerto Rico": "Puerto Rico",
|
||||
"Qatar": "Qatar",
|
||||
"Reunion": "Réunion",
|
||||
"Romania": "Romania",
|
||||
"Russian Federation": "Russia",
|
||||
"Rwanda": "Rwanda",
|
||||
"Saint Barthelemy": "St. Barthélemy",
|
||||
"Saint Helena": "St. Helena",
|
||||
"Saint Kitts And Nevis": "St. Kitts and Nevis",
|
||||
"Saint Lucia": "St. Lucia",
|
||||
"Saint Martin": "St. Martin",
|
||||
"Saint Pierre And Miquelon": "St. Pierre and Miquelon",
|
||||
"Saint Vincent And Grenadines": "St. Vincent and Grenadines",
|
||||
"Samoa": "Samoa",
|
||||
"San Marino": "San Marino",
|
||||
"Sao Tome And Principe": "São Tomé and Príncipe",
|
||||
"Saudi Arabia": "Saudi Arabia",
|
||||
"Senegal": "Senegal",
|
||||
"Serbia": "Serbia",
|
||||
"Seychelles": "Seychelles",
|
||||
"Sierra Leone": "Sierra Leone",
|
||||
"Singapore": "Singapore",
|
||||
"Sint Maarten (Dutch part)": "Sint Maarten",
|
||||
"Slovakia": "Slovakia",
|
||||
"Slovenia": "Slovenia",
|
||||
"Solomon Islands": "Solomon Islands",
|
||||
"Somalia": "Somalia",
|
||||
"South Africa": "South Africa",
|
||||
"South Georgia And Sandwich Isl.": "South Georgia and South Sandwich Islands",
|
||||
"South Sudan": "South Sudan",
|
||||
"Spain": "Spain",
|
||||
"Sri Lanka": "Sri Lanka",
|
||||
"Sudan": "Sudan",
|
||||
"Suriname": "Suriname",
|
||||
"Svalbard And Jan Mayen": "Svalbard and Jan Mayen",
|
||||
"Swaziland": "Eswatini",
|
||||
"Sweden": "Sweden",
|
||||
"Switzerland": "Switzerland",
|
||||
"Syrian Arab Republic": "Syria",
|
||||
"Taiwan": "Taiwan",
|
||||
"Tajikistan": "Tajikistan",
|
||||
"Tanzania": "Tanzania",
|
||||
"Thailand": "Thailand",
|
||||
"Timor-Leste": "Timor-Leste",
|
||||
"Togo": "Togo",
|
||||
"Tokelau": "Tokelau",
|
||||
"Tonga": "Tonga",
|
||||
"Trinidad And Tobago": "Trinidad and Tobago",
|
||||
"Tunisia": "Tunisia",
|
||||
"Turkey": "Türkiye",
|
||||
"Turkmenistan": "Turkmenistan",
|
||||
"Turks And Caicos Islands": "Turks and Caicos Islands",
|
||||
"Tuvalu": "Tuvalu",
|
||||
"Uganda": "Uganda",
|
||||
"Ukraine": "Ukraine",
|
||||
"United Arab Emirates": "United Arab Emirates",
|
||||
"United Kingdom": "United Kingdom",
|
||||
"United States": "United States",
|
||||
"United States Outlying Islands": "U.S. Outlying Islands",
|
||||
"Uruguay": "Uruguay",
|
||||
"Uzbekistan": "Uzbekistan",
|
||||
"Vanuatu": "Vanuatu",
|
||||
"Venezuela": "Venezuela",
|
||||
"Viet Nam": "Vietnam",
|
||||
"Virgin Islands, British": "British Virgin Islands",
|
||||
"Virgin Islands, U.S.": "U.S. Virgin Islands",
|
||||
"Wallis And Futuna": "Wallis and Futuna",
|
||||
"Western Sahara": "Western Sahara",
|
||||
"Yemen": "Yemen",
|
||||
"Zambia": "Zambia",
|
||||
"Zimbabwe": "Zimbabwe",
|
||||
"Yes": "Yes",
|
||||
"No": "No",
|
||||
"Action Name": "Name",
|
||||
"Action Initiated By": "Initiated By",
|
||||
"Action Target": "Target",
|
||||
"Action Status": "Status",
|
||||
"Action Happened At": "Happened At",
|
||||
"resource": "resource",
|
||||
"resources": "resources",
|
||||
"Choose date": "Choose date",
|
||||
"The :resource was created!": "The :resource was created!",
|
||||
"The resource was attached!": "The resource was attached!",
|
||||
"The :resource was updated!": "The :resource was updated!",
|
||||
"The resource was updated!": "The resource was updated!",
|
||||
"The :resource was deleted!": "The :resource was deleted!",
|
||||
"The :resource was restored!": "The :resource was restored!",
|
||||
"Increase": "Increase",
|
||||
"Constant": "Constant",
|
||||
"Decrease": "Decrease",
|
||||
"Reset Password Notification": "Reset Password Notification",
|
||||
"Nova User": "Nova User",
|
||||
"of": "of",
|
||||
"no file selected": "no file selected",
|
||||
"Sorry, your session has expired.": "Sorry, your session has expired.",
|
||||
"Reload": "Reload",
|
||||
"Key": "Key",
|
||||
"Value": "Value",
|
||||
"Add row": "Add row",
|
||||
"Attach :resource": "Attach :resource",
|
||||
"Create :resource": "Create :resource",
|
||||
"Choose :resource": "Choose :resource",
|
||||
"New :resource": "New :resource",
|
||||
"Edit :resource": "Edit :resource",
|
||||
"Update :resource": "Update :resource",
|
||||
"Add :resource": "Add :resource",
|
||||
"Start Polling": "Start Polling",
|
||||
"Stop Polling": "Stop Polling",
|
||||
"Choose :field": "Choose :field",
|
||||
"Download": "Download",
|
||||
"Action": "Action",
|
||||
"Changes": "Changes",
|
||||
"Original": "Original",
|
||||
"This resource no longer exists": "This resource no longer exists",
|
||||
"The resource was prevented from being saved!": "The resource was prevented from being saved!",
|
||||
":resource Details": ":resource Details",
|
||||
"There are no available options for this resource.": "There are no available options for this resource.",
|
||||
"All resources loaded.": "All resources loaded.",
|
||||
"Load :perPage More": "Load :perPage More",
|
||||
":amount selected": ":amount selected",
|
||||
":amount Total": ":amount Total",
|
||||
"Show All Fields": "Show All Fields",
|
||||
"There was a problem submitting the form.": "There was a problem submitting the form.",
|
||||
"There was a problem executing the action.": "There was a problem executing the action.",
|
||||
"There was a problem fetching the resource.": "There was a problem fetching the resource.",
|
||||
"Do you really want to leave? You have unsaved changes.": "Do you really want to leave? You have unsaved changes.",
|
||||
"*": "*",
|
||||
"—": "—",
|
||||
"The file was deleted!": "The file was deleted!",
|
||||
"This file field is read-only.": "This file field is read-only.",
|
||||
"No additional information...": "No additional information...",
|
||||
"ID": "ID",
|
||||
"30 Days": "30 Days",
|
||||
"60 Days": "60 Days",
|
||||
"90 Days": "90 Days",
|
||||
"Today": "Today",
|
||||
"Month To Date": "Month To Date",
|
||||
"Quarter To Date": "Quarter To Date",
|
||||
"Year To Date": "Year To Date",
|
||||
"Customize": "Customize",
|
||||
"Update :resource: :title": "Update :resource: :title",
|
||||
"Update attached :resource: :title": "Update attached :resource: :title",
|
||||
":resource Details: :title": ":resource Details: :title",
|
||||
"The HasOne relationship has already been filled.": "The HasOne relationship has already been filled.",
|
||||
"An error occurred while uploading the file.": "An error occurred while uploading the file.",
|
||||
"An error occurred while uploading the file: :error": "An error occurred while uploading the file: :error",
|
||||
"Previewing": "Previewing",
|
||||
"Replicate": "Replicate",
|
||||
"Are you sure you want to log out?": "Are you sure you want to log out?",
|
||||
"There are no new notifications.": "There are no new notifications.",
|
||||
"Resource Row Dropdown": "Resource Row Dropdown",
|
||||
"This copy of Nova is unlicensed.": "This copy of Nova is unlicensed.",
|
||||
"Impersonate": "Impersonate",
|
||||
"Stop Impersonating": "Stop Impersonating",
|
||||
"Are you sure you want to stop impersonating?": "Are you sure you want to stop impersonating?",
|
||||
"Light": "Light",
|
||||
"Dark": "Dark",
|
||||
"System": "System",
|
||||
"From": "From",
|
||||
"To": "To",
|
||||
"There are no fields to display.": "There are no fields to display.",
|
||||
"Notifications": "Notifications",
|
||||
"Mark all as Read": "Mark all as read",
|
||||
"Delete all notifications": "Delete all notifications",
|
||||
"Are you sure you want to delete all the notifications?" : "Are you sure you want to delete all the notifications?",
|
||||
"Mark Read": "Mark Read",
|
||||
"Copy to clipboard": "Copy to clipboard",
|
||||
"Are you sure you want to delete this notification?": "Are you sure you want to delete this notification?",
|
||||
"The image could not be loaded": "The image could not be loaded",
|
||||
"Filename": "Filename",
|
||||
"Type": "Type",
|
||||
"CSV (.csv)": "CSV (.csv)",
|
||||
"Excel (.xlsx)": "Excel (.xlsx)",
|
||||
"Attach files by dragging & dropping, selecting or pasting them.": "Attach files by dragging & dropping, selecting or pasting them.",
|
||||
"Uploading files... (:current/:total)": "Uploading files... (:current/:total)",
|
||||
"Remove": "Remove",
|
||||
"Uploading": "Uploading",
|
||||
"The image could not be loaded.": "The image could not be loaded."
|
||||
}
|
||||
"*": "*",
|
||||
"30 Days": "30 дней",
|
||||
"60 Days": "60 дней",
|
||||
"90 Days": "90 дней",
|
||||
":amount selected": "Выбрано :amount",
|
||||
":amount Total": "Всего :amount",
|
||||
":resource Details": "Детали ресурса :resource",
|
||||
":resource Details: :title": "Детали :resource: :title",
|
||||
"Action": "Действие",
|
||||
"Action Happened At": "Произошло в",
|
||||
"Action Initiated By": "Инициировано",
|
||||
"Action Name": "Имя",
|
||||
"Action Status": "Статус",
|
||||
"Action Target": "Цель",
|
||||
"Actions": "Действия",
|
||||
"Add :resource": "Добавить :resource",
|
||||
"Add row": "Добавить строку",
|
||||
"Afghanistan": "Афганистан",
|
||||
"Aland Islands": "Аландские острова",
|
||||
"Albania": "Албания",
|
||||
"Algeria": "Алжир",
|
||||
"All resources loaded.": "Все ресурсы загружены.",
|
||||
"American Samoa": "Американское Самоа",
|
||||
"An error occurred while uploading the file.": "Произошла ошибка при загрузке файла.",
|
||||
"An error occurred while uploading the file: :error": "Произошла ошибка при загрузке файла: :error",
|
||||
"Andorra": "Андорра",
|
||||
"Angola": "Ангола",
|
||||
"Anguilla": "Ангилья",
|
||||
"Another user has updated this resource since this page was loaded. Please refresh the page and try again.": "С момента загрузки страницы ресурс был обновлён другим пользователем. Пожалуйста, обновите страницу и попробуйте ещё раз.",
|
||||
"Antarctica": "Антарктида",
|
||||
"Antigua And Barbuda": "Антигуа и Барбуда",
|
||||
"April": "Апрель",
|
||||
"Are you sure you want to delete all the notifications?": "Вы уверены, что хотите удалить все уведомления?",
|
||||
"Are you sure you want to delete the selected resources?": "Вы уверены что хотите удалить выбранные ресурсы?",
|
||||
"Are you sure you want to delete this file?": "Вы уверены что хотите удалить этот файл?",
|
||||
"Are you sure you want to delete this notification?": "Вы уверены что хотите удалить это уведомление?",
|
||||
"Are you sure you want to delete this resource?": "Вы уверены что хотите удалить этот ресурс?",
|
||||
"Are you sure you want to detach the selected resources?": "Вы уверены что хотите открепить выбранные ресурсы?",
|
||||
"Are you sure you want to detach this resource?": "Вы уверены что хотите открепить этот ресурс?",
|
||||
"Are you sure you want to force delete the selected resources?": "Вы уверены что хотите навсегда удалить выбранные ресурсы?",
|
||||
"Are you sure you want to force delete this resource?": "Вы уверены что хотите навсегда удалить этот ресурс?",
|
||||
"Are you sure you want to log out?": "Вы точно хотите выйти?",
|
||||
"Are you sure you want to remove this item?": "Вы точно хотите удалить этот элемент?",
|
||||
"Are you sure you want to restore the selected resources?": "Вы уверены что хотите восстановить выбранные ресурсы?",
|
||||
"Are you sure you want to restore this resource?": "Вы уверены что хотите восстановить этот ресурс?",
|
||||
"Are you sure you want to run this action?": "Вы уверены что хотите выполнить это действие?",
|
||||
"Are you sure you want to stop impersonating?": "Вы уверены что хотите прекратить действия от имени другого пользователя?",
|
||||
"Argentina": "Аргентина",
|
||||
"Armenia": "Армения",
|
||||
"Aruba": "Аруба",
|
||||
"Attach": "Прикрепить",
|
||||
"Attach & Attach Another": "Прикрепить и прикрепить другой",
|
||||
"Attach :resource": "Прикрепить :resource",
|
||||
"Attach files by dragging & dropping, selecting or pasting them.": "Прикрепить файлы перетаскиванием, выбором или копипастом.",
|
||||
"August": "Август",
|
||||
"Australia": "Австралия",
|
||||
"Austria": "Австрия",
|
||||
"Azerbaijan": "Азербайджан",
|
||||
"Bahamas": "Багамы",
|
||||
"Bahrain": "Бахрейн",
|
||||
"Bangladesh": "Бангладеш",
|
||||
"Barbados": "Барбадос",
|
||||
"Belarus": "Беларусь",
|
||||
"Belgium": "Бельгия",
|
||||
"Belize": "Белиз",
|
||||
"Benin": "Бенин",
|
||||
"Bermuda": "Бермудские острова",
|
||||
"Bhutan": "Бутан",
|
||||
"Bolivia": "Боливия",
|
||||
"Bonaire, Sint Eustatius and Saba": "Бонэйр, Синт-Эстатиус и Саба",
|
||||
"Bosnia And Herzegovina": "Босния и Герцеговина",
|
||||
"Botswana": "Ботсвана",
|
||||
"Bouvet Island": "Остров Буве",
|
||||
"Brazil": "Бразилия",
|
||||
"British Indian Ocean Territory": "Британская территория в Индийском океане",
|
||||
"Brunei Darussalam": "Бруней-Даруссалам",
|
||||
"Bulgaria": "Болгария",
|
||||
"Burkina Faso": "Буркина-Фасо",
|
||||
"Burundi": "Бурунди",
|
||||
"Cambodia": "Камбоджа",
|
||||
"Cameroon": "Камерун",
|
||||
"Canada": "Канада",
|
||||
"Cancel": "Отмена",
|
||||
"Cape Verde": "Кабо-Верде",
|
||||
"Cayman Islands": "Острова Кайман",
|
||||
"Central African Republic": "Центрально-Африканская Республика",
|
||||
"Chad": "Чад",
|
||||
"Changes": "Изменения",
|
||||
"Chile": "Чили",
|
||||
"China": "Китай",
|
||||
"Choose": "Выбрать",
|
||||
"Choose :field": "Выберите :field",
|
||||
"Choose :resource": "Выберите :resource",
|
||||
"Choose an option": "Выбрать вариант",
|
||||
"Choose date": "Выбрать дату",
|
||||
"Choose File": "Выбрать файл",
|
||||
"Choose Files": "Выбрать файлы",
|
||||
"Choose Type": "Выбрать тип",
|
||||
"Christmas Island": "Остров Рождества",
|
||||
"Click to choose": "Нажмите, чтобы выбрать",
|
||||
"Close": "Закрыть",
|
||||
"Cocos (Keeling) Islands": "Кокосовые (Килинг) острова",
|
||||
"Colombia": "Колумбия",
|
||||
"Comoros": "Коморские острова",
|
||||
"Confirm Password": "Подтвердить пароль",
|
||||
"Congo": "Конго",
|
||||
"Congo, Democratic Republic": "Конго, Демократическая Республика",
|
||||
"Constant": "Оставить как есть",
|
||||
"Cook Islands": "Острова Кука",
|
||||
"Copy to clipboard": "Скопировать в буфер обмена",
|
||||
"Costa Rica": "Коста-Рика",
|
||||
"Cote D'Ivoire": "Кот-д'Ивуар",
|
||||
"Create": "Создать",
|
||||
"Create & Add Another": "Создать и добавить другой",
|
||||
"Create :resource": "Создать :resource",
|
||||
"Croatia": "Хорватия",
|
||||
"CSV (.csv)": "CSV (.csv)",
|
||||
"Cuba": "Куба",
|
||||
"Curaçao": "Кюрасао",
|
||||
"Customize": "Настроить",
|
||||
"Cyprus": "Кипр",
|
||||
"Czech Republic": "Чехия",
|
||||
"Dark": "Тёмная",
|
||||
"Dashboard": "Панель",
|
||||
"December": "Декабрь",
|
||||
"Decrease": "Уменьшить",
|
||||
"Delete": "Удалить",
|
||||
"Delete all notifications": "Удалить все уведомления",
|
||||
"Delete File": "Удалить файл",
|
||||
"Delete Resource": "Удалить ресурс",
|
||||
"Delete Selected": "Удалить выбранные",
|
||||
"Denmark": "Дания",
|
||||
"Detach": "Открепить",
|
||||
"Detach Resource": "Открепить ресурс",
|
||||
"Detach Selected": "Открепить выбранные",
|
||||
"Details": "Подробности",
|
||||
"Djibouti": "Джибути",
|
||||
"Do you really want to leave? You have unsaved changes.": "Вы действительно хотите уйти? У Вас есть несохранённые изменения.",
|
||||
"Dominica": "Доминика",
|
||||
"Dominican Republic": "Доминиканская Республика",
|
||||
"Download": "Скачать",
|
||||
"Drop file or click to choose": "Перетащите файл или кликните для выбора",
|
||||
"Drop files or click to choose": "Перетащите файлы или кликните для выбора",
|
||||
"Ecuador": "Эквадор",
|
||||
"Edit": "Редактировать",
|
||||
"Edit :resource": "Редактировать :resource",
|
||||
"Edit Attached": "Редактировать прикреплённый",
|
||||
"Egypt": "Египет",
|
||||
"El Salvador": "Сальвадор",
|
||||
"Email Address": "Адрес электронной почты",
|
||||
"Equatorial Guinea": "Экваториальная Гвинея",
|
||||
"Eritrea": "Эритрея",
|
||||
"Error": "Ошибка",
|
||||
"Estonia": "Эстония",
|
||||
"Ethiopia": "Эфиопия",
|
||||
"Excel (.xlsx)": "Excel (.xlsx)",
|
||||
"Failed to load :resource!": "Не удалось загрузить :resource.",
|
||||
"Falkland Islands (Malvinas)": "Фолклендские (Мальвинские) острова",
|
||||
"Faroe Islands": "Фарерские острова",
|
||||
"February": "Февраль",
|
||||
"Fiji": "Фиджи",
|
||||
"Filename": "Имя файла",
|
||||
"Finland": "Финляндия",
|
||||
"Force Delete": "Принудительно удалить",
|
||||
"Force Delete Resource": "Принудительно удалить ресурс",
|
||||
"Force Delete Selected": "Принудительно удалить выбранные",
|
||||
"Forgot Password": "Забыли пароль",
|
||||
"Forgot your password?": "Забыли пароль?",
|
||||
"France": "Франция",
|
||||
"French Guiana": "Французская Гвиана",
|
||||
"French Polynesia": "Французская Полинезия",
|
||||
"French Southern Territories": "Французские Южные территории",
|
||||
"From": "От кого",
|
||||
"Gabon": "Габон",
|
||||
"Gambia": "Гамбия",
|
||||
"Georgia": "Грузия",
|
||||
"Germany": "Германия",
|
||||
"Ghana": "Гана",
|
||||
"Gibraltar": "Гибралтар",
|
||||
"Go Home": "Домой",
|
||||
"Greece": "Греция",
|
||||
"Greenland": "Гренландия",
|
||||
"Grenada": "Гренада",
|
||||
"Guadeloupe": "Гваделупа",
|
||||
"Guam": "Гуам",
|
||||
"Guatemala": "Гватемала",
|
||||
"Guernsey": "Гернси",
|
||||
"Guinea": "Гвинея",
|
||||
"Guinea-Bissau": "Гвинея-Бисау",
|
||||
"Guyana": "Гайана",
|
||||
"Haiti": "Гаити",
|
||||
"Heard Island & Mcdonald Islands": "Острова Херд и Макдональд",
|
||||
"Hide Content": "Скрыть содержимое",
|
||||
"Hold Up!": "Задержать!",
|
||||
"Holy See (Vatican City State)": "Ватикан",
|
||||
"Honduras": "Гондурас",
|
||||
"Hong Kong": "Гонконг",
|
||||
"Hungary": "Венгрия",
|
||||
"Iceland": "Исландия",
|
||||
"ID": "ID",
|
||||
"If you did not request a password reset, no further action is required.": "Если Вы не запрашивали восстановление пароля, никаких дополнительных действий не требуется.",
|
||||
"Impersonate": "Войти под пользователем",
|
||||
"Increase": "Увеличить",
|
||||
"India": "Индия",
|
||||
"Indonesia": "Индонезия",
|
||||
"Iran, Islamic Republic Of": "Иран",
|
||||
"Iraq": "Ирак",
|
||||
"Ireland": "Ирландия",
|
||||
"Isle Of Man": "Остров Мэн",
|
||||
"Israel": "Израиль",
|
||||
"Italy": "Италия",
|
||||
"Jamaica": "Ямайка",
|
||||
"January": "Январь",
|
||||
"Japan": "Япония",
|
||||
"Jersey": "Джерси",
|
||||
"Jordan": "Иордания",
|
||||
"July": "Июль",
|
||||
"June": "Июнь",
|
||||
"Kazakhstan": "Казахстан",
|
||||
"Kenya": "Кения",
|
||||
"Key": "Ключ",
|
||||
"Kiribati": "Кирибати",
|
||||
"Korea": "Южная Корея",
|
||||
"Korea, Democratic People's Republic of": "Северная Корея",
|
||||
"Kosovo": "Косово",
|
||||
"Kuwait": "Кувейт",
|
||||
"Kyrgyzstan": "Киргизия",
|
||||
"Lao People's Democratic Republic": "Лаос",
|
||||
"Latvia": "Латвия",
|
||||
"Lebanon": "Ливан",
|
||||
"Lens": "Линзы",
|
||||
"Lesotho": "Лесото",
|
||||
"Liberia": "Либерия",
|
||||
"Libyan Arab Jamahiriya": "Ливия",
|
||||
"Liechtenstein": "Лихтенштейн",
|
||||
"Light": "Светлая",
|
||||
"Lithuania": "Литва",
|
||||
"Load :perPage More": "Загрузить ещё :perPage",
|
||||
"Log In": "Войти",
|
||||
"Logout": "Выйти",
|
||||
"Luxembourg": "Люксембург",
|
||||
"Macao": "Макао",
|
||||
"Macedonia": "Северная Македония",
|
||||
"Madagascar": "Мадагаскар",
|
||||
"Malawi": "Малави",
|
||||
"Malaysia": "Малайзия",
|
||||
"Maldives": "Мальдивы",
|
||||
"Mali": "Мали",
|
||||
"Malta": "Мальта",
|
||||
"March": "Март",
|
||||
"Mark all as Read": "Отметить всё прочитанным",
|
||||
"Mark Read": "Отметить прочитанным",
|
||||
"Mark Unread": "Отметить непрочитанным",
|
||||
"Marshall Islands": "Маршалловы острова",
|
||||
"Martinique": "Мартиника",
|
||||
"Mauritania": "Мавритания",
|
||||
"Mauritius": "Маврикий",
|
||||
"May": "Май",
|
||||
"Mayotte": "Майотта",
|
||||
"Mexico": "Мексика",
|
||||
"Micronesia, Federated States Of": "Федеративные Штаты Микронезии",
|
||||
"Moldova": "Молдова",
|
||||
"Monaco": "Монако",
|
||||
"Mongolia": "Монголия",
|
||||
"Montenegro": "Черногория",
|
||||
"Month To Date": "С начала месяца",
|
||||
"Montserrat": "Монтсеррат",
|
||||
"Morocco": "Марокко",
|
||||
"Mozambique": "Мозамбик",
|
||||
"Myanmar": "Мьянма",
|
||||
"Namibia": "Намибия",
|
||||
"Nauru": "Науру",
|
||||
"Nepal": "Непал",
|
||||
"Netherlands": "Нидерланды",
|
||||
"New": "Новый",
|
||||
"New :resource": "Новый :resource",
|
||||
"New Caledonia": "Новая Каледония",
|
||||
"New Zealand": "Новая Зеландия",
|
||||
"Next": "Следующий",
|
||||
"Nicaragua": "Никарагуа",
|
||||
"Niger": "Нигер",
|
||||
"Nigeria": "Нигерия",
|
||||
"Niue": "Ниуэ",
|
||||
"No": "Нет",
|
||||
"No :resource matched the given criteria.": "Ни один :resource не соответствует заданному критерию.",
|
||||
"No additional information...": "Нет дополнительной информации...",
|
||||
"No Current Data": "Нет текущих данных",
|
||||
"No Data": "Нет данных",
|
||||
"no file selected": "файл не выбран",
|
||||
"No Increase": "Нет увеличения",
|
||||
"No Prior Data": "Нет предыдущих данных",
|
||||
"No Results Found.": "Ничего не найдено.",
|
||||
"Norfolk Island": "Остров Норфолк",
|
||||
"Northern Mariana Islands": "Северные Марианские острова",
|
||||
"Norway": "Норвегия",
|
||||
"Notifications": "Уведомления",
|
||||
"Nova User": "Пользователь Nova",
|
||||
"November": "Ноябрь",
|
||||
"October": "Октябрь",
|
||||
"of": "из",
|
||||
"Oman": "Оман",
|
||||
"Only Trashed": "Только удалённые",
|
||||
"Original": "Оригинал",
|
||||
"Pakistan": "Пакистан",
|
||||
"Palau": "Палау",
|
||||
"Palestinian Territory, Occupied": "Палестинские территории",
|
||||
"Panama": "Панама",
|
||||
"Papua New Guinea": "Папуа-Новая Гвинея",
|
||||
"Paraguay": "Парагвай",
|
||||
"Password": "Пароль",
|
||||
"Per Page": "На страницу",
|
||||
"Peru": "Перу",
|
||||
"Philippines": "Филиппины",
|
||||
"Pitcairn": "Питкэрн",
|
||||
"Poland": "Польша",
|
||||
"Portugal": "Португалия",
|
||||
"Press / to search": "Нажмите / для поиска",
|
||||
"Preview": "Предпросмотр",
|
||||
"Previewing": "Предпросмотр",
|
||||
"Previous": "Предыдущий",
|
||||
"Puerto Rico": "Пуэрто-Рико",
|
||||
"Qatar": "Катар",
|
||||
"Quarter To Date": "С начала квартала",
|
||||
"Reload": "Перезагрузить",
|
||||
"Remember me": "Запомнить меня",
|
||||
"Remove": "Удалить",
|
||||
"Replicate": "Клонировать",
|
||||
"Reset Filters": "Сбросить фильтры",
|
||||
"Reset Password": "Сбросить пароль",
|
||||
"Reset Password Notification": "Оповещение о сбросе пароля",
|
||||
"resource": "ресурс",
|
||||
"Resource Row Dropdown": "Раскрывающийся список ресурсов",
|
||||
"Resources": "Ресурсы",
|
||||
"resources": "ресурсы",
|
||||
"Restore": "Восстановить",
|
||||
"Restore Resource": "Восстановить ресурс",
|
||||
"Restore Selected": "Восстановить выбранные",
|
||||
"Reunion": "Реюньон",
|
||||
"Romania": "Румыния",
|
||||
"Run Action": "Выполнить действие",
|
||||
"Russian Federation": "Россия",
|
||||
"Rwanda": "Руанда",
|
||||
"Saint Barthelemy": "Сен-Бартелеми",
|
||||
"Saint Helena": "Остров Святой Елены",
|
||||
"Saint Kitts And Nevis": "Сент-Китс и Невис",
|
||||
"Saint Lucia": "Сент-Люсия",
|
||||
"Saint Martin": "Сен-Мартен",
|
||||
"Saint Pierre And Miquelon": "Сен-Пьер и Микелон",
|
||||
"Saint Vincent And Grenadines": "Сент-Винсент и Гренадины",
|
||||
"Samoa": "Самоа",
|
||||
"San Marino": "Сан-Марино",
|
||||
"Sao Tome And Principe": "Сан-Томе и Принсипи",
|
||||
"Saudi Arabia": "Саудовская Аравия",
|
||||
"Search": "Поиск",
|
||||
"Select Action": "Выбрать действие",
|
||||
"Select all": "Выбрать все",
|
||||
"Select All Dropdown": "Выбрать все выпадающие",
|
||||
"Select this page": "Выбрать эту страницу",
|
||||
"Send Password Reset Link": "Отправить ссылку сброса пароля",
|
||||
"Senegal": "Сенегал",
|
||||
"September": "Сентябрь",
|
||||
"Serbia": "Сербия",
|
||||
"Seychelles": "Сейшельские Острова",
|
||||
"Show All Fields": "Показать все поля",
|
||||
"Show Content": "Показать содержимое",
|
||||
"Sierra Leone": "Сьерра-Леоне",
|
||||
"Singapore": "Сингапур",
|
||||
"Sint Maarten (Dutch part)": "Синт-Мартен (голландская часть)",
|
||||
"Slovakia": "Словакия",
|
||||
"Slovenia": "Словения",
|
||||
"Soft Deleted": "Помечено удалённым",
|
||||
"Solomon Islands": "Соломоновы острова",
|
||||
"Somalia": "Сомали",
|
||||
"Something went wrong.": "Что-то пошло не так.",
|
||||
"Sorry! You are not authorized to perform this action.": "Извините, у Вас не хватает прав для выполнения этого действия.",
|
||||
"Sorry, your session has expired.": "Извините, Ваша сессия просрочена.",
|
||||
"South Africa": "Южная Африка",
|
||||
"South Georgia And Sandwich Isl.": "Южная Георгия и Сандвичевые острова",
|
||||
"South Sudan": "Южный Судан",
|
||||
"Spain": "Испания",
|
||||
"Sri Lanka": "Шри-Ланка",
|
||||
"Standalone Actions": "Автономные действия",
|
||||
"Start Polling": "Начать опрос",
|
||||
"Stop Impersonating": "Прекратить выдавать себя за другого",
|
||||
"Stop Polling": "Остановить опрос",
|
||||
"Sudan": "Судан",
|
||||
"Suriname": "Суринам",
|
||||
"Svalbard And Jan Mayen": "Шпицберген и Ян-Майен",
|
||||
"Swaziland": "Эсватини",
|
||||
"Sweden": "Швеция",
|
||||
"Switzerland": "Швейцария",
|
||||
"Syrian Arab Republic": "Сирия",
|
||||
"System": "Системная",
|
||||
"Taiwan": "Тайвань",
|
||||
"Tajikistan": "Таджикистан",
|
||||
"Tanzania": "Танзания",
|
||||
"Thailand": "Таиланд",
|
||||
"The :resource was created!": "Ресурс :resource создан.",
|
||||
"The :resource was deleted!": "Ресурс :resource удалён.",
|
||||
"The :resource was restored!": "Ресурс :resource восстановлен.",
|
||||
"The :resource was updated!": "Ресурс :resource обновлён.",
|
||||
"The action was executed successfully.": "Действие успешно выполнено.",
|
||||
"The file was deleted!": "Файл удалён.",
|
||||
"The government won't let us show you what's behind these doors": "Правительство не позволит показать Вам то, что расположено за этими дверями.",
|
||||
"The HasOne relationship has already been filled.": "Отношение один к одному уже заполнено.",
|
||||
"The image could not be loaded": "Изображение не может быть загружено",
|
||||
"The image could not be loaded.": "Изображение не может быть загружено.",
|
||||
"The resource was attached!": "Ресурс был прикреплён.",
|
||||
"The resource was prevented from being saved!": "Не удалось сохранить ресурс.",
|
||||
"The resource was updated!": "Ресурс обновлён.",
|
||||
"There are no available options for this resource.": "Нет доступных опций для этого ресурса.",
|
||||
"There are no fields to display.": "Нет полей для отображения.",
|
||||
"There are no new notifications.": "Нет новых уведомлений.",
|
||||
"There was a problem executing the action.": "При выполнении действия возникла проблема.",
|
||||
"There was a problem fetching the resource.": "Возникла проблема с получением ресурса.",
|
||||
"There was a problem submitting the form.": "При отправке формы возникла проблема.",
|
||||
"This copy of Nova is unlicensed.": "Эта копия Nova нелицензионная.",
|
||||
"This file field is read-only.": "Поле файла доступно только для чтения.",
|
||||
"This resource no longer exists": "Ресурс больше не существует",
|
||||
"Timor-Leste": "Тимор-Лешти",
|
||||
"To": "Кому",
|
||||
"Today": "Сегодня",
|
||||
"Togo": "Того",
|
||||
"Tokelau": "Токелау",
|
||||
"Tonga": "Тонга",
|
||||
"total": "всего",
|
||||
"Trashed": "Удалённые",
|
||||
"Trinidad And Tobago": "Тринидад и Тобаго",
|
||||
"Tunisia": "Тунис",
|
||||
"Turkey": "Турция",
|
||||
"Turkmenistan": "Туркменистан",
|
||||
"Turks And Caicos Islands": "Острова Теркс и Кайкос",
|
||||
"Tuvalu": "Тувалу",
|
||||
"Type": "Тип",
|
||||
"Uganda": "Уганда",
|
||||
"Ukraine": "Украина",
|
||||
"United Arab Emirates": "Объединенные Арабские Эмираты",
|
||||
"United Kingdom": "Великобритания",
|
||||
"United States": "Соединенные Штаты",
|
||||
"United States Outlying Islands": "Внешние острова США",
|
||||
"Update": "Обновить",
|
||||
"Update & Continue Editing": "Обновить и продолжить редактирование",
|
||||
"Update :resource": "Обновить :resource",
|
||||
"Update :resource: :title": "Обновление :resource: :title",
|
||||
"Update attached :resource: :title": "Обновление прикреплённого :resource: :title",
|
||||
"Uploading": "Выгрузка",
|
||||
"Uploading files... (:current/:total)": "Выгрузка файлов... (:current/:total)",
|
||||
"Uruguay": "Уругвай",
|
||||
"Uzbekistan": "Узбекистан",
|
||||
"Value": "Значение",
|
||||
"Vanuatu": "Вануату",
|
||||
"Venezuela": "Венесуэла",
|
||||
"Viet Nam": "Вьетнам",
|
||||
"View": "Просмотр",
|
||||
"Virgin Islands, British": "Виргинские острова, Британские",
|
||||
"Virgin Islands, U.S.": "Виргинские острова, США",
|
||||
"Wallis And Futuna": "Уоллис и Футуна",
|
||||
"We have emailed your password reset link!": "Мы отправили ссылку для сброса пароля по электронной почте.",
|
||||
"We're lost in space. The page you were trying to view does not exist.": "Мы потерялись в пространстве. Страница, которую Вы пытаетесь просмотреть, не существует.",
|
||||
"Welcome Back!": "С возвращением!",
|
||||
"Western Sahara": "Западная Сахара",
|
||||
"Whoops": "Упс",
|
||||
"Whoops!": "Упс!",
|
||||
"With Trashed": "С удалёнными",
|
||||
"Write": "Написать",
|
||||
"Year To Date": "С начала года",
|
||||
"Yemen": "Йемен",
|
||||
"Yes": "Да",
|
||||
"You are receiving this email because we received a password reset request for your account.": "Вы получили это письмо, потому что мы получили запрос на сброс пароля для Вашей учётной записи.",
|
||||
"Zambia": "Замбия",
|
||||
"Zimbabwe": "Зимбабве",
|
||||
"—": "—"
|
||||
}
|
||||
8
lang/vendor/nova/ru/validation.php
vendored
Normal file
8
lang/vendor/nova/ru/validation.php
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'attached' => 'Значение поля :attribute уже прикреплено.',
|
||||
'relatable' => 'Значение поля :attribute не может быть связано с этим ресурсом.',
|
||||
];
|
||||
945
lang/vendor/nova/tk.json
vendored
945
lang/vendor/nova/tk.json
vendored
@@ -1,473 +1,474 @@
|
||||
{
|
||||
"Actions": "Actions",
|
||||
"Details": "Details",
|
||||
"If you did not request a password reset, no further action is required.": "If you did not request a password reset, no further action is required.",
|
||||
"Reset Password": "Reset Password",
|
||||
"Sorry! You are not authorized to perform this action.": "Sorry! You are not authorized to perform this action.",
|
||||
"You are receiving this email because we received a password reset request for your account.": "You are receiving this email because we received a password reset request for your account.",
|
||||
"Error": "Error",
|
||||
"Confirm Password": "Confirm Password",
|
||||
"We have emailed your password reset link!": "We have emailed your password reset link!",
|
||||
"Dashboard": "Dashboard",
|
||||
"Email Address": "Email Address",
|
||||
"Forgot Password": "Forgot Password",
|
||||
"Forgot your password?": "Forgot your password?",
|
||||
"Log In": "Log In",
|
||||
"Logout": "Logout",
|
||||
"Password": "Password",
|
||||
"Remember me": "Remember me",
|
||||
"Resources": "Resources",
|
||||
"Send Password Reset Link": "Send Password Reset Link",
|
||||
"Welcome Back!": "Welcome Back!",
|
||||
"Delete Resource": "Delete Resource",
|
||||
"Delete": "Delete",
|
||||
"Soft Deleted": "Soft Deleted",
|
||||
"Detach Resource": "Detach Resource",
|
||||
"Detach": "Detach",
|
||||
"Detach Selected": "Detach Selected",
|
||||
"Delete Selected": "Delete Selected",
|
||||
"Force Delete Selected": "Force Delete Selected",
|
||||
"Restore Selected": "Restore Selected",
|
||||
"Restore Resource": "Restore Resource",
|
||||
"Restore": "Restore",
|
||||
"Force Delete Resource": "Force Delete Resource",
|
||||
"Force Delete": "Force Delete",
|
||||
"Are you sure you want to delete this resource?": "Are you sure you want to delete this resource?",
|
||||
"Are you sure you want to delete the selected resources?": "Are you sure you want to delete the selected resources?",
|
||||
"Are you sure you want to detach this resource?": "Are you sure you want to detach this resource?",
|
||||
"Are you sure you want to detach the selected resources?": "Are you sure you want to detach the selected resources?",
|
||||
"Are you sure you want to force delete this resource?": "Are you sure you want to force delete this resource?",
|
||||
"Are you sure you want to force delete the selected resources?": "Are you sure you want to force delete the selected resources?",
|
||||
"Are you sure you want to restore this resource?": "Are you sure you want to restore this resource?",
|
||||
"Are you sure you want to restore the selected resources?": "Are you sure you want to restore the selected resources?",
|
||||
"Are you sure you want to remove this item?": "Are you sure you want to remove this item?",
|
||||
"No :resource matched the given criteria.": "No :resource matched the given criteria.",
|
||||
"Failed to load :resource!": "Failed to load :resource!",
|
||||
"Another user has updated this resource since this page was loaded. Please refresh the page and try again.": "Another user has updated this resource since this page was loaded. Please refresh the page and try again.",
|
||||
"Are you sure you want to delete this file?": "Are you sure you want to delete this file?",
|
||||
"Are you sure you want to run this action?": "Are you sure you want to run this action?",
|
||||
"Attach": "Attach",
|
||||
"Attach & Attach Another": "Attach & Attach Another",
|
||||
"Close": "Close",
|
||||
"Cancel": "Cancel",
|
||||
"Choose": "Choose",
|
||||
"Choose File": "Choose File",
|
||||
"Choose Files": "Choose Files",
|
||||
"Drop file or click to choose": "Drop file or click to choose",
|
||||
"Drop files or click to choose": "Drop files or click to choose",
|
||||
"Choose Type": "Choose Type",
|
||||
"Choose an option": "Choose an option",
|
||||
"Click to choose": "Click to choose",
|
||||
"Reset Filters": "Reset Filters",
|
||||
"Create": "Goş",
|
||||
"Create & Add Another": "Goş we ýene goş",
|
||||
"Delete File": "Delete File",
|
||||
"Edit": "Edit",
|
||||
"Edit Attached": "Edit Attached",
|
||||
"Go Home": "Go Home",
|
||||
"Hold Up!": "Hold Up!",
|
||||
"Lens": "Lens",
|
||||
"New": "New",
|
||||
"Next": "Next",
|
||||
"Only Trashed": "Only Trashed",
|
||||
"Per Page": "Per Page",
|
||||
"Preview": "Preview",
|
||||
"Previous": "Previous",
|
||||
"No Data": "No Data",
|
||||
"No Current Data": "No Current Data",
|
||||
"No Prior Data": "No Prior Data",
|
||||
"No Increase": "No Increase",
|
||||
"No Results Found.": "No Results Found.",
|
||||
"Standalone Actions": "Standalone Actions",
|
||||
"Run Action": "Run Action",
|
||||
"Select Action": "Select Action",
|
||||
"Search": "Search",
|
||||
"Press / to search": "Press / to search",
|
||||
"Select All Dropdown": "Select All Dropdown",
|
||||
"Select all": "Select all",
|
||||
"Select this page": "Select this page",
|
||||
"Something went wrong.": "Something went wrong.",
|
||||
"The action was executed successfully.": "The action was executed successfully.",
|
||||
"The government won't let us show you what's behind these doors": "The government won't let us show you what's behind these doors",
|
||||
"Update": "Update",
|
||||
"Update & Continue Editing": "Update & Continue Editing",
|
||||
"View": "View",
|
||||
"We're lost in space. The page you were trying to view does not exist.": "We're lost in space. The page you were trying to view does not exist.",
|
||||
"Show Content": "Show Content",
|
||||
"Hide Content": "Hide Content",
|
||||
"Whoops": "Whoops",
|
||||
"Whoops!": "Whoops!",
|
||||
"With Trashed": "With Trashed",
|
||||
"Trashed": "Trashed",
|
||||
"Write": "Write",
|
||||
"total": "total",
|
||||
"January": "January",
|
||||
"February": "February",
|
||||
"March": "March",
|
||||
"April": "April",
|
||||
"May": "May",
|
||||
"June": "June",
|
||||
"July": "July",
|
||||
"August": "August",
|
||||
"September": "September",
|
||||
"October": "October",
|
||||
"November": "November",
|
||||
"December": "December",
|
||||
"Afghanistan": "Afghanistan",
|
||||
"Aland Islands": "Åland Islands",
|
||||
"Albania": "Albania",
|
||||
"Algeria": "Algeria",
|
||||
"American Samoa": "American Samoa",
|
||||
"Andorra": "Andorra",
|
||||
"Angola": "Angola",
|
||||
"Anguilla": "Anguilla",
|
||||
"Antarctica": "Antarctica",
|
||||
"Antigua And Barbuda": "Antigua and Barbuda",
|
||||
"Argentina": "Argentina",
|
||||
"Armenia": "Armenia",
|
||||
"Aruba": "Aruba",
|
||||
"Australia": "Australia",
|
||||
"Austria": "Austria",
|
||||
"Azerbaijan": "Azerbaijan",
|
||||
"Bahamas": "Bahamas",
|
||||
"Bahrain": "Bahrain",
|
||||
"Bangladesh": "Bangladesh",
|
||||
"Barbados": "Barbados",
|
||||
"Belarus": "Belarus",
|
||||
"Belgium": "Belgium",
|
||||
"Belize": "Belize",
|
||||
"Benin": "Benin",
|
||||
"Bermuda": "Bermuda",
|
||||
"Bhutan": "Bhutan",
|
||||
"Bolivia": "Bolivia",
|
||||
"Bonaire, Sint Eustatius and Saba": "Bonaire, Sint Eustatius and Saba",
|
||||
"Bosnia And Herzegovina": "Bosnia and Herzegovina",
|
||||
"Botswana": "Botswana",
|
||||
"Bouvet Island": "Bouvet Island",
|
||||
"Brazil": "Brazil",
|
||||
"British Indian Ocean Territory": "British Indian Ocean Territory",
|
||||
"Brunei Darussalam": "Brunei",
|
||||
"Bulgaria": "Bulgaria",
|
||||
"Burkina Faso": "Burkina Faso",
|
||||
"Burundi": "Burundi",
|
||||
"Cambodia": "Cambodia",
|
||||
"Cameroon": "Cameroon",
|
||||
"Canada": "Canada",
|
||||
"Cape Verde": "Cape Verde",
|
||||
"Cayman Islands": "Cayman Islands",
|
||||
"Central African Republic": "Central African Republic",
|
||||
"Chad": "Chad",
|
||||
"Chile": "Chile",
|
||||
"China": "China",
|
||||
"Christmas Island": "Christmas Island",
|
||||
"Cocos (Keeling) Islands": "Cocos (Keeling) Islands",
|
||||
"Colombia": "Colombia",
|
||||
"Comoros": "Comoros",
|
||||
"Congo": "Congo",
|
||||
"Congo, Democratic Republic": "Congo, Democratic Republic",
|
||||
"Cook Islands": "Cook Islands",
|
||||
"Costa Rica": "Costa Rica",
|
||||
"Cote D'Ivoire": "Côte d'Ivoire",
|
||||
"Croatia": "Croatia",
|
||||
"Cuba": "Cuba",
|
||||
"Curaçao": "Curaçao",
|
||||
"Cyprus": "Cyprus",
|
||||
"Czech Republic": "Czechia",
|
||||
"Denmark": "Denmark",
|
||||
"Djibouti": "Djibouti",
|
||||
"Dominica": "Dominica",
|
||||
"Dominican Republic": "Dominican Republic",
|
||||
"Ecuador": "Ecuador",
|
||||
"Egypt": "Egypt",
|
||||
"El Salvador": "El Salvador",
|
||||
"Equatorial Guinea": "Equatorial Guinea",
|
||||
"Eritrea": "Eritrea",
|
||||
"Estonia": "Estonia",
|
||||
"Ethiopia": "Ethiopia",
|
||||
"Falkland Islands (Malvinas)": "Falkland Islands (Malvinas)",
|
||||
"Faroe Islands": "Faroe Islands",
|
||||
"Fiji": "Fiji",
|
||||
"Finland": "Finland",
|
||||
"France": "France",
|
||||
"French Guiana": "French Guiana",
|
||||
"French Polynesia": "French Polynesia",
|
||||
"French Southern Territories": "French Southern Territories",
|
||||
"Gabon": "Gabon",
|
||||
"Gambia": "Gambia",
|
||||
"Georgia": "Georgia",
|
||||
"Germany": "Germany",
|
||||
"Ghana": "Ghana",
|
||||
"Gibraltar": "Gibraltar",
|
||||
"Greece": "Greece",
|
||||
"Greenland": "Greenland",
|
||||
"Grenada": "Grenada",
|
||||
"Guadeloupe": "Guadeloupe",
|
||||
"Guam": "Guam",
|
||||
"Guatemala": "Guatemala",
|
||||
"Guernsey": "Guernsey",
|
||||
"Guinea": "Guinea",
|
||||
"Guinea-Bissau": "Guinea-Bissau",
|
||||
"Guyana": "Guyana",
|
||||
"Haiti": "Haiti",
|
||||
"Heard Island & Mcdonald Islands": "Heard Island and McDonald Islands",
|
||||
"Holy See (Vatican City State)": "Vatican City",
|
||||
"Honduras": "Honduras",
|
||||
"Hong Kong": "Hong Kong",
|
||||
"Hungary": "Hungary",
|
||||
"Iceland": "Iceland",
|
||||
"India": "India",
|
||||
"Indonesia": "Indonesia",
|
||||
"Iran, Islamic Republic Of": "Iran",
|
||||
"Iraq": "Iraq",
|
||||
"Ireland": "Ireland",
|
||||
"Isle Of Man": "Isle of Man",
|
||||
"Israel": "Israel",
|
||||
"Italy": "Italy",
|
||||
"Jamaica": "Jamaica",
|
||||
"Japan": "Japan",
|
||||
"Jersey": "Jersey",
|
||||
"Jordan": "Jordan",
|
||||
"Kazakhstan": "Kazakhstan",
|
||||
"Kenya": "Kenya",
|
||||
"Kiribati": "Kiribati",
|
||||
"Korea, Democratic People's Republic of": "North Korea",
|
||||
"Korea": "South Korea",
|
||||
"Kosovo": "Kosovo",
|
||||
"Kuwait": "Kuwait",
|
||||
"Kyrgyzstan": "Kyrgyzstan",
|
||||
"Lao People's Democratic Republic": "Laos",
|
||||
"Latvia": "Latvia",
|
||||
"Lebanon": "Lebanon",
|
||||
"Lesotho": "Lesotho",
|
||||
"Liberia": "Liberia",
|
||||
"Libyan Arab Jamahiriya": "Libya",
|
||||
"Liechtenstein": "Liechtenstein",
|
||||
"Lithuania": "Lithuania",
|
||||
"Luxembourg": "Luxembourg",
|
||||
"Macao": "Macao",
|
||||
"Macedonia": "North Macedonia",
|
||||
"Madagascar": "Madagascar",
|
||||
"Malawi": "Malawi",
|
||||
"Malaysia": "Malaysia",
|
||||
"Maldives": "Maldives",
|
||||
"Mali": "Mali",
|
||||
"Malta": "Malta",
|
||||
"Marshall Islands": "Marshall Islands",
|
||||
"Martinique": "Martinique",
|
||||
"Mauritania": "Mauritania",
|
||||
"Mauritius": "Mauritius",
|
||||
"Mayotte": "Mayotte",
|
||||
"Mexico": "Mexico",
|
||||
"Micronesia, Federated States Of": "Micronesia",
|
||||
"Moldova": "Moldova",
|
||||
"Monaco": "Monaco",
|
||||
"Mongolia": "Mongolia",
|
||||
"Montenegro": "Montenegro",
|
||||
"Montserrat": "Montserrat",
|
||||
"Morocco": "Morocco",
|
||||
"Mozambique": "Mozambique",
|
||||
"Myanmar": "Myanmar",
|
||||
"Namibia": "Namibia",
|
||||
"Nauru": "Nauru",
|
||||
"Nepal": "Nepal",
|
||||
"Netherlands": "Netherlands",
|
||||
"New Caledonia": "New Caledonia",
|
||||
"New Zealand": "New Zealand",
|
||||
"Nicaragua": "Nicaragua",
|
||||
"Niger": "Niger",
|
||||
"Nigeria": "Nigeria",
|
||||
"Niue": "Niue",
|
||||
"Norfolk Island": "Norfolk Island",
|
||||
"Northern Mariana Islands": "Northern Mariana Islands",
|
||||
"Norway": "Norway",
|
||||
"Oman": "Oman",
|
||||
"Pakistan": "Pakistan",
|
||||
"Palau": "Palau",
|
||||
"Palestinian Territory, Occupied": "Palestinian Territories",
|
||||
"Panama": "Panama",
|
||||
"Papua New Guinea": "Papua New Guinea",
|
||||
"Paraguay": "Paraguay",
|
||||
"Peru": "Peru",
|
||||
"Philippines": "Philippines",
|
||||
"Pitcairn": "Pitcairn Islands",
|
||||
"Poland": "Poland",
|
||||
"Portugal": "Portugal",
|
||||
"Puerto Rico": "Puerto Rico",
|
||||
"Qatar": "Qatar",
|
||||
"Reunion": "Réunion",
|
||||
"Romania": "Romania",
|
||||
"Russian Federation": "Russia",
|
||||
"Rwanda": "Rwanda",
|
||||
"Saint Barthelemy": "St. Barthélemy",
|
||||
"Saint Helena": "St. Helena",
|
||||
"Saint Kitts And Nevis": "St. Kitts and Nevis",
|
||||
"Saint Lucia": "St. Lucia",
|
||||
"Saint Martin": "St. Martin",
|
||||
"Saint Pierre And Miquelon": "St. Pierre and Miquelon",
|
||||
"Saint Vincent And Grenadines": "St. Vincent and Grenadines",
|
||||
"Samoa": "Samoa",
|
||||
"San Marino": "San Marino",
|
||||
"Sao Tome And Principe": "São Tomé and Príncipe",
|
||||
"Saudi Arabia": "Saudi Arabia",
|
||||
"Senegal": "Senegal",
|
||||
"Serbia": "Serbia",
|
||||
"Seychelles": "Seychelles",
|
||||
"Sierra Leone": "Sierra Leone",
|
||||
"Singapore": "Singapore",
|
||||
"Sint Maarten (Dutch part)": "Sint Maarten",
|
||||
"Slovakia": "Slovakia",
|
||||
"Slovenia": "Slovenia",
|
||||
"Solomon Islands": "Solomon Islands",
|
||||
"Somalia": "Somalia",
|
||||
"South Africa": "South Africa",
|
||||
"South Georgia And Sandwich Isl.": "South Georgia and South Sandwich Islands",
|
||||
"South Sudan": "South Sudan",
|
||||
"Spain": "Spain",
|
||||
"Sri Lanka": "Sri Lanka",
|
||||
"Sudan": "Sudan",
|
||||
"Suriname": "Suriname",
|
||||
"Svalbard And Jan Mayen": "Svalbard and Jan Mayen",
|
||||
"Swaziland": "Eswatini",
|
||||
"Sweden": "Sweden",
|
||||
"Switzerland": "Switzerland",
|
||||
"Syrian Arab Republic": "Syria",
|
||||
"Taiwan": "Taiwan",
|
||||
"Tajikistan": "Tajikistan",
|
||||
"Tanzania": "Tanzania",
|
||||
"Thailand": "Thailand",
|
||||
"Timor-Leste": "Timor-Leste",
|
||||
"Togo": "Togo",
|
||||
"Tokelau": "Tokelau",
|
||||
"Tonga": "Tonga",
|
||||
"Trinidad And Tobago": "Trinidad and Tobago",
|
||||
"Tunisia": "Tunisia",
|
||||
"Turkey": "Türkiye",
|
||||
"Turkmenistan": "Turkmenistan",
|
||||
"Turks And Caicos Islands": "Turks and Caicos Islands",
|
||||
"Tuvalu": "Tuvalu",
|
||||
"Uganda": "Uganda",
|
||||
"Ukraine": "Ukraine",
|
||||
"United Arab Emirates": "United Arab Emirates",
|
||||
"United Kingdom": "United Kingdom",
|
||||
"United States": "United States",
|
||||
"United States Outlying Islands": "U.S. Outlying Islands",
|
||||
"Uruguay": "Uruguay",
|
||||
"Uzbekistan": "Uzbekistan",
|
||||
"Vanuatu": "Vanuatu",
|
||||
"Venezuela": "Venezuela",
|
||||
"Viet Nam": "Vietnam",
|
||||
"Virgin Islands, British": "British Virgin Islands",
|
||||
"Virgin Islands, U.S.": "U.S. Virgin Islands",
|
||||
"Wallis And Futuna": "Wallis and Futuna",
|
||||
"Western Sahara": "Western Sahara",
|
||||
"Yemen": "Yemen",
|
||||
"Zambia": "Zambia",
|
||||
"Zimbabwe": "Zimbabwe",
|
||||
"Yes": "Yes",
|
||||
"No": "No",
|
||||
"Action Name": "Name",
|
||||
"Action Initiated By": "Initiated By",
|
||||
"Action Target": "Target",
|
||||
"Action Status": "Status",
|
||||
"Action Happened At": "Happened At",
|
||||
"resource": "resource",
|
||||
"resources": "resources",
|
||||
"Choose date": "Choose date",
|
||||
"The :resource was created!": "The :resource was created!",
|
||||
"The resource was attached!": "The resource was attached!",
|
||||
"The :resource was updated!": "The :resource was updated!",
|
||||
"The resource was updated!": "The resource was updated!",
|
||||
"The :resource was deleted!": "The :resource was deleted!",
|
||||
"The :resource was restored!": "The :resource was restored!",
|
||||
"Increase": "Increase",
|
||||
"Constant": "Constant",
|
||||
"Decrease": "Decrease",
|
||||
"Reset Password Notification": "Reset Password Notification",
|
||||
"Nova User": "Nova User",
|
||||
"of": "of",
|
||||
"no file selected": "no file selected",
|
||||
"Sorry, your session has expired.": "Sorry, your session has expired.",
|
||||
"Reload": "Reload",
|
||||
"Key": "Key",
|
||||
"Value": "Value",
|
||||
"Add row": "Add row",
|
||||
"Attach :resource": "Attach :resource",
|
||||
"Create :resource": ":resource goş",
|
||||
"Choose :resource": "Choose :resource",
|
||||
"New :resource": "New :resource",
|
||||
"Edit :resource": "Edit :resource",
|
||||
"Update :resource": "Update :resource",
|
||||
"Add :resource": "Add :resource",
|
||||
"Start Polling": "Start Polling",
|
||||
"Stop Polling": "Stop Polling",
|
||||
"Choose :field": "Choose :field",
|
||||
"Download": "Download",
|
||||
"Action": "Action",
|
||||
"Changes": "Changes",
|
||||
"Original": "Original",
|
||||
"This resource no longer exists": "This resource no longer exists",
|
||||
"The resource was prevented from being saved!": "The resource was prevented from being saved!",
|
||||
":resource Details": ":resource Details",
|
||||
"There are no available options for this resource.": "There are no available options for this resource.",
|
||||
"All resources loaded.": "All resources loaded.",
|
||||
"Load :perPage More": "Load :perPage More",
|
||||
":amount selected": ":amount selected",
|
||||
":amount Total": ":amount Total",
|
||||
"Show All Fields": "Show All Fields",
|
||||
"There was a problem submitting the form.": "There was a problem submitting the form.",
|
||||
"There was a problem executing the action.": "There was a problem executing the action.",
|
||||
"There was a problem fetching the resource.": "There was a problem fetching the resource.",
|
||||
"Do you really want to leave? You have unsaved changes.": "Do you really want to leave? You have unsaved changes.",
|
||||
"*": "*",
|
||||
"—": "—",
|
||||
"The file was deleted!": "The file was deleted!",
|
||||
"This file field is read-only.": "This file field is read-only.",
|
||||
"No additional information...": "No additional information...",
|
||||
"ID": "ID",
|
||||
"30 Days": "30 Days",
|
||||
"60 Days": "60 Days",
|
||||
"90 Days": "90 Days",
|
||||
"Today": "Today",
|
||||
"Month To Date": "Month To Date",
|
||||
"Quarter To Date": "Quarter To Date",
|
||||
"Year To Date": "Year To Date",
|
||||
"Customize": "Customize",
|
||||
"Update :resource: :title": "Update :resource: :title",
|
||||
"Update attached :resource: :title": "Update attached :resource: :title",
|
||||
":resource Details: :title": ":resource Details: :title",
|
||||
"The HasOne relationship has already been filled.": "The HasOne relationship has already been filled.",
|
||||
"An error occurred while uploading the file.": "An error occurred while uploading the file.",
|
||||
"An error occurred while uploading the file: :error": "An error occurred while uploading the file: :error",
|
||||
"Previewing": "Previewing",
|
||||
"Replicate": "Replicate",
|
||||
"Are you sure you want to log out?": "Are you sure you want to log out?",
|
||||
"There are no new notifications.": "There are no new notifications.",
|
||||
"Resource Row Dropdown": "Resource Row Dropdown",
|
||||
"This copy of Nova is unlicensed.": "This copy of Nova is unlicensed.",
|
||||
"Impersonate": "Impersonate",
|
||||
"Stop Impersonating": "Stop Impersonating",
|
||||
"Are you sure you want to stop impersonating?": "Are you sure you want to stop impersonating?",
|
||||
"Light": "Light",
|
||||
"Dark": "Dark",
|
||||
"System": "System",
|
||||
"From": "From",
|
||||
"To": "To",
|
||||
"There are no fields to display.": "There are no fields to display.",
|
||||
"Notifications": "Notifications",
|
||||
"Mark all as Read": "Mark all as read",
|
||||
"Delete all notifications": "Delete all notifications",
|
||||
"Are you sure you want to delete all the notifications?" : "Are you sure you want to delete all the notifications?",
|
||||
"Mark Read": "Mark Read",
|
||||
"Copy to clipboard": "Copy to clipboard",
|
||||
"Are you sure you want to delete this notification?": "Are you sure you want to delete this notification?",
|
||||
"The image could not be loaded": "The image could not be loaded",
|
||||
"Filename": "Filename",
|
||||
"Type": "Type",
|
||||
"CSV (.csv)": "CSV (.csv)",
|
||||
"Excel (.xlsx)": "Excel (.xlsx)",
|
||||
"Attach files by dragging & dropping, selecting or pasting them.": "Attach files by dragging & dropping, selecting or pasting them.",
|
||||
"Uploading files... (:current/:total)": "Uploading files... (:current/:total)",
|
||||
"Remove": "Remove",
|
||||
"Uploading": "Uploading",
|
||||
"The image could not be loaded.": "The image could not be loaded."
|
||||
}
|
||||
"*": "*",
|
||||
"30 Days": "30 gün",
|
||||
"60 Days": "60 gün",
|
||||
"90 Days": "90 gün",
|
||||
":amount selected": ":Amount sanysy saýlandy",
|
||||
":amount Total": "Jemi :Amount",
|
||||
":resource Details": ":Resource Jikme-jiklik",
|
||||
":resource Details: :title": ":Resource Jikme-jiklik: :title",
|
||||
"Action": "Hereket",
|
||||
"Action Happened At": "Boldy",
|
||||
"Action Initiated By": "Başlady",
|
||||
"Action Name": "Ady",
|
||||
"Action Status": ".Agdaý",
|
||||
"Action Target": "Nyşana",
|
||||
"Actions": "Hereketler",
|
||||
"Add :resource": ":Resource goşuň",
|
||||
"Add row": "Setir goş",
|
||||
"Afghanistan": "Owganystan",
|
||||
"Aland Islands": "Åland adalary",
|
||||
"Albania": "Albaniýa",
|
||||
"Algeria": "Al Algerir",
|
||||
"All resources loaded.": "Resourceshli çeşmeler ýüklendi.",
|
||||
"American Samoa": "Amerikan Samoasy",
|
||||
"An error occurred while uploading the file.": "Faýl ýüklenende säwlik ýüze çykdy.",
|
||||
"An error occurred while uploading the file: :error": "Faýl ýüklenende säwlik ýüze çykdy: :error",
|
||||
"Andorra": "Andorra",
|
||||
"Angola": "Angola",
|
||||
"Anguilla": "Anguilla",
|
||||
"Another user has updated this resource since this page was loaded. Please refresh the page and try again.": "Başga bir ulanyjy bu sahypa ýükleneninden bäri bu çeşmäni täzeledi. Sahypany täzeläň we gaýtadan synanyşyň.",
|
||||
"Antarctica": "Antarktida",
|
||||
"Antigua And Barbuda": "Antigua we Barbuda",
|
||||
"April": "Aprel",
|
||||
"Are you sure you want to delete all the notifications?": "Allhli bildirişleri pozmak isleýändigiňize ynanýarsyňyzmy?",
|
||||
"Are you sure you want to delete the selected resources?": "Saýlanan çeşmeleri ýok etmek isleýändigiňize ynanýarsyňyzmy?",
|
||||
"Are you sure you want to delete this file?": "Bu faýly pozmak isleýändigiňize ynanýarsyňyzmy?",
|
||||
"Are you sure you want to delete this notification?": "Bu habarnamany öçürmek isleýändigiňize ynanýarsyňyzmy?",
|
||||
"Are you sure you want to delete this resource?": "Bu çeşmäni pozmak isleýändigiňize ynanýarsyňyzmy?",
|
||||
"Are you sure you want to detach the selected resources?": "Saýlanan çeşmeleri bölmek isleýändigiňize ynanýarsyňyzmy?",
|
||||
"Are you sure you want to detach this resource?": "Bu çeşmäni bölmek isleýändigiňize ynanýarsyňyzmy?",
|
||||
"Are you sure you want to force delete the selected resources?": "Saýlanan çeşmeleri pozmaga mejbur edýändigiňize ynanýarsyňyzmy?",
|
||||
"Are you sure you want to force delete this resource?": "Bu çeşmäni pozmaga mejbur edýändigiňize ynanýarsyňyzmy?",
|
||||
"Are you sure you want to log out?": "Çykmak isleýändigiňize ynanýarsyňyzmy?",
|
||||
"Are you sure you want to remove this item?": "Bu elementi aýyrmak isleýändigiňize ynanýarsyňyzmy?",
|
||||
"Are you sure you want to restore the selected resources?": "Saýlanan çeşmeleri dikeltmek isleýändigiňize ynanýarsyňyzmy?",
|
||||
"Are you sure you want to restore this resource?": "Bu çeşmäni dikeltmek isleýändigiňize ynanýarsyňyzmy?",
|
||||
"Are you sure you want to run this action?": "Bu çäräni geçirmek isleýändigiňize ynanýarsyňyzmy?",
|
||||
"Are you sure you want to stop impersonating?": "Özüňi görkezmekden ýüz öwürmek isleýärsiňmi?",
|
||||
"Argentina": "Argentina",
|
||||
"Armenia": "Ermenistan",
|
||||
"Aruba": "Aruba",
|
||||
"Attach": "Berkidiň",
|
||||
"Attach & Attach Another": "Başga birini dakyň we dakyň",
|
||||
"Attach :resource": ":Resource-e dakyň",
|
||||
"Attach files by dragging & dropping, selecting or pasting them.": "Faýllary süýräp we taşlap, saýlap ýa-da dadyp görüň.",
|
||||
"August": "Awgust",
|
||||
"Australia": "Awstraliýa",
|
||||
"Austria": "Awstriýa",
|
||||
"Azerbaijan": "Azerbaýjan",
|
||||
"Bahamas": "Bagama",
|
||||
"Bahrain": "Bahreýn",
|
||||
"Bangladesh": "Bangladeş",
|
||||
"Barbados": "Barbados",
|
||||
"Belarus": "Belarus",
|
||||
"Belgium": "Belgiýa",
|
||||
"Belize": "Beliz",
|
||||
"Benin": "Benin",
|
||||
"Bermuda": "Bermuda",
|
||||
"Bhutan": "Butan",
|
||||
"Bolivia": "Boliwiýa",
|
||||
"Bonaire, Sint Eustatius and Saba": "Bonaire, Sint Eustatius we Saba",
|
||||
"Bosnia And Herzegovina": "Bosniýa we Gersegowina",
|
||||
"Botswana": "Botswana",
|
||||
"Bouvet Island": "Bouwet adasy",
|
||||
"Brazil": "Braziliýa",
|
||||
"British Indian Ocean Territory": "Iňlis Hindi ummany sebiti",
|
||||
"Brunei Darussalam": "Brunei",
|
||||
"Bulgaria": "Bolgariýa",
|
||||
"Burkina Faso": "Burkina Faso",
|
||||
"Burundi": "Burundi",
|
||||
"Cambodia": "Kamboja",
|
||||
"Cameroon": "Kamerun",
|
||||
"Canada": "Kanada",
|
||||
"Cancel": "Elatyr",
|
||||
"Cape Verde": "Cape Verde",
|
||||
"Cayman Islands": "Kaýman adalary",
|
||||
"Central African Republic": "Merkezi Afrika Respublikasy",
|
||||
"Chad": "Çad",
|
||||
"Changes": "Üýtgeşmeler",
|
||||
"Chile": "Çili",
|
||||
"China": "Hytaý",
|
||||
"Choose": "Saýlaň",
|
||||
"Choose :field": ":Field saýlaň",
|
||||
"Choose :resource": ":Resource saýlaň",
|
||||
"Choose an option": "Bir warianty saýlaň",
|
||||
"Choose date": "Sene saýlaň",
|
||||
"Choose File": "Faýl saýlaň",
|
||||
"Choose Files": "Faýllary saýlaň",
|
||||
"Choose Type": "Görnüşini saýlaň",
|
||||
"Christmas Island": "Ro Christmasdestwo adasy",
|
||||
"Click to choose": "Saýlamak üçin basyň",
|
||||
"Close": ".Akyn",
|
||||
"Cocos (Keeling) Islands": "Kokos (Keeling) adalary",
|
||||
"Colombia": "Kolumbiýa",
|
||||
"Comoros": "Komorlar",
|
||||
"Confirm Password": "Paroly tassykla",
|
||||
"Congo": "Kongo",
|
||||
"Congo, Democratic Republic": "Kongo, Demokratik Respublikasy",
|
||||
"Constant": "Yzygiderli",
|
||||
"Cook Islands": "Kuk adalary",
|
||||
"Copy to clipboard": "Paneli göçüriň",
|
||||
"Costa Rica": "Kosta Rika",
|
||||
"Cote D'Ivoire": "Kot d'Iwuar",
|
||||
"Create": "Dörediň",
|
||||
"Create & Add Another": "Başga birini dörediň we goşuň",
|
||||
"Create :resource": ":Resource dörediň",
|
||||
"Croatia": "Horwatiýa",
|
||||
"CSV (.csv)": "CSV (.csv)",
|
||||
"Cuba": "Kuba",
|
||||
"Curaçao": "Curaçao",
|
||||
"Customize": "Düzelt",
|
||||
"Cyprus": "Kipr",
|
||||
"Czech Republic": "Czechia",
|
||||
"Dark": "Garaňky",
|
||||
"Dashboard": "Dolandyryş paneli",
|
||||
"December": "Dekabr",
|
||||
"Decrease": "Pese gaçmak",
|
||||
"Delete": "Öçür",
|
||||
"Delete all notifications": "Noteshli bildirişleri pozuň",
|
||||
"Delete File": "Faýly poz",
|
||||
"Delete Resource": "Çeşmäni poz",
|
||||
"Delete Selected": "Saýlananlary poz",
|
||||
"Denmark": "Daniýa",
|
||||
"Detach": "Aýralyk",
|
||||
"Detach Resource": "Resurslary bölüň",
|
||||
"Detach Selected": "Saýlananlary bölüň",
|
||||
"Details": "Jikme-jiklikler",
|
||||
"Djibouti": "Jibuti",
|
||||
"Do you really want to leave? You have unsaved changes.": "Siz hakykatdanam gitmek isleýärsiňizmi? Saklanmadyk üýtgeşmeleriňiz bar.",
|
||||
"Dominica": "Dominika",
|
||||
"Dominican Republic": "Dominikan Respublikasy",
|
||||
"Download": "Göçürip al",
|
||||
"Drop file or click to choose": "Faýly taşlaň ýa-da saýlamak üçin basyň",
|
||||
"Drop files or click to choose": "Faýllary taşlaň ýa-da saýlamak üçin basyň",
|
||||
"Ecuador": "Ekwador",
|
||||
"Edit": "Redaktirläň",
|
||||
"Edit :resource": ":Resource redaktirläň",
|
||||
"Edit Attached": "Birikdirilen redaktirleme",
|
||||
"Egypt": "Müsür",
|
||||
"El Salvador": "El Salwador",
|
||||
"Email Address": "Email adres",
|
||||
"Equatorial Guinea": "Ekwatorial Gwineýa",
|
||||
"Eritrea": "Eritreýa",
|
||||
"Error": "Roralňyşlyk",
|
||||
"Estonia": "Estoniýa",
|
||||
"Ethiopia": "Efiopiýa",
|
||||
"Excel (.xlsx)": "Excel (.xlsx)",
|
||||
"Failed to load :resource!": ":Resource ýükläp bilmedi!",
|
||||
"Falkland Islands (Malvinas)": "Folklend adalary (Malwinas)",
|
||||
"Faroe Islands": "Farer adalary",
|
||||
"February": "Fewral",
|
||||
"Fiji": "Fiji",
|
||||
"Filename": "Faýlyň ady",
|
||||
"Finland": "Finlýandiýa",
|
||||
"Force Delete": "Güýç öçürmek",
|
||||
"Force Delete Resource": "Resurslary öçürmek",
|
||||
"Force Delete Selected": "Saýlananlary öçürmek",
|
||||
"Forgot Password": "Paroly ýatdan çykardy",
|
||||
"Forgot your password?": "Parolyňyzy ýatdan çykardyňyzmy?",
|
||||
"France": "Fransiýa",
|
||||
"French Guiana": "Fransuz Gwiana",
|
||||
"French Polynesia": "Fransuz polineziýasy",
|
||||
"French Southern Territories": "Fransiýanyň günorta sebitleri",
|
||||
"From": "Kimden",
|
||||
"Gabon": "Gabon",
|
||||
"Gambia": "Gambiýa",
|
||||
"Georgia": "Jorjiýa",
|
||||
"Germany": "Germaniýa",
|
||||
"Ghana": "Gana",
|
||||
"Gibraltar": "Gibraltar",
|
||||
"Go Home": "Öýe git",
|
||||
"Greece": "Gresiýa",
|
||||
"Greenland": "Grenlandiýa",
|
||||
"Grenada": "Grenada",
|
||||
"Guadeloupe": "Guadeloupe",
|
||||
"Guam": "Guam",
|
||||
"Guatemala": "Gwatemala",
|
||||
"Guernsey": "Guernsey",
|
||||
"Guinea": "Gwineýa",
|
||||
"Guinea-Bissau": "Gwineýa-Bissau",
|
||||
"Guyana": "Gaýana",
|
||||
"Haiti": "Gaiti",
|
||||
"Heard Island & Mcdonald Islands": "Heard adasy we Makdonalds adalary",
|
||||
"Hide Content": "Mazmuny gizläň",
|
||||
"Hold Up!": "Saklamak!",
|
||||
"Holy See (Vatican City State)": "Vatican City",
|
||||
"Honduras": "Gonduras",
|
||||
"Hong Kong": "Gonkong",
|
||||
"Hungary": "Wengriýa",
|
||||
"Iceland": "Islandiýa",
|
||||
"ID": "Şahsyýetnamasy",
|
||||
"If you did not request a password reset, no further action is required.": "Paroly täzeden dikeltmegi talap etmedik bolsaňyz, mundan başga çäre görülmeli däl.",
|
||||
"Impersonate": "Özüňi görkezmek",
|
||||
"Increase": "Köpeltmek",
|
||||
"India": "Hindistan",
|
||||
"Indonesia": "Indoneziýa",
|
||||
"Iran, Islamic Republic Of": "Eýran",
|
||||
"Iraq": "Yrak",
|
||||
"Ireland": "Irlandiýa",
|
||||
"Isle Of Man": "Adam adasy",
|
||||
"Israel": "Ysraýyl",
|
||||
"Italy": "Italiýa",
|
||||
"Jamaica": "Jamaamaýka",
|
||||
"January": "Januaryanwar",
|
||||
"Japan": "Japanaponiýa",
|
||||
"Jersey": "Jersi",
|
||||
"Jordan": "Iordaniýa",
|
||||
"July": "Iýul",
|
||||
"June": "Iýun",
|
||||
"Kazakhstan": "Gazagystan",
|
||||
"Kenya": "Keniýa",
|
||||
"Key": "Açar",
|
||||
"Kiribati": "Kiribati",
|
||||
"Korea": "Günorta Koreýa",
|
||||
"Korea, Democratic People's Republic of": "North Korea",
|
||||
"Kosovo": "Kosowa",
|
||||
"Kuwait": "Kuweýt",
|
||||
"Kyrgyzstan": "Gyrgyzystan",
|
||||
"Lao People's Democratic Republic": "Laos",
|
||||
"Latvia": "Latwiýa",
|
||||
"Lebanon": "Liwan",
|
||||
"Lens": "Linza",
|
||||
"Lesotho": "Lesoto",
|
||||
"Liberia": "Liberiýa",
|
||||
"Libyan Arab Jamahiriya": "Libya",
|
||||
"Liechtenstein": "Lihtenşteýn",
|
||||
"Light": "Lightagtylyk",
|
||||
"Lithuania": "Litwa",
|
||||
"Load :perPage More": "Moreene :perPage ýükläň",
|
||||
"Log In": "Giriş",
|
||||
"Logout": "Hasapdan çykmak",
|
||||
"Luxembourg": "Lýuksemburg",
|
||||
"Macao": "Makao",
|
||||
"Macedonia": "Demirgazyk Makedoniýa",
|
||||
"Madagascar": "Madagaskar",
|
||||
"Malawi": "Malawi",
|
||||
"Malaysia": "Malaýziýa",
|
||||
"Maldives": "Maldiw adalary",
|
||||
"Mali": "Mali",
|
||||
"Malta": "Malta",
|
||||
"March": "Mart",
|
||||
"Mark all as Read": "Hemmesini Okaň diýip belläň",
|
||||
"Mark Read": "Okaň",
|
||||
"Mark Unread": "Okalmadyk belläň",
|
||||
"Marshall Islands": "Marşal adalary",
|
||||
"Martinique": "Martinique",
|
||||
"Mauritania": "Mawritaniýa",
|
||||
"Mauritius": "Mawritis",
|
||||
"May": "Maý",
|
||||
"Mayotte": "Maýotte",
|
||||
"Mexico": "Meksika",
|
||||
"Micronesia, Federated States Of": "Mikroneziýa",
|
||||
"Moldova": "Moldowa",
|
||||
"Monaco": "Monako",
|
||||
"Mongolia": "Mongoliýa",
|
||||
"Montenegro": "Çernogoriýa",
|
||||
"Month To Date": "Şu güne çenli aý",
|
||||
"Montserrat": "Montserrat",
|
||||
"Morocco": "Marokko",
|
||||
"Mozambique": "Mozambik",
|
||||
"Myanmar": "Mýanma",
|
||||
"Namibia": "Namibiýa",
|
||||
"Nauru": "Nauru",
|
||||
"Nepal": "Nepal",
|
||||
"Netherlands": "Gollandiýa",
|
||||
"New": "Täze",
|
||||
"New :resource": "Täze :resource",
|
||||
"New Caledonia": "Täze Kaledoniýa",
|
||||
"New Zealand": "Täze Zelandiýa",
|
||||
"Next": "Indiki",
|
||||
"Nicaragua": "Nikaragua",
|
||||
"Niger": "Niger",
|
||||
"Nigeria": "Nigeriýa",
|
||||
"Niue": "Niue",
|
||||
"No": ".Ok",
|
||||
"No :resource matched the given criteria.": "Berlen kriteriýalara :resource gabat gelmedi.",
|
||||
"No additional information...": "Goşmaça maglumat ýok ...",
|
||||
"No Current Data": "Häzirki maglumatlar ýok",
|
||||
"No Data": "Maglumat ýok",
|
||||
"no file selected": "faýl saýlanmady",
|
||||
"No Increase": "Okarlandyrma",
|
||||
"No Prior Data": "Öňünden maglumat ýok",
|
||||
"No Results Found.": "Netije tapylmady",
|
||||
"Norfolk Island": "Norfolk adasy",
|
||||
"Northern Mariana Islands": "Demirgazyk Mariana adalary",
|
||||
"Norway": "Norwegiýa",
|
||||
"Notifications": "Duýduryşlar",
|
||||
"Nova User": "Täze ulanyjy",
|
||||
"November": "Noýabr",
|
||||
"October": "Oktýabr",
|
||||
"of": "of",
|
||||
"Oman": "Umman",
|
||||
"Only Trashed": "Diňe zibil",
|
||||
"Original": "Asyl",
|
||||
"Pakistan": "Pakistan",
|
||||
"Palau": "Palau",
|
||||
"Palestinian Territory, Occupied": "Palestinian Territories",
|
||||
"Panama": "Panama",
|
||||
"Papua New Guinea": "Papua Täze Gwineýa",
|
||||
"Paraguay": "Paragwaý",
|
||||
"Password": "Parol",
|
||||
"Per Page": "Sahypa başyna",
|
||||
"Peru": "Peruda",
|
||||
"Philippines": "Filippinler",
|
||||
"Pitcairn": "Pitcairn Islands",
|
||||
"Poland": "Polşa",
|
||||
"Portugal": "Portugaliýa",
|
||||
"Press / to search": "Gözlemek üçin / basyň",
|
||||
"Preview": "Öňünden syn",
|
||||
"Previewing": "Öňünden syn",
|
||||
"Previous": "Öňki",
|
||||
"Puerto Rico": "Puerto Riko",
|
||||
"Qatar": "Katar",
|
||||
"Quarter To Date": "Çärýek",
|
||||
"Reload": "Gaýtadan ýükläň",
|
||||
"Remember me": "Meni ýatla",
|
||||
"Remove": "Aýyr",
|
||||
"Replicate": "Gaýtalama",
|
||||
"Reset Filters": "Süzgüçleri täzeden düzmek",
|
||||
"Reset Password": "Paroly täzeden düzmek",
|
||||
"Reset Password Notification": "Parol habarnamasyny täzeden düzmek",
|
||||
"resource": "çeşmesi",
|
||||
"Resource Row Dropdown": "Çeşmeleriň hatary",
|
||||
"Resources": "Çeşmeler",
|
||||
"resources": "çeşmeleri",
|
||||
"Restore": "Dikelt",
|
||||
"Restore Resource": "Çeşmäni dikeltmek",
|
||||
"Restore Selected": "Saýlananlary dikelt",
|
||||
"Reunion": "Reunion",
|
||||
"Romania": "Rumyniýa",
|
||||
"Run Action": "Hereket et",
|
||||
"Russian Federation": "Russiýa Federasiýasy",
|
||||
"Rwanda": "Ruanda",
|
||||
"Saint Barthelemy": "Keramatly Bartelemi",
|
||||
"Saint Helena": "St. Helena",
|
||||
"Saint Kitts And Nevis": "Keramatly Kitts we Newis",
|
||||
"Saint Lucia": "St. Lucia",
|
||||
"Saint Martin": "Keramatly Martin",
|
||||
"Saint Pierre And Miquelon": "Keramatly Pýer we Mikelon",
|
||||
"Saint Vincent And Grenadines": "Keramatly Winsent we Grenadinler",
|
||||
"Samoa": "Samoa",
|
||||
"San Marino": "San Marino",
|
||||
"Sao Tome And Principe": "San Tomé we Prinsipe",
|
||||
"Saudi Arabia": "Saud Arabystany",
|
||||
"Search": "Gözlemek",
|
||||
"Select Action": "Hereket saýlaň",
|
||||
"Select all": "Ählisini seç",
|
||||
"Select All Dropdown": "Allhli aşak gaçmagy saýlaň",
|
||||
"Select this page": "Bu sahypany saýlaň",
|
||||
"Send Password Reset Link": "Paroly täzeden düzmek baglanyşygyny iber",
|
||||
"Senegal": "Senegal",
|
||||
"September": "Sentýabr",
|
||||
"Serbia": "Serbiýa",
|
||||
"Seychelles": "Seýşel adalary",
|
||||
"Show All Fields": "Allhli meýdanlary görkez",
|
||||
"Show Content": "Mazmuny görkez",
|
||||
"Sierra Leone": "Sierra Leone",
|
||||
"Singapore": "Singapur",
|
||||
"Sint Maarten (Dutch part)": "Sint Maarten",
|
||||
"Slovakia": "Slowakiýa",
|
||||
"Slovenia": "Sloweniýa",
|
||||
"Soft Deleted": "Softumşak öçürildi",
|
||||
"Solomon Islands": "Süleýman adalary",
|
||||
"Somalia": "Somali",
|
||||
"Something went wrong.": "Bir zat nädogry boldy.",
|
||||
"Sorry! You are not authorized to perform this action.": "Bagyşlaň! Bu hereketi ýerine ýetirmäge ygtyýaryňyz ýok.",
|
||||
"Sorry, your session has expired.": "Bagyşlaň, sessiýaňyz gutardy.",
|
||||
"South Africa": "Günorta Afrika",
|
||||
"South Georgia And Sandwich Isl.": "Günorta Jorjiýa we Günorta Sandwiç adalary",
|
||||
"South Sudan": "Günorta Sudan",
|
||||
"Spain": "Ispaniýa",
|
||||
"Sri Lanka": "Şri-Lanka",
|
||||
"Standalone Actions": "Özbaşdak hereketler",
|
||||
"Start Polling": "Ses berişlige başlaň",
|
||||
"Stop Impersonating": "Özüňi görkezmekden sakla",
|
||||
"Stop Polling": "Ses bermegi bes ediň",
|
||||
"Sudan": "Sudan",
|
||||
"Suriname": "Surinam",
|
||||
"Svalbard And Jan Mayen": "Swalbard we Mayan Maýen",
|
||||
"Swaziland": "Eswatini",
|
||||
"Sweden": "Şwesiýa",
|
||||
"Switzerland": "Şweýsariýa",
|
||||
"Syrian Arab Republic": "Syria",
|
||||
"System": "Ulgam",
|
||||
"Taiwan": "Taýwan",
|
||||
"Tajikistan": "Täjigistan",
|
||||
"Tanzania": "Tanzaniýa",
|
||||
"Thailand": "Taýland",
|
||||
"The :resource was created!": ":Resource döredildi!",
|
||||
"The :resource was deleted!": ":Resource öçürildi!",
|
||||
"The :resource was restored!": ":Resource dikeldildi!",
|
||||
"The :resource was updated!": ":Resource täzelendi!",
|
||||
"The action was executed successfully.": "Hereket üstünlikli ýerine ýetirildi.",
|
||||
"The file was deleted!": "Faýl öçürildi!",
|
||||
"The government won't let us show you what's behind these doors": "Hökümet size bu gapylaryň aňyrsynda nämeleriň bardygyny görkezmäge ýol bermez",
|
||||
"The HasOne relationship has already been filled.": "HasOne gatnaşyklary eýýäm dolduryldy.",
|
||||
"The image could not be loaded": "Suraty ýükläp bolmady",
|
||||
"The image could not be loaded.": "Suraty ýükläp bolmady",
|
||||
"The resource was attached!": "Resurs goşuldy!",
|
||||
"The resource was prevented from being saved!": "Resursyň tygşytlanmagynyň öňüni aldy!",
|
||||
"The resource was updated!": "Resurs täzelendi!",
|
||||
"There are no available options for this resource.": "Bu çeşme üçin elýeterli wariant ýok.",
|
||||
"There are no fields to display.": "Görkezjek meýdan ýok.",
|
||||
"There are no new notifications.": "Täze bildiriş ýok.",
|
||||
"There was a problem executing the action.": "Hereketi ýerine ýetirmekde kynçylyk ýüze çykdy.",
|
||||
"There was a problem fetching the resource.": "Resurs almakda kynçylyk ýüze çykdy.",
|
||||
"There was a problem submitting the form.": "Anketany tabşyrmakda kynçylyk ýüze çykdy.",
|
||||
"This copy of Nova is unlicensed.": "Nowanyň bu nusgasy ygtyýarnamasyz.",
|
||||
"This file field is read-only.": "Bu faýl meýdany diňe okalýar.",
|
||||
"This resource no longer exists": "Bu çeşme indi ýok",
|
||||
"Timor-Leste": "Timor-Leste",
|
||||
"To": "To",
|
||||
"Today": "Bu gün",
|
||||
"Togo": "Togo",
|
||||
"Tokelau": "Tokelau",
|
||||
"Tonga": "Tonga",
|
||||
"total": "jemi",
|
||||
"Trashed": "Zibil",
|
||||
"Trinidad And Tobago": "Trinidad we Tobago",
|
||||
"Tunisia": "Tunis",
|
||||
"Turkey": "Türkiye",
|
||||
"Turkmenistan": "Türkmenistan",
|
||||
"Turks And Caicos Islands": "Türkler we Kaýkos adalary",
|
||||
"Tuvalu": "Tuwalu",
|
||||
"Type": "Görnüşi",
|
||||
"Uganda": "Uganda",
|
||||
"Ukraine": "Ukraina",
|
||||
"United Arab Emirates": "Birleşen Arap Emirlikleri",
|
||||
"United Kingdom": "Angliýa",
|
||||
"United States": "Birleşen Ştatlar",
|
||||
"United States Outlying Islands": "ABŞ-nyň daşarky adalary",
|
||||
"Update": "Täzelen",
|
||||
"Update & Continue Editing": "Redaktirlemegi täzeläň we dowam etdiriň",
|
||||
"Update :resource": ":Resource täzeläň",
|
||||
"Update :resource: :title": ":Resource: :title täzeläň",
|
||||
"Update attached :resource: :title": "Täzelenme :resource: :title",
|
||||
"Uploading": "Uploadüklemek",
|
||||
"Uploading files... (:current/:total)": "Faýl ýüklemek ... (:current/:total)",
|
||||
"Uruguay": "Urugwaý",
|
||||
"Uzbekistan": "Özbegistan",
|
||||
"Value": "Gymmatlyk",
|
||||
"Vanuatu": "Wanuatu",
|
||||
"Venezuela": "Wenesuela",
|
||||
"Viet Nam": "Vietnam",
|
||||
"View": "Gör",
|
||||
"Virgin Islands, British": "British Virgin Islands",
|
||||
"Virgin Islands, U.S.": "U.S. Virgin Islands",
|
||||
"Wallis And Futuna": "Wallis we Futuna",
|
||||
"We have emailed your password reset link!": "Parolyňyzy täzeden düzmek baglanyşygyna e-poçta iberdik!",
|
||||
"We're lost in space. The page you were trying to view does not exist.": "Biz kosmosda ýitdik. Görjek bolýan sahypaňyz ýok.",
|
||||
"Welcome Back!": "Gaýtadan hoş geldiňiz!",
|
||||
"Western Sahara": "Günbatar Sahara",
|
||||
"Whoops": "Wah",
|
||||
"Whoops!": "Wah!",
|
||||
"With Trashed": "Zibil bilen",
|
||||
"Write": "Writeaz",
|
||||
"Year To Date": "Toyl",
|
||||
"Yemen": "Yemenemen",
|
||||
"Yes": "Hawa",
|
||||
"You are receiving this email because we received a password reset request for your account.": "Bu e-poçta alýarsyňyz, sebäbi hasabyňyz üçin paroly täzeden düzmek haýyşyny aldyk.",
|
||||
"Zambia": "Zambiýa",
|
||||
"Zimbabwe": "Zimbabwe",
|
||||
"—": "—"
|
||||
}
|
||||
8
lang/vendor/nova/tk/validation.php
vendored
Normal file
8
lang/vendor/nova/tk/validation.php
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'attached' => 'Bu :attribute eýýäm birikdirildi.',
|
||||
'relatable' => 'Bu :attribute bu çeşme bilen baglanyşykly bolup bilmez.',
|
||||
];
|
||||
Reference in New Issue
Block a user