upgrades.inc.php | Participants
|
- Statistics
- Participants
- Translate into Russian
- Translation result
- Translated in draft, editing and proof-reading required.
If you do not want to register an account, you can sign in with OpenID.
upgrades.inc.php | ||
<?php | ||
$_lang['add_column'] = 'Added new `%s` column to `%s`.'; | $_lang['add_column'] = 'Добавлен новый `%s` столбец к `%s`.'; | |
$_lang['add_index'] = 'Added new index on `%s` for table `%s`.'; | $_lang['add_index'] = 'Добавлен новый индекс в `%s` для таблицы `%s`.'; | |
$_lang['add_moduser_classkey'] = 'Added class_key field to support modUser derivatives.'; | $_lang['add_moduser_classkey'] = 'Добавлено поле class_key для поддержки производных от modUser'; | |
$_lang['added_cachepwd'] = 'Added cachepwd field missing in early Revolution releases.'; | $_lang['added_cachepwd'] = 'Добавлено поле cachepwd, пропавшее без вести в начале релиза Revolution.'; | |
$_lang['added_content_ft_idx'] = 'Added new `content_ft_idx` full-text index on the fields `pagetitle`, `longtitle`, `description`, `introtext`, `content`.'; | $_lang['added_content_ft_idx'] = 'Добавлен новый полнотекстовый индекс `content_ft_idx` в поля `pagetitle`, `longtitle`, `description`, `introtext`, `content`.'; | |
$_lang['allow_null_properties'] = 'Fixing allow null for `%s`.`properties`.'; | $_lang['allow_null_properties'] = 'Исправлено возможное значение NULL у `%s`.`properties`.'; | — не знаю, надо properties удалять или нет — Fil_DOrc |
$_lang['alter_activeuser_action'] = 'Modified modActiveUser `action` field to allow longer action labels.'; | $_lang['alter_activeuser_action'] = 'Увеличена возможная длина значения поля `action` в modActiveUser.'; | |
$_lang['alter_usermessage_messageread'] = 'Changed modUserMessage `messageread` field to `read`.'; | $_lang['alter_usermessage_messageread'] = 'В таблице modUserMessage поле `messageread` заменено на `read`.'; | |
$_lang['alter_usermessage_postdate'] = 'Changed modUserMessage `postdate` field from an INT to a DATETIME and to name `date_sent`.'; | $_lang['alter_usermessage_postdate'] = 'В таблице modUserMessage у поля `postdate` изменен тип с INT на DATETIME и переименовано в `date_sent`.'; | |
$_lang['alter_usermessage_subject'] = 'Changed modUserMessage `subject` field from VARCHAR(60) to VARCHAR(255).'; | $_lang['alter_usermessage_subject'] = 'В таблице modUserMessage у поля `subject` изменен тип с VARCHAR(60) на VARCHAR(255).'; | |
$_lang['change_column'] = 'Changed `%s` field to `%s` on table `%s`.'; | $_lang['change_column'] = 'Изменено поле `%s` на `%s` в таблице `%s`.'; | |
$_lang['change_default_value'] = 'Changed default value for column `%s` to %s on table `%s`.'; | $_lang['change_default_value'] = 'Изменено значение по умолчанию в поле`%s` на %s в таблице `%s`.'; | |
$_lang['connector_acls_removed'] = 'Removed connector context ACLs.'; | $_lang['connector_acls_removed'] = 'Убраны списки доступа (ACL) у контекстного коннектора.'; | — Жопа. Смысл в том, что access control lists есть разных коннекторов, так вот у какого-то коннектора этого списка теперь нету — Fil_DOrc |
$_lang['connector_acls_not_removed'] = 'Could not remove connector context ACLs.'; | $_lang['connector_acls_not_removed'] = 'Убрать списки доступа (ACL) у контекстного коннектора не удалось.'; | |
$_lang['connector_ctx_removed'] = ''; | ||
$_lang['connector_ctx_not_removed'] = 'Could not remove connector context.'; | $_lang['connector_ctx_not_removed'] = 'Убрать контекстный коннектор не удалось.'; | |
$_lang['data_remove_error'] = 'Error removing data for class `%s`.'; | $_lang['data_remove_error'] = 'Ошибка удаления данных для класса `%s`.'; | |
$_lang['data_remove_success'] = 'Successfully removed data from table for class `%s`.';$_lang['drop_column'] = 'Dropped column `%s` on table `%s`.';$_lang['drop_index'] = 'Dropped index `%s` on table `%s`.'; | $_lang['data_remove_success'] = 'Данные для класса `%s` из таблицы успешно удалены.'; | |
$_lang['lexiconentry_createdon_null'] = 'Changed modLexiconEntry `createdon` to allow NULL.'; | $_lang['lexiconentry_createdon_null'] = 'Добавлена возможность принимать значение NULL для поля `createdon` в modLexiconEntry.'; | |
$_lang['lexiconentry_focus_alter'] = 'Changed modLexiconEntry `focus` from VARCHAR(100) to INT(10).'; | $_lang['lexiconentry_focus_alter'] = 'Изменен тип поля `focus` в modLexiconEntry с VARCHAR(100) на INT(10).'; | |
$_lang['lexiconentry_focus_alter_int'] = 'Updated modLexiconEntry `focus` column data from string to new int foreign key from modLexiconTopic.'; | $_lang['lexiconentry_focus_alter_int'] = 'Обновлены данные в поле `focus` в modLexiconEntry со строковых на новое целое значение ключа из modLexiconTopic.'; | |
$_lang['lexiconfocus_add_id'] = 'Added modLexiconFocus `id` column.'; | $_lang['lexiconfocus_add_id'] = 'Добавлено поле `id` в modLexiconFocus.'; | |
$_lang['lexiconfocus_add_pk'] = 'Added modLexiconFocus PRIMARY KEY to `id` column.'; | $_lang['lexiconfocus_add_pk'] = 'Добавлен PRIMARY KEY к полю `id` в modLexiconFocus.'; |

— Непонятно зачем здесь два раза `%s` — security