comparison code_part1/OSTC_code_asm_part1/italian_text.asm @ 604:f8239a6279b8

Italian language support
author heinrichsweikamp
date Wed, 04 Jul 2012 11:08:27 +0200
parents
children 46fc9f02ae03
comparison
equal deleted inserted replaced
603:530a5c994ca2 604:f8239a6279b8
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/08/12 : Sergei V. Rozinov: Complete translation patch
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. öäüß for German.
49 ; éèêç 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_AT4 " at " ; " at "
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 "0min " ; "0min "
103 #DEFINE TXT_MIN4 "min " ; "min "
104 #DEFINE TXT_BSAT5 "BSat:" ; "BSat:"
105 #DEFINE TXT_BDES5 "BDes:" ; "BDes:"
106 #DEFINE TXT_LAST5 "Last:" ; "Last:"
107 #DEFINE TXT_GFLO6 "GF_lo:" ; "GF_lo:"
108 #DEFINE TXT_GFHI6 "GF_hi:" ; "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 #DEFINE TXT_PSCR_P1 "p" ; "P"
121 #DEFINE TXT_PSCR_S1 "S" ; "S"
122 #ENDIF
123 ;=============================================================================
124 ; macro X Y "Italiano " ; English original
125 TCODE .0, .0, "Building MD2 Hash" ;001 Building MD2 Hash
126 TCODE .0, .25, "Attendi..." ;002 Please Wait...
127 TCODE .0, .2, "HeinrichsWeikamp OSTC2" ;003 HeinrichsWeikamp OSTC2
128 TCODE .65, .2, "Menu?" ;004 Menu?
129 TCODE .65, .2, "Menu:" ;005 Menu:
130 TCODE .20, .35, "Logbook" ;006 Logbook
131 TCODE .20, .65, "Imposta Gas" ;007 Gas Setup
132 TCODE .20, .35, "Imposta Ora" ;008 Set Time
133 TCODE .20, .95, "Reset Menu" ;009 Reset Menu
134 TCODE .20, .125, "Impostazioni" ;010 Setup
135 TCODE .20, .185, "Esci" ;011 Exit
136 TCODE .111, .2, "Attendi..." ;012 Wait...
137 TCODE .0, .24, "MD2 Hash:" ;013 MD2 Hash:
138 TCODE .0, .0, "Desat" ;014 Desat (Desaturation count-down)
139 TCODE .50, .2, "Connessione" ;015 Interface (Connected to USB)
140 TCODE .10, .30, "Inizio" ;016 Start
141 TCODE .10, .55, "Data" ;017 Data
142 TCODE .10, .80, "Testata" ;018 Header
143 TCODE .10, .105, "Profilo" ;019 Profile
144 TCODE .10, .130, "Fatto." ;020 Done.
145 TCODE .20, .35, "Annulla Reset" ;021 Cancel Reset
146 TCODE .32, .65, "Ora :" ;022 Time:
147 TCODE .32, .95, "Data:" ;023 Date:
148 TCODE .0, .215, "Imposta Ore" ;024 Set Hours
149 TCODE .6, .0, "Azzera..." ;025 Reset...
150 TCODE .55, .2, "Logbook" ;026 Logbook
151 TCODE .14, .2, "Funzioni Custom I" ;027 Custom Functions I
152 TCODE .40, .2, "Reset Menu" ;028 Reset Menu
153 TCODE .50, .2, "Imposta orario:" ;029 Set Time:
154 TCODE .100, .50, "SetMarker" ;030 SetMarker (Add a mark in logbook profile)
155 TCODE .100, .25, "PianoDeco" ;031 Decoplan
156 TCODE .100, .0, "ListaGas" ;032 Gaslist
157 TCODE .100, .50, "AzzeraAvr" ;033 ResetAvr (Reset average depth)
158 TCODE .100, .100, "Esci" ;034 Exit (Exit current menu)
159 TCODE .0, .0, "NonVolo" ;035 NoFly (No-flight count-down)
160 ;
161 ; 32 custom function descriptors I (FIXED LENGTH = 15 chars).
162 TCODE .40, .35, "Inizio immersione[m]" ;036 Start Dive [m] (depth to switch to dive mode)
163 TCODE .40, .35, "Fine immersione [m]" ;037 End Dive [m] (depth to switch back to surface mode)
164 TCODE .40, .35, "End Delay [sec]" ;038 End Delay [sec] (duration dive screen stays after end of dive)
165 TCODE .40, .35, "Spegnimento [min]" ;039 Power Off [min]
166 TCODE .40, .35, "Pre-menu [min]" ;040 Pre-menu [min] (Delais to keep surface-mode menus displayed)
167 TCODE .40, .35, "velocità [m/min]" ;041 velocity[m/min]
168 TCODE .40, .35, "Accensione [mbar]" ;042 Wake-up [mbar]
169 TCODE .40, .35, "max.Surf.[mbar]" ;043 max.Surf.[mbar]
170 TCODE .40, .35, "Visualizza GF [%]" ;044 GF display [%]
171 TCODE .40, .35, "min. O2 Vis.[%]" ;045 min. O2 Dis.[%]
172 TCODE .40, .35, "Dive menus[min]" ;046 Dive menus[min]
173 TCODE .40, .35, "Saturazione x[%]" ;047 Saturate x [%]
174 TCODE .40, .35, "Desaturazione x[%]" ;048 Desaturate x[%]
175 TCODE .40, .35, "Ratio NonVolo [%]" ;049 NoFly Ratio [%] (Grandient factor tolerance for no-flight countdown).
176 TCODE .40, .35, "Allarme GF 1 [%]" ;050 GF alarm 1 [%]
177 TCODE .40, .35, "CNSshow surf[%]" ;051 CNSshow surf[%]
178 TCODE .40, .35, "Deco Offset [m]" ;052 Deco Offset [m]
179 TCODE .40, .35, "ppO2 Bassa[bar]" ;053 ppO2 low [bar]
180 TCODE .40, .35, "ppO2 Alta [bar]" ;054 ppO2 high [bar]
181 TCODE .40, .35, "ppO2 vedi [bar]" ;055 ppO2 show [bar]
182 TCODE .40, .35, "freq campionamento" ;056 sampling rate
183 TCODE .40, .35, "Divisor Temp " ;057 Divisor Temp
184 TCODE .40, .35, "Divisor Decodat" ;058 Divisor Decodat
185 TCODE .40, .35, "Divisor GF " ;059 Divisor GF
186 TCODE .40, .35, "Divisor ppO2 " ;060 Divisor ppO2
187 TCODE .40, .35, "Divisor Debug " ;061 Divisor Debug
188 TCODE .40, .35, "Divisor CNS " ;062 Divisor CNS
189 TCODE .40, .35, "CNSshow dive[%]" ;063 CNSshow dive[%]
190 TCODE .40, .35, "Logbook offset " ;064 Logbook offset
191 TCODE .40, .35, "Ultima Deco a[m]" ;065 Last Deco at[m]
192 TCODE .40, .35, "Fine Apnea [h]" ;066 End Apnoe [h]
193 TCODE .40, .35, "Mostra Volts.Batt" ;067 Show Batt.Volts
194 ; End of function descriptor I
195 ;
196 ;licence:
197 TCODE .0, .35, "Questo programma è" ;068 This program is
198 TCODE .0, .65, "distribuito nella" ;069 distributed in the
199 TCODE .0, .95, "speranza che vi sarà" ;070 hope that it will be
200 TCODE .0, .125, "utile, ma SENZA" ;071 useful, but WITHOUT
201 TCODE .0, .155, "NESSUNA GARANZIA" ;072 ANY WARRANTY
202 TCODE .0, .185, "anche l'implicita" ;073 even the implied
203 TCODE .0, .215, "garanzia di" ;074 warranty of
204 TCODE .0, .35, "MERCHANTABILITY or" ;075 MERCHANTABILITY or
205 TCODE .0, .65, "FITNESS FOR A" ;076 FITNESS FOR A
206 TCODE .0, .95, "PARTICULAR PURPOSE." ;077 PARTICULAR PURPOSE.
207 TCODE .0, .125, "Vedi anche GNU General" ;078 See the GNU General
208 TCODE .0, .155, "Public License per" ;079 Public License for
209 TCODE .0, .185, "maggiori dettagli:" ;080 more details:
210 TCODE .0, .215, "www.heinrichsweikamp.de" ;081 www.heinrichsweikamp.de
211 ; end of licence
212 ;
213 TCODE .102, .54, "TappaDeco" ;082 Decostop
214 TCODE .0, .0, "m/min" ;083 m/min
215 TCODE .108, .113, "No Stop" ;084 No Stop
216 TCODE .135, .113, "TTS" ;085 TTS
217 TCODE .100, .0, "Divetime" ;086 Divetime
218 TCODE .0, .0, "Profondità" ;087 Depth
219 TCODE .0, .0, "Primo Gas?" ;088 First Gas?
220 TCODE .0, .0, "Default:" ;089 Default:
221 TCODE .0, .0, "Minuti" ;090 Minutes
222 TCODE .0, .0, "Mese " ;091 Month
223 TCODE .0, .0, "Giorno " ;092 Day
224 TCODE .0, .0, "Anno " ;093 Year
225 TCODE .0, .0, "Imposta" ;094 Set
226 TCODE .0, .0, "Gas# " ;095 Gas#
227 TCODE .0, .0, "SI" ;096 Yes
228 TCODE .0, .0, "Corrente:" ;097 Current:
229 TCODE .40, .2, "Menu Impostazioni:" ;098 Setup Menu:
230 TCODE .20, .35, "Funzioni custom I" ;099 Custom FunctionsI
231 TCODE .20, .125, "TipoDeco:" ;100 Decotype:
232 TCODE .85, .125, "ZH-L16 OC" ;101 ZH-L16 OC
233 TCODE .85, .125, "Profondimetro" ;102 Gauge
234 TCODE .85, .125, "Profondimetro" ;103 Gauge
235 TCODE .85, .125, "ZH-L16 CC" ;104 ZH-L16 CC
236 TCODE .0, .0, "Gas Attivo? " ;105 Active Gas?
237 TCODE .10, .2, "Imposta Gas - listaGas" ;106 Gas Setup - Gaslist
238 TCODE .20, .95, "Profondità +/-:" ;107 Depth +/-:
239 TCODE .20, .125, "Cambia:" ;108 Change:
240 TCODE .20, .155, "Default:" ;109 Default:
241 TCODE .20, .65, "CCR SetPoint Menu" ;110 CCR SetPoint Menu
242 TCODE .20, .2, "CCR SetPoint Menu" ;111 CCR SetPoint Menu
243 TCODE .0, .0, "SP#" ;112 SP#
244 TCODE .20, .95, "Info Batteria" ;113 Battery Info
245 TCODE .10, .2, "Informazioni Batteria" ;114 Battery Information
246 TCODE .0, .9, "Cicli:" ;115 Cycles:
247 TCODE .85, .125, "Apnea" ;116 Apnoe
248 TCODE .0, .18, "Ultimo Completo:" ;117 Last Complete:
249 TCODE .0, .27, "Minimo Vbatt:" ;118 Lowest Vbatt:
250 TCODE .0, .36, "Minimo al:" ;119 Lowest at:
251 TCODE .0, .45, "Tmin:" ;120 Tmin:
252 TCODE .0, .54, "Tmax:" ;121 Tmax:
253 TCODE .100, .124, "Altri" ;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, "Esci" ;127 Exit
259 TCODE .100, .25, "Cancella" ;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, "Canc. tutto" ;132 Del. all
264 TCODE .10, .0, "Rest Inaspettato dal" ;133 Unexpected reset from
265 TCODE .10, .25, "Divemode! Aiutaci " ;134 Divemode! Please help
266 TCODE .10, .50, "e comunicaci le " ;135 and report the Debug
267 TCODE .10, .75, "Informazioni qui sotto!" ;136 Information below!
268 TCODE .100, .0, "Bailout" ;137 Bailout
269 TCODE .85, .125, "Apnea " ;138 Apnoe
270 TCODE .105, .120, "Discesa" ;139 Descent
271 TCODE .105, .60, "Superficie" ;140 Surface
272 TCODE .65, .2, "Esci?" ;141 Quit?
273 TCODE .20, .155, "Aggiungi" ;142 More
274 TCODE .42, .72, "Conferma:" ;143 Confirm:
275 TCODE .60, .2, "Menu 2:" ;144 Menu 2:
276 TCODE .52, .96, "Cancella" ;145 Cancel
277 TCODE .52, .120, "OK!" ;146 OK!
278 TCODE .20, .35, "Aggiungi" ;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, "Marker?" ;151 Marker?
283 TCODE .85, .125, "L16-GF OC" ;152 L16-GF OC
284 TCODE .20, .65, "Funzioni Custom II" ;153 Custom FunctionsII
285 ;
286 ; 32 custom function descriptors II (FIXED LENGTH = 15 chars).
287 TCODE .40, .35, "GF Basso [%]" ;154 GF Low [%]
288 TCODE .40, .35, "GF Alto [%]" ;155 GF High [%]
289 TCODE .40, .35, "Colore#Batteria" ;156 Color# Battery
290 TCODE .40, .35, "Colore#Standard" ;157 Color# Standard
291 TCODE .40, .35, "Colore#Divemask" ;158 Color# Divemask
292 TCODE .40, .35, "Colore# Allarmi" ;159 Color# Warnings
293 TCODE .40, .35, "Sec.in Divemode" ;160 Divemode secs.
294 TCODE .40, .35, "Adjust fixed SP" ;161 Adjust fixed SP
295 TCODE .40, .35, "Allarme Ceiling" ;162 Warn Ceiling
296 TCODE .40, .35, "Mix type icons " ;163 Mix type icons
297 TCODE .40, .35, "Lamp MigliorGas" ;164 Blink BetterGas (Remainder in divemode to switch to a better decompression gas).
298 TCODE .40, .35, "AlarmProf[mbar]" ;165 DepthWarn[mbar]
299 TCODE .40, .35, "Allarme CNS [%]" ;166 CNS warning [%]
300 TCODE .40, .35, "Allarme GF [%]" ;167 GF warning [%]
301 TCODE .40, .35, "Alarm ppO2[bar]" ;168 ppO2 warn [bar]
302 TCODE .40, .35, "AlarmVel[m/min]" ;169 Vel.warn[m/min]
303 TCODE .40, .35, "Time offset/day" ;170 Time offset/day
304 TCODE .40, .35, "Vedi altimetro " ;171 Show altimeter
305 TCODE .40, .35, "vedi Log-Marker" ;172 Show Log-Marker
306 TCODE .40, .35, "Vedi Stopwatch " ;173 Show Stopwatch
307 TCODE .40, .35, "VediGrafTessuti" ;174 ShowTissueGraph
308 TCODE .40, .35, "Vedi Tess.Prim." ;175 Show Lead.Tiss.
309 TCODE .40, .35, "Gira piano Deco" ;176 Shallow stop 1st (Reverse order of deco plans)
310 TCODE .40, .35, "Cambia Gas[min]" ;177 Gas switch[min] (Additional delay in decoplan for gas switches).
311 TCODE .40, .35, "Gas Fondo[/min]" ;178 BottomGas[/min] (Bottom gas usage, for volume estimation).
312 TCODE .40, .35, "Gas Risal[/min]" ;179 AscentGas[/min] (Ascent+Deco gas usage)
313 TCODE .40, .35, "TTS Futuro[min]" ;180 Future TTS[min] (Compute TTS for extra time at current depth)
314 TCODE .40, .35, "Allarme Cave[l]" ;181 Cave Warning[l] (Consomation warning for cave divers)
315 TCODE .40, .35, "GraficoVelocità" ;182 Graph. Velocity (Show a graphical representation of the ascend speed)
316 TCODE .40, .35, "Vedi pSCR ppO2 " ;183 Show pSCR ppO2 (Show the ppO2 for pSCR divers)
317 TCODE .40, .35, "pSCR O2 Drop[%]" ;184 pSCR O2 Drop[%] (pSCR O2 drop in percent)
318 TCODE .40, .35, "pSCR lung ratio" ;185 pSCR lung ratio (pSCR counterlung ratio)
319 ; End of function descriptor II
320 ;
321 TCODE .13, .2, "Funzioni Custom II" ;186 Custom Functions II
322 TCODE .20, .95, "Vedi Licenza" ;187 Show License
323 TCODE .0, .2, "Risultati simul:" ;188 Sim. Results:
324 TCODE .90, .25, "Superficie" ;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
329 ; 32 custom function descriptors III (FIXED LENGTH = 15 chars).
330 TCODE .40, .35, "Color# inattivo" ;193 Color# inactive
331 TCODE .40, .35, "Usa tappa sicur" ;194 Use safety stop
332 TCODE .40, .35, "unused " ;195 unused
333 TCODE .40, .35, "unused " ;196 unused
334 TCODE .40, .35, "unused " ;197 unused
335 TCODE .40, .35, "unused " ;198 unused
336 TCODE .40, .35, "unused " ;199 unused
337 TCODE .40, .35, "unused " ;200 unused
338 TCODE .40, .35, "unused " ;201 unused
339 TCODE .40, .35, "unused " ;202 unused
340 TCODE .40, .35, "unused " ;203 unused
341 TCODE .40, .35, "unused " ;204 unused
342 TCODE .40, .35, "unused " ;205 unused
343 TCODE .40, .35, "unused " ;206 unused
344 TCODE .40, .35, "unused " ;207 unused
345 TCODE .40, .35, "unused " ;208 unused
346 TCODE .40, .35, "unused " ;209 unused
347 TCODE .40, .35, "unused " ;210 unused
348 TCODE .40, .35, "unused " ;211 unused
349 TCODE .40, .35, "unused " ;212 unused
350 TCODE .40, .35, "unused " ;213 unused
351 TCODE .40, .35, "unused " ;214 unused
352 TCODE .40, .35, "unused " ;215 unused
353 TCODE .40, .35, "unused " ;216 unused
354 TCODE .40, .35, "unused " ;217 unused
355 TCODE .40, .35, "unused " ;218 unused
356 TCODE .40, .35, "unused " ;219 unused
357 TCODE .40, .35, "unused " ;220 unused
358 TCODE .40, .35, "unused " ;221 unused
359 TCODE .40, .35, "unused " ;222 unused
360 TCODE .40, .35, "unused " ;223 unused
361 TCODE .40, .35, "unused " ;224 unused
362 ;
363 TCODE .7, .2, "Funcioni Custom III" ;225 Custom Functions III
364 TCODE .85, .125, "pSCR-GF " ;226 pSCR-GF
365 TCODE .90, .54, "SafetyStop" ;227 SafetyStop
366 TCODE .0, .0, "" ;228 unused
367 TCODE .0, .0, "" ;229 unused
368 TCODE .0, .0, "" ;230 unused
369 TCODE .0, .0, "" ;231 unused
370 TCODE .0, .0, "" ;232 unused
371 TCODE .0, .0, "" ;233 unused
372 TCODE .0, .0, "" ;234 unused
373
374 TCODE .10, .2, "Deco Cambiato!" ;235 Decomode changed!
375 TCODE .85, .125, "L16-GF CC" ;236 L16-GF CC
376 TCODE .2, .12, "Non trovato" ;237 Not found
377 TCODE .100, .0, "SetPoint" ;238 SetPoint
378 TCODE .100, .0, "No Deco" ;239 No Deco
379 TCODE .90, .50, "Intervallo:" ;240 Interval:
380 TCODE .100, .75, "Display" ;241 Display
381 TCODE .100, .0, "No deco" ;242 No deco
382 TCODE .132, .0, "beta" ;243 beta
383 TCODE .100, .100, "unuse" ;244 unuse
384 TCODE .20, .65, "Resetta CF,Gas & Deco" ;245 Reset CF,Gas & Deco
385 TCODE .50, .145, "Batt bassa!" ;246 LowBatt!
386 TCODE .20, .125, "Simulatore" ;247 Simulator
387 TCODE .30, .2, "OSTC Simulator" ;248 OSTC Simulator
388 TCODE .20, .65, "Inizio immersione" ;249 Start Dive
389 TCODE .100, .25, "+ 1m" ;250 + 1m
390 TCODE .100, .50, "- 1m" ;251 - 1m
391 TCODE .100, .75, "+10m" ;252 +10m
392 TCODE .100, .100, "-10m" ;253 -10m
393 TCODE .100, .0, "Chiudi" ;254 Close
394 TCODE .131, .170, "Tempo" ;255 Time
395 ;
396 ; Text Bank2 (Texts 256-511)
397 ;
398 TCODE .0, .0, "x" ;256 x
399 TCODE .20, .35, "Formato data:" ;257 Date format:
400 TCODE .40, .2, "Setup Menu 2:" ;258 Setup Menu 2:
401 TCODE .105, .35, "MMDDYY" ;259 MMDDYY
402 TCODE .105, .35, "DDMMYY" ;260 DDMMYY
403 TCODE .105, .35, "YYMMDD" ;261 YYMMDD
404 TCODE .1, .1, "OSTC " ;262 OSTC
405 TCODE .65, .168, "Bail " ;263 Bail
406 TCODE .7, .48, "Aria " ;264 Air
407 TCODE .120, .135, "Aria " ;265 Air
408
409 TCODE .0, .0, "Info pSCR" ;266 pSCR Info (Must be 9Chars!)
410 TCODE .0, .216, "Max." ;267 Max.
411 TCODE .0, .0, "" ;268 unused
412 TCODE .0, .0, "" ;269 unused
413 TCODE .0, .0, "" ;270 unused
414
415 ; New CFs Warning
416 TCODE .24, .2, "Nuova CF aggiunta!" ;271 New CF added!
417 TCODE .0, .35, "Nuove Funz. custom" ;272 New CustomFunctions
418 TCODE .0, .65, "Aggiunte! Controlla" ;273 were added! Check
419 TCODE .0, .95, "i menu CF I CF II" ;274 CF I and CF II Menu
420 TCODE .0, .125, "per i Dettagli!" ;275 for Details!
421 TCODE .20, .125, "Salinità: " ;276 Salinity:
422 ;
423 TCODE .20, .95, "Tempo di fondo:" ;277 Bottom Time:
424 TCODE .20, .125, "Profondità Max:" ;278 Max. Depth:
425 TCODE .20, .155, "Calcola Deco" ;279 Calculate Deco
426 TCODE .20, .155, "Luminosità:" ;280 Brightness:
427 ;
428 TCODE .93, .170, "Prof.media" ;281 Avr.Depth
429 TCODE .90, .170, "Lead Tiss." ;282 Lead Tiss.
430 TCODE .93, .170, "Cronometro" ;283 Stopwatch
431 TCODE .20, .95, "Azzera Logbook" ;284 Reset Logbook
432 TCODE .20, .125, "Riavvia OSTC" ;285 Reboot OSTC
433 TCODE .20, .155, "Azzera Decodata" ;286 Reset Decodata
434 ; Altimeter extension
435 TCODE .20, .155, "Altimetro" ;287 Altimeter
436 TCODE .38, .1, "imposta Altimetro" ;288 Set Altimeter
437 TCODE .20, .35, "Rif Mare: " ;289 Sea ref:
438 TCODE .0, .0, "Abilitato: " ;290 Enabled:
439 TCODE .20, .95, "Default: 1013 mbar" ;291 Default: 1013 mbar
440 TCODE .20, .125, "+1 mbar" ;292 +1 mbar
441 TCODE .20, .155, "-1 mbar" ;293 -1 mbar
442 TCODE .85, .185, "Alt: " ;294 Alt:
443 ;
444 TCODE .20, .95, "Funzioni CustomIII" ;295 Custom FunctionsIII
445 TCODE .50, .2, "Raw Data:" ;296 Raw Data:
446 ; Gas-setup addons:
447 TCODE .0, .0, "MOD:" ;297 MOD: (max operating depth of a gas).
448 TCODE .0, .0, "END:" ;298 END: (equivalent nitrogen depth of a gas).
449 TCODE .0, .0, "EAD:" ;299 EAD: (equivalent air depth of a gas).
450 TCODE .100, .125, "More" ;300 More (Enable/Disable Gas underwater)
451 TCODE .0, .2, "OCR Gas Usage:" ;301 OCR Gas Usage: (Planned gas consumtion by tank).
452 ; 115k Bootloader support:
453 TCODE .45, .100, "Bootloader" ;302 Bootloader
454 TCODE .40, .130, "Perfavore aspetta!" ;303 Please wait!
455 TCODE .50, .130, "Aborted!" ;304 Aborted
456 ; @5 variant
457 TCODE .0, .0, "TTS Futuro" ;305 Future TTS (=10 chars. Title for @5 customview).
458 ;
459 TCODE .100, .125, "Esci Sim" ;306 Quit Sim (=8char max. Quit Simulator mode)
460 ; Dive interval
461 TCODE .20, .35, "Intervallo:" ;307 Interval:
462 TCODE .0, .0, "Adesso " ;308 Now (7 chars min)
463 TCODE .108, .112, "Medio" ;309 Average
464 ;
465 TCODE .94, .54, "Cronometro" ;310 Stopwatch (BIG Stopwatch in Gauge mode)
466 ; Cave consomation
467 TCODE .0, .0, "Cave Bail." ;311 Cave Bail. (=10 chars.)
468 ; OLED Brightness settings
469 TCODE .103, .155, "Eco " ;312 Eco (Same length as #313!)
470 TCODE .103, .155, "High" ;313 High (Same length as #312!)
471
472 ; ZH-L16 mode description
473 TCODE .0, .35, "TipoDeco: ZH-L16 OC" ;314 Decotype: ZH-L16 OC
474 TCODE .0, .65, "Per Sub in Circuito" ;315 For Open Circuit
475 TCODE .0, .95, "Aperto. Supporta 5" ;316 Divers. Supports 5
476 TCODE .0, .125, "Miscele Trimix." ;317 Trimix Gases.
477 TCODE .0, .155, "Configura il tuo gas" ;318 Configure your gas
478 TCODE .0, .185, "nel menu ImpostaGas." ;319 in Gassetup menu.
479 TCODE .0, .215, "Controlla CF11 & CF12 !" ;320 Check CF11 & CF12 !
480 ; Gaugemode description
481 TCODE .0, .35, "Tipodeco: Profondimetro" ;321 Decotype: Gauge
482 TCODE .0, .65, "Il tempo di immersione" ;322 Divetime will be in
483 TCODE .0, .95, "sarà Minuti:Secondi." ;323 Minutes:Seconds.
484 TCODE .0, .125, "OSTC2 non calcolerà" ;324 OSTC2 will not
485 TCODE .0, .155, "mai Deco, tempo di " ;325 compute Deco, NoFly
486 TCODE .0, .185, "Non volo e tempo di " ;326 time and Desat.
487 TCODE .0, .215, "desaturazione!" ;327 time at all!
488 ; Const.ppO2 description
489 TCODE .0, .35, "Tipodeco: ZH-L16 CC" ;328 Decotype: ZH-L16 CC
490 TCODE .0, .65, "Per Rebreather " ;329 For closed
491 TCODE .0, .95, "a circuito chiuso" ;330 circuit rebreathers
492 TCODE .0, .125, "Configura i 3" ;331 Configure the 3
493 TCODE .0, .155, "SetPoints nel menu" ;332 SetPoints in CCR -
494 TCODE .0, .185, "imposta-CCR. 5 bail-" ;333 Setup menu. 5 bail-
495 TCODE .0, .215, "outs sono disponibili." ;334 outs are available.
496 ; Apnoemode description
497 TCODE .0, .35, "Tipodeco: Apnea" ;335 Decotype: Apnoe
498 TCODE .0, .65, "OSTC2 mostrerà" ;336 OSTC2 will display
499 TCODE .0, .95, "ogni discesa separ-" ;337 each descent separ-
500 TCODE .0, .125, "atamente in Min:Sec." ;338 ately in Min:Sec.
501 TCODE .0, .155, "Temporaneamente il" ;339 Will temporally set
502 TCODE .0, .185, "samplerate sarà 1 sec" ;340 samplerate to 1 sec
503 TCODE .0, .215, "Senza calcolo Deco " ;341 No Deco calculation
504 ; Multi GF OC mode description
505 TCODE .0, .35, "TpoDeco: L16-GF OC" ;342 Decotype: L16-GF OC
506 TCODE .0, .65, "Calcolo decompres-" ;343 Decompression cal-
507 TCODE .0, .95, "sione con il " ;344 culations with the
508 TCODE .0, .125, "Metodo GF (GF_lo/GF" ;345 GF-Method (GF_lo/GF
509 TCODE .0, .155, "_hi). Controlla CF32 &" ;346 _hi). Check CF32 &
510 TCODE .0, .185, "CF33! Circuito Aperto" ;347 CF33! Open Circuit
511 TCODE .0, .215, "con Deep Stops." ;348 with Deep Stops.
512 ; Multi GF CC mode description
513 TCODE .0, .35, "TipoDeco: L16-GF CC" ;349 Decotype: L16-GF CC
514 TCODE .0, .65, "Calcolo decompres-" ;350 Decompression cal-
515 TCODE .0, .95, "sione con il " ;351 culations with the
516 TCODE .0, .125, "Metodo GF (GF_lo/GF" ;352 GF-Method (GF_lo/GF
517 TCODE .0, .155, "_hi). Controlla CF32 &" ;353 _hi). Check CF32 &
518 TCODE .0, .185, "CF33!Circuito chiuso" ;354 CF33!Closed Circuit
519 TCODE .0, .215, "con Deep Stops." ;355 with Deep Stops.
520 ; pSCR-GF mode description
521 TCODE .0, .35, "TipoDeco: pSCR-GF" ;356 Decotype: pSCR-GF
522 TCODE .0, .65, "Per passive semi-" ;357 For passive semi-
523 TCODE .0, .95, "closed rebreather." ;358 closed rebreather.
524 TCODE .0, .125, "Controlla CF32 & CF33" ;359 Check CF32 & CF33
525 TCODE .0, .155, "per i gradient factors" ;360 for gradient factors
526 TCODE .0, .185, "and CF61-CF63 per" ;361 and CF61-CF63 for
527 TCODE .0, .215, "modalità pSCR." ;362 pSCR features.
528 ;
529
530 ;=============================================================================