2014-05-14 23:24:20 +10:00

128 lines
6.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
return [
'field' => [
'invalid_type' => 'Использован неверный тип поля: :type.',
'options_method_not_exists' => 'Класс модели :model должен содержать метод :method(), возвращающий опции для поля формы ":field".',
],
'widget' => [
'not_registered' => "Класс виджета ':name' не зарегистрирован.",
'not_bound' => "A widget with class name ':name' has not been bound to the controller",
],
'page' => [
'untitled' => "Untitled",
],
'partial' => [
'not_found' => "Не удалось найти шаблон (partial) с именем :name.",
],
'account' => [
'sign_out' => 'Выйти',
'login' => 'Вход',
'reset' => 'Reset',
'restore' => 'Restore',
'login_placeholder' => 'пользователь',
'password_placeholder' => 'пароль',
'forgot_password' => "Забыли пароль?",
'enter_email' => 'Enter your email',
'enter_login' => "Enter your login",
'email_placeholder' => "email",
'enter_new_password' => 'Enter a new password',
'password_reset' => "Password Reset",
'restore_success' => "An email has been sent to your email address with password restore instructions.",
'restore_error' => "A user could not be found with a login value of ':login'",
'reset_success' => "Your password has been successfully reset. You may now sign in.",
'reset_error' => "Invalid password reset data supplied. Please try again!",
'reset_fail' => "Unable to reset your password!",
'apply' => 'Применить',
'cancel' => 'Отменить',
'delete' => 'Удалить',
'ok' => 'OK',
],
'dashboard' => [
'menu_label' => 'Обзор системы',
],
'user' => [
'name' => 'Администратор',
'menu_label' => 'Администраторы',
'list_title' => 'Manage Administrators',
'login' => "Login",
'first_name' => "First Name",
'last_name' => "Last Name",
'full_name' => "Full Name",
'email' => "Email",
'groups' => "Groups",
'groups_comment' => "Specify which groups this person belongs to.",
'avatar' => "Avatar",
'password' => "Password",
'password_confirmation' => "Confirm Password",
'superuser' => "Super User",
'superuser_comment' => "Check this box to allow this person to access all areas.",
'send_invite' => 'Send invitation by email',
'send_invite_comment' => 'Use this checkbox to send an invitation to the user by email',
'group' => [
'name' => 'Group',
'name_field' => 'Name',
'menu_label' => 'Groups',
'list_title' => 'Manage Groups',
],
'preferences' => [
'not_authenticated' => 'Невозможно загрузить или сохранить настройки для неавторизованного пользователя.',
],
],
'list' => [
'default_title' => 'List',
'search_prompt' => 'Поиск...',
'no_records' => 'По вашему запросу ничего не найдено.',
'missing_model' => 'List used in :class does not have a model defined.',
'missing_column' => 'There are no column definitions for :columns.',
'missing_columns' => 'List used in :class has no list columns defined.',
'missing_definition' => "List behavior does not contain a column for ':field'.",
'behavior_not_ready' => 'List behavior has not been initialized, check that you have called makeLists() in your controller.',
],
'form' => [
'create_title' => "New :name",
'update_title' => "Edit :name",
'preview_title' => "Preview :name",
'create_success' => 'The :name has been successfully created',
'update_success' => 'The :name has been successfully saved',
'delete_success' => 'The :name has been successfully deleted',
'missing_id' => "Form record ID has not been specified.",
'missing_model' => 'Form used in :class does not have a model defined.',
'missing_definition' => "Form behavior does not contain a field for ':field'.",
'not_found' => 'Form record with an ID of :id could not be found.',
'save' => 'Сохранить',
'save_and_close' => 'Сохранить и закрыть',
'saving' => 'Сохранение...',
'undefined_tab' => 'Misc',
'field_off' => 'Off',
'field_on' => 'On',
'apply' => 'Apply',
'cancel' => 'Cancel',
'close' => 'Close',
'delete' => 'Delete',
'ok' => 'OK',
'confirm_tab_close' => 'Закрыть закладку? Несохраненные изменения будут потеряны.',
'behavior_not_ready' => 'Form behavior has not been initialized, check that you have called initForm() in your controller.',
],
'relation' => [
'missing_definition' => "Relation behavior does not contain a definition for ':field'.",
'missing_model' => "Relation behavior used in :class does not have a model defined.",
'invalid_action_single' => "This action cannot be performed on a singular relationship.",
'invalid_action_multi' => "This action cannot be performed on a multiple relationship.",
'add' => "Add",
'add_name' => "Add :name",
'create' => "Create",
'create_name' => "Create :name",
'remove' => "Remove",
'remove_name' => "Remove :name",
'delete' => "Delete",
'delete_name' => "Delete :name",
],
'model' => [
'name' => "Model",
'not_found' => "Model ':class' with an ID of :id could not be found",
'missing_id' => "There is no ID specified for looking up the model record.",
'missing_relation' => "Model ':class' does not contain a definition for ':relation'",
'invalid_class' => "Model :model used in :class is not valid, it must inherit the \Model class.",
],
];