Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/spanish_text.asm @ 668:8f8d39117ff7
always start with normal GF
author | heinrichsweikamp |
---|---|
date | Sun, 02 Dec 2012 23:24:52 +0100 |
parents | 994a04d7ae57 |
children | 069f708a6a09 |
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_SP2 "SP" ; "SP" | |
110 #DEFINE TXT_DIL4 "Dil:" ; "Dil:" | |
111 #DEFINE TXT_N2_2 "N2" ; "N2" | |
112 #DEFINE TXT_HE2 "He" ; "He" | |
607 | 113 #DEFINE TXT_TX1 "T" ; "T" |
114 #DEFINE TXT_TX2 "x" ; "x" | |
115 #DEFINE TXT_NX1 "N" ; "N" | |
116 #DEFINE TXT_NX2 "x" ; "x" | |
446 | 117 |
118 #ENDIF | |
119 ;============================================================================= | |
182 | 120 ; macro X Y "translation" ; English original |
121 TCODE .0, .0, "Creando Resumen MD2" ;001 Building MD2 Hash | |
122 TCODE .0, .25, "Espere por favor..." ;002 Please Wait... | |
123 TCODE .0, .2, "HeinrichsWeikamp OSTC2" ;003 HeinrichsWeikamp OSTC2 | |
635 | 124 TCODE .58, .2, "Menú?" ;004 Menu? |
182 | 125 TCODE .65, .2, "Menú:" ;005 Menu: |
126 TCODE .20, .35, "Diario" ;006 Logbook | |
127 TCODE .20, .65, "Config. Gas" ;007 Gas Setup | |
128 TCODE .20, .35, "Fijar Hora" ;008 Set Time | |
129 TCODE .20, .95, "Menú Reinicio" ;009 Reset Menu | |
130 TCODE .20, .125, "Configuración" ;010 Setup | |
131 TCODE .20, .185, "Salir" ;011 Exit | |
132 TCODE .100, .2, "Espere..." ;012 Wait.. | |
133 TCODE .0, .24, "Resumen MD2:" ;013 MD2 Hash: | |
196 | 134 TCODE .0, .0, "Desat" ;014 Desat (Desaturation count-down) |
182 | 135 TCODE .57, .2, "Interfaz" ;015 Interface |
136 TCODE .10, .30, "Inicio" ;016 Start | |
137 TCODE .10, .55, "Datos" ;017 Data | |
138 TCODE .10, .80, "Cabecera" ;018 Header | |
139 TCODE .10, .105, "Perfil" ;019 Profile | |
140 TCODE .10, .130, "Hecho." ;020 Done. | |
141 TCODE .20, .35, "Cancelar Reinicio" ;021 Cancel Reset | |
142 TCODE .32, .65, "Hora :" ;022 Time: | |
143 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
|
144 TCODE .0, .215, "Fijar Horas" ;024 Set Hours |
182 | 145 TCODE .6, .0, "Reinicio..." ;025 Reset... |
146 TCODE .55, .2, "Diario" ;026 Logbook | |
147 TCODE .14, .2, "Func. Personaliz. I" ;027 Custom Functions I | |
148 TCODE .20, .2, "Menú Reinicio" ;028 Reset Menu | |
149 TCODE .35, .2, "Fijar Hora:" ;029 Set Time: | |
328 | 150 TCODE .100, .50, "Marcar " ;030 SetMarker (Add a mark in logbook profile) |
182 | 151 TCODE .100, .25, "Plandeco" ;031 Decoplan |
152 TCODE .100, .0, "Listagas" ;032 Gaslist | |
196 | 153 TCODE .100, .50, "ReiniMed" ;033 ResetAvr (Reset average depth) |
154 TCODE .100, .100, "Salir" ;034 Exit (Exit current menu) | |
155 TCODE .0, .0, "NoVue" ;035 NoFly (No-flight count-down) | |
182 | 156 ; |
157 ; 32 custom function descriptors I (FIXED LENGTH = 15 chars). | |
196 | 158 TCODE .40, .35, "Buceo Inic. [m]" ;036 Start Dive [m] (depth to switch to dive mode) |
159 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
|
160 TCODE .40, .35, "Retras Fin[sec]" ;038 End Delay [sec] (duration dive screen stays after end of dive) |
182 | 161 TCODE .40, .35, "Apagado [min]" ;039 Power Off [min] |
196 | 162 TCODE .40, .35, "Pre-menú [min]" ;040 Pre-menu [min] (Delais to keep surface-mode menus displayed) |
182 | 163 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
|
164 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
|
165 TCODE .40, .35, "Máx. Sup.[mbar]" ;043 max.Surf.[mbar] |
182 | 166 TCODE .40, .35, "Muestra GF [%]" ;044 GF display [%] |
167 TCODE .40, .35, "Mues.mín. O2[%]" ;045 min. O2 Dis.[%] | |
168 TCODE .40, .35, "Menús buc.[min]" ;046 Dive menus[min] | |
169 TCODE .40, .35, "Saturac. x [%]" ;047 Saturate x [%] | |
170 TCODE .40, .35, "Desaturac. x[%]" ;048 Desaturate x[%] | |
196 | 171 TCODE .40, .35, "Ratio NoVue [%]" ;049 NoFly Ratio [%] (Grandient factor tolerance for no-flight countdown). |
182 | 172 TCODE .40, .35, "Alarma GF 1 [%]" ;050 GF alarm 1 [%] |
173 TCODE .40, .35, "Mues.CNSsup.[%]" ;051 CNSshow surf[%] | |
174 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
|
175 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
|
176 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
|
177 TCODE .40, .35, "ppO2 mues.[bar]" ;055 ppO2 show [bar] |
182 | 178 TCODE .40, .35, "frec. muestreo " ;056 sampling rate |
179 TCODE .40, .35, "Divisor Temp " ;057 Divisor Temp | |
180 TCODE .40, .35, "Divisor Datdeco" ;058 Divisor Decodat | |
381 | 181 TCODE .40, .35, "Divisor GF " ;059 Divisor GF |
182 | 182 TCODE .40, .35, "Divisor ppO2 " ;060 Divisor ppO2 |
183 TCODE .40, .35, "Divisor Depurac" ;061 Divisor Debug | |
367 | 184 TCODE .40, .35, "Divisor CNS " ;062 Divisor CNS |
182 | 185 TCODE .40, .35, "Mues.CNSbuc.[%]" ;063 CNSshow dive[%] |
328 | 186 TCODE .40, .35, "Despl. diario " ;064 Logbook offset |
182 | 187 TCODE .40, .35, "Ult. Deco a [m]" ;065 Last Deco at[m] |
188 TCODE .40, .35, "Fin Apnea [h]" ;066 End Apnoe [h] | |
189 TCODE .40, .35, "Mues. volt. Bat" ;067 Show Batt.Volts | |
190 ; End of function descriptor I | |
191 ; | |
192 ;licence: | |
193 TCODE .0, .35, "Este programa se" ;068 This program is | |
194 TCODE .0, .65, "distribuye con el deseo" ;069 distributed in the | |
195 TCODE .0, .95, "de que le resulte útil," ;070 hope that it will be | |
183 | 196 TCODE .0, .125, "pero SIN GARANTIAS" ;071 useful, but WITHOUT |
197 TCODE .0, .155, "DE NINGUN TIPO;" ;072 ANY WARRANTY | |
182 | 198 TCODE .0, .185, "ni siquiera con las" ;073 even the implied |
199 TCODE .0, .215, "garantías implícitas" ;074 warranty of | |
200 TCODE .0, .35, "de COMERCIABILIDAD" ;075 MERCHANTABILITY or | |
201 TCODE .0, .65, "o APTITUD PARA UN" ;076 FITNESS FOR A | |
183 | 202 TCODE .0, .95, "PROPOSITO DETERMINADO." ;077 PARTICULAR PURPOSE. |
182 | 203 TCODE .0, .125, "Para más información," ;078 See the GNU General |
204 TCODE .0, .155, "consulte la Licencia" ;079 Public License for | |
205 TCODE .0, .185, "Pública General de GNU:" ;080 more details: | |
206 TCODE .0, .215, "www.heinrichsweikamp.de" ;081 www.heinrichsweikamp.de | |
207 ; end of licence | |
208 ; | |
209 TCODE .102, .54, "Paradeco" ;082 Decostop | |
210 TCODE .0, .0, "m/min" ;083 m/min | |
211 TCODE .108, .113, "No Para" ;084 No Stop | |
212 TCODE .135, .113, "TTS" ;085 TTS | |
213 TCODE .100, .0, "Tiem.buc" ;086 Divetime | |
214 TCODE .0, .0, "Prof." ;087 Depth | |
215 TCODE .0, .0, "¿Primer Gas?" ;088 First Gas? | |
216 TCODE .0, .0, "Defecto:" ;089 Default: | |
217 TCODE .0, .0, "Minutos" ;090 Minutes | |
218 TCODE .0, .0, "Mes " ;091 Month | |
219 TCODE .0, .0, "Día " ;092 Day | |
220 TCODE .0, .0, "Año " ;093 Year | |
221 TCODE .0, .0, "Fija" ;094 Set | |
222 TCODE .0, .0, "#Gas " ;095 Gas# | |
223 TCODE .0, .0, "Sí " ;096 Yes | |
224 TCODE .0, .0, "Actual: " ;097 Current: | |
225 TCODE .40, .2, "Menú Conf.:" ;098 Setup Menu: | |
226 TCODE .20, .35, "Func.Personaliz.I" ;099 Custom FunctionsI | |
227 TCODE .20, .125, "Tipodeco:" ;100 Decotype: | |
228 TCODE .85, .125, "ZH-L16 OC" ;101 ZH-L16 OC | |
229 TCODE .85, .125, "Indicador" ;102 Gauge | |
230 TCODE .85, .125, "Indi." ;103 Gauge | |
231 TCODE .85, .125, "ZH-L16 CC" ;104 ZH-L16 CC | |
183 | 232 TCODE .0, .0, "¿Gas Activo? " ;105 Active Gas? |
182 | 233 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
|
234 TCODE .20, .95, "Prof. +/-:" ;107 Depth +/-: |
328 | 235 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
|
236 TCODE .20, .155, "Defecto:" ;109 Default: |
182 | 237 TCODE .20, .65, "Menú SetPoint CCR" ;110 CCR SetPoint Menu |
238 TCODE .20, .2, "Menú SetPoint CCR" ;111 CCR SetPoint Menu | |
239 TCODE .0, .0, "#SP" ;112 SP# | |
240 TCODE .20, .95, "Info.Batería" ;113 Battery Info | |
241 TCODE .10, .2, "Información Batería" ;114 Battery Information | |
242 TCODE .0, .9, "Ciclos:" ;115 Cycles: | |
243 TCODE .85, .125, "Apnea" ;116 Apnoe | |
183 | 244 TCODE .0, .18, "Ult. Completo:" ;117 Last Complete: |
182 | 245 TCODE .0, .27, "Vbatt Mínimo:" ;118 Lowest Vbatt: |
246 TCODE .0, .36, "Mínimo el:" ;119 Lowest at: | |
247 TCODE .0, .45, "Tmín:" ;120 Tmin: | |
248 TCODE .0, .54, "Tmáx:" ;121 Tmax: | |
532 | 249 TCODE .100, .124, "Más" ;122 More (Gaslist) |
182 | 250 TCODE .100, .25, "O2 +" ;123 O2 + |
251 TCODE .100, .50, "O2 -" ;124 O2 - | |
252 TCODE .100, .75, "He +" ;125 He + | |
253 TCODE .100, .100, "He -" ;126 He - | |
254 TCODE .100, .0, "Sal." ;127 Exit | |
255 TCODE .100, .25, "Borrar" ;128 Delete | |
256 TCODE .20, .65, "Depur:" ;129 Debug: | |
196 | 257 TCODE .65, .65, "ACT" ;130 ON |
182 | 258 TCODE .65, .65, "DES" ;131 OFF |
259 TCODE .100, .50, "Borrtodo" ;132 Del. all | |
260 TCODE .0, .0, "¡Reinicio inesperado" ;133 Unexpected reset from | |
261 TCODE .0, .25, "del Modo Buceo. Ayudar" ;134 Divemode! Please help | |
635 | 262 TCODE .0, .50, "aportando Información " ;135 and report the Debug |
182 | 263 TCODE .0, .75, "de Depuración debajo!" ;136 Information below! |
525 | 264 TCODE .100, .0, "Bailout" ;137 Bailout |
182 | 265 TCODE .85, .125, "Apnea " ;138 Apnoe |
266 TCODE .105, .120, "Descen." ;139 Descent | |
267 TCODE .105, .60, "Superf." ;140 Surface | |
268 TCODE .50, .2, "¿Salir?" ;141 Quit? | |
269 TCODE .20, .155, "Más" ;142 More | |
270 TCODE .42, .72, "Confirm:" ;143 Confirm: | |
271 TCODE .60, .2, "Menú 2:" ;144 Menu 2: | |
272 TCODE .52, .96, "Cancel" ;145 Cancel | |
273 TCODE .52, .120, "OK!" ;146 OK! | |
274 TCODE .20, .35, "Más" ;147 More | |
275 TCODE .0, .0, ":.........:" ;148 :.........: | |
300
438ecb8090eb
internationalization of EAD and END in divemode, updated spanish for gas setup
heinrichsweikamp
parents:
283
diff
changeset
|
276 TCODE .0, .8, "ppO2" ;149 ppO2 |
438ecb8090eb
internationalization of EAD and END in divemode, updated spanish for gas setup
heinrichsweikamp
parents:
283
diff
changeset
|
277 TCODE .2, .39, "bar " ;150 bar |
182 | 278 TCODE .108, .216, "¿Marca?" ;151 Marker? |
279 TCODE .85, .125, "L16-GF OC" ;152 L16-GF OC | |
280 TCODE .20, .65, "Func.Personaliz.II" ;153 Custom FunctionsII | |
281 ; | |
282 ; 32 custom function descriptors II (FIXED LENGTH = 15 chars). | |
283 TCODE .40, .35, "GF Bajo [%]" ;154 GF Low [%] | |
284 TCODE .40, .35, "GF Alto [%]" ;155 GF High [%] | |
285 TCODE .40, .35, "#Color Batería " ;156 Color# Battery | |
286 TCODE .40, .35, "#Color Estándar" ;157 Color# Standard | |
287 TCODE .40, .35, "#Color MascBuc." ;158 Color# Divemask | |
288 TCODE .40, .35, "#Color Avisos " ;159 Color# Warnings | |
289 TCODE .40, .35, "SegundosModoBuc" ;160 Divemode secs. | |
290 TCODE .40, .35, "Ajusta SP fijo " ;161 Adjust fixed SP | |
635 | 291 TCODE .40, .35, "Aviso Techo " ;162 Warn Ceiling |
182 | 292 TCODE .40, .35, "Iconos TipoMezl" ;163 Mix type icons |
196 | 293 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
|
294 TCODE .40, .35, "AvisoProf[mbar]" ;165 DepthWarn[mbar] |
182 | 295 TCODE .40, .35, "Aviso CNS [%]" ;166 CNS warning [%] |
296 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
|
297 TCODE .40, .35, "Aviso ppO2[bar]" ;168 ppO2 warn [bar] |
182 | 298 TCODE .40, .35, "AvisoVel[m/min]" ;169 Vel.warn[m/min] |
299 TCODE .40, .35, "Despl. Temp/day" ;170 Time offset/day | |
300 TCODE .40, .35, "Mostr.Altímetro" ;171 Show altimeter | |
301 TCODE .40, .35, "Mostr.Marca Log" ;172 Show Log-Marker | |
302 TCODE .40, .35, "Mostrar Cronom." ;173 Show Stopwatch | |
303 TCODE .40, .35, "Mostr. Gráf.Tej" ;174 ShowTissueGraph | |
304 TCODE .40, .35, "Mostr. TejContr" ;175 Show Lead.Tiss. | |
197 | 305 TCODE .40, .35, "PriParadaSuperf" ;176 Shallow stop 1st (Reverse order of deco plans) |
282 | 306 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
|
307 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
|
308 TCODE .40, .35, "GasAscens[/min]" ;179 AscentGas[/min] (Ascent+Deco gas usage) |
476 | 309 TCODE .40, .35, "Futuro TTS[min]" ;180 Future TTS[min] (Compute TTS for extra time at current depth) |
635 | 310 TCODE .40, .35, "Aviso Cuevas[l]" ;181 Cave Warning[l] (Consomation warning for cave divers) |
311 TCODE .40, .35, "Gráfica Vel Asc" ;182 Graph. Velocity (Show a graphical representation of the ascend speed) | |
312 TCODE .40, .35, "Mostr pSCR ppO2" ;183 Show pSCR ppO2 (Show the ppO2 for pSCR divers) | |
313 TCODE .40, .35, "Caída pSCRO2[%]" ;184 pSCR O2 Drop[%] (pSCR O2 drop in percent) | |
314 TCODE .40, .35, "Ratio Pulm pSCR" ;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
|
315 ; End of function descriptor II |
182 | 316 ; |
317 TCODE .13, .2, "Func.Personaliz. II" ;186 Custom Functions II | |
318 TCODE .20, .95, "Ver Licencia" ;187 Show License | |
319 TCODE .0, .2, "Result. Sim.:" ;188 Sim. Results: | |
320 TCODE .90, .25, "Superf." ;189 Surface | |
321 TCODE .0, .0, "ppO2 +" ;190 ppO2 + | |
322 TCODE .0, .0, "ppO2 -" ;191 ppO2 - | |
196 | 323 TCODE .0, .0, "Dil." ;192 Dil. (Rebreather diluent) |
574 | 324 |
325 ; 32 custom function descriptors III (FIXED LENGTH = 15 chars). | |
635 | 326 TCODE .40, .35, "Color# inactivo" ;193 Color# inactive |
327 TCODE .40, .35, "Usar para. segu" ;194 Use safety stop | |
328 TCODE .40, .35, "Mostr.GF en NDL" ;195 Show GF in NDL (If GF > CF08) | |
574 | 329 TCODE .40, .35, "unused " ;196 unused |
330 TCODE .40, .35, "unused " ;197 unused | |
331 TCODE .40, .35, "unused " ;198 unused | |
332 TCODE .40, .35, "unused " ;199 unused | |
333 TCODE .40, .35, "unused " ;200 unused | |
334 TCODE .40, .35, "unused " ;201 unused | |
335 TCODE .40, .35, "unused " ;202 unused | |
336 TCODE .40, .35, "unused " ;203 unused | |
337 TCODE .40, .35, "unused " ;204 unused | |
338 TCODE .40, .35, "unused " ;205 unused | |
339 TCODE .40, .35, "unused " ;206 unused | |
340 TCODE .40, .35, "unused " ;207 unused | |
341 TCODE .40, .35, "unused " ;208 unused | |
342 TCODE .40, .35, "unused " ;209 unused | |
343 TCODE .40, .35, "unused " ;210 unused | |
344 TCODE .40, .35, "unused " ;211 unused | |
345 TCODE .40, .35, "unused " ;212 unused | |
346 TCODE .40, .35, "unused " ;213 unused | |
347 TCODE .40, .35, "unused " ;214 unused | |
348 TCODE .40, .35, "unused " ;215 unused | |
349 TCODE .40, .35, "unused " ;216 unused | |
350 TCODE .40, .35, "unused " ;217 unused | |
351 TCODE .40, .35, "unused " ;218 unused | |
352 TCODE .40, .35, "unused " ;219 unused | |
353 TCODE .40, .35, "unused " ;220 unused | |
354 TCODE .40, .35, "unused " ;221 unused | |
355 TCODE .40, .35, "unused " ;222 unused | |
356 TCODE .40, .35, "unused " ;223 unused | |
357 TCODE .40, .35, "unused " ;224 unused | |
182 | 358 ; |
635 | 359 TCODE .7, .2, "Func.Personaliz. 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
|
360 TCODE .85, .125, "pSCR-GF " ;226 pSCR-GF |
635 | 361 TCODE .90, .54, "Parada Segur." ;227 SafetyStop |
362 TCODE .0, .0, "Inmer. Totales" ;228 Total Dives: | |
363 TCODE .0, .0, "" ;229 unused | |
364 TCODE .0, .0, "" ;230 unused | |
574 | 365 TCODE .0, .0, "" ;231 unused |
366 TCODE .0, .0, "" ;232 unused | |
367 TCODE .0, .0, "" ;233 unused | |
368 TCODE .0, .0, "" ;234 unused | |
369 | |
182 | 370 TCODE .10, .2, "¡ModoDeco cambiado!" ;235 Decomode changed! |
371 TCODE .85, .125, "L16-GF CC" ;236 L16-GF CC | |
372 TCODE .2, .12, "No encont" ;237 Not found | |
373 TCODE .100, .0, "SetPoint" ;238 SetPoint | |
374 TCODE .100, .0, "No Deco" ;239 No Deco | |
375 TCODE .90, .50, "Interval:" ;240 Interval: | |
376 TCODE .100, .75, "Pantall" ;241 Display | |
377 TCODE .100, .0, "No deco" ;242 No deco | |
378 TCODE .132, .0, "beta" ;243 beta | |
379 TCODE .100, .100, "nouso" ;244 unuse | |
380 TCODE .20, .65, "Rein. CF,Gas y Deco" ;245 Reset CF,Gas & Deco | |
381 TCODE .50, .145, "BatBaja!" ;246 LowBatt! | |
382 TCODE .20, .125, "Simulador" ;247 Simulator | |
383 TCODE .30, .2, "Simulador OSTC" ;248 OSTC Simulator | |
369 | 384 TCODE .20, .65, "Inicio Buc." ;249 Start Dive |
182 | 385 TCODE .100, .25, "+ 1m" ;250 + 1m |
386 TCODE .100, .50, "- 1m" ;251 - 1m | |
387 TCODE .100, .75, "+10m" ;252 +10m | |
388 TCODE .100, .100, "-10m" ;253 -10m | |
389 TCODE .100, .0, "Atras" ;254 Close | |
390 TCODE .131, .170, "Tiem" ;255 Time | |
391 ; | |
392 ; Text Bank2 (Texts 256-511) | |
393 ; | |
394 TCODE .0, .0, "x" ;256 x | |
395 TCODE .20, .35, "Fto. fecha: " ;257 Date format: | |
396 TCODE .40, .2, "Menú Conf. 2:" ;258 Setup Menu 2: | |
397 TCODE .105, .35, "MMDDAA" ;259 MMDDYY | |
398 TCODE .105, .35, "DDMMAA" ;260 DDMMYY | |
399 TCODE .105, .35, "AAMMDD" ;261 YYMMDD | |
400 TCODE .1, .1, "OSTC " ;262 OSTC | |
325
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
318
diff
changeset
|
401 TCODE .65, .168, "Bail " ;263 Bail |
182 | 402 TCODE .7, .48, "Aire " ;264 Air |
403 TCODE .120, .135, "Aire " ;265 Air | |
504 | 404 |
552 | 405 TCODE .0, .0, "pSCR Info" ;266 pSCR Info (Must be 9Chars!) |
653 | 406 TCODE .0, .184, "Max." ;267 Max. |
504 | 407 TCODE .0, .0, "" ;268 unused |
408 TCODE .0, .0, "" ;269 unused | |
409 TCODE .0, .0, "" ;270 unused | |
410 | |
182 | 411 ; New CFs Warning |
412 TCODE .0, .2, "¡Nuevo CF añadido!" ;271 New CF added! | |
413 TCODE .0, .35, "¡Añadidas nuevas Func." ;272 New CustomFunctions | |
414 TCODE .0, .65, "Pers.! ¡Comprobar menú" ;273 were added! Check | |
415 TCODE .0, .95, "CF I y CF II para" ;274 CF I and CF II Menu | |
416 TCODE .0, .125, "más Detalles!" ;275 for Details! | |
574 | 417 TCODE .20, .125, "Salinidad:" ;276 Salinity: |
182 | 418 ; |
369 | 419 TCODE .20, .95, "Tiempo Fondo:" ;277 Bottom Time: |
420 TCODE .20, .125, "Prof. Max.:" ;278 Max. Depth: | |
421 TCODE .20, .155, "Calcular Deco" ;279 Calculate Deco | |
641 | 422 TCODE .20, .155, "Brillo: " ;280 Brightness: |
182 | 423 ; |
424 TCODE .93, .170, "ProfMedia" ;281 Avr.Depth | |
425 TCODE .90, .170, "TejControl" ;282 Lead Tiss. | |
426 TCODE .93, .170, "Crono." ;283 Stopwatch | |
427 TCODE .20, .95, "Reinic Diario" ;284 Reset Logbook | |
428 TCODE .20, .125, "Reinic OSTC" ;285 Reboot OSTC | |
429 TCODE .20, .155, "Rein Datosdeco" ;286 Reset Decodata | |
430 ; Altimeter extension | |
431 TCODE .20, .155, "Altímetro" ;287 Altimeter | |
432 TCODE .38, .1, "Fij Altímetro" ;288 Set Altimeter | |
433 TCODE .20, .35, "Ref. mar:" ;289 Sea ref: | |
434 TCODE .0, .0, "Activo: " ;290 Enabled: | |
435 TCODE .20, .95, "Defecto: 1013 mbar" ;291 Default: 1013 mbar | |
436 TCODE .20, .125, "+1 mbar" ;292 +1 mbar | |
437 TCODE .20, .155, "-1 mbar" ;293 -1 mbar | |
438 TCODE .85, .185, "Alt: " ;294 Alt: | |
189 | 439 ; |
574 | 440 TCODE .20, .95, "Func.Personaliz.III" ;295 Custom FunctionsIII |
282 | 441 TCODE .50, .2, "DatosRaw:" ;296 Raw Data: |
199 | 442 ; Gas-setup addons: |
231
f9d42f8ff97b
BUGFIX Don't show (nosense) gas consumption in CCR mode (bug BB20).
JeanDo
parents:
228
diff
changeset
|
443 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
|
444 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
|
445 TCODE .0, .0, "EAD:" ;299 EAD: (equivalent air depth of a gas). |
641 | 446 TCODE .100, .125, "Activar" ;300 Activate (Enable/Disable Gas underwater) |
282 | 447 TCODE .0, .2, "Uso Gas OCR:" ;301 OCR Gas Usage: (Planned gas consumtion by tank). |
314 | 448 ; 115k Bootloader support: |
328 | 449 TCODE .45, .100, "CargadorArr" ;302 Bootloader |
450 TCODE .40, .130, "¡EsperePorf!" ;303 Please wait! | |
451 TCODE .50, .130, "¡Aborta!" ;304 Aborted | |
314 | 452 ;@5 variant |
328 | 453 TCODE .0, .0, "Futuro TTS" ;305 Future TTS (=10 chars. Title for @5 customview). |
370 | 454 ; |
476 | 455 TCODE .100, .125, "SalirSim" ;306 Quit Sim (=8char max. Quit Simulator mode) |
369 | 456 ;Dive interval |
370 | 457 TCODE .20, .35, "Interval:" ;307 Interval: |
635 | 458 TCODE .0, .0, "Ahora " ;308 Now (7 chars min) |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
381
diff
changeset
|
459 TCODE .100, .113, "Promedio" ;309 Average |
476 | 460 TCODE .116, .54, "Crono." ;310 Stopwatch (BIG Stopwatch in Gauge mode) |
461 ; Cave consomation | |
635 | 462 TCODE .0, .0, "Bail Cueva" ;311 Cave Bail. (=10 chars.) |
499
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
492
diff
changeset
|
463 ; OLED Brightness settings |
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
492
diff
changeset
|
464 TCODE .103, .155, "Eco " ;312 Eco (Same length as #313!) |
635 | 465 TCODE .103, .155, "Alto" ;313 High (Same length as #312!) |
574 | 466 |
467 ; ZH-L16 mode description | |
468 TCODE .0, .35, "Tipodeco: ZH-L16 OC" ;314 Decotype: ZH-L16 OC | |
469 TCODE .0, .65, "Para Buceo Circuito" ;315 For Open Circuit | |
470 TCODE .0, .95, "Abierto. Soporta 5 " ;316 Divers. Supports 5 | |
471 TCODE .0, .125, "Gases Trimix. " ;317 Trimix Gases. | |
472 TCODE .0, .155, "Configure su gas en" ;318 Configure your gas | |
473 TCODE .0, .185, "el menú Config. Gas" ;319 in Gassetup menu. | |
474 TCODE .0, .215, "¡Mirar CF11 & CF12!" ;320 Check CF11 & CF12 ! | |
475 ; Gaugemode description | |
476 TCODE .0, .35, "Tipodeco: Indicador" ;321 Decotype: Gauge | |
477 TCODE .0, .65, "TiempoBuceo será en" ;322 Divetime will be in | |
478 TCODE .0, .95, "Minutos:Segundos. " ;323 Minutes:Seconds. | |
479 TCODE .0, .125, "OSTC2 no calculará " ;324 OSTC2 will not | |
480 TCODE .0, .155, "Deco, tiempo NoVue " ;325 compute Deco, NoFly | |
481 TCODE .0, .185, "y Desat. " ;326 time and Desat. | |
482 TCODE .0, .215, "¡Tan sólo tiempo! " ;327 time at all! | |
483 ; Const.ppO2 description | |
484 TCODE .0, .35, "Tipodeco: ZH-L16 CC" ;328 Decotype: ZH-L16 CC | |
485 TCODE .0, .65, "Para rebreathers " ;329 For Closed | |
486 TCODE .0, .95, "Cerrados" ;330 Circuit rebreathers | |
487 TCODE .0, .125, "Configure los 3 " ;331 Configure the 3 | |
488 TCODE .0, .155, "SetPoints en menú " ;332 SetPoints in CCR - | |
489 TCODE .0, .185, "Conf. CCR. Hay 5 " ;333 Setup menu. 5 bail- | |
490 TCODE .0, .215, "bailouts disponible" ;334 outs are available. | |
491 ; Apnoemode description | |
492 TCODE .0, .35, "Tipodeco: Apnea " ;335 Decotype: Apnoe | |
493 TCODE .0, .65, "OSTC2 mostrará cada" ;336 OSTC2 will display | |
494 TCODE .0, .95, "descenso por sepa- " ;337 each descent separ- | |
495 TCODE .0, .125, "rado en Min:Seg. " ;338 ately in Min:Sec. | |
496 TCODE .0, .155, "Temporal.fija frec." ;339 Will temporally set | |
497 TCODE .0, .185, "muestras a 1 seg. " ;340 samplerate to 1 sec | |
498 TCODE .0, .215, "No se calcula Deco " ;341 No Deco calculation | |
499 ; Multi GF OC mode description | |
500 TCODE .0, .35, "Tipodeco: L16-GF OC" ;342 Decotype: L16-GF OC | |
501 TCODE .0, .65, "Cálculos descompr. " ;343 Decompression cal- | |
502 TCODE .0, .95, "con el método-GF " ;344 culations with the | |
503 TCODE .0, .125, "(GF_bajo/GF_alto). " ;345 GF-Method (GF_lo/GF | |
504 TCODE .0, .155, "¡Mirar CF32 y CF33!" ;346 _hi). Check CF32 & | |
505 TCODE .0, .185, "CircuitoAbierto con" ;347 CF33! Open Circuit | |
506 TCODE .0, .215, "Paradas Profundas. " ;348 with Deep Stops. | |
507 ; Multi GF CC mode description | |
508 TCODE .0, .35, "Tipodeco: L16-GF CC" ;349 Decotype: L16-GF CC | |
509 TCODE .0, .65, "Cálculos descompr. " ;350 Decompression cal- | |
510 TCODE .0, .95, "con el método-GF " ;351 culations with the | |
511 TCODE .0, .125, "(GF_bajo/GF_alto). " ;352 GF-Method (GF_lo/GF | |
512 TCODE .0, .155, "¡Mirar CF32 & CF33!" ;353 _hi). Check CF32 & | |
513 TCODE .0, .185, "CircuitoCerrado con" ;354 CF33!Closed Circuit | |
514 TCODE .0, .215, "Paradas Profundas. " ;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
|
515 ; pSCR-GF mode description |
635 | 516 TCODE .0, .35, "Tipodeco: pSCR-GF " ;356 Decotype: pSCR-GF |
517 TCODE .0, .65, "Para Rebreathers " ;357 For passive semi- | |
518 TCODE .0, .95, "Pasivos Semicerrados" ;358 closed rebreather. | |
519 TCODE .0, .125, "Mirar CF32 & CF33 " ;359 Check CF32 & CF33 | |
520 TCODE .0, .155, "Para Factores Grad. " ;360 for gradient factors | |
521 TCODE .0, .185, "y CF61-CF63 para " ;361 and CF61-CF63 for | |
522 TCODE .0, .215, "Características pSCR" ;362 pSCR features. | |
592
cda5b45b953f
NEW: Deco mode "pSCR-GF": Computes deco and CNS based on pSCR parameters (CF62/63)
heinrichsweikamp
parents:
587
diff
changeset
|
523 |
574 | 524 ; |
525 | |
182 | 526 ;============================================================================= |