Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/turkish_text.asm @ 740:7b1af8fc308d
2.71beta release - 2.72beta start
author | heinrichsweikamp |
---|---|
date | Tue, 09 Jul 2013 11:56:00 +0200 |
parents | 6f99d7e39537 |
children | ae830d5e63ef |
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 | |
547 | 23 ; 2012/01/29 : Gokcer Belgüsen: Turkish translation. |
495 | 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' | |
547 | 66 #DEFINE TXT_GAS1 "G" ; "G" |
495 | 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 " | |
547 | 75 #DEFINE TXT_BAR3 "bar" ; "bar" |
495 | 76 #DEFINE TXT_ALT5 "Alt: " ; "Alt: " |
77 #DEFINE TXT_KGL4 "kg/l" ; "kg/l" | |
547 | 78 #DEFINE TXT_VOLT2 "V " ; "V " |
495 | 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 " | |
532 | 89 #DEFINE TXT_AT4 " in " ; " at " |
495 | 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:" | |
547 | 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_SP2 "SP" ; "SP" | |
111 #DEFINE TXT_DIL4 "Dil:" ; "Dil:" | |
112 #DEFINE TXT_N2_2 "N2" ; "N2" | |
113 #DEFINE TXT_HE2 "He" ; "He" | |
607 | 114 #DEFINE TXT_TX1 "T" ; "T" |
115 #DEFINE TXT_TX2 "x" ; "x" | |
116 #DEFINE TXT_NX1 "N" ; "N" | |
117 #DEFINE TXT_NX2 "x" ; "x" | |
495 | 118 |
119 #ENDIF | |
120 ;============================================================================= | |
121 ; macro X Y "translation" ; English original | |
122 TCODE .0, .0, "Firmware Kontrol " ;001 Building MD2 Hash | |
123 TCODE .0, .25, "Lütfen Bekle..." ;002 Please Wait... | |
124 TCODE .0, .2, "HeinrichsWeikamp OSTC2" ;003 HeinrichsWeikamp OSTC2 | |
125 TCODE .65, .2, "Menü?" ;004 Menu? | |
126 TCODE .65, .2, "Menü:" ;005 Menu: | |
127 TCODE .20, .35, "LogBook" ;006 Logbook | |
547 | 128 TCODE .20, .65, "Gaz Karisim " ;007 Gas Setup |
495 | 129 TCODE .20, .35, "Tarih Ayari " ;008 Set Time |
547 | 130 TCODE .20, .95, "Cihaz Sifirlama " ;009 Reset Menu |
495 | 131 TCODE .20, .125, "Kurulum " ;010 Setup |
132 TCODE .20, .185, "<-- " ;011 Exit | |
133 TCODE .97, .2, "Bekle... " ;012 Wait... | |
134 TCODE .0, .24, "MD2 Hash:" ;013 MD2 Hash: | |
135 TCODE .0, .0, "Desat" ;014 Desat (Desaturation count-down) | |
136 TCODE .50, .2, "Inteface " ;015 Interface (Connected to USB) | |
137 TCODE .10, .30, "Basla" ;016 Start | |
138 TCODE .10, .55, "Veri " ;017 Data | |
139 TCODE .10, .80, "Baslik " ;018 Header | |
140 TCODE .10, .105, "Profil" ;019 Profile | |
141 TCODE .10, .130, "Bitti " ;020 Done. | |
142 TCODE .20, .35, "Sifirlama Iptal " ;021 Cancel Reset | |
143 TCODE .32, .65, "Saat: " ;022 Time: | |
144 TCODE .32, .95, "Tarih:" ;023 Date: | |
145 TCODE .0, .215, "Saati Ayarla " ;024 Set Hours | |
146 TCODE .6, .0, "Sifirla... " ;025 Reset... | |
147 TCODE .55, .2, "LogBook" ;026 Logbook | |
148 TCODE .14, .2, "Ozel Fonksiyonlar I" ;027 Custom Functions I | |
736 | 149 TCODE .14, .2, "Cihaz Sifirla " ;028 Reset Menu |
495 | 150 TCODE .14, .2, "Saati Ayarla: " ;029 Set Time: |
736 | 151 TCODE .100, .50, "Isaret" ;030 Marker (Add a mark in logbook profile) |
495 | 152 TCODE .100, .25, "Dekoplan" ;031 Decoplan |
153 TCODE .100, .0, "GazListe" ;032 Gaslist | |
154 TCODE .100, .50, "Sifirla " ;033 ResetAvr (Reset average depth) | |
155 TCODE .100, .100, "<-- " ;034 Exit (Exit current menu) | |
156 TCODE .0, .0, "Ucus " ;035 NoFly (No-flight count-down) | |
157 ; | |
158 ; 32 custom function descriptors I (FIXED LENGTH = 15 chars). | |
159 TCODE .40, .35, "Dalis Basla [m]" ;036 Start Dive [m] (depth to switch to dive mode) | |
160 TCODE .40, .35, "Dalis Bitir [m]" ;037 End Dive [m] (depth to switch back to surface mode) | |
161 TCODE .40, .35, "Bekleme [sn]" ;038 End Delay [sec] (duration dive screen stays after end of dive) | |
162 TCODE .40, .35, "Güc Kapama [dk]" ;039 Power Off [min] | |
163 TCODE .40, .35, "Alt Menü [dk]" ;040 Pre-menu [min] (Delais to keep surface-mode menus displayed) | |
164 TCODE .40, .35, "Hiz [m/dk]" ;041 velocity[m/min] | |
165 TCODE .40, .35, "Uyan [mbar]" ;042 Wake-up [mbar] | |
166 TCODE .40, .35, "Max Yüzey[mbar]" ;043 max.Surf.[mbar] | |
167 TCODE .40, .35, "GF Goster [%]" ;044 GF display [%] | |
168 TCODE .40, .35, "min. O2 Dis.[%]" ;045 min. O2 Dis.[%] | |
169 TCODE .40, .35, "Dalis Menü[min]" ;046 Dive menus[min] | |
170 TCODE .40, .35, "Saturasyon x[%]" ;047 Saturate x [%] | |
171 TCODE .40, .35, "Desaturas. x[%]" ;048 Desaturate x[%] | |
172 TCODE .40, .35, "Ucus Yüzde [%]" ;049 NoFly Ratio [%] (Grandient factor tolerance for no-flight countdown). | |
173 TCODE .40, .35, "GF Alarm 1 [%]" ;050 GF alarm 1 [%] | |
547 | 174 TCODE .40, .35, "CNS satihta [%]" ;051 CNSshow surf[%] |
495 | 175 TCODE .40, .35, "Deko Ofset [m]" ;052 Deco Offset [m] |
176 TCODE .40, .35, "ppO2 min. [bar]" ;053 ppO2 low [bar] | |
177 TCODE .40, .35, "ppO2 max. [bar]" ;054 ppO2 high [bar] | |
178 TCODE .40, .35, "ppO2 Gost.[bar]" ;055 ppO2 show [bar] | |
547 | 179 TCODE .40, .35, "Ornekeleme Hizi" ;056 sampling rate |
495 | 180 TCODE .40, .35, "Sicaklik Orani " ;057 Divisor Temp |
181 TCODE .40, .35, "Deko Orani " ;058 Divisor Decodat | |
182 TCODE .40, .35, "GF Orani " ;059 Divisor GF | |
183 TCODE .40, .35, "ppO2 Orani " ;060 Divisor ppO2 | |
184 TCODE .40, .35, "Debug Orani " ;061 Divisor Debug | |
185 TCODE .40, .35, "CNS Orani " ;062 Divisor CNS | |
547 | 186 TCODE .40, .35, "CNS Dalista [%]" ;063 CNSshow dive[%] |
495 | 187 TCODE .40, .35, "LogBook Ofset " ;064 Logbook offset |
547 | 188 TCODE .40, .35, "Son Deko @ [m]" ;065 Last Deco at[m] |
495 | 189 TCODE .40, .35, "Apnea Bitir [h]" ;066 End Apnoe [h] |
190 TCODE .40, .35, "Batarya Gücü[v]" ;067 Show Batt.Volts | |
191 ; End of function descriptor I | |
192 ; | |
193 ;licence: | |
194 TCODE .0, .35, "Bu cihaz ve yazilim fay" ;068 This program is | |
195 TCODE .0, .65, "dali olacagi düsünüle- " ;069 distributed in the | |
196 TCODE .0, .95, "rek üretilmistir!. " ;070 hope that it will be | |
197 TCODE .0, .125, "Ancak herhangi bir ga- " ;071 useful, but WITHOUT | |
198 TCODE .0, .155, "ranti verilmemektedir. " ;072 ANY WARRANTY | |
199 TCODE .0, .185, "Bu cihazi ve icindeki " ;073 even the implied | |
200 TCODE .0, .215, "yazilimi kullanmak sa- " ;074 warranty of | |
201 TCODE .0, .35, "dece sizin sorumlulugu-" ;075 MERCHANTABILITY or | |
202 TCODE .0, .65, "nuzdadir.Hicbir sekilde" ;076 FITNESS FOR A | |
203 TCODE .0, .95, "üretici firma dogacak " ;077 PARTICULAR PURPOSE. | |
204 TCODE .0, .125, "sorunlardan sorumlu tu-" ;078 See the GNU General | |
205 TCODE .0, .155, "tulamaz. Daha fazla de-" ;079 Public License for | |
206 TCODE .0, .185, "yat icin: " ;080 more details: | |
726 | 207 TCODE .0, .215, "heinrichsweikamp.com" ;081 heinrichsweikamp.com |
495 | 208 ; end of licence |
209 ; | |
210 TCODE .85, .54, "Deko Durak" ;082 Decostop | |
211 TCODE .0, .0, "m/dk " ;083 m/min | |
212 TCODE .100, .113, "Dekosuz " ;084 No Stop | |
547 | 213 TCODE .135, .113, "Yüzey Varis" ;085 TTS |
495 | 214 TCODE .85, .0, "Dalis Süre" ;086 Divetime |
215 TCODE .0, .0, "Derinlik" ;087 Depth | |
216 TCODE .0, .0, "Ilk Gaz ? " ;088 First Gas? | |
217 TCODE .0, .0, "Standart:" ;089 Default: | |
218 TCODE .0, .0, "Dakika " ;090 Minutes | |
219 TCODE .0, .0, "Ay " ;091 Month | |
220 TCODE .0, .0, "Gün " ;092 Day | |
221 TCODE .0, .0, "Yil " ;093 Year | |
222 TCODE .0, .0, "Giris " ;094 Set | |
223 TCODE .0, .0, "Gaz# " ;095 Gas# | |
224 TCODE .0, .0, "Ok" ;096 Yes | |
225 TCODE .0, .0, "Aktif: " ;097 Current: | |
226 TCODE .14, .2, "Ayarlar: " ;098 Setup Menu: | |
227 TCODE .20, .35, "Ozel Fonksiyonlar I" ;099 Custom FunctionsI | |
547 | 228 TCODE .20, .125, "Model :" ;100 Decotype: |
495 | 229 TCODE .85, .125, "ZH-L16 OC" ;101 ZH-L16 OC |
230 TCODE .85, .125, "Derinlik " ;102 Gauge | |
231 TCODE .85, .125, "Derinlik " ;103 Gauge | |
232 TCODE .85, .125, "ZH-L16 CC" ;104 ZH-L16 CC | |
233 TCODE .0, .0, "Aktif Gaz? " ;105 Active Gas? | |
234 TCODE .10, .2, "Gaz Ayarlari : Liste " ;106 Gas Setup - Gaslist | |
235 TCODE .20, .95, "Derin +/-:" ;107 Depth +/-: | |
236 TCODE .20, .125, "Degisti:" ;108 Change: | |
237 TCODE .20, .155, "Standart:" ;109 Default: | |
238 TCODE .20, .65, "CCR Kismi Basinc " ;110 CCR SetPoint Menu | |
239 TCODE .20, .2, "CCR Kismi Basinc " ;111 CCR SetPoint Menu | |
240 TCODE .0, .0, "SP#" ;112 SP# | |
241 TCODE .20, .95, "Batarya Bilgi" ;113 Battery Info | |
242 TCODE .10, .2, "Batarya Bilgisi " ;114 Battery Information | |
243 TCODE .0, .9, "Döngü :" ;115 Cycles: | |
244 TCODE .85, .125, "Apnea" ;116 Apnoe | |
245 TCODE .0, .18, "En Son Biten:" ;117 Last Complete: | |
246 TCODE .0, .27, "En Düsük (V): " ;118 Lowest Vbatt: | |
247 TCODE .0, .36, "En Düsük :" ;119 Lowest at: | |
248 TCODE .0, .45, "Tmin:" ;120 Tmin: | |
249 TCODE .0, .54, "Tmax:" ;121 Tmax: | |
532 | 250 TCODE .100, .124, "Daha" ;122 More (Gaslist) |
495 | 251 TCODE .100, .25, "O2 +" ;123 O2 + |
252 TCODE .100, .50, "O2 -" ;124 O2 - | |
253 TCODE .100, .75, "He +" ;125 He + | |
254 TCODE .100, .100, "He -" ;126 He - | |
255 TCODE .100, .0, "Cik " ;127 Exit | |
256 TCODE .100, .25, "Sil " ;128 Delete | |
257 TCODE .20, .65, "Debug:" ;129 Debug: | |
258 TCODE .65, .65, "ON " ;130 ON | |
259 TCODE .65, .65, "OFF" ;131 OFF | |
260 TCODE .100, .50, "Hepsini Sil " ;132 Del. all | |
261 TCODE .10, .0, "Beklenmeyen Reset " ;133 Unexpected reset from | |
262 TCODE .10, .25, "Dalis Modu! Lütfen asa" ;134 Divemode! Please help | |
263 TCODE .10, .50, "gidaki hata kodunu ra" ;135 and report the Debug | |
264 TCODE .10, .75, "porlayin. " ;136 Information below! | |
525 | 265 TCODE .100, .0, "Bailout" ;137 Bailout |
495 | 266 TCODE .85, .125, "Apnea " ;138 Apnoe |
267 TCODE .105, .120, "Yüksel " ;139 Descent | |
268 TCODE .105, .60, "Yüzey " ;140 Surface | |
269 TCODE .65, .2, "Cikis ? " ;141 Quit? | |
547 | 270 TCODE .20, .155, "Daha..." ;142 More |
495 | 271 TCODE .42, .72, "Onayla?" ;143 Confirm: |
272 TCODE .60, .2, "Menü 2:" ;144 Menu 2: | |
273 TCODE .52, .96, "Iptal " ;145 Cancel | |
274 TCODE .52, .120, "OK!" ;146 OK! | |
275 TCODE .20, .35, "Daha" ;147 More | |
276 TCODE .0, .0, ":.........:" ;148 :.........: | |
277 TCODE .0, .8, "ppO2" ;149 ppO2 | |
278 TCODE .2, .39, "bar " ;150 bar | |
279 TCODE .108, .216, "Isaret?" ;151 Marker? | |
280 TCODE .85, .125, "L16-GF OC" ;152 L16-GF OC | |
281 TCODE .20, .65, "Ozel Fonksiyonlar II" ;153 Custom FunctionsII | |
282 ; | |
283 ; 32 custom function descriptors II (FIXED LENGTH = 15 chars). | |
284 TCODE .40, .35, "GF Düsük [%]" ;154 GF Low [%] | |
285 TCODE .40, .35, "GF Yüksek [%]" ;155 GF High [%] | |
286 TCODE .40, .35, "Renk# Batarya " ;156 Color# Battery | |
287 TCODE .40, .35, "Renk# Standart " ;157 Color# Standard | |
288 TCODE .40, .35, "Renk# Dalis " ;158 Color# Divemask | |
289 TCODE .40, .35, "Renk# Uyarilar " ;159 Color# Warnings | |
290 TCODE .40, .35, "Dalis Modu Sn. " ;160 Divemode secs. | |
291 TCODE .40, .35, "Sabit SP Ayari " ;161 Adjust fixed SP | |
292 TCODE .40, .35, "Satih Uyarisi " ;162 Warn Ceiling | |
293 TCODE .40, .35, "Gaz Mix Ikonlar" ;163 Mix type icons | |
294 TCODE .40, .35, "En iyi Gaz " ;164 Blink BetterGas (Remainder in divemode to switch to a better decompression gas). | |
295 TCODE .40, .35, "Derinlik [mbar]" ;165 DepthWarn[mbar] | |
296 TCODE .40, .35, "CNS Uyarisi [%]" ;166 CNS warning [%] | |
297 TCODE .40, .35, "GF Uyarisi [%]" ;167 GF warning [%] | |
298 TCODE .40, .35, "ppO2 Uyar.[bar]" ;168 ppO2 warn [bar] | |
299 TCODE .40, .35, "Hiz Uyar[m/min]" ;169 Vel.warn[m/min] | |
300 TCODE .40, .35, "Zaman Ofset/Gün" ;170 Time offset/day | |
301 TCODE .40, .35, "Yükseklik " ;171 Show altimeter | |
547 | 302 TCODE .40, .35, "Log Isaretcisi " ;172 Show Log-Marker |
495 | 303 TCODE .40, .35, "Kronometre " ;173 Show Stopwatch |
547 | 304 TCODE .40, .35, "Doku Grafigi " ;174 ShowTissueGraph |
495 | 305 TCODE .40, .35, "Oncü Doku " ;175 Show Lead.Tiss. |
306 TCODE .40, .35, "Ilk Bekleme " ;176 Shallow stop 1st (Reverse order of deco plans) | |
307 TCODE .40, .35, "Gaz Degist[min]" ;177 Gas switch[min] (Additional delay in decoplan for gas switches). | |
308 TCODE .40, .35, "Dip Gazi [/min]" ;178 BottomGas[/min] (Bottom gas usage, for volume estimation). | |
547 | 309 TCODE .40, .35, "Cikis Gaz[/min]" ;179 AscentGas[/min] (Ascent+Deco gas usage) |
310 TCODE .40, .35, "TTS+extra [min]" ;180 Future TTS[min] (@5 variant: compute TTS for extra time at current depth) | |
311 TCODE .40, .35, "Magara Uyari[l]" ;181 Cave Warning[l] (Consomation warning for cave divers) | |
503 | 312 TCODE .40, .35, "Hiz Goster " ;182 Graph. Velocity (Show a graphical representation of the ascend speed) |
552 | 313 TCODE .40, .35, "Show pSCR ppO2 " ;183 Show pSCR ppO2 (Show the ppO2 for pSCR divers) |
314 TCODE .40, .35, "pSCR O2 Drop[%]" ;184 pSCR O2 Drop[%] (pSCR O2 drop in percent) | |
315 TCODE .40, .35, "pSCR lung ratio" ;185 pSCR lung ratio (pSCR counterlung ratio) | |
547 | 316 |
317 | |
495 | 318 ; End of function descriptor II |
319 ; | |
320 TCODE .13, .2, "Ozel Fonksiyonlar II" ;186 Custom Functions II | |
321 TCODE .20, .95, "Lisansi Goster " ;187 Show License | |
322 TCODE .0, .2, "Simulasyon:" ;188 Sim. Results: | |
323 TCODE .90, .25, "Yüzey " ;189 Surface | |
324 TCODE .0, .0, "ppO2 +" ;190 ppO2 + | |
325 TCODE .0, .0, "ppO2 -" ;191 ppO2 - | |
326 TCODE .0, .0, "Dil." ;192 Dil. (Rebreather diluent) | |
574 | 327 |
328 ; 32 custom function descriptors III (FIXED LENGTH = 15 chars). | |
587
1b021a280e15
NEW CF64: Configures color for inactive gases
heinrichsweikamp
parents:
576
diff
changeset
|
329 TCODE .40, .35, "Color# inactive" ;193 Color# inactive |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
330 TCODE .40, .35, "Use safety stop" ;194 Use safety stop |
619 | 331 TCODE .40, .35, "Show GF in NDL " ;195 Show GF in NDL (If GF > CF08) |
675 | 332 TCODE .40, .35, "Alt. GF Low [%]" ;196 Alt. GF Low [%] |
333 TCODE .40, .35, "Alt. GF High[%]" ;197 Alt. GF High[%] | |
334 TCODE .40, .35, "Allow GF change" ;198 Allow GF change | |
335 TCODE .40, .35, "S.StopLength[s]" ;199 S.StopLength[s] (CF70: Safety Stop Duration [s]) | |
336 TCODE .40, .35, "S.StopStart [m]" ;200 S.StopStart [m] (CF71: Safety Stop Start Depth [m]) | |
337 TCODE .40, .35, "S.StopEnd [m]" ;201 S.StopEnd [m] (CF72: Safety Stop End Depth [m]) | |
338 TCODE .40, .35, "S.StopReset [m]" ;202 S.StopReset [m] (CF73: Safety Stop Reset Depth [m]) | |
574 | 339 TCODE .40, .35, "unused " ;203 unused |
340 TCODE .40, .35, "unused " ;204 unused | |
341 TCODE .40, .35, "unused " ;205 unused | |
342 TCODE .40, .35, "unused " ;206 unused | |
343 TCODE .40, .35, "unused " ;207 unused | |
344 TCODE .40, .35, "unused " ;208 unused | |
345 TCODE .40, .35, "unused " ;209 unused | |
346 TCODE .40, .35, "unused " ;210 unused | |
347 TCODE .40, .35, "unused " ;211 unused | |
348 TCODE .40, .35, "unused " ;212 unused | |
349 TCODE .40, .35, "unused " ;213 unused | |
350 TCODE .40, .35, "unused " ;214 unused | |
351 TCODE .40, .35, "unused " ;215 unused | |
352 TCODE .40, .35, "unused " ;216 unused | |
353 TCODE .40, .35, "unused " ;217 unused | |
354 TCODE .40, .35, "unused " ;218 unused | |
355 TCODE .40, .35, "unused " ;219 unused | |
356 TCODE .40, .35, "unused " ;220 unused | |
357 TCODE .40, .35, "unused " ;221 unused | |
358 TCODE .40, .35, "unused " ;222 unused | |
359 TCODE .40, .35, "unused " ;223 unused | |
360 TCODE .40, .35, "unused " ;224 unused | |
495 | 361 ; |
574 | 362 TCODE .7, .2, "Ozel Fonksiyonlar III" ;225 Custom Functions III |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
363 TCODE .85, .125, "pSCR-GF " ;226 pSCR-GF |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
364 TCODE .90, .54, "SafetyStop" ;227 SafetyStop |
621 | 365 TCODE .0, .0, "Total Dives: " ;228 Total Dives: |
574 | 366 TCODE .0, .0, "" ;229 unused |
367 TCODE .0, .0, "" ;230 unused | |
368 TCODE .0, .0, "" ;231 unused | |
369 TCODE .0, .0, "" ;232 unused | |
370 TCODE .0, .0, "" ;233 unused | |
371 TCODE .0, .0, "" ;234 unused | |
372 | |
495 | 373 TCODE .10, .2, "Deko Modeli Degisti!" ;235 Decomode changed! |
374 TCODE .85, .125, "L16-GF CC" ;236 L16-GF CC | |
375 TCODE .2, .12, "Bulunamadi! " ;237 Not found | |
376 TCODE .100, .0, "Kismi Basinc" ;238 SetPoint | |
377 TCODE .100, .0, "Dekosuz" ;239 No Deco | |
378 TCODE .90, .50, "Zamani: " ;240 Interval: | |
379 TCODE .100, .75, "Goster " ;241 Display | |
547 | 380 TCODE .100, .0, "Dekosuz" ;242 No deco |
495 | 381 TCODE .132, .0, "beta" ;243 beta |
382 TCODE .100, .100, "iptal" ;244 unuse | |
383 TCODE .20, .65, "Gaz & Deko Sifirla " ;245 Reset CF,Gas & Deco | |
384 TCODE .50, .145, "Düsük Batarya! " ;246 LowBatt! | |
385 TCODE .20, .125, "Simulator" ;247 Simulator | |
386 TCODE .30, .2, "OSTC Simulator" ;248 OSTC Simulator | |
387 TCODE .20, .65, "Dalisa Basla" ;249 Start Dive | |
388 TCODE .100, .25, "+ 1m" ;250 + 1m | |
389 TCODE .100, .50, "- 1m" ;251 - 1m | |
390 TCODE .100, .75, "+10m" ;252 +10m | |
391 TCODE .100, .100, "-10m" ;253 -10m | |
392 TCODE .100, .0, "<-- " ;254 Close | |
393 TCODE .128, .170, "Zam." ;255 Time | |
394 ; | |
395 ; Text Bank2 (Texts 256-511) | |
396 ; | |
397 TCODE .0, .0, "x" ;256 x | |
398 TCODE .20, .35, "Tarih :" ;257 Date format: | |
399 TCODE .10, .2, "Ekstra Ayarlar: " ;258 Setup Menu 2: | |
400 TCODE .105, .35, "MMDDYY" ;259 MMDDYY | |
401 TCODE .105, .35, "DDMMYY" ;260 DDMMYY | |
402 TCODE .105, .35, "YYMMDD" ;261 YYMMDD | |
403 TCODE .1, .1, "OSTC " ;262 OSTC | |
404 TCODE .65, .168, "Bail " ;263 Bail | |
405 TCODE .7, .48, "Hava " ;264 Air | |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
681
diff
changeset
|
406 TCODE .115, .135, "Hava " ;265 Air |
504 | 407 |
552 | 408 TCODE .0, .0, "pSCR Info" ;266 pSCR Info (Must be 9Chars!) |
653 | 409 TCODE .0, .184, "Max" ;267 Max. |
504 | 410 TCODE .0, .0, "" ;268 unused |
547 | 411 TCODE .0, .0, "" ;269 unused |
412 TCODE .0, .0, "" ;270 unused | |
504 | 413 |
495 | 414 ; New CFs Warning |
547 | 415 TCODE .10, .2, "Bilgilendirme : " ;271 New CF added! |
495 | 416 TCODE .0, .35, "Yeni Fonksiyonlar " ;272 New CustomFunctions |
417 TCODE .0, .65, "Eklendi,Lütfen " ;273 were added! Check | |
418 TCODE .0, .95, "Ozel Fonksiyonlari " ;274 CF I and CF II Menu | |
419 TCODE .0, .125, "Kontrol Ediniz! " ;275 for Details! | |
574 | 420 TCODE .20, .125, "Tuzluluk: " ;276 Salinity: |
495 | 421 ; |
422 TCODE .20, .95, "Dip Zaman:" ;277 Bottom Time: | |
423 TCODE .20, .125, "Derinlik :" ;278 Max. Depth: | |
424 TCODE .20, .155, "Deko Hesapla " ;279 Calculate Deco | |
547 | 425 TCODE .20, .155, "Parlaklik:" ;280 Brightness: |
495 | 426 ; |
547 | 427 TCODE .107, .170, "Avr.Der" ;281 Avr.Depth |
495 | 428 TCODE .90, .170, "Kompartman" ;282 Lead Tiss. |
429 TCODE .100, .170, "Kronomet" ;283 Stopwatch | |
430 TCODE .20, .95, "LogBook Sifirla " ;284 Reset Logbook | |
431 TCODE .20, .125, "OSTC Baslat! " ;285 Reboot OSTC | |
547 | 432 TCODE .20, .155, "Deko Bilgisini Sil" ;286 Reset Decodata |
495 | 433 ; Altimeter extension |
434 TCODE .20, .155, "Altimetre " ;287 Altimeter | |
435 TCODE .18, .1, "Altimetre Ayarla " ;288 Set Altimeter | |
436 TCODE .20, .35, "Deniz: " ;289 Sea ref: | |
437 TCODE .0, .0, "Aktif: " ;290 Enabled: | |
438 TCODE .20, .95, "Normal: 1013 mbar" ;291 Default: 1013 mbar | |
439 TCODE .20, .125, "+1 mbar" ;292 +1 mbar | |
440 TCODE .20, .155, "-1 mbar" ;293 -1 mbar | |
441 TCODE .85, .185, "Alt: " ;294 Alt: | |
442 ; | |
574 | 443 TCODE .20, .95, "Ozel FonksiyonlarIII" ;295 Custom FunctionsIII |
495 | 444 TCODE .50, .2, "Degiskenler" ;296 Raw Data: |
445 ; Gas-setup addons: | |
446 TCODE .0, .0, "MOD:" ;297 MOD: (max operating depth of a gas). | |
447 TCODE .0, .0, "END:" ;298 END: (equivalent nitrogen depth of a gas). | |
448 TCODE .0, .0, "EAD:" ;299 EAD: (equivalent air depth of a gas). | |
576 | 449 TCODE .100, .125, "Daha" ;300 More (Enable/Disable Gas underwater) |
495 | 450 TCODE .0, .2, "OCR Gaz kullanim:" ;301 OCR Gas Usage: (Planned gas consumtion by tank). |
451 ; 115k Bootloader support: | |
547 | 452 TCODE .45, .100, "Yükleniyor" ;302 Bootloader |
453 TCODE .35, .130, "Lütfen Bekle!" ;303 Please wait! | |
454 TCODE .40, .130, "Iptal Edildi" ;304 Aborted | |
495 | 455 ;@5 variant |
547 | 456 TCODE .0, .0, "TTS+Extra " ;305 Future TTS (=10 chars. Title for @5 customview). |
495 | 457 ; |
547 | 458 TCODE .100, .125, "Ana Menü" ;306 Quit Sim (=8char max. Quit Simulator mode) |
495 | 459 ;Dive interval |
460 TCODE .20, .35, "Zaman : " ;307 Interval: | |
461 TCODE .0, .0, "simdi " ;308 Now (7 chars min) | |
547 | 462 TCODE .10, .113, "Ortalama" ;309 Average |
463 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
|
464 ; Cave consomation |
547 | 465 TCODE .0, .0, "Mag.Tüket." ;311 Cave Bail. (=10 chars.) |
681 | 466 ; DISPLAY Brightness settings |
547 | 467 TCODE .103, .155, "Dusuk " ;312 Eco (Same length as #313!) |
503 | 468 TCODE .103, .155, "Parlak" ;313 High (Same length as #312!) |
499
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
495
diff
changeset
|
469 |
574 | 470 ; ZH-L16 mode description |
471 TCODE .0, .35, "Deko Modeli: ZH-L16 OC " ;314 Decotype: ZH-L16 OC | |
472 TCODE .0, .65, "Standart dalis modeli. " ;315 For Open Circuit | |
473 TCODE .0, .95, "Cihaz,5 adet Trimix ga-" ;316 Divers. Supports 5 | |
474 TCODE .0, .125, "zini desteklemektedir. " ;317 Trimix Gases. | |
475 TCODE .0, .155, "Lütfen ozel fonksiyon- " ;318 Configure your gas | |
476 TCODE .0, .185, "lardan CF11 & CF12 yi " ;319 in Gassetup menu. | |
477 TCODE .0, .215, "kontrol ediniz! " ;320 Check CF11 & CF12 ! | |
478 ; Gaugemode description | |
479 TCODE .0, .35, "Deko Modeli: Geyc Modu " ;321 Decotype: Gauge | |
480 TCODE .0, .65, "Dalis zamani dakika ve " ;322 Divetime will be in | |
481 TCODE .0, .95, "saniye cinsinden göste-" ;323 Minutes:Seconds. | |
482 TCODE .0, .125, "rilecektir. Bilgisayar " ;324 OSTC2 will not | |
483 TCODE .0, .155, "hicbir sekilde Deko bil" ;325 compute Deco, NoFly | |
484 TCODE .0, .185, "gisi hesaplamayacaktir " ;326 time and Desat. | |
485 TCODE .0, .215, " " ;327 time at all! | |
486 ; Const.ppO2 description | |
487 TCODE .0, .35, "Deko Modeli: ZH-L16 CC " ;328 Decotype: ZH-L16 CC | |
488 TCODE .0, .65, "Tam Kapali Devre" ;329 For Closed | |
489 TCODE .0, .95, "Geri Solutucu modeli. " ;330 Circuit rebreathers | |
490 TCODE .0, .125, "Kapali Devre icin 3 " ;331 Configure the 3 | |
491 TCODE .0, .155, "farkli SetPoint ve 5 " ;332 SetPoints in CCR - | |
492 TCODE .0, .185, "adet Bailout(kurtarma) " ;333 Setup menu. 5 bail- | |
493 TCODE .0, .215, "sistemde bulunmaktadir." ;334 outs are available. | |
494 ; Apnoemode description | |
495 TCODE .0, .35, "Deko Modeli: Apnea Modu" ;335 Decotype: Apnoe | |
496 TCODE .0, .65, "OSTC2 sadece inis bilgi" ;336 OSTC2 will display | |
497 TCODE .0, .95, "sini dakika ve saniye " ;337 each descent separ- | |
498 TCODE .0, .125, "cinsinden gosterecektir" ;338 ately in Min:Sec. | |
499 TCODE .0, .155, "Deko hesaplamasi bu " ;339 Will temporally set | |
500 TCODE .0, .185, "modda yapilmayacaktir! " ;340 samplerate to 1 sec | |
501 TCODE .0, .215, " " ;341 No Deco calculation | |
502 ; Multi GF OC mode description | |
503 TCODE .0, .35, "Deko Modeli: L16-GF OC " ;342 Decotype: L16-GF OC | |
504 TCODE .0, .65, "Deko hesaplamalari GF- " ;343 Decompression cal- | |
505 TCODE .0, .95, "Gradient Factor'e göre " ;344 culations with the | |
506 TCODE .0, .125, "yapilmaktadir. Lütfen " ;345 GF-Method (GF_lo/GF | |
507 TCODE .0, .155, "CF32 & CF33 nolu fonksi" ;346 _hi). Check CF32 & | |
508 TCODE .0, .185, "yonlari kontrol ediniz." ;347 CF33! Open Circuit | |
509 TCODE .0, .215, " " ;348 with Deep Stops. | |
510 ; Multi GF CC mode description | |
511 TCODE .0, .35, "Deko Modeli: L16-GF CC " ;349 Decotype: L16-GF CC | |
512 TCODE .0, .65, "Deko hesaplamalari " ;350 Decompression cal- | |
513 TCODE .0, .95, "Gradient Factor'e göre " ;351 culations with the | |
514 TCODE .0, .125, "yapilmaktadir. Lütfen " ;352 GF-Method (GF_lo/GF | |
515 TCODE .0, .155, "CF32 & CF33 nolu fonksi" ;353 _hi). Check CF32 & | |
516 TCODE .0, .185, "yonlari kontrol ediniz." ;354 CF33!Closed Circuit | |
517 TCODE .0, .215, " " ;355 with Deep Stops. | |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
518 ; pSCR-GF mode description |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
519 TCODE .0, .35, "Decotype: pSCR-GF" ;356 Decotype: pSCR-GF |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
520 TCODE .0, .65, "For passive semi-" ;357 For passive semi- |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
521 TCODE .0, .95, "closed rebreather." ;358 closed rebreather. |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
522 TCODE .0, .125, "Check CF32 & CF33" ;359 Check CF32 & CF33 |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
523 TCODE .0, .155, "for gradient factors" ;360 for gradient factors |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
524 TCODE .0, .185, "and CF61-CF63 for" ;361 and CF61-CF63 for |
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
525 TCODE .0, .215, "pSCR features." ;362 pSCR features. |
574 | 526 ; |
527 | |
528 | |
495 | 529 ;============================================================================= |