Create russian-utf8
Bugo

Bugo commited on 2016-08-08 21:56:30
Showing 1 changed files, with 125 additions and 0 deletions.

... ...
@@ -0,0 +1,125 @@
1
+<?php
2
+/*
3
+ * SMF Package Manager Generator
4
+ * Author: SleePy (JeremyD)
5
+ * Repository: https://github.com/jdarwood007/smf_package_maker
6
+ * License: BSD 3 Clause; See license.txt
7
+*/
8
+
9
+// The locale 
10
+$locale = 'ru-RU';
11
+$charset = 'UTF-8';
12
+
13
+// The name of this script.
14
+$text['script_name'] = 'SMF Package Generator';
15
+
16
+// Basic information section.
17
+$text['basic_info_header'] = 'Основная информация';
18
+$text['basic_your_name'] = 'Ваш ник';
19
+$text['basic_mod_name'] = 'Название модификации';
20
+$text['basic_mod_version'] = 'Версия';
21
+$text['basic_mod_type'] = 'Тип';
22
+$text['details_header'] = 'Детали';
23
+
24
+// Some basic buttons.
25
+$text['button_preview'] = 'Предварительный просмотр изменений';
26
+$text['button_download'] = 'Скачать файл';
27
+$text['button_delete'] = 'Удалить';
28
+$text['button_restore'] = 'Восстановить';
29
+$text['button_collapse'] = 'Свернуть';
30
+$text['button_expand'] = 'Развернуть';
31
+
32
+// The Mod Maker Part
33
+	// Details section.
34
+	$text['details_num_files'] = 'Количество файлов';
35
+	$text['details_num_edits'] = 'Количество правок';
36
+	$text['details_num_lines'] = 'Количество строк';
37
+
38
+	// Buttons.
39
+	$text['button_add_edit'] = 'Добавить другую правку';
40
+	$text['button_add_file'] = 'Добавить другой файл';
41
+
42
+	// Preview.
43
+	$text['preview_header'] = 'Ваш .xml файл';
44
+
45
+
46
+	// File sections. Note that %1$s here represents the file number.
47
+	$text['file_header'] = 'Файл #%1$s';
48
+
49
+	$text['file_to_edit'] = 'Файл для редактирования';
50
+
51
+	$text['file_not_found'] = 'Если файл не найден';
52
+	$text['file_not_found_fatal'] = 'Сбой установки (по умолчанию)';
53
+	$text['file_not_found_ignore'] = 'Создать файл с изменениями';
54
+	$text['file_not_found_skip'] = 'Пропустить весь файл';
55
+
56
+
57
+	// Edit sections. Note that %1$s here represents file number, while %2$s represents edit number.
58
+	$text['edit_header'] = 'Файл #%1$s &mdash; Правка #%2$s';
59
+	$text['edit_header_delete'] = 'Удалить';
60
+	$text['edit_header_restore'] = 'Восстановить';
61
+	$text['edit_header_collapse'] = 'Свернуть';
62
+	$text['edit_header_expand'] = 'Развернуть';
63
+
64
+	$text['edit_ignore_whitespace'] = 'Игнорировать пустое пространство';
65
+	$text['edit_search_for'] = 'Код для поиска';
66
+	$text['edit_replace_with'] = 'Код для замены';
67
+
68
+	$text['edit_action'] = 'Редактирование';
69
+	$text['edit_action_replace'] = 'Заменить выделенное следующим кодом';
70
+	$text['edit_action_before'] = 'Добавить код после выделенного';
71
+	$text['edit_action_after'] = 'Добавить код до выделенного';
72
+	$text['edit_action_end'] = 'Добавить в конец файла';
73
+
74
+	$text['edit_errors'] = 'Обработка ошибок';
75
+	$text['edit_errors_fail'] = 'Сбой установки (по умолчанию)';
76
+	$text['edit_errors_ignore'] = 'Создать файл с изменениями (игнорировать)';
77
+	$text['edit_errors_required'] = 'Require the search to fail';
78
+
79
+
80
+// The Package Info Section. Note that %1$s here represents the action number.
81
+	$text['details_num_actions'] = 'Количество действий';
82
+	$text['details_num_instructions'] = 'Количество команд';
83
+
84
+	$text['button_add_action'] = 'Добавить действие';
85
+	$text['button_add_instruct'] = 'Добавить команду';
86
+
87
+	$text['action_header'] = 'Действие %1$s';
88
+
89
+	// The Edit section
90
+	$text['type_of_action'] = 'Тип действия';
91
+	$text['type_of_action_install'] = 'Установка';
92
+	$text['type_of_action_uninstall'] = 'Удаление';
93
+	$text['type_of_action_upgrade'] = 'Обновление';
94
+	$text['action_smf_versions'] = 'Версии SMF';
95
+
96
+
97
+	// Instruction stuff. Note that %1$s here represents action number, while %2$s represents instruction number.
98
+	$text['instruct_header'] = 'Действие #%1$s &mdash; Команда #%2$s';
99
+
100
+	$text['instruct_action'] = 'Что сделать';
101
+	$text['instruct_action_modification'] = 'Модификация (.xml или .mod)';
102
+	$text['instruct_action_code'] = 'Выполняемый код';
103
+	$text['instruct_action_database'] = 'Действия с базой данных';
104
+	$text['instruct_action_create_dir'] = 'Создать директорию';
105
+	$text['instruct_action_create_file'] = 'Создать файл';
106
+	$text['instruct_action_require_dir'] = 'Установить файлы из директории';
107
+	$text['instruct_action_require_file'] = 'Установить файл из файла';
108
+	$text['instruct_action_move_dir'] = 'Переместить/Переименовать директорию';
109
+	$text['instruct_action_move_file'] = 'Переместить/Переименовать файл';
110
+	$text['instruct_action_delete_dir'] = 'Удалить директорию';
111
+	$text['instruct_action_delete_file'] = 'Удалить файл';
112
+	$text['instruct_action_readme'] = 'Readme (Описание)';
113
+
114
+	$text['action_inline'] = 'Внутренняя правка';
115
+	$text['action_reverse'] = 'Откатить изменения';
116
+	$text['action_destination'] = 'Путь назначения';
117
+	$text['action_source'] = 'Файл/Папка для включения';
118
+	$text['action_code_block'] = 'Внутренний код';
119
+	
120
+
121
+// The Index section
122
+	$text['index_welcome'] = 'Добро пожаловать в SMF Package Maker. Ниже три простых шага для создания вашей собственной модификации';
123
+	$text['index_mod'] = 'Mod Maker';
124
+	$text['index_info'] = 'Package-Info Maker';
125
+	$text['index_compress'] = 'Упаковать файл в .zip или .tgz (.tar.gz) архив';
0 126