Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/french_text.asm @ 757:50ed645c251d
CHANGE: save gas used during deco
author | jDG |
---|---|
date | Sun, 03 Nov 2013 13:37:04 +0100 |
parents | 6ec145626fbc |
children | ae830d5e63ef |
rev | line source |
---|---|
177 | 1 ;============================================================================= |
175 | 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 ; | |
177 | 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. | |
190 | 22 ; 2011/02/02 : Jean-Do Gascuel: split into different files for multi-lingual support |
23 ; 2011/02/09 : Pierre Vidalot: French translation. | |
584 | 24 ; 2011/08/12 : Sergei V. Rozinov: Complete translation patch |
676 | 25 ; 2012/12/12 : Matthieu Foll: Added missing french translation (106,229,230,231) |
177 | 26 ; |
175 | 27 ; known bugs: |
28 ; ToDo: | |
177 | 29 ;============================================================================= |
30 ; | |
31 ; Instructions for translating: | |
32 ; | |
33 ; * Strings are accessed according to the order in the file. | |
34 ; So don't change ordering ! | |
35 ; | |
36 ; * Keep the english original version on the right column. So translations | |
37 ; can be reviewed and maintened. | |
38 ; | |
39 ; * One of the main constraint is to keep texts short, to avoid clobering | |
40 ; the OSTC screen. Of course, the technical, precise terms should be used. | |
41 ; Generally, there is no hard constraint: you can be one or two chars | |
42 ; shorter or longer. | |
43 ; | |
44 ; * Beware that some strings do have a fixed length. You should then use | |
45 ; exactly the same size. | |
46 ; | |
47 ; * Beware that some strings have ponctuation, or trailling space(s). In that | |
48 ; case, you should keep EXACTLY the same ponctuation AND TRAILING SPACES. | |
49 ; | |
50 ; * Ascii chars: we can support a few specific chars. öäüß for German. | |
187 | 51 ; éèêç for French. áíóúñ¡¿ for Spanish. |
52 ; If you really, absolutly, need more: ask... | |
177 | 53 ; |
54 ; * Do not translate comments (everithing after the ;), because they are | |
55 ; used for maintenance. | |
56 ; | |
57 ; * The X column is position on screen. Some texts are centered, left | |
58 ; padded or right padded. In that case, if you changed the text size, | |
59 ; you will have to adjust position. A char is 7 pixels wide. | |
60 ; | |
61 ;============================================================================= | |
446 | 62 ; Define's section |
63 ; Definition translation ; English original | |
64 #IFNDEF TXT_DEFINED | |
65 #DEFINE TXT_DEFINED | |
66 | |
67 #DEFINE TXT_GAS_C 'G' ; 'G' | |
68 #DEFINE TXT_GAS1 "G" ; "G" | |
69 #DEFINE TXT_METER_C 'm' ; 'm' | |
70 #DEFINE TXT_METER5 "m " ; "m " | |
71 #DEFINE TXT_METER3 "m " ; "m " | |
72 #DEFINE TXT_METER2 "m " ; "m " | |
73 #DEFINE TXT_METER1 "m" ; "m" | |
74 #DEFINE TXT_MBAR7 " mbar " ; " mbar " | |
75 #DEFINE TXT_MBAR5 "mbar " ; "mbar " | |
76 #DEFINE TXT_BAR4 "bar " ; "bar " | |
77 #DEFINE TXT_BAR3 "bar" ; "bar" | |
78 #DEFINE TXT_ALT5 "Alt: " ; "Alt: " | |
79 #DEFINE TXT_KGL4 "kg/l" ; "kg/l" | |
80 #DEFINE TXT_VOLT2 "V " ; "V " | |
81 #DEFINE TXT_VOLT1 "V" ; "V" | |
535 | 82 #DEFINE TXT_STEP5 "Pas :" ; "Step:" |
446 | 83 #DEFINE TXT_CF2 "CF" ; "CF" |
84 #DEFINE TXT_O2_4 "O2: " ; "O2: " | |
85 #DEFINE TXT_O2_3 "O2 " ; "O2 " | |
86 #DEFINE TXT_AIR4 "AIR " ; "AIR " | |
87 #DEFINE TXT_ERR4 "ERR " ; "ERR " | |
88 #DEFINE TXT_HE4 "He: " ; "He: " | |
89 #DEFINE TXT_NX3 "NX " ; "NX " | |
90 #DEFINE TXT_TX3 "TX " ; "TX " | |
584 | 91 #DEFINE TXT_AT4 " a " ; " at " |
446 | 92 #DEFINE TXT_G1_3 "G1:" ; "G1:" |
93 #DEFINE TXT_G2_3 "G2:" ; "G2:" | |
94 #DEFINE TXT_G3_3 "G3:" ; "G3:" | |
95 #DEFINE TXT_G4_3 "G4:" ; "G4:" | |
96 #DEFINE TXT_G5_3 "G5:" ; "G5:" | |
97 #DEFINE TXT_G6_3 "G6:" ; "G6:" | |
535 | 98 #DEFINE TXT_1ST4 "1er:" ; "1st:" |
99 #DEFINE TXT_CNS4 "SNC:" ; "CNS:" | |
100 #DEFINE TXT_CNSGR10 "SNC > 250%" ; "CNS > 250%" | |
101 #DEFINE TXT_AVR4 "Moy:" ; "Avr:" | |
446 | 102 #DEFINE TXT_GF3 "GF:" ; "GF:" |
103 #DEFINE TXT_SAT4 "Sat:" ; "Sat:" | |
104 #DEFINE TXT_0MIN5 "0min " ; "0min " | |
105 #DEFINE TXT_MIN4 "min " ; "min " | |
106 #DEFINE TXT_BSAT5 "BSat:" ; "BSat:" | |
107 #DEFINE TXT_BDES5 "BDes:" ; "BDes:" | |
108 #DEFINE TXT_LAST5 "Last:" ; "Last:" | |
109 #DEFINE TXT_GFLO6 "GF_lo:" ; "GF_lo:" | |
110 #DEFINE TXT_GFHI6 "GF_hi:" ; "GF_hi:" | |
111 #DEFINE TXT_PPO2_5 "ppO2:" ; "ppO2:" | |
112 #DEFINE TXT_SP2 "SP" ; "SP" | |
113 #DEFINE TXT_DIL4 "Dil:" ; "Dil:" | |
114 #DEFINE TXT_N2_2 "N2" ; "N2" | |
115 #DEFINE TXT_HE2 "He" ; "He" | |
607 | 116 #DEFINE TXT_TX1 "T" ; "T" |
117 #DEFINE TXT_TX2 "x" ; "x" | |
118 #DEFINE TXT_NX1 "N" ; "N" | |
119 #DEFINE TXT_NX2 "x" ; "x" | |
671 | 120 #DEFINE TXT_DIL_C "D" ; "D" |
121 #DEFINE TXT_DIL5 "Dil.#" ; "Dil.#" | |
669 | 122 #DEFINE TXT_aGF4 "aGF:" ; "aGF:" |
123 | |
446 | 124 #ENDIF |
125 ;============================================================================= | |
175 | 126 ; macro X Y "translation" ; English original |
127 TCODE .0, .0, "Calcul du hash MD2" ;001 Building MD2 Hash | |
193 | 128 TCODE .0, .25, "Attendez SVP..." ;002 Please Wait... |
175 | 129 TCODE .0, .2, "HeinrichsWeikamp OSTC2" ;003 HeinrichsWeikamp OSTC2 |
130 TCODE .65, .2, "Menu?" ;004 Menu? | |
131 TCODE .65, .2, "Menu:" ;005 Menu: | |
187 | 132 TCODE .20, .35, "Carnet de plongées" ;006 Logbook |
193 | 133 TCODE .20, .65, "Réglage des Gaz" ;007 Gas Setup |
175 | 134 TCODE .20, .35, "Réglage Heure" ;008 Set Time |
193 | 135 TCODE .20, .95, "Remises a zéro" ;009 Reset Menu |
190 | 136 TCODE .20, .125, "Menu Réglages" ;010 Setup |
175 | 137 TCODE .20, .185, "Sortir" ;011 Exit |
584 | 138 TCODE .84, .2, "Attendez..." ;012 Wait... |
175 | 139 TCODE .0, .24, "Hash MD2:" ;013 MD2 Hash: |
187 | 140 TCODE .0, .0, "Désat" ;014 Desat (Desaturation count-down) |
141 TCODE .50, .2, "Interface" ;015 Interface (Connected to USB) | |
142 TCODE .10, .30, "Démarrer" ;016 Start | |
143 TCODE .10, .55, "Données" ;017 Data | |
144 TCODE .10, .80, "En-tête" ;018 Header | |
145 TCODE .10, .105, "Profil" ;019 Profile | |
146 TCODE .10, .130, "Fait." ;020 Done. | |
147 TCODE .20, .35, "Annuler RaZ" ;021 Cancel Reset | |
175 | 148 TCODE .32, .65, "Heure:" ;022 Time: |
190 | 149 TCODE .32, .95, "Date :" ;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
|
150 TCODE .0, .215, "Réglage Heures" ;024 Set Hours (see also 090..094) |
175 | 151 TCODE .6, .0, "Initialisation..." ;025 Reset... |
193 | 152 TCODE .17, .2, "Carnet de plongées" ;026 Logbook |
187 | 153 TCODE .14, .2, "Config Fonctions I" ;027 Custom Functions I |
193 | 154 TCODE .31, .2, "Remises a zéro:" ;028 Reset Menu |
187 | 155 TCODE .50, .2, "Reg.Heure:" ;029 Set Time: |
156 TCODE .100, .50, "Repère" ;030 SetMarker (Add a mark in logbook profile) | |
190 | 157 TCODE .100, .25, "Paliers" ;031 Decoplan |
196 | 158 TCODE .100, .0, "ListeGaz" ;032 Gaslist |
187 | 159 TCODE .100, .50, "RazMoyn." ;033 ResetAvr (Reset average depth) |
160 TCODE .100, .100, "Sortir" ;034 Exit (Exit current menu) | |
348 | 161 TCODE .0, .0, "Avion" ;035 NoFly (5Char max.) (No-flight count-down) |
177 | 162 ; |
163 ; 32 custom function descriptors I (FIXED LENGTH = 15 chars). | |
187 | 164 TCODE .40, .35, "Début Plong.[m]" ;036 Start Dive [m] (depth to switch to dive mode) |
165 TCODE .40, .35, "Fin Plongée [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:
348
diff
changeset
|
166 TCODE .40, .35, "Délai Fin [sec]" ;038 End Delay [sec] (duration dive screen stays after end of dive) |
187 | 167 TCODE .40, .35, "Eteindre [min]" ;039 Power Off [min] |
168 TCODE .40, .35, "Pré-menu [min]" ;040 Pre-menu [min] (Delais to keep surface-mode menus displayed) | |
169 TCODE .40, .35, "Vitesse [m/min]" ;041 velocity[m/min] | |
299
eac799f69360
some cleanup, french and german texts updated
heinrichsweikamp
parents:
283
diff
changeset
|
170 TCODE .40, .35, "Allumer [mbar]" ;042 Wake-up [mbar] |
eac799f69360
some cleanup, french and german texts updated
heinrichsweikamp
parents:
283
diff
changeset
|
171 TCODE .40, .35, "Max.Surf.[mbar]" ;043 max.Surf.[mbar] |
187 | 172 TCODE .40, .35, "Affichage GF[%]" ;044 GF display [%] |
173 TCODE .40, .35, "Aff. O2 min [%]" ;045 min. O2 Dis.[%] | |
174 TCODE .40, .35, "MenusPlong[min]" ;046 Dive menus[min] | |
190 | 175 TCODE .40, .35, "Saturat. x [%]" ;047 Saturate x [%] |
176 TCODE .40, .35, "Desaturat. x[%]" ;048 Desaturate x[%] | |
177 TCODE .40, .35, "NoFly Ratio [%]" ;049 NoFly Ratio [%] (Grandient factor tolerance for no-flight countdown). | |
187 | 178 TCODE .40, .35, "Alarme GF [%]" ;050 GF alarm 1 [%] |
179 TCODE .40, .35, "Aff.CNS Surf[%]" ;051 CNSshow surf[%] | |
180 TCODE .40, .35, "Décal. Déco [m]" ;052 Deco Offset [m] | |
299
eac799f69360
some cleanup, french and german texts updated
heinrichsweikamp
parents:
283
diff
changeset
|
181 TCODE .40, .35, "ppO2 mini [bar]" ;053 ppO2 low [bar] |
eac799f69360
some cleanup, french and german texts updated
heinrichsweikamp
parents:
283
diff
changeset
|
182 TCODE .40, .35, "ppO2 maxi [bar]" ;054 ppO2 high [bar] |
eac799f69360
some cleanup, french and german texts updated
heinrichsweikamp
parents:
283
diff
changeset
|
183 TCODE .40, .35, "Aff. ppO2 [bar]" ;055 ppO2 show [bar] |
187 | 184 TCODE .40, .35, "Freq. Mesures " ;056 sampling rate |
185 TCODE .40, .35, "Diviseur Temp. " ;057 Divisor Temp | |
196 | 186 TCODE .40, .35, "Divis.Donn.Déco" ;058 Divisor Decodat |
383 | 187 TCODE .40, .35, "Diviseur GF " ;059 Divisor GF |
187 | 188 TCODE .40, .35, "Diviseur ppO2 " ;060 Divisor ppO2 |
737 | 189 TCODE .40, .35, "Divis. Paliers " ;061 Divisor Decoplan |
367 | 190 TCODE .40, .35, "Diviseur CNS " ;062 Divisor CNS |
187 | 191 TCODE .40, .35, "Aff.CNSPlong[%]" ;063 CNSshow dive[%] |
192 TCODE .40, .35, "Décalage Carnet" ;064 Logbook offset | |
196 | 193 TCODE .40, .35, "Dern. Palier[m]" ;065 Last Deco at[m] |
187 | 194 TCODE .40, .35, "Fin Apnée [h]" ;066 End Apnoe [h] |
195 TCODE .40, .35, "Aff.TensionBatt" ;067 Show Batt.Volts | |
177 | 196 ; End of function descriptor I |
197 ; | |
175 | 198 ;licence: |
193 | 199 TCODE .0, .35, "Ce programme est" ;068 This program is |
200 TCODE .0, .65, "distribué dans le but" ;069 distributed in the | |
201 TCODE .0, .95, "d'être utile, mais" ;070 hope that it will be | |
202 TCODE .0, .125, "SANS AUCUNE GARANTIE;" ;071 useful, but WITHOUT | |
203 TCODE .0, .155, "sans même la garantie" ;072 ANY WARRANTY | |
204 TCODE .0, .185, "tacite de QUALITE" ;073 even the implied | |
205 TCODE .0, .215, "MARCHANDE ou" ;074 warranty of | |
206 TCODE .0, .35, "D'ADEQUATION A UN" ;075 MERCHANTABILITY or | |
187 | 207 TCODE .0, .65, "USAGE PARTICULIER." ;076 FITNESS FOR A |
193 | 208 TCODE .0, .95, "Référez-vous a la" ;077 PARTICULAR PURPOSE. |
209 TCODE .0, .125, "Licence Publique" ;078 See the GNU General | |
210 TCODE .0, .155, "Générale GNU pour plus" ;079 Public License for | |
211 TCODE .0, .185, "de détails sur:" ;080 more details: | |
726 | 212 TCODE .0, .215, "heinrichsweikamp.com" ;081 heinrichsweikamp.com |
177 | 213 ; end of licence |
214 ; | |
190 | 215 TCODE .118, .54, "Palier" ;082 Decostop |
175 | 216 TCODE .0, .0, "m/min" ;083 m/min |
202 | 217 TCODE .90, .113, "SansPalier" ;084 No Stop |
218 TCODE .139, .113, "DTR" ;085 TTS | |
219 TCODE .125, .0, "Durée" ;086 Divetime | |
187 | 220 TCODE .0, .0, "Profondeur" ;087 Depth |
221 TCODE .0, .0, "Premier Gaz?" ;088 First Gas? | |
196 | 222 TCODE .0, .0, "Défaut:" ;089 Default: |
175 | 223 TCODE .0, .0, "Minutes" ;090 Minutes |
187 | 224 TCODE .0, .0, "Mois " ;091 Month |
225 TCODE .0, .0, "Jour " ;092 Day | |
226 TCODE .0, .0, "Année " ;093 Year | |
199 | 227 TCODE .0, .0, "Réglage " ;094 Set |
187 | 228 TCODE .0, .0, "#Gaz " ;095 Gas# |
229 TCODE .0, .0, "Oui" ;096 Yes | |
193 | 230 TCODE .0, .0, "Valeur:" ;097 Current: |
231 TCODE .31, .2, "Menu Réglages:" ;098 Setup Menu: | |
232 TCODE .20, .35, "Config Fonctions I" ;099 Custom FunctionsI | |
190 | 233 TCODE .20, .125, "ModeDéco:" ;100 Decotype: |
175 | 234 TCODE .85, .125, "ZH-L16 OC" ;101 ZH-L16 OC |
187 | 235 TCODE .85, .125, "Profondi." ;102 Gauge |
193 | 236 TCODE .85, .125, "Profondi." ;103 Gauge |
175 | 237 TCODE .85, .125, "ZH-L16 CC" ;104 ZH-L16 CC |
187 | 238 TCODE .0, .0, "Gaz Actif ? " ;105 Active Gas? |
676 | 239 TCODE .31, .2, "Liste des Gaz" ;106 Gas Setup - Gaslist |
299
eac799f69360
some cleanup, french and german texts updated
heinrichsweikamp
parents:
283
diff
changeset
|
240 TCODE .20, .95, "Prof. +/-:" ;107 Depth +/-: |
eac799f69360
some cleanup, french and german texts updated
heinrichsweikamp
parents:
283
diff
changeset
|
241 TCODE .20, .125, "Changer:" ;108 Change: |
eac799f69360
some cleanup, french and german texts updated
heinrichsweikamp
parents:
283
diff
changeset
|
242 TCODE .20, .155, "Défaut:" ;109 Default: |
187 | 243 TCODE .20, .65, "Menu SetPoint CCR" ;110 CCR SetPoint Menu |
244 TCODE .20, .2, "Menu SetPoint CCR" ;111 CCR SetPoint Menu | |
245 TCODE .0, .0, "#SP" ;112 SP# | |
246 TCODE .20, .95, "Info Batterie" ;113 Battery Info | |
196 | 247 TCODE .6, .2, "Informations Batterie" ;114 Battery Information |
175 | 248 TCODE .0, .9, "Cycles:" ;115 Cycles: |
187 | 249 TCODE .85, .125, "Apnée" ;116 Apnoe |
250 TCODE .0, .18, "Dern.Complète:" ;117 Last Complete: | |
251 TCODE .0, .27, "PlusBas Vbat:" ;118 Lowest Vbatt: | |
252 TCODE .0, .36, "PlusBas le :" ;119 Lowest at: | |
175 | 253 TCODE .0, .45, "Tmin:" ;120 Tmin: |
254 TCODE .0, .54, "Tmax:" ;121 Tmax: | |
532 | 255 TCODE .100, .124, "Suite" ;122 More (Gaslist) |
175 | 256 TCODE .100, .25, "O2 +" ;123 O2 + |
257 TCODE .100, .50, "O2 -" ;124 O2 - | |
258 TCODE .100, .75, "He +" ;125 He + | |
259 TCODE .100, .100, "He -" ;126 He - | |
187 | 260 TCODE .100, .0, "Sortie" ;127 Exit |
261 TCODE .100, .25, "Suppr." ;128 Delete | |
262 TCODE .20, .65, "Débug:" ;129 Debug: | |
199 | 263 TCODE .65, .65, "OUI" ;130 ON |
264 TCODE .65, .65, "NON" ;131 OFF | |
187 | 265 TCODE .100, .50, "Suppr.tout" ;132 Del. all |
266 TCODE .10, .0, "Réinitialisation" ;133 Unexpected reset from | |
267 TCODE .10, .25, "inattendue! Merci de" ;134 Divemode! Please help | |
268 TCODE .10, .50, "reporter les données" ;135 and report the Debug | |
269 TCODE .10, .75, "d'analyse ci-dessous:" ;136 Information below! | |
525 | 270 TCODE .100, .0, "Bailout" ;137 Bailout |
187 | 271 TCODE .85, .125, "Apnée " ;138 Apnoe |
272 TCODE .105, .120, "Déscente" ;139 Descent | |
175 | 273 TCODE .105, .60, "Surface" ;140 Surface |
274 TCODE .65, .2, "Quit?" ;141 Quit? | |
190 | 275 TCODE .20, .155, "Suite..." ;142 More |
175 | 276 TCODE .42, .72, "Confirm:" ;143 Confirm: |
193 | 277 TCODE .55, .2, "Menu 2:" ;144 Menu 2: |
187 | 278 TCODE .52, .96, "Annul." ;145 Cancel |
175 | 279 TCODE .52, .120, "OK!" ;146 OK! |
190 | 280 TCODE .20, .35, "Suite..." ;147 More |
175 | 281 TCODE .0, .0, ":.........:" ;148 :.........: |
299
eac799f69360
some cleanup, french and german texts updated
heinrichsweikamp
parents:
283
diff
changeset
|
282 TCODE .0, .8, "ppO2" ;149 ppO2 |
eac799f69360
some cleanup, french and german texts updated
heinrichsweikamp
parents:
283
diff
changeset
|
283 TCODE .2, .39, "bar " ;150 bar |
187 | 284 TCODE .108, .216, "Repère?" ;151 Marker? |
175 | 285 TCODE .85, .125, "L16-GF OC" ;152 L16-GF OC |
193 | 286 TCODE .20, .65, "Config Fonctions II" ;153 Custom FunctionsII |
177 | 287 ; |
288 ; 32 custom function descriptors II (FIXED LENGTH = 15 chars). | |
187 | 289 TCODE .40, .35, "GF Bas [%]" ;154 GF Low [%] |
290 TCODE .40, .35, "GF Haut [%]" ;155 GF High [%] | |
291 TCODE .40, .35, "CouleurBatterie" ;156 Color# Battery | |
292 TCODE .40, .35, "CouleurStandard" ;157 Color# Standard | |
196 | 293 TCODE .40, .35, "Couleur Legende" ;158 Color# Divemask |
187 | 294 TCODE .40, .35, "Couleur Alarmes" ;159 Color# Warnings |
196 | 295 TCODE .40, .35, "Secs.TempsPlong" ;160 Divemode secs. |
296 TCODE .40, .35, "Ajuster SP fixe" ;161 Adjust fixed SP | |
187 | 297 TCODE .40, .35, "Alarme Plafond " ;162 Warn Ceiling |
680 | 298 TCODE .40, .35, "unused " ;163 unused |
197 | 299 TCODE .40, .35, "Aff.MeilleurGaz" ;164 Blink BetterGas (Remainder in divemode to switch to a better decompression gas). |
299
eac799f69360
some cleanup, french and german texts updated
heinrichsweikamp
parents:
283
diff
changeset
|
300 TCODE .40, .35, "AlarmProf[mbar]" ;165 DepthWarn[mbar] |
187 | 301 TCODE .40, .35, "Alarme CNS [%]" ;166 CNS warning [%] |
302 TCODE .40, .35, "Alarme GF [%]" ;167 GF warning [%] | |
299
eac799f69360
some cleanup, french and german texts updated
heinrichsweikamp
parents:
283
diff
changeset
|
303 TCODE .40, .35, "Al. ppO2 [bar]" ;168 ppO2 warn [bar] |
187 | 304 TCODE .40, .35, "Al.Vites[m/min]" ;169 Vel.warn[m/min] |
305 TCODE .40, .35, "Décal Heur/Jour" ;170 Time offset/day | |
196 | 306 TCODE .40, .35, "Aff. Altimètre " ;171 Show altimeter |
307 TCODE .40, .35, "Aff. Repère " ;172 Show Log-Marker | |
193 | 308 TCODE .40, .35, "Aff. Chrono. " ;173 Show Stopwatch |
187 | 309 TCODE .40, .35, "Aff.GraphTissus" ;174 ShowTissueGraph |
310 TCODE .40, .35, "Aff.Tiss.Direct" ;175 Show Lead.Tiss. | |
197 | 311 TCODE .40, .35, "Ordre paliers " ;176 Shallow stop 1st (Reverse order of deco plans) |
312 TCODE .40, .35, "Chang. gaz[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:
299
diff
changeset
|
313 TCODE .40, .35, "ConsoFond[/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:
299
diff
changeset
|
314 TCODE .40, .35, "ConsoDeco[/min]" ;179 AscentGas[/min] (Ascent+Deco gas usage) |
476 | 315 TCODE .40, .35, "DTR Réchap[min]" ;180 Future TTS[min] (Compute TTS for extra time at current depth) |
316 TCODE .40, .35, "Alarme Sout.[l]" ;181 Cave Warning[l] (Consomation warning for cave divers) | |
584 | 317 TCODE .40, .35, "Indic. Vitesse " ;182 Graph. Velocity (Show a graphical representation of the ascend speed) |
318 TCODE .40, .35, "Aff. ppO2 pSCR " ;183 Show pSCR ppO2 (Show the ppO2 for pSCR divers) | |
319 TCODE .40, .35, "BaisseO2pSCR[%]" ;184 pSCR O2 Drop[%] (pSCR O2 drop in percent) | |
320 TCODE .40, .35, "Rapp.Poum. 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:
299
diff
changeset
|
321 ; End of function descriptor II |
175 | 322 ; |
187 | 323 TCODE .13, .2, "Config Fonctions II" ;186 Custom Functions II |
193 | 324 TCODE .20, .95, "Voir la licence" ;187 Show License |
187 | 325 TCODE .0, .2, "Résultat Sim:" ;188 Sim. Results: |
175 | 326 TCODE .90, .25, "Surface" ;189 Surface |
327 TCODE .0, .0, "ppO2 +" ;190 ppO2 + | |
328 TCODE .0, .0, "ppO2 -" ;191 ppO2 - | |
196 | 329 TCODE .0, .0, "Dil." ;192 Dil. (Rebreather diluant) |
574 | 330 |
331 ; 32 custom function descriptors III (FIXED LENGTH = 15 chars). | |
602 | 332 TCODE .40, .35, "CouleurInactive" ;193 Color# inactive |
333 TCODE .40, .35, "Palier sécurité" ;194 Use safety stop | |
679 | 334 TCODE .40, .35, "Aff. GF Nodeco " ;195 Show GF in NDL (If GF > CF08) |
335 TCODE .40, .35, "Alt. GF Bas [%]" ;196 Alt. GF Low [%] | |
336 TCODE .40, .35, "Alt. GF Haut[%]" ;197 Alt. GF High[%] | |
337 TCODE .40, .35, "Changement GF " ;198 Allow GF change | |
676 | 338 TCODE .40, .35, "Durée P.Sécu[s]" ;199 S.StopLength[s] (CF70: Safety Stop Duration [ s]) |
339 TCODE .40, .35, "Début P.Sécu[m]" ;200 S.StopStart [m] (CF71: Safety Stop Start Depth [m]) | |
340 TCODE .40, .35, "Fin P.Sécu [m]" ;201 S.StopEnd [m] (CF72: Safety Stop End Depth [m]) | |
341 TCODE .40, .35, "RaZ P.Sécu [m]" ;202 S.StopReset [m] (CF73: Safety Stop Reset Depth [m]) | |
574 | 342 TCODE .40, .35, "unused " ;203 unused |
343 TCODE .40, .35, "unused " ;204 unused | |
344 TCODE .40, .35, "unused " ;205 unused | |
345 TCODE .40, .35, "unused " ;206 unused | |
346 TCODE .40, .35, "unused " ;207 unused | |
347 TCODE .40, .35, "unused " ;208 unused | |
348 TCODE .40, .35, "unused " ;209 unused | |
349 TCODE .40, .35, "unused " ;210 unused | |
350 TCODE .40, .35, "unused " ;211 unused | |
351 TCODE .40, .35, "unused " ;212 unused | |
352 TCODE .40, .35, "unused " ;213 unused | |
353 TCODE .40, .35, "unused " ;214 unused | |
354 TCODE .40, .35, "unused " ;215 unused | |
355 TCODE .40, .35, "unused " ;216 unused | |
356 TCODE .40, .35, "unused " ;217 unused | |
357 TCODE .40, .35, "unused " ;218 unused | |
358 TCODE .40, .35, "unused " ;219 unused | |
359 TCODE .40, .35, "unused " ;220 unused | |
360 TCODE .40, .35, "unused " ;221 unused | |
361 TCODE .40, .35, "unused " ;222 unused | |
362 TCODE .40, .35, "unused " ;223 unused | |
363 TCODE .40, .35, "unused " ;224 unused | |
175 | 364 ; |
574 | 365 TCODE .7, .2, "Config Fonctions 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
|
366 TCODE .85, .125, "pSCR-GF " ;226 pSCR-GF |
602 | 367 TCODE .90, .54, "PalierSécu" ;227 SafetyStop |
621 | 368 TCODE .0, .0, "Plongées totales: " ;228 Total Dives: |
676 | 369 TCODE .20, .35, "Réglage Diluant" ;229 Diluent Setup |
370 TCODE .20, .65, "Réglage SetPoint" ;230 Setpoint Setup | |
371 TCODE .5, .2, "Liste des Diluants" ;231 Dil. Setup - Gaslist | |
372 TCODE .100, .100, "Diluant" ;232 Diluent | |
574 | 373 TCODE .0, .0, "" ;233 unused |
374 TCODE .0, .0, "" ;234 unused | |
375 | |
187 | 376 TCODE .10, .2, "Mode de Déco changé!" ;235 Decomode changed! |
175 | 377 TCODE .85, .125, "L16-GF CC" ;236 L16-GF CC |
187 | 378 TCODE .2, .12, "Non trouvé" ;237 Not found |
175 | 379 TCODE .100, .0, "SetPoint" ;238 SetPoint |
584 | 380 TCODE .100, .0, "SansDéco" ;239 No Deco |
175 | 381 TCODE .90, .50, "Interval:" ;240 Interval: |
190 | 382 TCODE .100, .75, "Contrast" ;241 Display |
584 | 383 TCODE .100, .0, "SansDéco" ;242 No deco |
190 | 384 TCODE .132, .0, "béta" ;243 beta |
175 | 385 TCODE .100, .100, "unuse" ;244 unuse |
187 | 386 TCODE .20, .65, "RaZ CF,Gaz & Déco" ;245 Reset CF,Gas & Deco |
387 TCODE .50, .145, "BattFaible!" ;246 LowBatt! | |
388 TCODE .20, .125, "Simulateur" ;247 Simulator | |
389 TCODE .27, .2, "Simulateur OSTC" ;248 OSTC Simulator | |
369 | 390 TCODE .20, .65, "Début Simulation..." ;249 Start Dive |
175 | 391 TCODE .100, .25, "+ 1m" ;250 + 1m |
392 TCODE .100, .50, "- 1m" ;251 - 1m | |
393 TCODE .100, .75, "+10m" ;252 +10m | |
394 TCODE .100, .100, "-10m" ;253 -10m | |
187 | 395 TCODE .100, .0, "Fermer" ;254 Close |
190 | 396 TCODE .125, .170, "Heure" ;255 Time |
177 | 397 ; |
175 | 398 ; Text Bank2 (Texts 256-511) |
177 | 399 ; |
175 | 400 TCODE .0, .0, "x" ;256 x |
187 | 401 TCODE .20, .35, "Format Date:" ;257 Date format: |
193 | 402 TCODE .24, .2, "Menu Réglages 2:" ;258 Setup Menu 2: |
187 | 403 TCODE .105, .35, "MMJJAA" ;259 MMDDYY |
404 TCODE .105, .35, "JJMMAA" ;260 DDMMYY | |
405 TCODE .105, .35, "AAMMJJ" ;261 YYMMDD | |
175 | 406 TCODE .1, .1, "OSTC " ;262 OSTC |
325
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
318
diff
changeset
|
407 TCODE .65, .168, "Bail " ;263 Bail |
175 | 408 TCODE .7, .48, "Air " ;264 Air |
685
aebb6d039249
Use 4byte in EEPROM for diluents (Same as OC gases)
heinrichsweikamp
parents:
681
diff
changeset
|
409 TCODE .115, .135, "Air " ;265 Air |
504 | 410 |
552 | 411 TCODE .0, .0, "pSCR Info" ;266 pSCR Info (Must be 9Chars!) |
653 | 412 TCODE .0, .184, "Max." ;267 Max. |
669 | 413 TCODE .93, .170, "GF Values" ;268 GF Values |
414 TCODE .100, .50, "ToggleGF" ;269 ToggleGF (In Divemode Menu) | |
504 | 415 TCODE .0, .0, "" ;270 unused |
416 | |
175 | 417 ; New CFs Warning |
187 | 418 TCODE .3, .2, "Nouvelles CF ajoutées!" ;271 New CF added! |
419 TCODE .0, .35, "Nouv. Config Fonctions" ;272 New CustomFunctions | |
420 TCODE .0, .65, "ajoutées! Regardez les" ;273 were added! Check | |
584 | 421 TCODE .0, .95, "Menus CF I, II et III" ;274 CF I and CF II Menu |
187 | 422 TCODE .0, .125, "pour plus de détails!" ;275 for Details! |
574 | 423 TCODE .20, .125, "Salinité: " ;276 Salinity: |
177 | 424 ; |
369 | 425 TCODE .20, .95, "Temps fond:" ;277 Bottom Time: |
426 TCODE .20, .125, "Prof. Max.:" ;278 Max. Depth: | |
427 TCODE .20, .155, "Calculer la Déco" ;279 Calculate Deco | |
501 | 428 TCODE .20, .155, "Luminosité:" ;280 Brightness: |
177 | 429 ; |
202 | 430 TCODE .97, .170, "Prof.Moyn" ;281 Avr.Depth |
187 | 431 TCODE .90, .170, "TissuDirec" ;282 Lead Tiss. |
190 | 432 TCODE .118, .170, "Chrono" ;283 Stopwatch |
433 TCODE .20, .95, "RaZ Carnet Plongées" ;284 Reset Logbook | |
193 | 434 TCODE .20, .125, "Redémarrer l'OSTC" ;285 Reboot OSTC |
190 | 435 TCODE .20, .155, "RaZ Saturation" ;286 Reset Decodata |
177 | 436 ; Altimeter extension |
437 TCODE .20, .155, "Altimètre" ;287 Altimeter | |
438 TCODE .24, .1, "Réglage Altimètre" ;288 Set Altimeter | |
175 | 439 TCODE .20, .35, "Référence: " ;289 Sea ref: |
440 TCODE .0, .0, "Marche: " ;290 Enabled: | |
441 TCODE .20, .95, "Défaut: 1013 mbar" ;291 Default: 1013 mbar | |
442 TCODE .20, .125, "+1 mbar" ;292 +1 mbar | |
443 TCODE .20, .155, "-1 mbar" ;293 -1 mbar | |
444 TCODE .85, .185, "Alt: " ;294 Alt: | |
189 | 445 ; |
574 | 446 TCODE .20, .95, "Config Fonctions III" ;295 Custom FunctionsIII |
190 | 447 TCODE .50, .2, "Données brutes:" ;296 Raw Data: |
199 | 448 ; Gas-setup addons: |
231
f9d42f8ff97b
BUGFIX Don't show (nosense) gas consumption in CCR mode (bug BB20).
JeanDo
parents:
228
diff
changeset
|
449 TCODE .0, .0, "PMU:" ;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
|
450 TCODE .0, .0, "PEN:" ;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
|
451 TCODE .0, .0, "PEA:" ;299 EAD: (equivalent air depth of a gas). |
576 | 452 TCODE .100, .125, "Suite" ;300 More (Enable/Disable Gas underwater) |
231
f9d42f8ff97b
BUGFIX Don't show (nosense) gas consumption in CCR mode (bug BB20).
JeanDo
parents:
228
diff
changeset
|
453 TCODE .0, .2, "OCR Gas Usage:" ;301 OCR Gas Usage: (Planned gas consumtion by tank). |
314 | 454 ; 115k Bootloader support: |
283
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
255
diff
changeset
|
455 TCODE .45, .100, "Bootloader" ;302 Bootloader |
420 | 456 TCODE .40, .130, "Attendez SVP!" ;303 Please wait! |
457 TCODE .50, .130, "Annulée!" ;304 Aborted | |
476 | 458 ; @5 variant |
431 | 459 TCODE .0, .0, " Futur DTR" ;305 Future TTS (=10 chars. Title for @5 customview). |
370 | 460 ; |
431 | 461 TCODE .100, .125, "Stop Sim" ;306 Quit Sim (=8char max. Quit Simulator mode) |
476 | 462 ; Dive interval |
431 | 463 TCODE .20, .35, "Intervale:" ;307 Interval: |
476 | 464 TCODE .0, .0, "Non " ;308 Now (7 chars min) |
386
deced1cacff7
Added velocity in divemode, BIG stopwatch in Gauge mode
heinrichsweikamp
parents:
383
diff
changeset
|
465 TCODE .108, .112, "Moyenne" ;309 Average |
501 | 466 ; |
476 | 467 TCODE .116, .54, "Chrono" ;310 Stopwatch (BIG Stopwatch in Gauge mode) |
468 ; Cave consomation | |
469 TCODE .0, .0, "Bail. Sout" ;311 Cave Bail. (=10 chars.) | |
681 | 470 ; DISPLAY Brightness settings |
502 | 471 TCODE .103, .155, "Eco " ;312 Eco (Same length as #313!) |
501 | 472 TCODE .103, .155, "Forte" ;313 High (Same length as #312!) |
574 | 473 |
474 ; ZH-L16 mode description | |
475 TCODE .0, .35, "TypeDéco: ZH-L16 OC " ;314 Decotype: ZH-L16 OC (22 chars maximum) | |
476 TCODE .0, .65, "Pour les plongeurs en" ;315 For Open Circuit | |
477 TCODE .0, .95, "Circuit Ouvert. " ;316 Divers. Supports 5 | |
478 TCODE .0, .125, "Supporte 5 Gaz Trimix." ;317 Trimix Gases. | |
479 TCODE .0, .155, "Config des gaz dans le" ;318 Configure your gas | |
480 TCODE .0, .185, "menu Réglage des Gaz. " ;319 in Gassetup menu. | |
481 TCODE .0, .215, "Vérifiez CF11 & CF12 !" ;320 Check CF11 & CF12 ! | |
482 ; Gaugemode description | |
483 TCODE .0, .35, "TypeDéco:Profondimètre" ;321 Decotype: Gauge | |
484 TCODE .0, .65, "La durée est affichée" ;322 Divetime will be in | |
485 TCODE .0, .95, "en Minutes:Secondes. " ;323 Minutes:Seconds. | |
486 TCODE .0, .125, "L'OSTC2 ne calculera" ;324 OSTC2 will not | |
487 TCODE .0, .155, "pas de Déco, de durée" ;325 compute Deco, NoFly | |
488 TCODE .0, .185, "sans avion ni de temps" ;326 time and Desat. | |
489 TCODE .0, .215, "de désaturation ! " ;327 time at all! | |
490 ; Const.ppO2 description | |
491 TCODE .0, .35, "TypeDéco: ZH-L16 CC " ;328 Decotype: ZH-L16 CC | |
492 TCODE .0, .65, "Pour les recycleurs a" ;329 For Closed | |
493 TCODE .0, .95, "circuit fermé." ;330 Circuit rebreathers | |
494 TCODE .0, .125, "Configurez les 3" ;331 Configure the 3 | |
495 TCODE .0, .155, "SetPoints dans le" ;332 SetPoints in CCR - | |
496 TCODE .0, .185, "Menu SetPoint CCR. " ;333 Setup menu. 5 bail- | |
497 TCODE .0, .215, "5 bailouts disponibles" ;334 outs are available. | |
498 ; Apnoemode description | |
499 TCODE .0, .35, "TypeDéco: Apnée " ;335 Decotype: Apnoe | |
500 TCODE .0, .65, "L'OSTC2 affichera les" ;336 OSTC2 will display | |
501 TCODE .0, .95, "descentes séparément" ;337 each descent separ- | |
502 TCODE .0, .125, "en Minutes:Secondes" ;338 ately in Min:Sec. | |
503 TCODE .0, .155, "sans calculer de Déco." ;339 Will temporally set | |
504 TCODE .0, .185, "Les mesures se font" ;340 samplerate to 1 sec | |
505 TCODE .0, .215, "toutes les secondes. " ;341 No Deco calculation | |
506 ; Multi GF OC mode description | |
507 TCODE .0, .35, "TypeDéco: L16-GF OC " ;342 Decotype: L16-GF OC | |
508 TCODE .0, .65, "Calcul de Déco avec" ;343 Decompression cal- | |
509 TCODE .0, .95, "Facteurs de Gradient" ;344 culations with the | |
510 TCODE .0, .125, "(GF_bas/GF_haut). " ;345 GF-Method (GF_lo/GF | |
511 TCODE .0, .155, "Vérifiez CF32 & CF33 !" ;346 _hi). Check CF32 & | |
512 TCODE .0, .185, "Pour Circuit Ouvert" ;347 CF33! Open Circuit | |
513 TCODE .0, .215, "avec paliers profonds." ;348 with Deep Stops. | |
514 ; Multi GF CC mode description | |
515 TCODE .0, .35, "TypeDéco: L16-GF CC " ;349 Decotype: L16-GF CC | |
516 TCODE .0, .65, "Calcul de Déco avec" ;350 Decompression cal- | |
517 TCODE .0, .95, "Facteurs de Gradient" ;351 culations with the | |
518 TCODE .0, .125, "(GF_bas/GF_haut). " ;352 GF-Method (GF_lo/GF | |
519 TCODE .0, .155, "Vérifiez CF32 & CF33 !" ;353 _hi). Check CF32 & | |
520 TCODE .0, .185, "Pour Circuit Fermé" ;354 CF33!Closed Circuit | |
521 TCODE .0, .215, "avec paliers profonds." ;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
|
522 ; 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
|
523 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
|
524 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
|
525 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
|
526 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
|
527 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
|
528 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
|
529 TCODE .0, .215, "pSCR features." ;362 pSCR features. |
574 | 530 ; |
531 | |
177 | 532 ;============================================================================= |