snipe-it/resources/lang/ru/admin/custom_fields/general.php
snipe ddfa5776c5 Updated language strings
This absolutely sucks. Something changed in CrowdIn or something else, which results in this push being *thousands* of files because someone somewhere decided that `return [];` was vastly inferior to `return array();`

I'll try to fix it. :(

FML

Signed-off-by: snipe <snipe@snipe.net>
2022-01-13 21:27:29 -08:00

46 lines
3.8 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 [
'custom_fields' => 'Настраиваемые поля',
'manage' => 'Manage',
'field' => 'Поле',
'about_fieldsets_title' => 'О наборах полей',
'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Зашифровать значение этого поля в базе данных',
'encrypt_field_help' => 'ПРЕДУПРЕЖДЕНИЕ: Шифрование поля исключит возможность его поиска.',
'encrypted' => 'Зашифровано',
'fieldset' => 'Набор полей',
'qty_fields' => 'Кол-во полей',
'fieldsets' => 'Наборы полей',
'fieldset_name' => 'Имя набора',
'field_name' => 'Имя поля',
'field_values' => 'Значения полей',
'field_values_help' => 'Добавьте выбранные значения по одной в строку. Пустые строки, кроме первой, будут проигнорованы.',
'field_element' => 'Элемент формы',
'field_element_short' => 'Элемент',
'field_format' => 'Формат',
'field_custom_format' => 'Пользовательский формат',
'field_custom_format_help' => 'Это поле позволяет использовать регулярное выражения для проверки. Оно должен начинаться с «regex:». Например, чтобы проверить, что значение настраиваемого поля содержит допустимый IMEI (15 цифр), вы должны использовать <code>regex:/^[0-9]{15}$/</code>.',
'required' => 'Обязательно',
'req' => 'Треб.',
'used_by_models' => 'Использован в моделях',
'order' => 'Порядок',
'create_fieldset' => 'Новый набор полей',
'create_fieldset_title' => 'Create a new fieldset',
'create_field' => 'Новое настраиваемое поле',
'create_field_title' => 'Create a new custom field',
'value_encrypted' => 'Значение этого поля зашифровано в базе данных. Только администраторам будет доступно для просмотра расшифрованное значение',
'show_in_email' => 'Включить значение этого поля в письма, которое будет отправлено пользователю? Зашифрованные поля не могут быть включены в сообщения электронной почты.',
'help_text' => 'Help Text',
'help_text_description' => 'This is optional text that will appear below the form elements while editing an asset to provide context on the field.',
'about_custom_fields_title' => 'About Custom Fields',
'about_custom_fields_text' => 'Custom fields allow you to add arbitrary attributes to assets.',
'add_field_to_fieldset' => 'Add Field to Fieldset',
'make_optional' => 'Required - click to make optional',
'make_required' => 'Optional - click to make required',
'reorder' => 'Reorder',
'db_field' => 'DB Field',
'db_convert_warning' => 'WARNING. This field is in the custom fields table as <code> :db_column </code> but should be :expected </code>.'
];