Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/turkish_text.asm @ 501:986ec4d76510
FRENCH brightness text updated.
author | JeanDo |
---|---|
date | Wed, 16 Nov 2011 13:30:11 +0100 |
parents | 2ac77db9c150 |
children | 611ed301c3af |
rev | line source |
---|---|
495 | 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/03/29 : Oliver J. Albrecht: German translation. | |
24 ; | |
25 ; known bugs: | |
26 ; ToDo: | |
27 ;============================================================================= | |
28 ; | |
29 ; Instructions for translating: | |
30 ; | |
31 ; * Strings are accessed according to the order in the file. | |
32 ; So don't change ordering ! | |
33 ; | |
34 ; * Keep the english original version on the right column. So translations | |
35 ; can be reviewed and maintened. | |
36 ; | |
37 ; * One of the main constraint is to keep texts short, to avoid clobering | |
38 ; the OSTC screen. Of course, the technical, precise terms should be used. | |
39 ; Generally, there is no hard constraint: you can be one or two chars | |
40 ; shorter or longer. | |
41 ; | |
42 ; * Beware that some strings do have a fixed length. You should then use | |
43 ; exactly the same size. | |
44 ; | |
45 ; * Beware that some strings have ponctuation, or trailling space(s). In that | |
46 ; case, you should keep EXACTLY the same ponctuation AND TRAILING SPACES. | |
47 ; | |
48 ; * Ascii chars: we can support a few specific chars. Oäüß for German. | |
49 ; éèêC for French. áíóúñ¡¿ for Spanish. | |
50 ; If you really, absolutly, need more: ask... | |
51 ; | |
52 ; * Do not translate comments (everithing after the ;), because they are | |
53 ; used for maintenance. | |
54 ; | |
55 ; * The X column is position on screen. Some texts are centered, left | |
56 ; padded or right padded. In that case, if you changed the text size, | |
57 ; you will have to adjust position. A char is 7 pixels wide. | |
58 ; | |
59 ;============================================================================= | |
60 ; Define's section | |
61 ; Definition translation ; English original | |
62 #IFNDEF TXT_DEFINED | |
63 #DEFINE TXT_DEFINED | |
64 | |
65 #DEFINE TXT_GAS_C 'G' ; 'G' | |
66 #DEFINE TXT_GAS1 "G" ; "G" | |
67 #DEFINE TXT_METER_C 'm' ; 'm' | |
68 #DEFINE TXT_METER5 "m " ; "m " | |
69 #DEFINE TXT_METER3 "m " ; "m " | |
70 #DEFINE TXT_METER2 "m " ; "m " | |
71 #DEFINE TXT_METER1 "m" ; "m" | |
72 #DEFINE TXT_MBAR7 " mbar " ; " mbar " | |
73 #DEFINE TXT_MBAR5 "mbar " ; "mbar " | |
74 #DEFINE TXT_BAR4 "bar " ; "bar " | |
75 #DEFINE TXT_BAR3 "bar" ; "bar" | |
76 #DEFINE TXT_ALT5 "Alt: " ; "Alt: " | |
77 #DEFINE TXT_KGL4 "kg/l" ; "kg/l" | |
78 #DEFINE TXT_VOLT2 "V " ; "V " | |
79 #DEFINE TXT_VOLT1 "V" ; "V" | |
80 #DEFINE TXT_STEP5 "Step:" ; "Step:" | |
81 #DEFINE TXT_CF2 "CF" ; "CF" | |
82 #DEFINE TXT_O2_4 "O2: " ; "O2: " | |
83 #DEFINE TXT_O2_3 "O2 " ; "O2 " | |
84 #DEFINE TXT_AIR4 "AIR " ; "AIR " | |
85 #DEFINE TXT_ERR4 "ERR " ; "ERR " | |
86 #DEFINE TXT_HE4 "He: " ; "He: " | |
87 #DEFINE TXT_NX3 "NX " ; "NX " | |
88 #DEFINE TXT_TX3 "TX " ; "TX " | |
89 #DEFINE TXT_IN4 " in " ; " in " | |
90 #DEFINE TXT_G1_3 "G1:" ; "G1:" | |
91 #DEFINE TXT_G2_3 "G2:" ; "G2:" | |
92 #DEFINE TXT_G3_3 "G3:" ; "G3:" | |
93 #DEFINE TXT_G4_3 "G4:" ; "G4:" | |
94 #DEFINE TXT_G5_3 "G5:" ; "G5:" | |
95 #DEFINE TXT_G6_3 "G6:" ; "G6:" | |
96 #DEFINE TXT_1ST4 "1st:" ; "1st:" | |
97 #DEFINE TXT_CNS4 "CNS:" ; "CNS:" | |
98 #DEFINE TXT_CNSGR10 "CNS > 250%" ; "CNS > 250%" | |
99 #DEFINE TXT_AVR4 "Avr:" ; "Avr:" | |
100 #DEFINE TXT_GF3 "GF:" ; "GF:" | |
101 #DEFINE TXT_SAT4 "Sat:" ; "Sat:" | |
102 #DEFINE TXT_0MIN5 "0 dk " ; "0min " | |
103 #DEFINE TXT_MIN4 "dk " ; "min " | |
104 #DEFINE TXT_BSAT5 "BSat:" ; "BSat:" | |
105 #DEFINE TXT_BDES5 "BDes:" ; "BDes:" | |
106 #DEFINE TXT_LAST5 "Son: " ; "Last:" | |
107 #DEFINE TXT_GFLO6 "GFmin:" ; "GF_lo:" | |
108 #DEFINE TXT_GFHI6 "GFmax:" ; "GF_hi:" | |
109 #DEFINE TXT_PPO2_5 "ppO2:" ; "ppO2:" | |
110 #DEFINE TXT_OC_O1 "O" ; "O" | |
111 #DEFINE TXT_OC_C1 "C" ; "C" | |
112 #DEFINE TXT_CC_C1_1 "C" ; "C" | |
113 #DEFINE TXT_CC_C2_1 "C" ; "C" | |
114 #DEFINE TXT_GF_G1 "G" ; "G" | |
115 #DEFINE TXT_GF_F1 "F" ; "F" | |
116 #DEFINE TXT_SP2 "SP" ; "SP" | |
117 #DEFINE TXT_DIL4 "Dil:" ; "Dil:" | |
118 #DEFINE TXT_N2_2 "N2" ; "N2" | |
119 #DEFINE TXT_HE2 "He" ; "He" | |
120 | |
121 #ENDIF | |
122 ;============================================================================= | |
123 ; macro X Y "translation" ; English original | |
124 TCODE .0, .0, "Firmware Kontrol " ;001 Building MD2 Hash | |
125 TCODE .0, .25, "Lütfen Bekle..." ;002 Please Wait... | |
126 TCODE .0, .2, "HeinrichsWeikamp OSTC2" ;003 HeinrichsWeikamp OSTC2 | |
127 TCODE .65, .2, "Menü?" ;004 Menu? | |
128 TCODE .65, .2, "Menü:" ;005 Menu: | |
129 TCODE .20, .35, "LogBook" ;006 Logbook | |
130 TCODE .20, .65, "Gaz Karisimi " ;007 Gas Setup | |
131 TCODE .20, .35, "Tarih Ayari " ;008 Set Time | |
132 TCODE .20, .95, "Fabrika Ayarlari " ;009 Reset Menu | |
133 TCODE .20, .125, "Kurulum " ;010 Setup | |
134 TCODE .20, .185, "<-- " ;011 Exit | |
135 TCODE .97, .2, "Bekle... " ;012 Wait... | |
136 TCODE .0, .24, "MD2 Hash:" ;013 MD2 Hash: | |
137 TCODE .0, .0, "Desat" ;014 Desat (Desaturation count-down) | |
138 TCODE .50, .2, "Inteface " ;015 Interface (Connected to USB) | |
139 TCODE .10, .30, "Basla" ;016 Start | |
140 TCODE .10, .55, "Veri " ;017 Data | |
141 TCODE .10, .80, "Baslik " ;018 Header | |
142 TCODE .10, .105, "Profil" ;019 Profile | |
143 TCODE .10, .130, "Bitti " ;020 Done. | |
144 TCODE .20, .35, "Sifirlama Iptal " ;021 Cancel Reset | |
145 TCODE .32, .65, "Saat: " ;022 Time: | |
146 TCODE .32, .95, "Tarih:" ;023 Date: | |
147 TCODE .0, .215, "Saati Ayarla " ;024 Set Hours | |
148 TCODE .6, .0, "Sifirla... " ;025 Reset... | |
149 TCODE .55, .2, "LogBook" ;026 Logbook | |
150 TCODE .14, .2, "Ozel Fonksiyonlar I" ;027 Custom Functions I | |
151 TCODE .14, .2, "Menü Sifirla " ;028 Reset Menu | |
152 TCODE .14, .2, "Saati Ayarla: " ;029 Set Time: | |
153 TCODE .100, .50, "Isaret " ;030 SetMarker (Add a mark in logbook profile) | |
154 TCODE .100, .25, "Dekoplan" ;031 Decoplan | |
155 TCODE .100, .0, "GazListe" ;032 Gaslist | |
156 TCODE .100, .50, "Sifirla " ;033 ResetAvr (Reset average depth) | |
157 TCODE .100, .100, "<-- " ;034 Exit (Exit current menu) | |
158 TCODE .0, .0, "Ucus " ;035 NoFly (No-flight count-down) | |
159 ; | |
160 ; 32 custom function descriptors I (FIXED LENGTH = 15 chars). | |
161 TCODE .40, .35, "Dalis Basla [m]" ;036 Start Dive [m] (depth to switch to dive mode) | |
162 TCODE .40, .35, "Dalis Bitir [m]" ;037 End Dive [m] (depth to switch back to surface mode) | |
163 TCODE .40, .35, "Bekleme [sn]" ;038 End Delay [sec] (duration dive screen stays after end of dive) | |
164 TCODE .40, .35, "Güc Kapama [dk]" ;039 Power Off [min] | |
165 TCODE .40, .35, "Alt Menü [dk]" ;040 Pre-menu [min] (Delais to keep surface-mode menus displayed) | |
166 TCODE .40, .35, "Hiz [m/dk]" ;041 velocity[m/min] | |
167 TCODE .40, .35, "Uyan [mbar]" ;042 Wake-up [mbar] | |
168 TCODE .40, .35, "Max Yüzey[mbar]" ;043 max.Surf.[mbar] | |
169 TCODE .40, .35, "GF Goster [%]" ;044 GF display [%] | |
170 TCODE .40, .35, "min. O2 Dis.[%]" ;045 min. O2 Dis.[%] | |
171 TCODE .40, .35, "Dalis Menü[min]" ;046 Dive menus[min] | |
172 TCODE .40, .35, "Saturasyon x[%]" ;047 Saturate x [%] | |
173 TCODE .40, .35, "Desaturas. x[%]" ;048 Desaturate x[%] | |
174 TCODE .40, .35, "Ucus Yüzde [%]" ;049 NoFly Ratio [%] (Grandient factor tolerance for no-flight countdown). | |
175 TCODE .40, .35, "GF Alarm 1 [%]" ;050 GF alarm 1 [%] | |
176 TCODE .40, .35, "CNS goster [%]" ;051 CNSshow surf[%] | |
177 TCODE .40, .35, "Deko Ofset [m]" ;052 Deco Offset [m] | |
178 TCODE .40, .35, "ppO2 min. [bar]" ;053 ppO2 low [bar] | |
179 TCODE .40, .35, "ppO2 max. [bar]" ;054 ppO2 high [bar] | |
180 TCODE .40, .35, "ppO2 Gost.[bar]" ;055 ppO2 show [bar] | |
181 TCODE .40, .35, "Ornekeleme " ;056 sampling rate | |
182 TCODE .40, .35, "Sicaklik Orani " ;057 Divisor Temp | |
183 TCODE .40, .35, "Deko Orani " ;058 Divisor Decodat | |
184 TCODE .40, .35, "GF Orani " ;059 Divisor GF | |
185 TCODE .40, .35, "ppO2 Orani " ;060 Divisor ppO2 | |
186 TCODE .40, .35, "Debug Orani " ;061 Divisor Debug | |
187 TCODE .40, .35, "CNS Orani " ;062 Divisor CNS | |
188 TCODE .40, .35, "CNS-Bilgisi [%]" ;063 CNSshow dive[%] | |
189 TCODE .40, .35, "LogBook Ofset " ;064 Logbook offset | |
190 TCODE .40, .35, "Son Deko [m]" ;065 Last Deco at[m] | |
191 TCODE .40, .35, "Apnea Bitir [h]" ;066 End Apnoe [h] | |
192 TCODE .40, .35, "Batarya Gücü[v]" ;067 Show Batt.Volts | |
193 ; End of function descriptor I | |
194 ; | |
195 ;licence: | |
196 TCODE .0, .35, "Bu cihaz ve yazilim fay" ;068 This program is | |
197 TCODE .0, .65, "dali olacagi düsünüle- " ;069 distributed in the | |
198 TCODE .0, .95, "rek üretilmistir!. " ;070 hope that it will be | |
199 TCODE .0, .125, "Ancak herhangi bir ga- " ;071 useful, but WITHOUT | |
200 TCODE .0, .155, "ranti verilmemektedir. " ;072 ANY WARRANTY | |
201 TCODE .0, .185, "Bu cihazi ve icindeki " ;073 even the implied | |
202 TCODE .0, .215, "yazilimi kullanmak sa- " ;074 warranty of | |
203 TCODE .0, .35, "dece sizin sorumlulugu-" ;075 MERCHANTABILITY or | |
204 TCODE .0, .65, "nuzdadir.Hicbir sekilde" ;076 FITNESS FOR A | |
205 TCODE .0, .95, "üretici firma dogacak " ;077 PARTICULAR PURPOSE. | |
206 TCODE .0, .125, "sorunlardan sorumlu tu-" ;078 See the GNU General | |
207 TCODE .0, .155, "tulamaz. Daha fazla de-" ;079 Public License for | |
208 TCODE .0, .185, "yat icin: " ;080 more details: | |
209 TCODE .0, .215, "www.heinrichsweikamp.de" ;081 www.heinrichsweikamp.de | |
210 ; end of licence | |
211 ; | |
212 TCODE .85, .54, "Deko Durak" ;082 Decostop | |
213 TCODE .0, .0, "m/dk " ;083 m/min | |
214 TCODE .100, .113, "Dekosuz " ;084 No Stop | |
215 TCODE .135, .113, "TTS" ;085 TTS | |
216 ; TCODE .71, .113, "Yüzey Varis" ;085 TTS | |
217 TCODE .85, .0, "Dalis Süre" ;086 Divetime | |
218 TCODE .0, .0, "Derinlik" ;087 Depth | |
219 TCODE .0, .0, "Ilk Gaz ? " ;088 First Gas? | |
220 TCODE .0, .0, "Standart:" ;089 Default: | |
221 TCODE .0, .0, "Dakika " ;090 Minutes | |
222 TCODE .0, .0, "Ay " ;091 Month | |
223 TCODE .0, .0, "Gün " ;092 Day | |
224 TCODE .0, .0, "Yil " ;093 Year | |
225 TCODE .0, .0, "Giris " ;094 Set | |
226 TCODE .0, .0, "Gaz# " ;095 Gas# | |
227 TCODE .0, .0, "Ok" ;096 Yes | |
228 TCODE .0, .0, "Aktif: " ;097 Current: | |
229 TCODE .14, .2, "Ayarlar: " ;098 Setup Menu: | |
230 TCODE .20, .35, "Ozel Fonksiyonlar I" ;099 Custom FunctionsI | |
231 TCODE .20, .125, "Deko Mod:" ;100 Decotype: | |
232 TCODE .85, .125, "ZH-L16 OC" ;101 ZH-L16 OC | |
233 TCODE .85, .125, "Derinlik " ;102 Gauge | |
234 TCODE .85, .125, "Derinlik " ;103 Gauge | |
235 TCODE .85, .125, "ZH-L16 CC" ;104 ZH-L16 CC | |
236 TCODE .0, .0, "Aktif Gaz? " ;105 Active Gas? | |
237 TCODE .10, .2, "Gaz Ayarlari : Liste " ;106 Gas Setup - Gaslist | |
238 TCODE .20, .95, "Derin +/-:" ;107 Depth +/-: | |
239 TCODE .20, .125, "Degisti:" ;108 Change: | |
240 TCODE .20, .155, "Standart:" ;109 Default: | |
241 TCODE .20, .65, "CCR Kismi Basinc " ;110 CCR SetPoint Menu | |
242 TCODE .20, .2, "CCR Kismi Basinc " ;111 CCR SetPoint Menu | |
243 TCODE .0, .0, "SP#" ;112 SP# | |
244 TCODE .20, .95, "Batarya Bilgi" ;113 Battery Info | |
245 TCODE .10, .2, "Batarya Bilgisi " ;114 Battery Information | |
246 TCODE .0, .9, "Döngü :" ;115 Cycles: | |
247 TCODE .85, .125, "Apnea" ;116 Apnoe | |
248 TCODE .0, .18, "En Son Biten:" ;117 Last Complete: | |
249 TCODE .0, .27, "En Düsük (V): " ;118 Lowest Vbatt: | |
250 TCODE .0, .36, "En Düsük :" ;119 Lowest at: | |
251 TCODE .0, .45, "Tmin:" ;120 Tmin: | |
252 TCODE .0, .54, "Tmax:" ;121 Tmax: | |
253 TCODE .100, .125, "Daha" ;122 More (Gaslist) | |
254 TCODE .100, .25, "O2 +" ;123 O2 + | |
255 TCODE .100, .50, "O2 -" ;124 O2 - | |
256 TCODE .100, .75, "He +" ;125 He + | |
257 TCODE .100, .100, "He -" ;126 He - | |
258 TCODE .100, .0, "Cik " ;127 Exit | |
259 TCODE .100, .25, "Sil " ;128 Delete | |
260 TCODE .20, .65, "Debug:" ;129 Debug: | |
261 TCODE .65, .65, "ON " ;130 ON | |
262 TCODE .65, .65, "OFF" ;131 OFF | |
263 TCODE .100, .50, "Hepsini Sil " ;132 Del. all | |
264 TCODE .10, .0, "Beklenmeyen Reset " ;133 Unexpected reset from | |
265 TCODE .10, .25, "Dalis Modu! Lütfen asa" ;134 Divemode! Please help | |
266 TCODE .10, .50, "gidaki hata kodunu ra" ;135 and report the Debug | |
267 TCODE .10, .75, "porlayin. " ;136 Information below! | |
268 TCODE .100, .75, "Bailout" ;137 Bailout | |
269 TCODE .85, .125, "Apnea " ;138 Apnoe | |
270 TCODE .105, .120, "Yüksel " ;139 Descent | |
271 TCODE .105, .60, "Yüzey " ;140 Surface | |
272 TCODE .65, .2, "Cikis ? " ;141 Quit? | |
273 TCODE .20, .155, "Daha" ;142 More | |
274 TCODE .42, .72, "Onayla?" ;143 Confirm: | |
275 TCODE .60, .2, "Menü 2:" ;144 Menu 2: | |
276 TCODE .52, .96, "Iptal " ;145 Cancel | |
277 TCODE .52, .120, "OK!" ;146 OK! | |
278 TCODE .20, .35, "Daha" ;147 More | |
279 TCODE .0, .0, ":.........:" ;148 :.........: | |
280 TCODE .0, .8, "ppO2" ;149 ppO2 | |
281 TCODE .2, .39, "bar " ;150 bar | |
282 TCODE .108, .216, "Isaret?" ;151 Marker? | |
283 TCODE .85, .125, "L16-GF OC" ;152 L16-GF OC | |
284 TCODE .20, .65, "Ozel Fonksiyonlar II" ;153 Custom FunctionsII | |
285 ; | |
286 ; 32 custom function descriptors II (FIXED LENGTH = 15 chars). | |
287 TCODE .40, .35, "GF Düsük [%]" ;154 GF Low [%] | |
288 TCODE .40, .35, "GF Yüksek [%]" ;155 GF High [%] | |
289 TCODE .40, .35, "Renk# Batarya " ;156 Color# Battery | |
290 TCODE .40, .35, "Renk# Standart " ;157 Color# Standard | |
291 TCODE .40, .35, "Renk# Dalis " ;158 Color# Divemask | |
292 TCODE .40, .35, "Renk# Uyarilar " ;159 Color# Warnings | |
293 TCODE .40, .35, "Dalis Modu Sn. " ;160 Divemode secs. | |
294 TCODE .40, .35, "Sabit SP Ayari " ;161 Adjust fixed SP | |
295 TCODE .40, .35, "Satih Uyarisi " ;162 Warn Ceiling | |
296 TCODE .40, .35, "Gaz Mix Ikonlar" ;163 Mix type icons | |
297 TCODE .40, .35, "En iyi Gaz " ;164 Blink BetterGas (Remainder in divemode to switch to a better decompression gas). | |
298 TCODE .40, .35, "Derinlik [mbar]" ;165 DepthWarn[mbar] | |
299 TCODE .40, .35, "CNS Uyarisi [%]" ;166 CNS warning [%] | |
300 TCODE .40, .35, "GF Uyarisi [%]" ;167 GF warning [%] | |
301 TCODE .40, .35, "ppO2 Uyar.[bar]" ;168 ppO2 warn [bar] | |
302 TCODE .40, .35, "Hiz Uyar[m/min]" ;169 Vel.warn[m/min] | |
303 TCODE .40, .35, "Zaman Ofset/Gün" ;170 Time offset/day | |
304 TCODE .40, .35, "Yükseklik " ;171 Show altimeter | |
305 TCODE .40, .35, "Log Isaret " ;172 Show Log-Marker | |
306 TCODE .40, .35, "Kronometre " ;173 Show Stopwatch | |
307 TCODE .40, .35, "Doku Grafik " ;174 ShowTissueGraph | |
308 TCODE .40, .35, "Oncü Doku " ;175 Show Lead.Tiss. | |
309 TCODE .40, .35, "Ilk Bekleme " ;176 Shallow stop 1st (Reverse order of deco plans) | |
310 TCODE .40, .35, "Gaz Degist[min]" ;177 Gas switch[min] (Additional delay in decoplan for gas switches). | |
311 TCODE .40, .35, "Dip Gazi [/min]" ;178 BottomGas[/min] (Bottom gas usage, for volume estimation). | |
312 TCODE .40, .35, "Inis Gazi[/min]" ;179 AscentGas[/min] (Ascent+Deco gas usage) | |
313 TCODE .40, .35, "TTS @+Min [min]" ;180 Future TTS[min] (@5 variant: compute TTS for extra time at current depth) | |
314 TCODE .40, .35, "Graph. Velocity" ;182 Graph. Velocity (Show a graphical representation of the ascend speed) | |
315 TCODE .40, .35, "Kullanim Disi " ;182 not used | |
316 TCODE .40, .35, "Kullanim Disi " ;183 not used | |
317 TCODE .40, .35, "Kullanim Disi " ;184 not used | |
318 TCODE .40, .35, "Kullanim Disi " ;185 not used | |
319 ; End of function descriptor II | |
320 ; | |
321 TCODE .13, .2, "Ozel Fonksiyonlar II" ;186 Custom Functions II | |
322 TCODE .20, .95, "Lisansi Goster " ;187 Show License | |
323 TCODE .0, .2, "Simulasyon:" ;188 Sim. Results: | |
324 TCODE .90, .25, "Yüzey " ;189 Surface | |
325 TCODE .0, .0, "ppO2 +" ;190 ppO2 + | |
326 TCODE .0, .0, "ppO2 -" ;191 ppO2 - | |
327 TCODE .0, .0, "Dil." ;192 Dil. (Rebreather diluent) | |
328 ; ZH-L16 mode description | |
329 TCODE .0, .35, "Deko Modeli: ZH-L16 OC " ;193 Decotype: ZH-L16 OC | |
330 TCODE .0, .65, "Standart dalis modeli. " ;194 For Open Circuit | |
331 TCODE .0, .95, "Cihaz,5 adet Trimix ga-" ;195 Divers. Supports 5 | |
332 TCODE .0, .125, "zini desteklemektedir. " ;196 Trimix Gases. | |
333 TCODE .0, .155, "Lütfen ozel fonksiyon- " ;197 Configure your gas | |
334 TCODE .0, .185, "lardan CF11 & CF12 yi " ;198 in Gassetup menu. | |
335 TCODE .0, .215, "kontrol ediniz! " ;199 Check CF11 & CF12 ! | |
336 ; Gaugemode description | |
337 TCODE .0, .35, "Deko Modeli:Derinlik " ;200 Decotype: Gauge | |
338 TCODE .0, .65, "Dalis zamani dakika ve " ;201 Divetime will be in | |
339 TCODE .0, .95, "saniye cinsinden göste-" ;202 Minutes:Seconds. | |
340 TCODE .0, .125, "rilecektir. Bilgisayar " ;203 OSTC2 will not | |
341 TCODE .0, .155, "hicbir sekilde Deko bil" ;204 compute Deco, NoFly | |
342 TCODE .0, .185, "gisi hesaplanmayacaktir" ;205 time and Desat. | |
343 TCODE .0, .215, " " ;206 time at all! | |
344 ; Const.ppO2 description | |
345 TCODE .0, .35, "Deko Modeli: ZH-L16 CC " ;207 Decotype: ZH-L16 CC | |
346 TCODE .0, .65, "Tam/(Yari) Kapali Devre" ;208 For (Semi-)Closed | |
347 TCODE .0, .95, "Geri Solutucu icin üc " ;209 Circuit rebreathers | |
348 TCODE .0, .125, "farkli kismi basinc gi-" ;210 Configure the 3 | |
349 TCODE .0, .155, "risi yapabilirsiniz. " ;211 SetPoints in CCR - | |
350 TCODE .0, .185, "Ayrica 5 adet Bailout " ;212 Setup menu. 5 bail- | |
351 TCODE .0, .215, "sistemde bulunmaktadir." ;213 outs are available. | |
352 ; Apnoemode description | |
353 TCODE .0, .35, "Deko Modeli: Apnea " ;214 Decotype: Apnoe | |
354 TCODE .0, .65, "OSTC2 sadece yükselis " ;215 OSTC2 will display | |
355 TCODE .0, .95, "bilgisini dakika ve " ;216 each descent separ- | |
356 TCODE .0, .125, "saniye cinsinden goste-" ;217 ately in Min:Sec. | |
357 TCODE .0, .155, "recektir. Deko hesapla " ;218 Will temporally set | |
358 TCODE .0, .185, "masi yapilmayacaktir! " ;219 samplerate to 1 sec | |
359 TCODE .0, .215, " " ;220 No Deco calculation | |
360 ; Multi GF OC mode description | |
361 TCODE .0, .35, "Deko Modeli: L16-GF OC " ;221 Decotype: L16-GF OC | |
362 TCODE .0, .65, "Deko hesaplamalari GF- " ;222 Decompression cal- | |
363 TCODE .0, .95, "Gradient Factor'e göre " ;223 culations with the | |
364 TCODE .0, .125, "yapilmaktadir. Lütfen " ;224 GF-Method (GF_lo/GF | |
365 TCODE .0, .155, "CF32 & CF33 nolu fonksi" ;225 _hi). Check CF32 & | |
366 TCODE .0, .185, "yonlari kontrol ediniz." ;226 CF33! Open Circuit | |
367 TCODE .0, .215, "Derin Durak mevcuttur. " ;227 with Deep Stops. | |
368 ; Multi GF CC mode description | |
369 TCODE .0, .35, "Deko Modeli: L16-GF CC " ;228 Decotype: L16-GF CC | |
370 TCODE .0, .65, "Deko hesaplamalari GF- " ;229 Decompression cal- | |
371 TCODE .0, .95, "Gradient Factor'e göre " ;230 culations with the | |
372 TCODE .0, .125, "yapilmaktadir. Lütfen " ;231 GF-Method (GF_lo/GF | |
373 TCODE .0, .155, "CF32 & CF33 nolu fonksi" ;232 _hi). Check CF32 & | |
374 TCODE .0, .185, "yonlari kontrol ediniz." ;233 CF33!Closed Circuit | |
375 TCODE .0, .215, "Kapali(Yari) Kapali Dev" ;234 with Deep Stops. | |
376 ; | |
377 TCODE .10, .2, "Deko Modeli Degisti!" ;235 Decomode changed! | |
378 TCODE .85, .125, "L16-GF CC" ;236 L16-GF CC | |
379 TCODE .2, .12, "Bulunamadi! " ;237 Not found | |
380 TCODE .100, .0, "Kismi Basinc" ;238 SetPoint | |
381 TCODE .100, .0, "Dekosuz" ;239 No Deco | |
382 TCODE .90, .50, "Zamani: " ;240 Interval: | |
383 TCODE .100, .75, "Goster " ;241 Display | |
384 TCODE .100, .0, "Kalan Deko" ;242 No deco | |
385 TCODE .132, .0, "beta" ;243 beta | |
386 TCODE .100, .100, "iptal" ;244 unuse | |
387 TCODE .20, .65, "Gaz & Deko Sifirla " ;245 Reset CF,Gas & Deco | |
388 TCODE .50, .145, "Düsük Batarya! " ;246 LowBatt! | |
389 TCODE .20, .125, "Simulator" ;247 Simulator | |
390 TCODE .30, .2, "OSTC Simulator" ;248 OSTC Simulator | |
391 TCODE .20, .65, "Dalisa Basla" ;249 Start Dive | |
392 TCODE .100, .25, "+ 1m" ;250 + 1m | |
393 TCODE .100, .50, "- 1m" ;251 - 1m | |
394 TCODE .100, .75, "+10m" ;252 +10m | |
395 TCODE .100, .100, "-10m" ;253 -10m | |
396 TCODE .100, .0, "<-- " ;254 Close | |
397 TCODE .128, .170, "Zam." ;255 Time | |
398 ; | |
399 ; Text Bank2 (Texts 256-511) | |
400 ; | |
401 TCODE .0, .0, "x" ;256 x | |
402 TCODE .20, .35, "Tarih :" ;257 Date format: | |
403 TCODE .10, .2, "Ekstra Ayarlar: " ;258 Setup Menu 2: | |
404 TCODE .105, .35, "MMDDYY" ;259 MMDDYY | |
405 TCODE .105, .35, "DDMMYY" ;260 DDMMYY | |
406 TCODE .105, .35, "YYMMDD" ;261 YYMMDD | |
407 TCODE .1, .1, "OSTC " ;262 OSTC | |
408 TCODE .65, .168, "Bail " ;263 Bail | |
409 TCODE .7, .48, "Hava " ;264 Air | |
410 TCODE .120, .135, "Hava " ;265 Air | |
411 TCODE .2, .39, "Kalibre Et " ;266 Calibrate | |
412 TCODE .0, .216, "Max" ;267 Max. | |
413 TCODE .10, .8, "Hayir" ;268 not | |
414 TCODE .10, .16, "Bulundu! " ;269 found! | |
415 TCODE .0, .0, "mV:" ;270 mV: | |
416 ; New CFs Warning | |
417 TCODE .10, .2, "Yeni Fonksiyonlar " ;271 New CF added! | |
418 TCODE .0, .35, "Yeni Fonksiyonlar " ;272 New CustomFunctions | |
419 TCODE .0, .65, "Eklendi,Lütfen " ;273 were added! Check | |
420 TCODE .0, .95, "Ozel Fonksiyonlari " ;274 CF I and CF II Menu | |
421 TCODE .0, .125, "Kontrol Ediniz! " ;275 for Details! | |
422 TCODE .20, .95, "Tuzluluk: " ;276 Salinity: | |
423 ; | |
424 TCODE .20, .95, "Dip Zaman:" ;277 Bottom Time: | |
425 TCODE .20, .125, "Derinlik :" ;278 Max. Depth: | |
426 TCODE .20, .155, "Deko Hesapla " ;279 Calculate Deco | |
499
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
495
diff
changeset
|
427 TCODE .20, .155, "Brightness:" ;280 Brightness: |
495 | 428 ; |
429 TCODE .107, .170, "Ort.Der" ;281 Avr.Depth | |
430 TCODE .90, .170, "Kompartman" ;282 Lead Tiss. | |
431 TCODE .100, .170, "Kronomet" ;283 Stopwatch | |
432 TCODE .20, .95, "LogBook Sifirla " ;284 Reset Logbook | |
433 TCODE .20, .125, "OSTC Baslat! " ;285 Reboot OSTC | |
434 TCODE .20, .155, "Deko Bilgisi Sil " ;286 Reset Decodata | |
435 ; Altimeter extension | |
436 TCODE .20, .155, "Altimetre " ;287 Altimeter | |
437 TCODE .18, .1, "Altimetre Ayarla " ;288 Set Altimeter | |
438 TCODE .20, .35, "Deniz: " ;289 Sea ref: | |
439 TCODE .0, .0, "Aktif: " ;290 Enabled: | |
440 TCODE .20, .95, "Normal: 1013 mbar" ;291 Default: 1013 mbar | |
441 TCODE .20, .125, "+1 mbar" ;292 +1 mbar | |
442 TCODE .20, .155, "-1 mbar" ;293 -1 mbar | |
443 TCODE .85, .185, "Alt: " ;294 Alt: | |
444 ; | |
445 TCODE .20, .125, "Degiskenler... " ;295 Show raw data | |
446 TCODE .50, .2, "Degiskenler" ;296 Raw Data: | |
447 ; Gas-setup addons: | |
448 TCODE .0, .0, "MOD:" ;297 MOD: (max operating depth of a gas). | |
449 TCODE .0, .0, "END:" ;298 END: (equivalent nitrogen depth of a gas). | |
450 TCODE .0, .0, "EAD:" ;299 EAD: (equivalent air depth of a gas). | |
451 TCODE .100, .125, "Aktif?" ;300 Active? (Enable/Disable Gas underwater) | |
452 TCODE .0, .2, "OCR Gaz kullanim:" ;301 OCR Gas Usage: (Planned gas consumtion by tank). | |
453 ; 115k Bootloader support: | |
454 TCODE .45, .100, "Yükleniyor" ;302 Bootloader | |
455 TCODE .35, .130, "Lütfen Bekle!" ;303 Please wait! | |
456 TCODE .40, .130, "Iptal Edildi" ;304 Aborted | |
457 ;@5 variant | |
458 TCODE .0, .0, "TTS @+Min." ;305 Future TTS (=10 chars. Title for @5 customview). | |
459 ; | |
460 TCODE .100, .125, "Menü " ;306 Quit Sim (=8char max. Quit Simulator mode) | |
461 ;Dive interval | |
462 TCODE .20, .35, "Zaman : " ;307 Interval: | |
463 TCODE .0, .0, "simdi " ;308 Now (7 chars min) | |
464 TCODE .10, .113, "Ortalama" ;309 Average | |
465 TCODE .109, .54, "Krono. " ;310 Stopwatch (BIG Stopwatch in Gauge mode) | |
499
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
495
diff
changeset
|
466 ; Cave consomation |
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
495
diff
changeset
|
467 TCODE .0, .0, "Cave Bail." ;311 Cave Bail. (=10 chars.) |
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
495
diff
changeset
|
468 ; OLED Brightness settings |
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
495
diff
changeset
|
469 TCODE .103, .155, "Eco " ;312 Eco (Same length as #313!) |
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
495
diff
changeset
|
470 TCODE .103, .155, "High" ;313 High (Same length as #312!) |
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
495
diff
changeset
|
471 |
495 | 472 ;============================================================================= |