Mercurial > public > mk2
comparison code_part1/OSTC_code_asm_part1/russian_text.asm @ 424:8147c35da3ca
added russian text version
author | heinrichsweikamp |
---|---|
date | Tue, 02 Aug 2011 20:39:06 +0200 |
parents | |
children | 1afeb73ade7d |
comparison
equal
deleted
inserted
replaced
423:13ecc8a17e67 | 424:8147c35da3ca |
---|---|
1 ;============================================================================= | |
2 ; OSTC - diving computer code | |
3 ; Copyright (C) 2008 HeinrichsWeikamp GbR | |
4 ; | |
5 ; This program is free software: you can redistribute it and/or modify | |
6 ; it under the terms of the GNU General Public License as published by | |
7 ; the Free Software Foundation, either version 3 of the License, or | |
8 ; (at your option) any later version. | |
9 ; | |
10 ; This program is distributed in the hope that it will be useful, | |
11 ; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 ; GNU General Public License for more details. | |
14 ; | |
15 ; You should have received a copy of the GNU General Public License | |
16 ; along with this program. If not, see <http://www.gnu.org/licenses/>. | |
17 ; | |
18 ; Hold texts and screen position to display the texts. | |
19 ; History: | |
20 ; 2007/10/13 : Initial version by Matthias Heinrichs, info@heinrichsweikamp.com | |
21 ; 2008/05/24 : MW. | |
22 ; 2011/02/02 : Jean-Do Gascuel : split into different files for multi-lingual support | |
23 ; 2011/07/25 : Sergei V. Rozinov: Russian translation. | |
24 ; 2011/07/28 : Sergei V. Rozinov: Corrected. | |
25 ; | |
26 ; known bugs: | |
27 ; ToDo: | |
28 ;============================================================================= | |
29 ; | |
30 ; Instructions for translating: | |
31 ; | |
32 ; * Strings are accessed according to the order in the file. | |
33 ; So don't change ordering ! | |
34 ; | |
35 ; * Keep the english original version on the right column. So translations | |
36 ; can be reviewed and maintened. | |
37 ; | |
38 ; * One of the main constraint is to keep texts short, to avoid clobering | |
39 ; the OSTC screen. Of course, the technical, precise terms should be used. | |
40 ; Generally, there is no hard constraint: you can be one or two chars | |
41 ; shorter or longer. | |
42 ; | |
43 ; * Beware that some strings do have a fixed length. You should then use | |
44 ; exactly the same size. | |
45 ; | |
46 ; * Beware that some strings have ponctuation, or trailling space(s). In that | |
47 ; case, you should keep EXACTLY the same ponctuation AND TRAILING SPACES. | |
48 ; | |
49 ; * Ascii chars: we can support a few specific chars. цдьЯ for German. | |
50 ; йикз for French. бнуъсЎї for Spanish. | |
51 ; If you really, absolutly, need more: ask... | |
52 ; | |
53 ; * Do not translate comments (everithing after the ;), because they are | |
54 ; used for maintenance. | |
55 ; | |
56 ; * The X column is position on screen. Some texts are centered, left | |
57 ; padded or right padded. In that case, if you changed the text size, | |
58 ; you will have to adjust position. A char is 7 pixels wide. | |
59 ; | |
60 ;============================================================================= | |
61 ; macro X Y "translation" ; English original | |
62 TCODE .0, .0, "Расчет MD2 хэша" ;001 Building MD2 Hash | |
63 TCODE .0, .25, "Пожалуйста ждите..." ;002 Please Wait... | |
64 TCODE .0, .2, "HeinrichsWeikamp OSTC2" ;003 HeinrichsWeikamp OSTC2 | |
65 TCODE .65, .2, "Меню?" ;004 Menu? | |
66 TCODE .65, .2, "Меню:" ;005 Menu: | |
67 TCODE .20, .35, "Журнал" ;006 Logbook | |
68 TCODE .20, .65, "Настройка газов" ;007 Gas Setup | |
69 TCODE .20, .35, "Установка часов" ;008 Set Time | |
70 TCODE .20, .95, "Меню сброса" ;009 Reset Menu | |
71 TCODE .20, .125, "Настройка" ;010 Setup | |
72 TCODE .20, .185, "Выход" ;011 Exit | |
73 TCODE .104, .2, "Ждите..." ;012 Wait... | |
74 TCODE .0, .24, "MD2 хэш:" ;013 MD2 Hash: | |
75 TCODE .0, .0, "Десат" ;014 Desat (Desaturation count-down) | |
76 TCODE .50, .2, "Интерфейс" ;015 Interface (Connected to USB) | |
77 TCODE .10, .30, "Старт" ;016 Start | |
78 TCODE .10, .55, "Данные" ;017 Data | |
79 TCODE .10, .80, "Заголовок" ;018 Header | |
80 TCODE .10, .105, "Профиль" ;019 Profile | |
81 TCODE .10, .130, "Готово." ;020 Done. | |
82 TCODE .20, .35, "Отменить сброс" ;021 Cancel Reset | |
83 TCODE .32, .65, "Время:" ;022 Time: | |
84 TCODE .32, .95, "Дата :" ;023 Date: | |
85 TCODE .0, .215, "Установить Час" ;024 Set Hours | |
86 TCODE .6, .0, "Сброс..." ;025 Reset... | |
87 TCODE .55, .2, "Журнал" ;026 Logbook | |
88 TCODE .20, .2, "Доп. Параметры I" ;027 Custom Functions I | |
89 TCODE .40, .2, "Меню сброса" ;028 Reset Menu | |
90 TCODE .15, .2, "Установка времени:" ;029 Set Time: | |
91 TCODE .100, .50, "Маркер" ;030 SetMarker (Add a mark in logbook profile) | |
92 TCODE .100, .25, "Декоплан" ;031 Decoplan | |
93 TCODE .100, .0, "Мои Газы" ;032 Gaslist | |
94 TCODE .100, .50, "Сбр.Сред" ;033 ResetAvr (Reset average depth) | |
95 TCODE .100, .100, "Выход" ;034 Exit (Exit current menu) | |
96 TCODE .0, .0, "Нелєт" ;035 NoFly (No-flight count-down) | |
97 ; | |
98 ; 32 custom function descriptors I (FIXED LENGTH = 15 chars). | |
99 TCODE .40, .35, "Начало погр.[m]" ;036 Start Dive [m] (depth to switch to dive mode) | |
100 TCODE .40, .35, "Конец погр. [m]" ;037 End Dive [m] (depth to switch back to surface mode) | |
101 TCODE .40, .35, "Жду после [min]" ;038 End Delay [min] (duration dive screen stays after end of dive) | |
102 TCODE .40, .35, "Отключение[min]" ;039 Power Off [min] | |
103 TCODE .40, .35, "Пред-меню [min]" ;040 Pre-menu [min] (Delais to keep surface-mode menus displayed) | |
104 TCODE .40, .35, "Скорость[m/min]" ;041 velocity[m/min] | |
105 TCODE .40, .35, "Автовключ[mbar]" ;042 Wake-up [mbar] | |
106 TCODE .40, .35, "max. Верх[mbar]" ;043 max.Surf.[mbar] | |
107 TCODE .40, .35, "Показать GF [%]" ;044 GF display [%] | |
108 TCODE .40, .35, "min.O2 показ[%]" ;045 min. O2 Dis.[%] | |
109 TCODE .40, .35, "Меню погр.[min]" ;046 Dive menus[min] | |
110 TCODE .40, .35, "Насыщение x [%]" ;047 Saturate x [%] | |
111 TCODE .40, .35, "Рассыщение x[%]" ;048 Desaturate x[%] | |
112 TCODE .40, .35, "Нелєт фактор[%]" ;049 NoFly Ratio [%] (Grandient factor tolerance for no-flight countdown). | |
113 TCODE .40, .35, "GF тревога 1[%]" ;050 GF alarm 1 [%] | |
114 TCODE .40, .35, "CNS наверху [%]" ;051 CNSshow surf[%] | |
115 TCODE .40, .35, "Деко ниже [m]" ;052 Deco Offset [m] | |
116 TCODE .40, .35, "ppO2 низк [bar]" ;053 ppO2 low [bar] | |
117 TCODE .40, .35, "ppO2 высок[bar]" ;054 ppO2 high [bar] | |
118 TCODE .40, .35, "ppO2 показ[bar]" ;055 ppO2 show [bar] | |
119 TCODE .40, .35, "Интервал данных" ;056 sampling rate | |
120 TCODE .40, .35, "Делитель темпер" ;057 Divisor Temp | |
121 TCODE .40, .35, "Делитель деко " ;058 Divisor Decodat | |
122 TCODE .40, .35, "Делитель неисп1" ;059 Divisor NotUse1 | |
123 TCODE .40, .35, "Делитель ppO2 " ;060 Divisor ppO2 | |
124 TCODE .40, .35, "Делитель дебаг " ;061 Divisor Debug | |
125 TCODE .40, .35, "Делитель неисп2" ;062 Divisor NotUse2 | |
126 TCODE .40, .35, "CNS показать[%]" ;063 CNSshow dive[%] | |
127 TCODE .40, .35, "Номер в журнале" ;064 Logbook offset | |
128 TCODE .40, .35, "Крайняя деко[m]" ;065 Last Deco at[m] | |
129 TCODE .40, .35, "Конец Apnoe [h]" ;066 End Apnoe [h] | |
130 TCODE .40, .35, "Показ напр.бат." ;067 Show Batt.Volts | |
131 ; End of function descriptor I | |
132 ; | |
133 ;licence: | |
134 TCODE .0, .35, "Эта программа свободно" ;068 This program is | |
135 TCODE .0, .65, "распространяется в" ;069 distributed in the | |
136 TCODE .0, .95, "надежде, что она будет" ;070 hope that it will be | |
137 TCODE .0, .125, "полезной, но БЕЗО" ;071 useful, but WITHOUT | |
138 TCODE .0, .155, "ВСЯКИХ ГАРАНТИЙ; также" ;072 ANY WARRANTY | |
139 TCODE .0, .185, "без подразумеваемых" ;073 even the implied | |
140 TCODE .0, .215, "гарантий КОММЕРЧЕСКОЙ" ;074 warranty of | |
141 TCODE .0, .35, "ЦЕННОСТИ или" ;075 MERCHANTABILITY or | |
142 TCODE .0, .65, "ПРИГОДНОСТИ ДЛЯ" ;076 FITNESS FOR A | |
143 TCODE .0, .95, "КОНКРЕТНОЙ ЦЕЛИ." ;077 PARTICULAR PURPOSE. | |
144 TCODE .0, .125, "Смотри GNU General" ;078 See the GNU General | |
145 TCODE .0, .155, "Public License для" ;079 Public License for | |
146 TCODE .0, .185, "полной информации:" ;080 more details: | |
147 TCODE .0, .215, "www.heinrichsweikamp.de" ;081 www.heinrichsweikamp.de | |
148 ; end of licence | |
149 ; | |
150 TCODE .102, .54, "Декостоп" ;082 Decostop | |
151 TCODE .0, .0, "м/мин" ;083 m/min | |
152 TCODE .102, .113, "Без деко" ;084 No Stop | |
153 TCODE .135, .113, "TTS" ;085 TTS | |
154 TCODE .121, .0, "В®емя" ;086 Divetime | |
155 TCODE .0, .0, "Глубина" ;087 Depth | |
156 TCODE .0, .0, "Первый Газ?" ;088 First Gas? | |
157 TCODE .0, .0, "Умолчание:" ;089 Default: | |
158 TCODE .0, .0, "Минуты" ;090 Minutes | |
159 TCODE .0, .0, "Месяц " ;091 Month | |
160 TCODE .0, .0, "День " ;092 Day | |
161 TCODE .0, .0, "Год " ;093 Year | |
162 TCODE .0, .0, "Установить " ;094 Set | |
163 TCODE .0, .0, "Газ# " ;095 Gas# | |
164 TCODE .0, .0, "Да" ;096 Yes | |
165 TCODE .0, .0, "Действует:" ;097 Current: | |
166 TCODE .23, .2, "Меню настройки:" ;098 Setup Menu: | |
167 TCODE .20, .35, "Доп. Параметры I" ;099 Custom FunctionsI | |
168 TCODE .20, .125, "Алгоритм:" ;100 Decotype: | |
169 TCODE .85, .125, "ZH-L16 OC" ;101 ZH-L16 OC | |
170 TCODE .85, .125, "Gauge " ;102 Gauge | |
171 TCODE .85, .125, "Gauge" ;103 Gauge | |
172 TCODE .85, .125, "ZH-L16 CC" ;104 ZH-L16 CC | |
173 TCODE .0, .0, "Активный Газ? " ;105 Active Gas? | |
174 TCODE .10, .2, "Настройка газов" ;106 Gas Setup - Gaslist | |
175 TCODE .20, .95, "Глуб. +/-:" ;107 Depth +/-: | |
176 TCODE .20, .125, "Изменить:" ;108 Change: | |
177 TCODE .20, .155, "Умолчание:" ;109 Default: | |
178 TCODE .20, .65, "Сетпоинты CCR" ;110 CCR SetPoint Menu | |
179 TCODE .20, .2, "Меню сетпоинтов CCR" ;111 CCR SetPoint Menu | |
180 TCODE .0, .0, "SP#" ;112 SP# | |
181 TCODE .20, .95, "Состояние батареи" ;113 Battery Info | |
182 TCODE .17, .2, "Информация батареи" ;114 Battery Information | |
183 TCODE .0, .9, "Циклов:" ;115 Cycles: | |
184 TCODE .85, .125, "Apnoe" ;116 Apnoe | |
185 TCODE .0, .18, "Посл. зарядка:" ;117 Last Complete: | |
186 TCODE .0, .27, "Минимум Vбат:" ;118 Lowest Vbatt: | |
187 TCODE .0, .36, "Минимум дата:" ;119 Lowest at: | |
188 TCODE .0, .45, "Tmin:" ;120 Tmin: | |
189 TCODE .0, .54, "Tmax:" ;121 Tmax: | |
190 TCODE .100, .125, "Далее" ;122 More (Gaslist) | |
191 TCODE .100, .25, "O2 +" ;123 O2 + | |
192 TCODE .100, .50, "O2 -" ;124 O2 - | |
193 TCODE .100, .75, "He +" ;125 He + | |
194 TCODE .100, .100, "He -" ;126 He - | |
195 TCODE .100, .0, "Выход" ;127 Exit | |
196 TCODE .100, .25, "Удалить" ;128 Delete | |
197 TCODE .20, .65, "Дебаг:" ;129 Debug: | |
198 TCODE .65, .65, "Вкл " ;130 ON | |
199 TCODE .65, .65, "Выкл" ;131 OFF | |
200 TCODE .100, .50, "Удал. все" ;132 Del. all | |
201 TCODE .10, .0, "Неожиданный сброс из " ;133 Unexpected reset from | |
202 TCODE .10, .25, "режима погружения! " ;134 Divemode! Please help | |
203 TCODE .10, .50, "Сообщите об ошибке, " ;135 and report the Debug | |
204 TCODE .10, .75, "отправьте отчет ниже!" ;136 Information below! | |
205 TCODE .100, .75, "Бэйлаут" ;137 Bailout | |
206 TCODE .85, .125, "Apnoe " ;138 Apnoe | |
207 TCODE .112, .120, "В воде" ;139 Descent | |
208 TCODE .105, .60, "Наверху" ;140 Surface | |
209 TCODE .65, .2, "Откл?" ;141 Quit? | |
210 TCODE .20, .155, "Далее" ;142 More | |
211 TCODE .42, .72, "Уверены?" ;143 Confirm: | |
212 TCODE .60, .2, "Меню 2:" ;144 Menu 2: | |
213 TCODE .52, .96, "Отмена" ;145 Cancel | |
214 TCODE .52, .120, "OK!" ;146 OK! | |
215 TCODE .20, .35, "Далее" ;147 More | |
216 TCODE .0, .0, ":.........:" ;148 :.........: | |
217 TCODE .0, .8, "ppO2" ;149 ppO2 | |
218 TCODE .2, .39, "bar " ;150 bar | |
219 TCODE .108, .216, "Маркер?" ;151 Marker? | |
220 TCODE .85, .125, "L16-GF OC" ;152 L16-GF OC | |
221 TCODE .20, .65, "Доп. Параметры II" ;153 Custom FunctionsII | |
222 ; | |
223 ; 32 custom function descriptors II (FIXED LENGTH = 15 chars). | |
224 TCODE .40, .35, "GF Low [%]" ;154 GF Low [%] | |
225 TCODE .40, .35, "GF High [%]" ;155 GF High [%] | |
226 TCODE .40, .35, "Цвет# батареи" ;156 Color# Battery | |
227 TCODE .40, .35, "Цвет# стардарт" ;157 Color# Standard | |
228 TCODE .40, .35, "Цвет# под водой" ;158 Color# Divemask | |
229 TCODE .40, .35, "Цвет# предупреж" ;159 Color# Warnings | |
230 TCODE .40, .35, "Время погр.сек." ;160 Divemode secs. | |
231 TCODE .40, .35, "Поправ. фикс.SP" ;161 Adjust fixed SP | |
232 TCODE .40, .35, "Предупреж. стоп" ;162 Warn Ceiling | |
233 TCODE .40, .35, "Картинки газов " ;163 Mix type icons | |
234 TCODE .40, .35, "Напом. лучш.газ" ;164 Blink BetterGas (Remainder in divemode to switch to a better decompression gas). | |
235 TCODE .40, .35, "Трев.глуб[mbar]" ;165 DepthWarn[mbar] | |
236 TCODE .40, .35, "CNS предупр.[%]" ;166 CNS warning [%] | |
237 TCODE .40, .35, "GF предупр. [%]" ;167 GF warning [%] | |
238 TCODE .40, .35, "ppO2 пред.[bar]" ;168 ppO2 warn [bar] | |
239 TCODE .40, .35, "Скор.пр.[m/min]" ;169 Vel.warn[m/min] | |
240 TCODE .40, .35, "Коррекция часов" ;170 Time offset/day | |
241 TCODE .40, .35, "Показ альтиметр" ;171 Show altimeter | |
242 TCODE .40, .35, "Показать маркер" ;172 Show Log-Marker | |
243 TCODE .40, .35, "Показать таймер" ;173 Show Stopwatch | |
244 TCODE .40, .35, "Показ граф. ткн" ;174 ShowTissueGraph | |
245 TCODE .40, .35, "Показ глав. ткн" ;175 Show Lead.Tiss. | |
246 TCODE .40, .35, "Мелк.ост.вверху" ;176 Shallow stop 1st (Reverse order of deco plans) | |
247 TCODE .40, .35, "Перекл.газ[min]" ;177 Gas switch[min] (Additional delay in decoplan for gas switches). | |
248 TCODE .40, .35, "Донн.расх[/min]" ;178 BottomGas[/min] (Bottom gas usage, for volume estimation). | |
249 TCODE .40, .35, "Подъ.расх[/min]" ;179 AscentGas[/min] (Ascent+Deco gas usage) | |
250 TCODE .40, .35, "Будущ. TTS[min]" ;180 Future TTS[min] (@5 variant: compute TTS for extra time at current depth) | |
251 TCODE .40, .35, "Не используется" ;181 not used | |
252 TCODE .40, .35, "Не используется" ;182 not used | |
253 TCODE .40, .35, "Не используется" ;183 not used | |
254 TCODE .40, .35, "Не используется" ;184 not used | |
255 TCODE .40, .35, "Не используется" ;185 not used | |
256 ; End of function descriptor II | |
257 ; | |
258 TCODE .20, .2, "Доп. Параметры II" ;186 Custom Functions II | |
259 TCODE .20, .95, "Показать лицензию" ;187 Show License | |
260 TCODE .0, .2, "Результаты:" ;188 Sim. Results: | |
261 TCODE .90, .25, "Поверхн." ;189 Surface | |
262 TCODE .0, .0, "ppO2 +" ;190 ppO2 + | |
263 TCODE .0, .0, "ppO2 -" ;191 ppO2 - | |
264 TCODE .0, .0, "Дил." ;192 Dil. (Rebreather diluent) | |
265 ; ZH-L16 mode description | |
266 TCODE .0, .35, "Алгоритм: ZH-L16 OC" ;193 Decotype: ZH-L16 OC | |
267 TCODE .0, .65, "Для открытой схемы " ;194 For Open Circuit | |
268 TCODE .0, .95, "дыхания. Доступно " ;195 Divers. Supports 5 | |
269 TCODE .0, .125, "до 5 Тримикс-смесей" ;196 Trimix Gases. | |
270 TCODE .0, .155, "Задайте свои газы " ;197 Configure your gas | |
271 TCODE .0, .185, "в меню настройки. " ;198 in Gassetup menu. | |
272 TCODE .0, .215, "Уточн. ДП11 & ДП12!" ;199 Check CF11 & CF12 ! | |
273 ; Gaugemode description | |
274 TCODE .0, .35, "Алгоритм: Gauge " ;200 Decotype: Gauge | |
275 TCODE .0, .65, "Время под водой в " ;201 Divetime will be in | |
276 TCODE .0, .95, "виде Минуты:Секунды" ;202 Minutes:Seconds. | |
277 TCODE .0, .125, "OSTC2 не вычисляет " ;203 OSTC2 will not | |
278 TCODE .0, .155, "декомпрессию, " ;204 compute Deco, NoFly | |
279 TCODE .0, .185, "нелєтное время и " ;205 time and Desat. | |
280 TCODE .0, .215, "время рассыщения! " ;206 time at all! | |
281 ; Const.ppO2 description | |
282 TCODE .0, .35, "Алгоритм: ZH-L16 CC" ;207 Decotype: ZH-L16 CC | |
283 TCODE .0, .65, "Для (полу-)закрытой" ;208 For (Semi-)Closed | |
284 TCODE .0, .95, "схемы дыхания. " ;209 Circuit rebreathers | |
285 TCODE .0, .125, "Задайте 3 Сетпоинта" ;210 Configure the 3 | |
286 TCODE .0, .155, "в меню настройки " ;211 SetPoints in CCR - | |
287 TCODE .0, .185, "CCR. Доступно до 5 " ;212 Setup menu. 5 bail- | |
288 TCODE .0, .215, "Бэйлаут-смесей. " ;213 outs are available. | |
289 ; Apnoemode description | |
290 TCODE .0, .35, "Алгоритм: Apnoe " ;214 Decotype: Apnoe | |
291 TCODE .0, .65, "OSTC2 показывает " ;215 OSTC2 will display | |
292 TCODE .0, .95, "каждое погружение " ;216 each descent separ- | |
293 TCODE .0, .125, "отдельно в Мин:Сек." ;217 ately in Min:Sec. | |
294 TCODE .0, .155, "Временно выставляет" ;218 Will temporally set | |
295 TCODE .0, .185, "период данных 1 сек" ;219 samplerate to 1 sec | |
296 TCODE .0, .215, "Не вычисляет деко! " ;220 No Deco calculation | |
297 ; Multi GF OC mode description | |
298 TCODE .0, .35, "Алгоритм: L16-GF OC" ;221 Decotype: L16-GF OC | |
299 TCODE .0, .65, "Расчет декомпрессии" ;222 Decompression cal- | |
300 TCODE .0, .95, "с методом градиент-" ;223 culations with the | |
301 TCODE .0, .125, "фактора (GF_lo/GF " ;224 GF-Method (GF_lo/GF | |
302 TCODE .0, .155, "_hi). Уточн. ДП32 &" ;225 _hi). Check CF32 & | |
303 TCODE .0, .185, "ДП33!Открытый цикл," ;226 CF33! Open Circuit | |
304 TCODE .0, .215, "глубокие остановки." ;227 with Deep Stops. | |
305 ; Multi GF CC mode description | |
306 TCODE .0, .35, "Алгоритм: L16-GF CC" ;228 Decotype: L16-GF CC | |
307 TCODE .0, .65, "Расчет декомпрессии" ;229 Decompression cal- | |
308 TCODE .0, .95, "с методом градиент-" ;230 culations with the | |
309 TCODE .0, .125, "фактора (GF_lo/GF " ;231 GF-Method (GF_lo/GF | |
310 TCODE .0, .155, "_hi). Уточн. ДП32 &" ;232 _hi). Check CF32 & | |
311 TCODE .0, .185, "ДП33!Закрытый цикл," ;233 CF33!Closed Circuit | |
312 TCODE .0, .215, "глубокие остановки." ;234 with Deep Stops. | |
313 ; | |
314 TCODE .10, .2, "Алгоритм изменен! " ;235 Decomode changed! | |
315 TCODE .85, .125, "L16-GF CC" ;236 L16-GF CC | |
316 TCODE .2, .12, "Не найден" ;237 Not found | |
317 TCODE .100, .0, "Сетпоинт" ;238 SetPoint | |
318 TCODE .100, .0, "Нет деко" ;239 No Deco | |
319 TCODE .90, .50, "Интервал:" ;240 Interval: | |
320 TCODE .100, .75, "Яркость" ;241 Display | |
321 TCODE .100, .0, "Нет деко" ;242 No deco | |
322 TCODE .132, .0, "beta" ;243 beta | |
323 TCODE .100, .100, "unuse" ;244 unuse | |
324 TCODE .20, .65, "Сброс ДП,газ и деко" ;245 Reset CF,Gas & Deco | |
325 TCODE .50, .145, "Батарея!" ;246 LowBatt! | |
326 TCODE .20, .125, "Планировщик" ;247 Simulator | |
327 TCODE .30, .2, "OSTC Планировщик" ;248 OSTC Simulator | |
328 TCODE .20, .35, "Начать имитацию" ;249 Start Dive | |
329 TCODE .100, .25, "+ 1м" ;250 + 1m | |
330 TCODE .100, .50, "- 1м" ;251 - 1m | |
331 TCODE .100, .75, "+10м" ;252 +10m | |
332 TCODE .100, .100, "-10м" ;253 -10m | |
333 TCODE .100, .0, "Закрыть" ;254 Close | |
334 TCODE .131, .170, "Часы" ;255 Time | |
335 ; | |
336 ; Text Bank2 (Texts 256-511) | |
337 ; | |
338 TCODE .0, .0, "x" ;256 x | |
339 TCODE .20, .35, "Формат даты:" ;257 Date format: | |
340 TCODE .23, .2, "Меню настройки 2:" ;258 Setup Menu 2: | |
341 TCODE .105, .35, "MMDDYY" ;259 MMDDYY | |
342 TCODE .105, .35, "DDMMYY" ;260 DDMMYY | |
343 TCODE .105, .35, "YYMMDD" ;261 YYMMDD | |
344 TCODE .1, .1, "OSTC " ;262 OSTC | |
345 TCODE .65, .168, "Bail " ;263 Bail | |
346 TCODE .7, .48, "Air " ;264 Air | |
347 TCODE .120, .135, "Air " ;265 Air | |
348 TCODE .2, .39, "Калибровка" ;266 Calibrate | |
349 TCODE .0, .216, "Макс." ;267 Max. | |
350 TCODE .10, .8, "не" ;268 not | |
351 TCODE .10, .16, "найден!" ;269 found! | |
352 TCODE .0, .0, "mV:" ;270 mV: | |
353 ; New CFs Warning | |
354 TCODE .24, .2, "Добавлены ДП!" ;271 New CF added! | |
355 TCODE .0, .35, "Новые Доп. Параметры" ;272 New CustomFunctions | |
356 TCODE .0, .65, "добавлены! Проверьте" ;273 were added! Check | |
357 TCODE .0, .95, "Меню ДП I and ДП II" ;274 CF I and CF II Menu | |
358 TCODE .0, .125, "для информации!" ;275 for Details! | |
359 TCODE .20, .95, "Соленость: " ;276 Salinity: | |
360 ; | |
361 TCODE .20, .65, "Время на дне :" ;277 Bottom Time: | |
362 TCODE .20, .95, "Макс. глубина:" ;278 Max. Depth: | |
363 TCODE .20, .125, "Вычислить деко" ;279 Calculate Deco | |
364 TCODE .20, .155, "Показать план" ;280 Show Decoplan | |
365 ; | |
366 TCODE .107, .170, "С®едняя" ;281 Avr.Depth | |
367 TCODE .90, .170, "Глав ткань" ;282 Lead Tiss. | |
368 TCODE .114, .170, "Тайме®" ;283 Stopwatch | |
369 TCODE .20, .95, "Сброс журнала" ;284 Reset Logbook | |
370 TCODE .20, .125, "Перезагрузка OSTC" ;285 Reboot OSTC | |
371 TCODE .20, .155, "Сброс данных деко" ;286 Reset Decodata | |
372 ; Altimeter extension | |
373 TCODE .20, .155, "Альтиметр" ;287 Altimeter | |
374 TCODE .10, .1, "Настройка альтиметра" ;288 Set Altimeter | |
375 TCODE .20, .35, "Уров.моря: " ;289 Sea ref: | |
376 TCODE .0, .0, "Включен? : " ;290 Enabled: | |
377 TCODE .20, .95, "Умолчание: 1013 mbar" ;291 Default: 1013 mbar | |
378 TCODE .20, .125, "+1 mbar" ;292 +1 mbar | |
379 TCODE .20, .155, "-1 mbar" ;293 -1 mbar | |
380 TCODE .85, .185, "Alt: " ;294 Alt: | |
381 ; | |
382 TCODE .20, .125, "Показать дамп" ;295 Show raw data | |
383 TCODE .50, .2, "Дамп:" ;296 Raw Data: | |
384 ; Gas-setup addons: | |
385 TCODE .0, .0, "MOD:" ;297 MOD: (max operating depth of a gas). | |
386 TCODE .0, .0, "END:" ;298 END: (equivalent nitrogen depth of a gas). | |
387 TCODE .0, .0, "EAD:" ;299 EAD: (equivalent air depth of a gas). | |
388 TCODE .100, .125, "Включен?" ;300 Active? (Enable/Disable Gas underwater) | |
389 TCODE .0, .2, "Расход OCR газов:" ;301 OCR Gas Usage: (Planned gas consumtion by tank). | |
390 ; 115k Bootloader support: | |
391 TCODE .45, .100, "Загрузчик" ;302 Bootloader | |
392 TCODE .40, .130, "Пожалуйста ждите!" ;303 Please wait! | |
393 TCODE .50, .130, "Прервано!" ;304 Aborted | |
394 ;@5 variant | |
395 TCODE .0, .0, "Будущ. TTS" ;305 Future TTS (=10 chars. Title for @5 customview). | |
396 TCODE .100, .125, "Quit Sim" ;306 Quit Sim (=8char max. Quit Simulator mode) | |
397 ;Dive interval | |
398 TCODE .20, .35, "Interval:" ;307 Interval: | |
399 TCODE .0, .0, "Now " ;308 Now (7 chars min) | |
400 TCODE .108, .112, "Average" ;309 Average | |
401 TCODE .94, .54, "Stopwatch" ;310 Stopwatch (BIG Stopwatch in Gauge mode) | |
402 ;============================================================================= |