Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/spanish_text.asm @ 572:80a1d2d5a9ee
timeout display when deco stops are violated
author | heinrichsweikamp |
---|---|
date | Fri, 20 Apr 2012 21:32:03 +0200 |
parents | 44e9b961f156 |
children | 101fec6a6137 |
rev | line source |
---|---|
182 | 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 ; | |
24 ; known bugs: | |
25 ; ToDo: | |
26 ;============================================================================= | |
27 ; | |
28 ; Instructions for translating: | |
29 ; | |
30 ; * Strings are accessed according to the order in the file. | |
31 ; So don't change ordering ! | |
32 ; | |
33 ; * Keep the english original version on the right column. So translations | |
34 ; can be reviewed and maintened. | |
35 ; | |
36 ; * One of the main constraint is to keep texts short, to avoid clobering | |
37 ; the OSTC screen. Of course, the technical, precise terms should be used. | |
38 ; Generally, there is no hard constraint: you can be one or two chars | |
39 ; shorter or longer. | |
40 ; | |
41 ; * Beware that some strings do have a fixed length. You should then use | |
42 ; exactly the same size. | |
43 ; | |
44 ; * Beware that some strings have ponctuation, or trailling space(s). In that | |
45 ; case, you should keep EXACTLY the same ponctuation AND TRAILING SPACES. | |
46 ; | |
47 ; * Ascii chars: we can support a few specific chars. öäüß for German. | |
187 | 48 ; éèêç for French. áíóúñ¡¿ for Spanish. |
49 ; If you really, absolutly, need more: ask... | |
182 | 50 ; |
51 ; * Do not translate comments (everithing after the ;), because they are | |
52 ; used for maintenance. | |
53 ; | |
54 ; * The X column is position on screen. Some texts are centered, left | |
55 ; padded or right padded. In that case, if you changed the text size, | |
56 ; you will have to adjust position. A char is 7 pixels wide. | |
57 ; | |
58 ;============================================================================= | |
446 | 59 ; Define's section |
60 ; Definition translation ; English original | |
61 #IFNDEF TXT_DEFINED | |
62 #DEFINE TXT_DEFINED | |
63 | |
64 #DEFINE TXT_GAS_C 'G' ; 'G' | |
65 #DEFINE TXT_GAS1 "G" ; "G" | |
66 #DEFINE TXT_METER_C 'm' ; 'm' | |
67 #DEFINE TXT_METER5 "m " ; "m " | |
68 #DEFINE TXT_METER3 "m " ; "m " | |
69 #DEFINE TXT_METER2 "m " ; "m " | |
70 #DEFINE TXT_METER1 "m" ; "m" | |
71 #DEFINE TXT_MBAR7 " mbar " ; " mbar " | |
72 #DEFINE TXT_MBAR5 "mbar " ; "mbar " | |
73 #DEFINE TXT_BAR4 "bar " ; "bar " | |
74 #DEFINE TXT_BAR3 "bar" ; "bar" | |
75 #DEFINE TXT_ALT5 "Alt: " ; "Alt: " | |
76 #DEFINE TXT_KGL4 "kg/l" ; "kg/l" | |
77 #DEFINE TXT_VOLT2 "V " ; "V " | |
78 #DEFINE TXT_VOLT1 "V" ; "V" | |
79 #DEFINE TXT_STEP5 "Step:" ; "Step:" | |
80 #DEFINE TXT_CF2 "CF" ; "CF" | |
81 #DEFINE TXT_O2_4 "O2: " ; "O2: " | |
82 #DEFINE TXT_O2_3 "O2 " ; "O2 " | |
83 #DEFINE TXT_AIR4 "AIR " ; "AIR " | |
84 #DEFINE TXT_ERR4 "ERR " ; "ERR " | |
85 #DEFINE TXT_HE4 "He: " ; "He: " | |
86 #DEFINE TXT_NX3 "NX " ; "NX " | |
87 #DEFINE TXT_TX3 "TX " ; "TX " | |
546 | 88 #DEFINE TXT_AT4 " at " ; " at " |
446 | 89 #DEFINE TXT_G1_3 "G1:" ; "G1:" |
90 #DEFINE TXT_G2_3 "G2:" ; "G2:" | |
91 #DEFINE TXT_G3_3 "G3:" ; "G3:" | |
92 #DEFINE TXT_G4_3 "G4:" ; "G4:" | |
93 #DEFINE TXT_G5_3 "G5:" ; "G5:" | |
94 #DEFINE TXT_G6_3 "G6:" ; "G6:" | |
95 #DEFINE TXT_1ST4 "1st:" ; "1st:" | |
96 #DEFINE TXT_CNS4 "CNS:" ; "CNS:" | |
97 #DEFINE TXT_CNSGR10 "CNS > 250%" ; "CNS > 250%" | |
98 #DEFINE TXT_AVR4 "Avr:" ; "Avr:" | |
99 #DEFINE TXT_GF3 "GF:" ; "GF:" | |
100 #DEFINE TXT_SAT4 "Sat:" ; "Sat:" | |
101 #DEFINE TXT_0MIN5 "0min " ; "0min " | |
102 #DEFINE TXT_MIN4 "min " ; "min " | |
103 #DEFINE TXT_BSAT5 "BSat:" ; "BSat:" | |
104 #DEFINE TXT_BDES5 "BDes:" ; "BDes:" | |
105 #DEFINE TXT_LAST5 "Last:" ; "Last:" | |
106 #DEFINE TXT_GFLO6 "GF_lo:" ; "GF_lo:" | |
107 #DEFINE TXT_GFHI6 "GF_hi:" ; "GF_hi:" | |
108 #DEFINE TXT_PPO2_5 "ppO2:" ; "ppO2:" | |
109 #DEFINE TXT_OC_O1 "O" ; "O" | |
110 #DEFINE TXT_OC_C1 "C" ; "C" | |
111 #DEFINE TXT_CC_C1_1 "C" ; "C" | |
112 #DEFINE TXT_CC_C2_1 "C" ; "C" | |
113 #DEFINE TXT_GF_G1 "G" ; "G" | |
114 #DEFINE TXT_GF_F1 "F" ; "F" | |
115 #DEFINE TXT_SP2 "SP" ; "SP" | |
116 #DEFINE TXT_DIL4 "Dil:" ; "Dil:" | |
117 #DEFINE TXT_N2_2 "N2" ; "N2" | |
118 #DEFINE TXT_HE2 "He" ; "He" | |
119 | |
120 #ENDIF | |
121 ;============================================================================= | |
182 | 122 ; macro X Y "translation" ; English original |
123 TCODE .0, .0, "Creando Resumen MD2" ;001 Building MD2 Hash | |
124 TCODE .0, .25, "Espere por favor..." ;002 Please Wait... | |
125 TCODE .0, .2, "HeinrichsWeikamp OSTC2" ;003 HeinrichsWeikamp OSTC2 | |
126 TCODE .58, .2, "¿Menú?" ;004 Menu? | |
127 TCODE .65, .2, "Menú:" ;005 Menu: | |
128 TCODE .20, .35, "Diario" ;006 Logbook | |
129 TCODE .20, .65, "Config. Gas" ;007 Gas Setup | |
130 TCODE .20, .35, "Fijar Hora" ;008 Set Time | |
131 TCODE .20, .95, "Menú Reinicio" ;009 Reset Menu | |
132 TCODE .20, .125, "Configuración" ;010 Setup | |
133 TCODE .20, .185, "Salir" ;011 Exit | |
134 TCODE .100, .2, "Espere..." ;012 Wait.. | |
135 TCODE .0, .24, "Resumen MD2:" ;013 MD2 Hash: | |
196 | 136 TCODE .0, .0, "Desat" ;014 Desat (Desaturation count-down) |
182 | 137 TCODE .57, .2, "Interfaz" ;015 Interface |
138 TCODE .10, .30, "Inicio" ;016 Start | |
139 TCODE .10, .55, "Datos" ;017 Data | |
140 TCODE .10, .80, "Cabecera" ;018 Header | |
141 TCODE .10, .105, "Perfil" ;019 Profile | |
142 TCODE .10, .130, "Hecho." ;020 Done. | |
143 TCODE .20, .35, "Cancelar Reinicio" ;021 Cancel Reset | |
144 TCODE .32, .65, "Hora :" ;022 Time: | |
145 TCODE .32, .95, "Fecha:" ;023 Date: | |
255
1efd59d689f8
small change in the set time menu, default setpoints set to 0.8, 1.0 and 1.2Bar
heinrichsweikamp
parents:
231
diff
changeset
|
146 TCODE .0, .215, "Fijar Horas" ;024 Set Hours |
182 | 147 TCODE .6, .0, "Reinicio..." ;025 Reset... |
148 TCODE .55, .2, "Diario" ;026 Logbook | |
149 TCODE .14, .2, "Func. Personaliz. I" ;027 Custom Functions I | |
150 TCODE .20, .2, "Menú Reinicio" ;028 Reset Menu | |
151 TCODE .35, .2, "Fijar Hora:" ;029 Set Time: | |
328 | 152 TCODE .100, .50, "Marcar " ;030 SetMarker (Add a mark in logbook profile) |
182 | 153 TCODE .100, .25, "Plandeco" ;031 Decoplan |
154 TCODE .100, .0, "Listagas" ;032 Gaslist | |
196 | 155 TCODE .100, .50, "ReiniMed" ;033 ResetAvr (Reset average depth) |
156 TCODE .100, .100, "Salir" ;034 Exit (Exit current menu) | |
157 TCODE .0, .0, "NoVue" ;035 NoFly (No-flight count-down) | |
182 | 158 ; |
159 ; 32 custom function descriptors I (FIXED LENGTH = 15 chars). | |
196 | 160 TCODE .40, .35, "Buceo Inic. [m]" ;036 Start Dive [m] (depth to switch to dive mode) |
161 TCODE .40, .35, "Buceo Fin. [m]" ;037 End Dive [m] (depth to switch back to surface mode) | |
352
544a96faa9f3
New "Quit sim" option in simulated dive mode, CF02 now allows more then 240seconds, Bugfix with runtime=1min in runtime simulator
Heinrichsweikamp
parents:
328
diff
changeset
|
162 TCODE .40, .35, "Retras Fin[sec]" ;038 End Delay [sec] (duration dive screen stays after end of dive) |
182 | 163 TCODE .40, .35, "Apagado [min]" ;039 Power Off [min] |
196 | 164 TCODE .40, .35, "Pre-menú [min]" ;040 Pre-menu [min] (Delais to keep surface-mode menus displayed) |
182 | 165 TCODE .40, .35, "Vel. [m/min]" ;041 velocity[m/min] |
300
438ecb8090eb
internationalization of EAD and END in divemode, updated spanish for gas setup
heinrichsweikamp
parents:
283
diff
changeset
|
166 TCODE .40, .35, "Activac. [mbar]" ;042 Wake-up [mbar] |
438ecb8090eb
internationalization of EAD and END in divemode, updated spanish for gas setup
heinrichsweikamp
parents:
283
diff
changeset
|
167 TCODE .40, .35, "Máx. Sup.[mbar]" ;043 max.Surf.[mbar] |
182 | 168 TCODE .40, .35, "Muestra GF [%]" ;044 GF display [%] |
169 TCODE .40, .35, "Mues.mín. O2[%]" ;045 min. O2 Dis.[%] | |
170 TCODE .40, .35, "Menús buc.[min]" ;046 Dive menus[min] | |
171 TCODE .40, .35, "Saturac. x [%]" ;047 Saturate x [%] | |
172 TCODE .40, .35, "Desaturac. x[%]" ;048 Desaturate x[%] | |
196 | 173 TCODE .40, .35, "Ratio NoVue [%]" ;049 NoFly Ratio [%] (Grandient factor tolerance for no-flight countdown). |
182 | 174 TCODE .40, .35, "Alarma GF 1 [%]" ;050 GF alarm 1 [%] |
175 TCODE .40, .35, "Mues.CNSsup.[%]" ;051 CNSshow surf[%] | |
176 TCODE .40, .35, "Dist. Deco [m]" ;052 Deco Offset [m] | |
300
438ecb8090eb
internationalization of EAD and END in divemode, updated spanish for gas setup
heinrichsweikamp
parents:
283
diff
changeset
|
177 TCODE .40, .35, "ppO2 bajo [bar]" ;053 ppO2 low [bar] |
438ecb8090eb
internationalization of EAD and END in divemode, updated spanish for gas setup
heinrichsweikamp
parents:
283
diff
changeset
|
178 TCODE .40, .35, "ppO2 alto [bar]" ;054 ppO2 high [bar] |
438ecb8090eb
internationalization of EAD and END in divemode, updated spanish for gas setup
heinrichsweikamp
parents:
283
diff
changeset
|
179 TCODE .40, .35, "ppO2 mues.[bar]" ;055 ppO2 show [bar] |
182 | 180 TCODE .40, .35, "frec. muestreo " ;056 sampling rate |
181 TCODE .40, .35, "Divisor Temp " ;057 Divisor Temp | |
182 TCODE .40, .35, "Divisor Datdeco" ;058 Divisor Decodat | |
381 | 183 TCODE .40, .35, "Divisor GF " ;059 Divisor GF |
182 | 184 TCODE .40, .35, "Divisor ppO2 " ;060 Divisor ppO2 |
185 TCODE .40, .35, "Divisor Depurac" ;061 Divisor Debug | |
367 | 186 TCODE .40, .35, "Divisor CNS " ;062 Divisor CNS |
182 | 187 TCODE .40, .35, "Mues.CNSbuc.[%]" ;063 CNSshow dive[%] |
328 | 188 TCODE .40, .35, "Despl. diario " ;064 Logbook offset |
182 | 189 TCODE .40, .35, "Ult. Deco a [m]" ;065 Last Deco at[m] |
190 TCODE .40, .35, "Fin Apnea [h]" ;066 End Apnoe [h] | |
191 TCODE .40, .35, "Mues. volt. Bat" ;067 Show Batt.Volts | |
192 ; End of function descriptor I | |
193 ; | |
194 ;licence: | |
195 TCODE .0, .35, "Este programa se" ;068 This program is | |
196 TCODE .0, .65, "distribuye con el deseo" ;069 distributed in the | |
197 TCODE .0, .95, "de que le resulte útil," ;070 hope that it will be | |
183 | 198 TCODE .0, .125, "pero SIN GARANTIAS" ;071 useful, but WITHOUT |
199 TCODE .0, .155, "DE NINGUN TIPO;" ;072 ANY WARRANTY | |
182 | 200 TCODE .0, .185, "ni siquiera con las" ;073 even the implied |
201 TCODE .0, .215, "garantías implícitas" ;074 warranty of | |
202 TCODE .0, .35, "de COMERCIABILIDAD" ;075 MERCHANTABILITY or | |
203 TCODE .0, .65, "o APTITUD PARA UN" ;076 FITNESS FOR A | |
183 | 204 TCODE .0, .95, "PROPOSITO DETERMINADO." ;077 PARTICULAR PURPOSE. |
182 | 205 TCODE .0, .125, "Para más información," ;078 See the GNU General |
206 TCODE .0, .155, "consulte la Licencia" ;079 Public License for | |
207 TCODE .0, .185, "Pública General de GNU:" ;080 more details: | |
208 TCODE .0, .215, "www.heinrichsweikamp.de" ;081 www.heinrichsweikamp.de | |
209 ; end of licence | |
210 ; | |
211 TCODE .102, .54, "Paradeco" ;082 Decostop | |
212 TCODE .0, .0, "m/min" ;083 m/min | |
213 TCODE .108, .113, "No Para" ;084 No Stop | |
214 TCODE .135, .113, "TTS" ;085 TTS | |
215 TCODE .100, .0, "Tiem.buc" ;086 Divetime | |
216 TCODE .0, .0, "Prof." ;087 Depth | |
217 TCODE .0, .0, "¿Primer Gas?" ;088 First Gas? | |
218 TCODE .0, .0, "Defecto:" ;089 Default: | |
219 TCODE .0, .0, "Minutos" ;090 Minutes | |
220 TCODE .0, .0, "Mes " ;091 Month | |
221 TCODE .0, .0, "Día " ;092 Day | |
222 TCODE .0, .0, "Año " ;093 Year | |
223 TCODE .0, .0, "Fija" ;094 Set | |
224 TCODE .0, .0, "#Gas " ;095 Gas# | |
225 TCODE .0, .0, "Sí " ;096 Yes | |
226 TCODE .0, .0, "Actual: " ;097 Current: | |
227 TCODE .40, .2, "Menú Conf.:" ;098 Setup Menu: | |
228 TCODE .20, .35, "Func.Personaliz.I" ;099 Custom FunctionsI | |
229 TCODE .20, .125, "Tipodeco:" ;100 Decotype: | |
230 TCODE .85, .125, "ZH-L16 OC" ;101 ZH-L16 OC | |
231 TCODE .85, .125, "Indicador" ;102 Gauge | |
232 TCODE .85, .125, "Indi." ;103 Gauge | |
233 TCODE .85, .125, "ZH-L16 CC" ;104 ZH-L16 CC | |
183 | 234 TCODE .0, .0, "¿Gas Activo? " ;105 Active Gas? |
182 | 235 TCODE .10, .2, "Conf.Gas - Listagas" ;106 Gas Setup - Gaslist |
300
438ecb8090eb
internationalization of EAD and END in divemode, updated spanish for gas setup
heinrichsweikamp
parents:
283
diff
changeset
|
236 TCODE .20, .95, "Prof. +/-:" ;107 Depth +/-: |
328 | 237 TCODE .20, .125, "Cambiar:" ;108 Change: |
300
438ecb8090eb
internationalization of EAD and END in divemode, updated spanish for gas setup
heinrichsweikamp
parents:
283
diff
changeset
|
238 TCODE .20, .155, "Defecto:" ;109 Default: |
182 | 239 TCODE .20, .65, "Menú SetPoint CCR" ;110 CCR SetPoint Menu |
240 TCODE .20, .2, "Menú SetPoint CCR" ;111 CCR SetPoint Menu | |
241 TCODE .0, .0, "#SP" ;112 SP# | |
242 TCODE .20, .95, "Info.Batería" ;113 Battery Info | |
243 TCODE .10, .2, "Información Batería" ;114 Battery Information | |
244 TCODE .0, .9, "Ciclos:" ;115 Cycles: | |
245 TCODE .85, .125, "Apnea" ;116 Apnoe | |
183 | 246 TCODE .0, .18, "Ult. Completo:" ;117 Last Complete: |
182 | 247 TCODE .0, .27, "Vbatt Mínimo:" ;118 Lowest Vbatt: |
248 TCODE .0, .36, "Mínimo el:" ;119 Lowest at: | |
249 TCODE .0, .45, "Tmín:" ;120 Tmin: | |
250 TCODE .0, .54, "Tmáx:" ;121 Tmax: | |
532 | 251 TCODE .100, .124, "Más" ;122 More (Gaslist) |
182 | 252 TCODE .100, .25, "O2 +" ;123 O2 + |
253 TCODE .100, .50, "O2 -" ;124 O2 - | |
254 TCODE .100, .75, "He +" ;125 He + | |
255 TCODE .100, .100, "He -" ;126 He - | |
256 TCODE .100, .0, "Sal." ;127 Exit | |
257 TCODE .100, .25, "Borrar" ;128 Delete | |
258 TCODE .20, .65, "Depur:" ;129 Debug: | |
196 | 259 TCODE .65, .65, "ACT" ;130 ON |
182 | 260 TCODE .65, .65, "DES" ;131 OFF |
261 TCODE .100, .50, "Borrtodo" ;132 Del. all | |
262 TCODE .0, .0, "¡Reinicio inesperado" ;133 Unexpected reset from | |
263 TCODE .0, .25, "del Modo Buceo. Ayudar" ;134 Divemode! Please help | |
264 TCODE .0, .50, "reportando Información" ;135 and report the Debug | |
265 TCODE .0, .75, "de Depuración debajo!" ;136 Information below! | |
525 | 266 TCODE .100, .0, "Bailout" ;137 Bailout |
182 | 267 TCODE .85, .125, "Apnea " ;138 Apnoe |
268 TCODE .105, .120, "Descen." ;139 Descent | |
269 TCODE .105, .60, "Superf." ;140 Surface | |
270 TCODE .50, .2, "¿Salir?" ;141 Quit? | |
271 TCODE .20, .155, "Más" ;142 More | |
272 TCODE .42, .72, "Confirm:" ;143 Confirm: | |
273 TCODE .60, .2, "Menú 2:" ;144 Menu 2: | |
274 TCODE .52, .96, "Cancel" ;145 Cancel | |
275 TCODE .52, .120, "OK!" ;146 OK! | |
276 TCODE .20, .35, "Más" ;147 More | |
277 TCODE .0, .0, ":.........:" ;148 :.........: | |
300
438ecb8090eb
internationalization of EAD and END in divemode, updated spanish for gas setup
heinrichsweikamp
parents:
283
diff
changeset
|
278 TCODE .0, .8, "ppO2" ;149 ppO2 |
438ecb8090eb
internationalization of EAD and END in divemode, updated spanish for gas setup
heinrichsweikamp
parents:
283
diff
changeset
|
279 TCODE .2, .39, "bar " ;150 bar |
182 | 280 TCODE .108, .216, "¿Marca?" ;151 Marker? |
281 TCODE .85, .125, "L16-GF OC" ;152 L16-GF OC | |
282 TCODE .20, .65, "Func.Personaliz.II" ;153 Custom FunctionsII | |
283 ; | |
284 ; 32 custom function descriptors II (FIXED LENGTH = 15 chars). | |
285 TCODE .40, .35, "GF Bajo [%]" ;154 GF Low [%] | |
286 TCODE .40, .35, "GF Alto [%]" ;155 GF High [%] | |
287 TCODE .40, .35, "#Color Batería " ;156 Color# Battery | |
288 TCODE .40, .35, "#Color Estándar" ;157 Color# Standard | |
289 TCODE .40, .35, "#Color MascBuc." ;158 Color# Divemask | |
290 TCODE .40, .35, "#Color Avisos " ;159 Color# Warnings | |
291 TCODE .40, .35, "SegundosModoBuc" ;160 Divemode secs. | |
292 TCODE .40, .35, "Ajusta SP fijo " ;161 Adjust fixed SP | |
293 TCODE .40, .35, "Tope Aviso " ;162 Warn Ceiling | |
294 TCODE .40, .35, "Iconos TipoMezl" ;163 Mix type icons | |
196 | 295 TCODE .40, .35, "Parp. Mejor Gas" ;164 Blink BetterGas (Remainder in divemode to switch to a better decompression gas). |
300
438ecb8090eb
internationalization of EAD and END in divemode, updated spanish for gas setup
heinrichsweikamp
parents:
283
diff
changeset
|
296 TCODE .40, .35, "AvisoProf[mbar]" ;165 DepthWarn[mbar] |
182 | 297 TCODE .40, .35, "Aviso CNS [%]" ;166 CNS warning [%] |
298 TCODE .40, .35, "Aviso GF [%]" ;167 GF warning [%] | |
300
438ecb8090eb
internationalization of EAD and END in divemode, updated spanish for gas setup
heinrichsweikamp
parents:
283
diff
changeset
|
299 TCODE .40, .35, "Aviso ppO2[bar]" ;168 ppO2 warn [bar] |
182 | 300 TCODE .40, .35, "AvisoVel[m/min]" ;169 Vel.warn[m/min] |
301 TCODE .40, .35, "Despl. Temp/day" ;170 Time offset/day | |
302 TCODE .40, .35, "Mostr.Altímetro" ;171 Show altimeter | |
303 TCODE .40, .35, "Mostr.Marca Log" ;172 Show Log-Marker | |
304 TCODE .40, .35, "Mostrar Cronom." ;173 Show Stopwatch | |
305 TCODE .40, .35, "Mostr. Gráf.Tej" ;174 ShowTissueGraph | |
306 TCODE .40, .35, "Mostr. TejContr" ;175 Show Lead.Tiss. | |
197 | 307 TCODE .40, .35, "PriParadaSuperf" ;176 Shallow stop 1st (Reverse order of deco plans) |
282 | 308 TCODE .40, .35, "Conmu. gas[min]" ;177 Gas switch[min] (Additional delay in decoplan for gas switches). |
312
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
300
diff
changeset
|
309 TCODE .40, .35, "Gas Fondo[/min]" ;178 BottomGas[/min] (Bottom gas usage, for volume estimation). |
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
300
diff
changeset
|
310 TCODE .40, .35, "GasAscens[/min]" ;179 AscentGas[/min] (Ascent+Deco gas usage) |
476 | 311 TCODE .40, .35, "Futuro TTS[min]" ;180 Future TTS[min] (Compute TTS for extra time at current depth) |
312 TCODE .40, .35, "Cave Warning[l]" ;181 Cave Warning[l] (Consomation warning for cave divers) | |
492
19b9e19ea4da
+CHANGE: Velocity display updated every second
heinrichsweikamp
parents:
476
diff
changeset
|
313 TCODE .40, .35, "Graph. Velocity" ;182 Graph. Velocity (Show a graphical representation of the ascend speed) |
552 | 314 TCODE .40, .35, "Show pSCR ppO2 " ;183 Show pSCR ppO2 (Show the ppO2 for pSCR divers) |
315 TCODE .40, .35, "pSCR O2 Drop[%]" ;184 pSCR O2 Drop[%] (pSCR O2 drop in percent) | |
316 TCODE .40, .35, "pSCR lung ratio" ;185 pSCR lung ratio (pSCR counterlung ratio) | |
312
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
300
diff
changeset
|
317 ; End of function descriptor II |
182 | 318 ; |
319 TCODE .13, .2, "Func.Personaliz. II" ;186 Custom Functions II | |
320 TCODE .20, .95, "Ver Licencia" ;187 Show License | |
321 TCODE .0, .2, "Result. Sim.:" ;188 Sim. Results: | |
322 TCODE .90, .25, "Superf." ;189 Surface | |
323 TCODE .0, .0, "ppO2 +" ;190 ppO2 + | |
324 TCODE .0, .0, "ppO2 -" ;191 ppO2 - | |
196 | 325 TCODE .0, .0, "Dil." ;192 Dil. (Rebreather diluent) |
182 | 326 ; ZH-L16 mode description |
327 TCODE .0, .35, "Tipodeco: ZH-L16 OC" ;193 Decotype: ZH-L16 OC | |
328 TCODE .0, .65, "Para Buceo Circuito" ;194 For Open Circuit | |
329 TCODE .0, .95, "Abierto. Soporta 5 " ;195 Divers. Supports 5 | |
330 TCODE .0, .125, "Gases Trimix. " ;196 Trimix Gases. | |
331 TCODE .0, .155, "Configure su gas en" ;197 Configure your gas | |
332 TCODE .0, .185, "el menú Config. Gas" ;198 in Gassetup menu. | |
333 TCODE .0, .215, "¡Mirar CF11 & CF12!" ;199 Check CF11 & CF12 ! | |
334 ; Gaugemode description | |
335 TCODE .0, .35, "Tipodeco: Indicador" ;200 Decotype: Gauge | |
336 TCODE .0, .65, "TiempoBuceo será en" ;201 Divetime will be in | |
337 TCODE .0, .95, "Minutos:Segundos. " ;202 Minutes:Seconds. | |
338 TCODE .0, .125, "OSTC2 no calculará " ;203 OSTC2 will not | |
339 TCODE .0, .155, "Deco, tiempo NoVue " ;204 compute Deco, NoFly | |
340 TCODE .0, .185, "y Desat. " ;205 time and Desat. | |
341 TCODE .0, .215, "¡Tan sólo tiempo! " ;206 time at all! | |
342 ; Const.ppO2 description | |
343 TCODE .0, .35, "Tipodeco: ZH-L16 CC" ;207 Decotype: ZH-L16 CC | |
344 TCODE .0, .65, "Para rebreathers " ;208 For (Semi-)Closed | |
345 TCODE .0, .95, "(Semi-)Cerrados " ;209 Circuit rebreathers | |
346 TCODE .0, .125, "Configure los 3 " ;210 Configure the 3 | |
347 TCODE .0, .155, "SetPoints en menú " ;211 SetPoints in CCR - | |
348 TCODE .0, .185, "Conf. CCR. Hay 5 " ;212 Setup menu. 5 bail- | |
349 TCODE .0, .215, "bailouts disponible" ;213 outs are available. | |
350 ; Apnoemode description | |
351 TCODE .0, .35, "Tipodeco: Apnea " ;214 Decotype: Apnoe | |
352 TCODE .0, .65, "OSTC2 mostrará cada" ;215 OSTC2 will display | |
353 TCODE .0, .95, "descenso por sepa- " ;216 each descent separ- | |
354 TCODE .0, .125, "rado en Min:Seg. " ;217 ately in Min:Sec. | |
355 TCODE .0, .155, "Temporal.fija frec." ;218 Will temporally set | |
356 TCODE .0, .185, "muestras a 1 seg. " ;219 samplerate to 1 sec | |
357 TCODE .0, .215, "No se calcula Deco " ;220 No Deco calculation | |
358 ; Multi GF OC mode description | |
359 TCODE .0, .35, "Tipodeco: L16-GF OC" ;221 Decotype: L16-GF OC | |
360 TCODE .0, .65, "Cálculos descompr. " ;222 Decompression cal- | |
361 TCODE .0, .95, "con el método-GF " ;223 culations with the | |
362 TCODE .0, .125, "(GF_bajo/GF_alto). " ;224 GF-Method (GF_lo/GF | |
363 TCODE .0, .155, "¡Mirar CF32 y CF33!" ;225 _hi). Check CF32 & | |
364 TCODE .0, .185, "CircuitoAbierto con" ;226 CF33! Open Circuit | |
365 TCODE .0, .215, "Paradas Profundas. " ;227 with Deep Stops. | |
366 ; Multi GF CC mode description | |
367 TCODE .0, .35, "Tipodeco: L16-GF CC" ;228 Decotype: L16-GF CC | |
368 TCODE .0, .65, "Cálculos descompr. " ;229 Decompression cal- | |
369 TCODE .0, .95, "con el método-GF " ;230 culations with the | |
370 TCODE .0, .125, "(GF_bajo/GF_alto). " ;231 GF-Method (GF_lo/GF | |
371 TCODE .0, .155, "¡Mirar CF32 & CF33!" ;232 _hi). Check CF32 & | |
372 TCODE .0, .185, "CircuitoCerrado con" ;233 CF33!Closed Circuit | |
373 TCODE .0, .215, "Paradas Profundas. " ;234 with Deep Stops. | |
374 ; | |
375 TCODE .10, .2, "¡ModoDeco cambiado!" ;235 Decomode changed! | |
376 TCODE .85, .125, "L16-GF CC" ;236 L16-GF CC | |
377 TCODE .2, .12, "No encont" ;237 Not found | |
378 TCODE .100, .0, "SetPoint" ;238 SetPoint | |
379 TCODE .100, .0, "No Deco" ;239 No Deco | |
380 TCODE .90, .50, "Interval:" ;240 Interval: | |
381 TCODE .100, .75, "Pantall" ;241 Display | |
382 TCODE .100, .0, "No deco" ;242 No deco | |
383 TCODE .132, .0, "beta" ;243 beta | |
384 TCODE .100, .100, "nouso" ;244 unuse | |
385 TCODE .20, .65, "Rein. CF,Gas y Deco" ;245 Reset CF,Gas & Deco | |
386 TCODE .50, .145, "BatBaja!" ;246 LowBatt! | |
387 TCODE .20, .125, "Simulador" ;247 Simulator | |
388 TCODE .30, .2, "Simulador OSTC" ;248 OSTC Simulator | |
369 | 389 TCODE .20, .65, "Inicio Buc." ;249 Start Dive |
182 | 390 TCODE .100, .25, "+ 1m" ;250 + 1m |
391 TCODE .100, .50, "- 1m" ;251 - 1m | |
392 TCODE .100, .75, "+10m" ;252 +10m | |
393 TCODE .100, .100, "-10m" ;253 -10m | |
394 TCODE .100, .0, "Atras" ;254 Close | |
395 TCODE .131, .170, "Tiem" ;255 Time | |
396 ; | |
397 ; Text Bank2 (Texts 256-511) | |
398 ; | |
399 TCODE .0, .0, "x" ;256 x | |
400 TCODE .20, .35, "Fto. fecha: " ;257 Date format: | |
401 TCODE .40, .2, "Menú Conf. 2:" ;258 Setup Menu 2: | |
402 TCODE .105, .35, "MMDDAA" ;259 MMDDYY | |
403 TCODE .105, .35, "DDMMAA" ;260 DDMMYY | |
404 TCODE .105, .35, "AAMMDD" ;261 YYMMDD | |
405 TCODE .1, .1, "OSTC " ;262 OSTC | |
325
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
318
diff
changeset
|
406 TCODE .65, .168, "Bail " ;263 Bail |
182 | 407 TCODE .7, .48, "Aire " ;264 Air |
408 TCODE .120, .135, "Aire " ;265 Air | |
504 | 409 |
552 | 410 TCODE .0, .0, "pSCR Info" ;266 pSCR Info (Must be 9Chars!) |
518 | 411 TCODE .0, .216, "Max." ;267 Max. |
504 | 412 TCODE .0, .0, "" ;268 unused |
413 TCODE .0, .0, "" ;269 unused | |
414 TCODE .0, .0, "" ;270 unused | |
415 | |
182 | 416 ; New CFs Warning |
417 TCODE .0, .2, "¡Nuevo CF añadido!" ;271 New CF added! | |
418 TCODE .0, .35, "¡Añadidas nuevas Func." ;272 New CustomFunctions | |
419 TCODE .0, .65, "Pers.! ¡Comprobar menú" ;273 were added! Check | |
420 TCODE .0, .95, "CF I y CF II para" ;274 CF I and CF II Menu | |
421 TCODE .0, .125, "más Detalles!" ;275 for Details! | |
422 TCODE .20, .95, "Salinidad:" ;276 Salinity: | |
423 ; | |
369 | 424 TCODE .20, .95, "Tiempo Fondo:" ;277 Bottom Time: |
425 TCODE .20, .125, "Prof. Max.:" ;278 Max. Depth: | |
426 TCODE .20, .155, "Calcular Deco" ;279 Calculate Deco | |
499
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
492
diff
changeset
|
427 TCODE .20, .155, "Brightness:" ;280 Brightness: |
182 | 428 ; |
429 TCODE .93, .170, "ProfMedia" ;281 Avr.Depth | |
430 TCODE .90, .170, "TejControl" ;282 Lead Tiss. | |
431 TCODE .93, .170, "Crono." ;283 Stopwatch | |
432 TCODE .20, .95, "Reinic Diario" ;284 Reset Logbook | |
433 TCODE .20, .125, "Reinic OSTC" ;285 Reboot OSTC | |
434 TCODE .20, .155, "Rein Datosdeco" ;286 Reset Decodata | |
435 ; Altimeter extension | |
436 TCODE .20, .155, "Altímetro" ;287 Altimeter | |
437 TCODE .38, .1, "Fij Altímetro" ;288 Set Altimeter | |
438 TCODE .20, .35, "Ref. mar:" ;289 Sea ref: | |
439 TCODE .0, .0, "Activo: " ;290 Enabled: | |
440 TCODE .20, .95, "Defecto: 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: | |
189 | 444 ; |
282 | 445 TCODE .20, .125, "Ver datos raw" ;295 Show raw data |
446 TCODE .50, .2, "DatosRaw:" ;296 Raw Data: | |
199 | 447 ; Gas-setup addons: |
231
f9d42f8ff97b
BUGFIX Don't show (nosense) gas consumption in CCR mode (bug BB20).
JeanDo
parents:
228
diff
changeset
|
448 TCODE .0, .0, "MOD:" ;297 MOD: (max operating depth of a gas). |
f9d42f8ff97b
BUGFIX Don't show (nosense) gas consumption in CCR mode (bug BB20).
JeanDo
parents:
228
diff
changeset
|
449 TCODE .0, .0, "END:" ;298 END: (equivalent nitrogen depth of a gas). |
f9d42f8ff97b
BUGFIX Don't show (nosense) gas consumption in CCR mode (bug BB20).
JeanDo
parents:
228
diff
changeset
|
450 TCODE .0, .0, "EAD:" ;299 EAD: (equivalent air depth of a gas). |
282 | 451 TCODE .100, .125, "¿Activar?" ;300 Active? (Enable/Disable Gas underwater) |
452 TCODE .0, .2, "Uso Gas OCR:" ;301 OCR Gas Usage: (Planned gas consumtion by tank). | |
314 | 453 ; 115k Bootloader support: |
328 | 454 TCODE .45, .100, "CargadorArr" ;302 Bootloader |
455 TCODE .40, .130, "¡EsperePorf!" ;303 Please wait! | |
456 TCODE .50, .130, "¡Aborta!" ;304 Aborted | |
314 | 457 ;@5 variant |
328 | 458 TCODE .0, .0, "Futuro TTS" ;305 Future TTS (=10 chars. Title for @5 customview). |
370 | 459 ; |
476 | 460 TCODE .100, .125, "SalirSim" ;306 Quit Sim (=8char max. Quit Simulator mode) |
369 | 461 ;Dive interval |
370 | 462 TCODE .20, .35, "Interval:" ;307 Interval: |
476 | 463 TCODE .0, .0, "Now " ;308 Now (7 chars min) |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
381
diff
changeset
|
464 TCODE .100, .113, "Promedio" ;309 Average |
476 | 465 TCODE .116, .54, "Crono." ;310 Stopwatch (BIG Stopwatch in Gauge mode) |
466 ; Cave consomation | |
467 TCODE .0, .0, "Cave Bail." ;311 Cave Bail. (=10 chars.) | |
499
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
492
diff
changeset
|
468 ; OLED Brightness settings |
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
492
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:
492
diff
changeset
|
470 TCODE .103, .155, "High" ;313 High (Same length as #312!) |
182 | 471 ;============================================================================= |