Mercurial > public > mk2
annotate code_part1/OSTC_code_asm_part1/english_text.asm @ 637:47ad50ca5d26
remove ?Men?? completely
author | heinrichsweikamp |
---|---|
date | Tue, 18 Sep 2012 09:14:54 +0200 |
parents | 19c2773a1657 |
children | 2ab9e9a8a189 |
rev | line source |
---|---|
177 | 1 ;============================================================================= |
174 | 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. | |
22 ; 2011/02/02 : Jean-Do Gascuel : split into different files for multi-lingual support | |
446 | 23 ; 2011/08/12 : Sergei V. Rozinov: Complete translation patch |
177 | 24 ; |
174 | 25 ; known bugs: |
26 ; ToDo: | |
177 | 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. | |
187 | 49 ; éèêç for French. áíóúñ¡¿ for Spanish. |
50 ; If you really, absolutly, need more: ask... | |
177 | 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 ;============================================================================= | |
446 | 60 ; Define's section |
61 ; Definition translation ; English original | |
445 | 62 #IFNDEF TXT_DEFINED |
63 #DEFINE TXT_DEFINED | |
64 | |
446 | 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 " | |
517 | 71 #DEFINE TXT_METER1 "m" ; "m" |
446 | 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 " | |
532 | 89 #DEFINE TXT_AT4 " at " ; " at " |
446 | 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_SP2 "SP" ; "SP" | |
111 #DEFINE TXT_DIL4 "Dil:" ; "Dil:" | |
112 #DEFINE TXT_N2_2 "N2" ; "N2" | |
607 | 113 #DEFINE TXT_HE2 "He" ; "He" |
114 #DEFINE TXT_TX1 "T" ; "T" | |
115 #DEFINE TXT_TX2 "x" ; "x" | |
116 #DEFINE TXT_NX1 "N" ; "N" | |
117 #DEFINE TXT_NX2 "x" ; "x" | |
118 | |
446 | 119 #ENDIF |
445 | 120 ;============================================================================= |
174 | 121 ; macro X Y "translation" ; English original |
122 TCODE .0, .0, "Building MD2 Hash" ;001 Building MD2 Hash | |
123 TCODE .0, .25, "Please Wait..." ;002 Please Wait... | |
124 TCODE .0, .2, "HeinrichsWeikamp OSTC2" ;003 HeinrichsWeikamp OSTC2 | |
125 TCODE .65, .2, "Menu?" ;004 Menu? | |
126 TCODE .65, .2, "Menu:" ;005 Menu: | |
127 TCODE .20, .35, "Logbook" ;006 Logbook | |
128 TCODE .20, .65, "Gas Setup" ;007 Gas Setup | |
129 TCODE .20, .35, "Set Time" ;008 Set Time | |
130 TCODE .20, .95, "Reset Menu" ;009 Reset Menu | |
131 TCODE .20, .125, "Setup" ;010 Setup | |
132 TCODE .20, .185, "Exit" ;011 Exit | |
197 | 133 TCODE .111, .2, "Wait..." ;012 Wait... |
174 | 134 TCODE .0, .24, "MD2 Hash:" ;013 MD2 Hash: |
187 | 135 TCODE .0, .0, "Desat" ;014 Desat (Desaturation count-down) |
136 TCODE .50, .2, "Interface" ;015 Interface (Connected to USB) | |
174 | 137 TCODE .10, .30, "Start" ;016 Start |
138 TCODE .10, .55, "Data" ;017 Data | |
139 TCODE .10, .80, "Header" ;018 Header | |
140 TCODE .10, .105, "Profile" ;019 Profile | |
141 TCODE .10, .130, "Done." ;020 Done. | |
142 TCODE .20, .35, "Cancel Reset" ;021 Cancel Reset | |
143 TCODE .32, .65, "Time:" ;022 Time: | |
144 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
|
145 TCODE .0, .215, "Set Hours" ;024 Set Hours |
174 | 146 TCODE .6, .0, "Reset..." ;025 Reset... |
147 TCODE .55, .2, "Logbook" ;026 Logbook | |
148 TCODE .14, .2, "Custom Functions I" ;027 Custom Functions I | |
149 TCODE .40, .2, "Reset Menu" ;028 Reset Menu | |
150 TCODE .50, .2, "Set Time:" ;029 Set Time: | |
187 | 151 TCODE .100, .50, "SetMarker" ;030 SetMarker (Add a mark in logbook profile) |
174 | 152 TCODE .100, .25, "Decoplan" ;031 Decoplan |
153 TCODE .100, .0, "Gaslist" ;032 Gaslist | |
187 | 154 TCODE .100, .50, "ResetAvr" ;033 ResetAvr (Reset average depth) |
155 TCODE .100, .100, "Exit" ;034 Exit (Exit current menu) | |
156 TCODE .0, .0, "NoFly" ;035 NoFly (No-flight count-down) | |
177 | 157 ; |
158 ; 32 custom function descriptors I (FIXED LENGTH = 15 chars). | |
187 | 159 TCODE .40, .35, "Start Dive [m]" ;036 Start Dive [m] (depth to switch to dive mode) |
160 TCODE .40, .35, "End Dive [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:
325
diff
changeset
|
161 TCODE .40, .35, "End Delay [sec]" ;038 End Delay [sec] (duration dive screen stays after end of dive) |
174 | 162 TCODE .40, .35, "Power Off [min]" ;039 Power Off [min] |
187 | 163 TCODE .40, .35, "Pre-menu [min]" ;040 Pre-menu [min] (Delais to keep surface-mode menus displayed) |
174 | 164 TCODE .40, .35, "velocity[m/min]" ;041 velocity[m/min] |
297
ceedf078b2d8
Gas Setup page 2 reworked, Texts 107, 108, 109,150, 149, 168, 42, 43, 53,54,55, 165 need update in french, spanish and german
Heinrichsweikamp
parents:
283
diff
changeset
|
165 TCODE .40, .35, "Wake-up [mbar]" ;042 Wake-up [mbar] |
ceedf078b2d8
Gas Setup page 2 reworked, Texts 107, 108, 109,150, 149, 168, 42, 43, 53,54,55, 165 need update in french, spanish and german
Heinrichsweikamp
parents:
283
diff
changeset
|
166 TCODE .40, .35, "max.Surf.[mbar]" ;043 max.Surf.[mbar] |
174 | 167 TCODE .40, .35, "GF display [%]" ;044 GF display [%] |
168 TCODE .40, .35, "min. O2 Dis.[%]" ;045 min. O2 Dis.[%] | |
169 TCODE .40, .35, "Dive menus[min]" ;046 Dive menus[min] | |
170 TCODE .40, .35, "Saturate x [%]" ;047 Saturate x [%] | |
171 TCODE .40, .35, "Desaturate x[%]" ;048 Desaturate x[%] | |
187 | 172 TCODE .40, .35, "NoFly Ratio [%]" ;049 NoFly Ratio [%] (Grandient factor tolerance for no-flight countdown). |
174 | 173 TCODE .40, .35, "GF alarm 1 [%]" ;050 GF alarm 1 [%] |
174 TCODE .40, .35, "CNSshow surf[%]" ;051 CNSshow surf[%] | |
175 TCODE .40, .35, "Deco Offset [m]" ;052 Deco Offset [m] | |
297
ceedf078b2d8
Gas Setup page 2 reworked, Texts 107, 108, 109,150, 149, 168, 42, 43, 53,54,55, 165 need update in french, spanish and german
Heinrichsweikamp
parents:
283
diff
changeset
|
176 TCODE .40, .35, "ppO2 low [bar]" ;053 ppO2 low [bar] |
ceedf078b2d8
Gas Setup page 2 reworked, Texts 107, 108, 109,150, 149, 168, 42, 43, 53,54,55, 165 need update in french, spanish and german
Heinrichsweikamp
parents:
283
diff
changeset
|
177 TCODE .40, .35, "ppO2 high [bar]" ;054 ppO2 high [bar] |
ceedf078b2d8
Gas Setup page 2 reworked, Texts 107, 108, 109,150, 149, 168, 42, 43, 53,54,55, 165 need update in french, spanish and german
Heinrichsweikamp
parents:
283
diff
changeset
|
178 TCODE .40, .35, "ppO2 show [bar]" ;055 ppO2 show [bar] |
174 | 179 TCODE .40, .35, "sampling rate " ;056 sampling rate |
180 TCODE .40, .35, "Divisor Temp " ;057 Divisor Temp | |
181 TCODE .40, .35, "Divisor Decodat" ;058 Divisor Decodat | |
381 | 182 TCODE .40, .35, "Divisor GF " ;059 Divisor GF |
174 | 183 TCODE .40, .35, "Divisor ppO2 " ;060 Divisor ppO2 |
631
19c2773a1657
Divisor Decoplan (CF25) stores entire decoplan in logbook
heinrichsweikamp
parents:
621
diff
changeset
|
184 TCODE .40, .35, "Divisor Decopln" ;061 Divisor Decopln |
367 | 185 TCODE .40, .35, "Divisor CNS " ;062 Divisor CNS |
174 | 186 TCODE .40, .35, "CNSshow dive[%]" ;063 CNSshow dive[%] |
187 TCODE .40, .35, "Logbook offset " ;064 Logbook offset | |
188 TCODE .40, .35, "Last Deco at[m]" ;065 Last Deco at[m] | |
189 TCODE .40, .35, "End Apnoe [h]" ;066 End Apnoe [h] | |
190 TCODE .40, .35, "Show Batt.Volts" ;067 Show Batt.Volts | |
177 | 191 ; End of function descriptor I |
192 ; | |
174 | 193 ;licence: |
194 TCODE .0, .35, "This program is" ;068 This program is | |
195 TCODE .0, .65, "distributed in the" ;069 distributed in the | |
196 TCODE .0, .95, "hope that it will be" ;070 hope that it will be | |
197 TCODE .0, .125, "useful, but WITHOUT" ;071 useful, but WITHOUT | |
198 TCODE .0, .155, "ANY WARRANTY; without" ;072 ANY WARRANTY | |
199 TCODE .0, .185, "even the implied" ;073 even the implied | |
200 TCODE .0, .215, "warranty of" ;074 warranty of | |
201 TCODE .0, .35, "MERCHANTABILITY or" ;075 MERCHANTABILITY or | |
202 TCODE .0, .65, "FITNESS FOR A" ;076 FITNESS FOR A | |
203 TCODE .0, .95, "PARTICULAR PURPOSE." ;077 PARTICULAR PURPOSE. | |
204 TCODE .0, .125, "See the GNU General" ;078 See the GNU General | |
205 TCODE .0, .155, "Public License for" ;079 Public License for | |
206 TCODE .0, .185, "more details:" ;080 more details: | |
207 TCODE .0, .215, "www.heinrichsweikamp.de" ;081 www.heinrichsweikamp.de | |
177 | 208 ; end of licence |
209 ; | |
174 | 210 TCODE .102, .54, "Decostop" ;082 Decostop |
211 TCODE .0, .0, "m/min" ;083 m/min | |
212 TCODE .108, .113, "No Stop" ;084 No Stop | |
213 TCODE .135, .113, "TTS" ;085 TTS | |
214 TCODE .100, .0, "Divetime" ;086 Divetime | |
215 TCODE .0, .0, "Depth" ;087 Depth | |
216 TCODE .0, .0, "First Gas?" ;088 First Gas? | |
217 TCODE .0, .0, "Default:" ;089 Default: | |
218 TCODE .0, .0, "Minutes" ;090 Minutes | |
219 TCODE .0, .0, "Month " ;091 Month | |
220 TCODE .0, .0, "Day " ;092 Day | |
221 TCODE .0, .0, "Year " ;093 Year | |
222 TCODE .0, .0, "Set " ;094 Set | |
223 TCODE .0, .0, "Gas# " ;095 Gas# | |
224 TCODE .0, .0, "Yes" ;096 Yes | |
225 TCODE .0, .0, "Current:" ;097 Current: | |
226 TCODE .40, .2, "Setup Menu:" ;098 Setup Menu: | |
227 TCODE .20, .35, "Custom FunctionsI" ;099 Custom FunctionsI | |
228 TCODE .20, .125, "Decotype:" ;100 Decotype: | |
229 TCODE .85, .125, "ZH-L16 OC" ;101 ZH-L16 OC | |
230 TCODE .85, .125, "Gauge " ;102 Gauge | |
231 TCODE .85, .125, "Gauge" ;103 Gauge | |
232 TCODE .85, .125, "ZH-L16 CC" ;104 ZH-L16 CC | |
233 TCODE .0, .0, "Active Gas? " ;105 Active Gas? | |
576 | 234 TCODE .10, .2, "Gas Setup - Gaslist" ;106 Gas Setup - Gaslist |
297
ceedf078b2d8
Gas Setup page 2 reworked, Texts 107, 108, 109,150, 149, 168, 42, 43, 53,54,55, 165 need update in french, spanish and german
Heinrichsweikamp
parents:
283
diff
changeset
|
235 TCODE .20, .95, "Depth +/-:" ;107 Depth +/-: |
ceedf078b2d8
Gas Setup page 2 reworked, Texts 107, 108, 109,150, 149, 168, 42, 43, 53,54,55, 165 need update in french, spanish and german
Heinrichsweikamp
parents:
283
diff
changeset
|
236 TCODE .20, .125, "Change:" ;108 Change: |
ceedf078b2d8
Gas Setup page 2 reworked, Texts 107, 108, 109,150, 149, 168, 42, 43, 53,54,55, 165 need update in french, spanish and german
Heinrichsweikamp
parents:
283
diff
changeset
|
237 TCODE .20, .155, "Default:" ;109 Default: |
174 | 238 TCODE .20, .65, "CCR SetPoint Menu" ;110 CCR SetPoint Menu |
239 TCODE .20, .2, "CCR SetPoint Menu" ;111 CCR SetPoint Menu | |
240 TCODE .0, .0, "SP#" ;112 SP# | |
241 TCODE .20, .95, "Battery Info" ;113 Battery Info | |
242 TCODE .10, .2, "Battery Information" ;114 Battery Information | |
243 TCODE .0, .9, "Cycles:" ;115 Cycles: | |
244 TCODE .85, .125, "Apnoe" ;116 Apnoe | |
245 TCODE .0, .18, "Last Complete:" ;117 Last Complete: | |
246 TCODE .0, .27, "Lowest Vbatt:" ;118 Lowest Vbatt: | |
247 TCODE .0, .36, "Lowest at:" ;119 Lowest at: | |
248 TCODE .0, .45, "Tmin:" ;120 Tmin: | |
249 TCODE .0, .54, "Tmax:" ;121 Tmax: | |
532 | 250 TCODE .100, .124, "More" ;122 More (Gaslist) |
174 | 251 TCODE .100, .25, "O2 +" ;123 O2 + |
252 TCODE .100, .50, "O2 -" ;124 O2 - | |
253 TCODE .100, .75, "He +" ;125 He + | |
254 TCODE .100, .100, "He -" ;126 He - | |
255 TCODE .100, .0, "Exit" ;127 Exit | |
256 TCODE .100, .25, "Delete" ;128 Delete | |
257 TCODE .20, .65, "Debug:" ;129 Debug: | |
258 TCODE .65, .65, "ON " ;130 ON | |
259 TCODE .65, .65, "OFF" ;131 OFF | |
260 TCODE .100, .50, "Del. all" ;132 Del. all | |
261 TCODE .10, .0, "Unexpected reset from" ;133 Unexpected reset from | |
262 TCODE .10, .25, "Divemode! Please help" ;134 Divemode! Please help | |
263 TCODE .10, .50, "and report the Debug " ;135 and report the Debug | |
264 TCODE .10, .75, "Information below!" ;136 Information below! | |
525 | 265 TCODE .100, .0, "Bailout" ;137 Bailout |
174 | 266 TCODE .85, .125, "Apnoe " ;138 Apnoe |
267 TCODE .105, .120, "Descent" ;139 Descent | |
268 TCODE .105, .60, "Surface" ;140 Surface | |
269 TCODE .65, .2, "Quit?" ;141 Quit? | |
270 TCODE .20, .155, "More" ;142 More | |
271 TCODE .42, .72, "Confirm:" ;143 Confirm: | |
272 TCODE .60, .2, "Menu 2:" ;144 Menu 2: | |
273 TCODE .52, .96, "Cancel" ;145 Cancel | |
274 TCODE .52, .120, "OK!" ;146 OK! | |
275 TCODE .20, .35, "More" ;147 More | |
276 TCODE .0, .0, ":.........:" ;148 :.........: | |
297
ceedf078b2d8
Gas Setup page 2 reworked, Texts 107, 108, 109,150, 149, 168, 42, 43, 53,54,55, 165 need update in french, spanish and german
Heinrichsweikamp
parents:
283
diff
changeset
|
277 TCODE .0, .8, "ppO2" ;149 ppO2 |
ceedf078b2d8
Gas Setup page 2 reworked, Texts 107, 108, 109,150, 149, 168, 42, 43, 53,54,55, 165 need update in french, spanish and german
Heinrichsweikamp
parents:
283
diff
changeset
|
278 TCODE .2, .39, "bar " ;150 bar |
174 | 279 TCODE .108, .216, "Marker?" ;151 Marker? |
280 TCODE .85, .125, "L16-GF OC" ;152 L16-GF OC | |
281 TCODE .20, .65, "Custom FunctionsII" ;153 Custom FunctionsII | |
177 | 282 ; |
283 ; 32 custom function descriptors II (FIXED LENGTH = 15 chars). | |
174 | 284 TCODE .40, .35, "GF Low [%]" ;154 GF Low [%] |
285 TCODE .40, .35, "GF High [%]" ;155 GF High [%] | |
286 TCODE .40, .35, "Color# Battery " ;156 Color# Battery | |
287 TCODE .40, .35, "Color# Standard" ;157 Color# Standard | |
288 TCODE .40, .35, "Color# Divemask" ;158 Color# Divemask | |
289 TCODE .40, .35, "Color# Warnings" ;159 Color# Warnings | |
290 TCODE .40, .35, "Divemode secs. " ;160 Divemode secs. | |
291 TCODE .40, .35, "Adjust fixed SP" ;161 Adjust fixed SP | |
292 TCODE .40, .35, "Warn Ceiling " ;162 Warn Ceiling | |
293 TCODE .40, .35, "Mix type icons " ;163 Mix type icons | |
196 | 294 TCODE .40, .35, "Blink BetterGas" ;164 Blink BetterGas (Remainder in divemode to switch to a better decompression gas). |
297
ceedf078b2d8
Gas Setup page 2 reworked, Texts 107, 108, 109,150, 149, 168, 42, 43, 53,54,55, 165 need update in french, spanish and german
Heinrichsweikamp
parents:
283
diff
changeset
|
295 TCODE .40, .35, "DepthWarn[mbar]" ;165 DepthWarn[mbar] |
174 | 296 TCODE .40, .35, "CNS warning [%]" ;166 CNS warning [%] |
297 TCODE .40, .35, "GF warning [%]" ;167 GF warning [%] | |
297
ceedf078b2d8
Gas Setup page 2 reworked, Texts 107, 108, 109,150, 149, 168, 42, 43, 53,54,55, 165 need update in french, spanish and german
Heinrichsweikamp
parents:
283
diff
changeset
|
298 TCODE .40, .35, "ppO2 warn [bar]" ;168 ppO2 warn [bar] |
174 | 299 TCODE .40, .35, "Vel.warn[m/min]" ;169 Vel.warn[m/min] |
300 TCODE .40, .35, "Time offset/day" ;170 Time offset/day | |
301 TCODE .40, .35, "Show altimeter " ;171 Show altimeter | |
302 TCODE .40, .35, "Show Log-Marker" ;172 Show Log-Marker | |
303 TCODE .40, .35, "Show Stopwatch " ;173 Show Stopwatch | |
304 TCODE .40, .35, "ShowTissueGraph" ;174 ShowTissueGraph | |
305 TCODE .40, .35, "Show Lead.Tiss." ;175 Show Lead.Tiss. | |
197 | 306 TCODE .40, .35, "ShallowStop 1st" ;176 Shallow stop 1st (Reverse order of deco plans) |
307 TCODE .40, .35, "Gas switch[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:
297
diff
changeset
|
308 TCODE .40, .35, "BottomGas[/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:
297
diff
changeset
|
309 TCODE .40, .35, "AscentGas[/min]" ;179 AscentGas[/min] (Ascent+Deco gas usage) |
476 | 310 TCODE .40, .35, "Future TTS[min]" ;180 Future TTS[min] (Compute TTS for extra time at current depth) |
311 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
|
312 TCODE .40, .35, "Graph. Velocity" ;182 Graph. Velocity (Show a graphical representation of the ascend speed) |
552 | 313 TCODE .40, .35, "Show pSCR ppO2 " ;183 Show pSCR ppO2 (Show the ppO2 for pSCR divers) |
314 TCODE .40, .35, "pSCR O2 Drop[%]" ;184 pSCR O2 Drop[%] (pSCR O2 drop in percent) | |
315 TCODE .40, .35, "pSCR lung ratio" ;185 pSCR lung ratio (pSCR counterlung ratio) | |
312
b7e4e74c0e17
New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents:
297
diff
changeset
|
316 ; End of function descriptor II |
174 | 317 ; |
318 TCODE .13, .2, "Custom Functions II" ;186 Custom Functions II | |
319 TCODE .20, .95, "Show License" ;187 Show License | |
320 TCODE .0, .2, "Sim. Results:" ;188 Sim. Results: | |
321 TCODE .90, .25, "Surface" ;189 Surface | |
322 TCODE .0, .0, "ppO2 +" ;190 ppO2 + | |
323 TCODE .0, .0, "ppO2 -" ;191 ppO2 - | |
194 | 324 TCODE .0, .0, "Dil." ;192 Dil. (Rebreather diluent) |
574 | 325 |
326 ; 32 custom function descriptors III (FIXED LENGTH = 15 chars). | |
587
1b021a280e15
NEW CF64: Configures color for inactive gases
heinrichsweikamp
parents:
584
diff
changeset
|
327 TCODE .40, .35, "Color# inactive" ;193 Color# inactive |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
328 TCODE .40, .35, "Use safety stop" ;194 Use safety stop |
619 | 329 TCODE .40, .35, "Show GF in NDL " ;195 Show GF in NDL (If GF > CF08) |
574 | 330 TCODE .40, .35, "unused " ;196 unused |
331 TCODE .40, .35, "unused " ;197 unused | |
332 TCODE .40, .35, "unused " ;198 unused | |
333 TCODE .40, .35, "unused " ;199 unused | |
334 TCODE .40, .35, "unused " ;200 unused | |
335 TCODE .40, .35, "unused " ;201 unused | |
336 TCODE .40, .35, "unused " ;202 unused | |
337 TCODE .40, .35, "unused " ;203 unused | |
338 TCODE .40, .35, "unused " ;204 unused | |
339 TCODE .40, .35, "unused " ;205 unused | |
340 TCODE .40, .35, "unused " ;206 unused | |
341 TCODE .40, .35, "unused " ;207 unused | |
342 TCODE .40, .35, "unused " ;208 unused | |
343 TCODE .40, .35, "unused " ;209 unused | |
344 TCODE .40, .35, "unused " ;210 unused | |
345 TCODE .40, .35, "unused " ;211 unused | |
346 TCODE .40, .35, "unused " ;212 unused | |
347 TCODE .40, .35, "unused " ;213 unused | |
348 TCODE .40, .35, "unused " ;214 unused | |
349 TCODE .40, .35, "unused " ;215 unused | |
350 TCODE .40, .35, "unused " ;216 unused | |
351 TCODE .40, .35, "unused " ;217 unused | |
352 TCODE .40, .35, "unused " ;218 unused | |
353 TCODE .40, .35, "unused " ;219 unused | |
354 TCODE .40, .35, "unused " ;220 unused | |
355 TCODE .40, .35, "unused " ;221 unused | |
356 TCODE .40, .35, "unused " ;222 unused | |
357 TCODE .40, .35, "unused " ;223 unused | |
358 TCODE .40, .35, "unused " ;224 unused | |
174 | 359 ; |
574 | 360 TCODE .7, .2, "Custom Functions 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
|
361 TCODE .85, .125, "pSCR-GF " ;226 pSCR-GF |
598
f3735da18809
NEW: CF65: Show a safety stop for no-deco dives
heinrichsweikamp
parents:
592
diff
changeset
|
362 TCODE .90, .54, "SafetyStop" ;227 SafetyStop |
621 | 363 TCODE .0, .0, "Total Dives: " ;228 Total Dives: |
574 | 364 TCODE .0, .0, "" ;229 unused |
365 TCODE .0, .0, "" ;230 unused | |
366 TCODE .0, .0, "" ;231 unused | |
367 TCODE .0, .0, "" ;232 unused | |
368 TCODE .0, .0, "" ;233 unused | |
369 TCODE .0, .0, "" ;234 unused | |
370 | |
576 | 371 TCODE .10, .2, "Decomode changed!" ;235 Decomode changed! |
174 | 372 TCODE .85, .125, "L16-GF CC" ;236 L16-GF CC |
373 TCODE .2, .12, "Not found" ;237 Not found | |
374 TCODE .100, .0, "SetPoint" ;238 SetPoint | |
375 TCODE .100, .0, "No Deco" ;239 No Deco | |
376 TCODE .90, .50, "Interval:" ;240 Interval: | |
377 TCODE .100, .75, "Display" ;241 Display | |
378 TCODE .100, .0, "No deco" ;242 No deco | |
379 TCODE .132, .0, "beta" ;243 beta | |
380 TCODE .100, .100, "unuse" ;244 unuse | |
381 TCODE .20, .65, "Reset CF,Gas & Deco" ;245 Reset CF,Gas & Deco | |
382 TCODE .50, .145, "LowBatt!" ;246 LowBatt! | |
383 TCODE .20, .125, "Simulator" ;247 Simulator | |
384 TCODE .30, .2, "OSTC Simulator" ;248 OSTC Simulator | |
369 | 385 TCODE .20, .65, "Start Dive" ;249 Start Dive |
174 | 386 TCODE .100, .25, "+ 1m" ;250 + 1m |
387 TCODE .100, .50, "- 1m" ;251 - 1m | |
388 TCODE .100, .75, "+10m" ;252 +10m | |
389 TCODE .100, .100, "-10m" ;253 -10m | |
390 TCODE .100, .0, "Close" ;254 Close | |
391 TCODE .131, .170, "Time" ;255 Time | |
177 | 392 ; |
174 | 393 ; Text Bank2 (Texts 256-511) |
177 | 394 ; |
174 | 395 TCODE .0, .0, "x" ;256 x |
396 TCODE .20, .35, "Date format:" ;257 Date format: | |
397 TCODE .40, .2, "Setup Menu 2:" ;258 Setup Menu 2: | |
398 TCODE .105, .35, "MMDDYY" ;259 MMDDYY | |
399 TCODE .105, .35, "DDMMYY" ;260 DDMMYY | |
400 TCODE .105, .35, "YYMMDD" ;261 YYMMDD | |
401 TCODE .1, .1, "OSTC " ;262 OSTC | |
325
4a28d7a1c620
Fixed Setpoint behavior >2,55bar with CF38=ON
heinrichsweikamp
parents:
318
diff
changeset
|
402 TCODE .65, .168, "Bail " ;263 Bail |
174 | 403 TCODE .7, .48, "Air " ;264 Air |
404 TCODE .120, .135, "Air " ;265 Air | |
504 | 405 |
552 | 406 TCODE .0, .0, "pSCR Info" ;266 pSCR Info (Must be 9Chars!) |
518 | 407 TCODE .0, .216, "Max." ;267 Max. |
504 | 408 TCODE .0, .0, "" ;268 unused |
409 TCODE .0, .0, "" ;269 unused | |
410 TCODE .0, .0, "" ;270 unused | |
411 | |
174 | 412 ; New CFs Warning |
413 TCODE .24, .2, "New CF added!" ;271 New CF added! | |
414 TCODE .0, .35, "New CustomFunctions" ;272 New CustomFunctions | |
415 TCODE .0, .65, "were added! Check" ;273 were added! Check | |
584 | 416 TCODE .0, .95, "CF I, II and III " ;274 CF I and CF II Menu |
417 TCODE .0, .125, "Menu for Details!" ;275 for Details! | |
574 | 418 TCODE .20, .125, "Salinity: " ;276 Salinity: |
177 | 419 ; |
369 | 420 TCODE .20, .95, "Bottom Time:" ;277 Bottom Time: |
421 TCODE .20, .125, "Max. Depth:" ;278 Max. Depth: | |
422 TCODE .20, .155, "Calculate Deco" ;279 Calculate Deco | |
499
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
492
diff
changeset
|
423 TCODE .20, .155, "Brightness:" ;280 Brightness: |
177 | 424 ; |
174 | 425 TCODE .93, .170, "Avr.Depth" ;281 Avr.Depth |
426 TCODE .90, .170, "Lead Tiss." ;282 Lead Tiss. | |
427 TCODE .93, .170, "Stopwatch" ;283 Stopwatch | |
428 TCODE .20, .95, "Reset Logbook" ;284 Reset Logbook | |
429 TCODE .20, .125, "Reboot OSTC" ;285 Reboot OSTC | |
430 TCODE .20, .155, "Reset Decodata" ;286 Reset Decodata | |
177 | 431 ; Altimeter extension |
174 | 432 TCODE .20, .155, "Altimeter" ;287 Altimeter |
433 TCODE .38, .1, "Set Altimeter" ;288 Set Altimeter | |
434 TCODE .20, .35, "Sea ref: " ;289 Sea ref: | |
435 TCODE .0, .0, "Enabled: " ;290 Enabled: | |
436 TCODE .20, .95, "Default: 1013 mbar" ;291 Default: 1013 mbar | |
437 TCODE .20, .125, "+1 mbar" ;292 +1 mbar | |
438 TCODE .20, .155, "-1 mbar" ;293 -1 mbar | |
439 TCODE .85, .185, "Alt: " ;294 Alt: | |
188 | 440 ; |
574 | 441 TCODE .20, .95, "Custom FunctionsIII" ;295 Custom FunctionsIII |
188 | 442 TCODE .50, .2, "Raw Data:" ;296 Raw Data: |
199 | 443 ; Gas-setup addons: |
231
f9d42f8ff97b
BUGFIX Don't show (nosense) gas consumption in CCR mode (bug BB20).
JeanDo
parents:
228
diff
changeset
|
444 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
|
445 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
|
446 TCODE .0, .0, "EAD:" ;299 EAD: (equivalent air depth of a gas). |
576 | 447 TCODE .100, .125, "More" ;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
|
448 TCODE .0, .2, "OCR Gas Usage:" ;301 OCR Gas Usage: (Planned gas consumtion by tank). |
314 | 449 ; 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
|
450 TCODE .45, .100, "Bootloader" ;302 Bootloader |
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
255
diff
changeset
|
451 TCODE .40, .130, "Please wait!" ;303 Please wait! |
4ec488f046f4
Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents:
255
diff
changeset
|
452 TCODE .50, .130, "Aborted!" ;304 Aborted |
476 | 453 ; @5 variant |
318 | 454 TCODE .0, .0, "Future TTS" ;305 Future TTS (=10 chars. Title for @5 customview). |
370 | 455 ; |
476 | 456 TCODE .100, .125, "Quit Sim" ;306 Quit Sim (=8char max. Quit Simulator mode) |
457 ; Dive interval | |
370 | 458 TCODE .20, .35, "Interval:" ;307 Interval: |
476 | 459 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
|
460 TCODE .108, .112, "Average" ;309 Average |
476 | 461 ; |
462 TCODE .94, .54, "Stopwatch" ;310 Stopwatch (BIG Stopwatch in Gauge mode) | |
463 ; Cave consomation | |
464 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
|
465 ; OLED Brightness settings |
2ac77db9c150
Added OLED brightness setting, texts 280, 312 and 313 need update
heinrichsweikamp
parents:
492
diff
changeset
|
466 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
|
467 TCODE .103, .155, "High" ;313 High (Same length as #312!) |
574 | 468 |
469 ; ZH-L16 mode description | |
576 | 470 TCODE .0, .35, "Decotype: ZH-L16 OC" ;314 Decotype: ZH-L16 OC |
471 TCODE .0, .65, "For Open Circuit" ;315 For Open Circuit | |
472 TCODE .0, .95, "Divers. Supports 5" ;316 Divers. Supports 5 | |
473 TCODE .0, .125, "Trimix Gases." ;317 Trimix Gases. | |
474 TCODE .0, .155, "Configure your gas" ;318 Configure your gas | |
475 TCODE .0, .185, "in Gassetup menu." ;319 in Gassetup menu. | |
476 TCODE .0, .215, "Check CF11 & CF12 !" ;320 Check CF11 & CF12 ! | |
574 | 477 ; Gaugemode description |
576 | 478 TCODE .0, .35, "Decotype: Gauge" ;321 Decotype: Gauge |
479 TCODE .0, .65, "Divetime will be in" ;322 Divetime will be in | |
480 TCODE .0, .95, "Minutes:Seconds." ;323 Minutes:Seconds. | |
481 TCODE .0, .125, "OSTC2 will not" ;324 OSTC2 will not | |
482 TCODE .0, .155, "compute Deco, NoFly" ;325 compute Deco, NoFly | |
483 TCODE .0, .185, "time and Desat." ;326 time and Desat. | |
484 TCODE .0, .215, "time at all!" ;327 time at all! | |
574 | 485 ; Const.ppO2 description |
576 | 486 TCODE .0, .35, "Decotype: ZH-L16 CC" ;328 Decotype: ZH-L16 CC |
487 TCODE .0, .65, "For closed" ;329 For closed | |
488 TCODE .0, .95, "circuit rebreathers" ;330 circuit rebreathers | |
489 TCODE .0, .125, "Configure the 3" ;331 Configure the 3 | |
490 TCODE .0, .155, "SetPoints in CCR -" ;332 SetPoints in CCR - | |
491 TCODE .0, .185, "Setup menu. 5 bail-" ;333 Setup menu. 5 bail- | |
492 TCODE .0, .215, "outs are available." ;334 outs are available. | |
574 | 493 ; Apnoemode description |
576 | 494 TCODE .0, .35, "Decotype: Apnoe" ;335 Decotype: Apnoe |
495 TCODE .0, .65, "OSTC2 will display" ;336 OSTC2 will display | |
496 TCODE .0, .95, "each descent separ-" ;337 each descent separ- | |
497 TCODE .0, .125, "ately in Min:Sec." ;338 ately in Min:Sec. | |
498 TCODE .0, .155, "Will temporally set" ;339 Will temporally set | |
499 TCODE .0, .185, "samplerate to 1 sec" ;340 samplerate to 1 sec | |
500 TCODE .0, .215, "No Deco calculation" ;341 No Deco calculation | |
574 | 501 ; Multi GF OC mode description |
576 | 502 TCODE .0, .35, "Decotype: L16-GF OC" ;342 Decotype: L16-GF OC |
503 TCODE .0, .65, "Decompression cal-" ;343 Decompression cal- | |
504 TCODE .0, .95, "culations with the" ;344 culations with the | |
505 TCODE .0, .125, "GF-Method (GF_lo/GF" ;345 GF-Method (GF_lo/GF | |
506 TCODE .0, .155, "_hi). Check CF32 &" ;346 _hi). Check CF32 & | |
507 TCODE .0, .185, "CF33! Open Circuit" ;347 CF33! Open Circuit | |
508 TCODE .0, .215, "with Deep Stops." ;348 with Deep Stops. | |
574 | 509 ; Multi GF CC mode description |
576 | 510 TCODE .0, .35, "Decotype: L16-GF CC" ;349 Decotype: L16-GF CC |
511 TCODE .0, .65, "Decompression cal-" ;350 Decompression cal- | |
512 TCODE .0, .95, "culations with the" ;351 culations with the | |
513 TCODE .0, .125, "GF-Method (GF_lo/GF" ;352 GF-Method (GF_lo/GF | |
514 TCODE .0, .155, "_hi). Check CF32 &" ;353 _hi). Check CF32 & | |
515 TCODE .0, .185, "CF33!Closed Circuit" ;354 CF33!Closed Circuit | |
516 TCODE .0, .215, "with Deep Stops." ;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
|
517 ; 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
|
518 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
|
519 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
|
520 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
|
521 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
|
522 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
|
523 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
|
524 TCODE .0, .215, "pSCR features." ;362 pSCR features. |
574 | 525 ; |
526 | |
177 | 527 ;============================================================================= |