Mercurial > public > hwos_code
annotate src/text_english.inc @ 630:4cd81bdbf15c
3.08 stable release
author | heinrichsweikamp |
---|---|
date | Fri, 21 Feb 2020 10:51:36 +0100 |
parents | cd58f7fc86db |
children | 185ba2f91f59 |
rev | line source |
---|---|
0 | 1 ;============================================================================= |
2 ; | |
628 | 3 ; File text_english.asm next combined generation V3.04.3 |
0 | 4 ; |
604 | 5 ; English texts reference file. |
0 | 6 ; |
604 | 7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved. |
0 | 8 ;============================================================================= |
9 | |
10 ; Basic texts | |
623 | 11 TCODE tNo, "No" ; 0 No | ENUM group |
12 TCODE tYes, "Yes" ; 1 Yes | | |
604 | 13 IFDEF _cave_mode |
623 | 14 TCODE tCave, "Cave" ; 2 Cave | |
604 | 15 ENDIF |
16 | |
17 TCODE tblank, " " ; (a single space character) | |
18 | |
0 | 19 ; Surface-mode texts |
604 | 20 TCODE tMenu, "<Menu" ; <Menu |
21 TCODE tView, "View>" ; View> | |
22 TCODE tHeading, "Heading:" ; Heading: | |
23 TCODE tLastDive, "Last Dive" ; Last Dive (Max 10 chars) | |
623 | 24 |
25 IFDEF _external_sensor | |
604 | 26 TCODE tSensorMilliVolt, "Sensors mV" ; Sensors mV |
623 | 27 ENDIF |
28 | |
0 | 29 |
604 | 30 ; Divemode menu |
31 TCODE tDivemenu_Gaslist, "Gaslist" ; Gaslist (OC) | |
623 | 32 TCODE tDivemenu_ResetAvg, "Reset Avg" ; Reset Avg (max 9 char) |
33 TCODE tDivemenu_Avg_Mkr, "Avg/Marker" ; Reset Avg, Set Marker (and Turn Dive) | |
604 | 34 TCODE tDivemenu_ToggleGF, "Toggle GF" ; Toggle GF |
35 TCODE tDivemenu_Marker, "Set Marker" ; Set Marker | |
36 TCODE tDivemenu_LostGas, "Lost Gas" ; Lost Gas | |
623 | 37 |
38 IFDEF _ccr_pscr | |
39 TCODE tDivemenu_Diluent, "Diluents" ; Diluents (CCR) | |
40 TCODE tDivemenu_Premix, "Premix" ; Premix (pSCR) | |
41 TCODE tDivemenu_Setpoint, "Setpoint" ; Setpoint | |
42 ENDIF | |
43 | |
44 IFDEF _external_sensor | |
45 TCODE tDivemenu_UseSensor,"use Sensor" ; Use Sensor | |
46 ENDIF | |
47 | |
604 | 48 IFDEF _cave_mode |
49 TCODE tDivemenu_TurnDive, "Turn Dive" ; Turn Dive | |
50 ENDIF | |
0 | 51 |
623 | 52 |
0 | 53 ; Main menu |
604 | 54 TCODE tNext, "<Next" ; <Next |
619 | 55 TCODE tEnter, " Enter>" ; Enter> |
604 | 56 TCODE tMainMenu, "Main Menu" ; MainMenu |
57 TCODE tLogbook, "Logbook" ; Logbook | |
58 TCODE tGasSetup, "OC Gas Setup" ; OC Gas Setup | |
59 TCODE tSetTime, "Set Time" ; Set Time | |
60 TCODE tSetDate, "Set Date" ; Set Date | |
61 TCODE tSetTimeDate, "Set Time & Date" ; Set Time & Date | |
62 TCODE tDispSets, "Display Settings" ; Display Settings | |
63 TCODE tExit, "Exit" ; Exit | |
64 TCODE tResetMenu, "Reset Menu" ; Reset Menu | |
65 TCODE tDiveModeMenu, "Deco Setup" ; Deco Setup | |
66 TCODE tInfoMenu, "Information" ; Information | |
623 | 67 IFDEF _ccr_pscr |
68 TCODE tCCRSetup, "CCR/pSCR Setup" ; CCR/pSCR Setup | |
69 TCODE tDiluentSetup, "Diluent Setup" ; Diluent Setup | |
70 ENDIF | |
71 TCODE tFixedSetpoints, "CCR Setpoints" ; Fixed Setpoints for CCR | |
72 TCODE tBack, "back" ; back | |
73 | |
74 IFDEF _rx_functions | |
604 | 75 TCODE tTrSettings, "Pressure Display" ; Pressure Display |
76 TCODE tTrMode, "Mode: " ; Mode | |
77 TCODE tTr1stPres, "1.Pres.: " ; 1st Pressure | |
78 TCODE tTr2ndPres, "2.Pres.: " ; 2nd Pressure | |
79 TCODE tTrBailPres, "1.B/O : " ; Bailout Pressure | |
80 TCODE tTrMaxDeltaP, "max deltaP: " ; independent double max diffenerce | |
623 | 81 ENDIF |
82 | |
83 IFDEF _ccr_pscr | |
84 IFDEF _external_sensor | |
604 | 85 TCODE tCCRSensor, "Sensor" ; CCR/pSCR Sensor |
86 TCODE tCalibrateMenu, "Calibration" ; Calibration | |
87 TCODE tCalibrationGas, "Cal. Gas O2:" ; Cal. Gas O2: | |
88 TCODE tCalibrate, "Calibrate" ; Calibrate | |
623 | 89 ENDIF |
90 ENDIF | |
91 | |
0 | 92 |
93 ; Gas menu | |
604 | 94 TCODE tGaslist, "OC Gas List" |
95 TCODE tGaslistCC, "CC Diluents" | |
96 TCODE tGasEdit, "Edit Gas" | |
97 TCODE tType, "Type: " | |
628 | 98 TCODE tGasDisabled, "Disabled" ; | Enum 0: Disabled |
99 TCODE tGasFirst, "First" ; | 1: First | |
100 TCODE tGasTravel, "Work" ; | 2: Work (Travel, Bottom) | |
101 TCODE tGasDeco, "Deco" ; | 3: Deco | |
102 TCODE tDilDisabled, "Disabled" ; | Enum 0: Disabled | |
103 TCODE tDilFirst, "First" ; | 1: First | |
104 TCODE tDilNorm, "Normal" ; | 2: Normal | |
604 | 105 TCODE tAir, "Air " ; Enum: values must follow (5 chars) |
106 TCODE tO2, "O2 " ; tAir + 5 | |
107 TCODE tO2Plus, "O2 +" | |
108 TCODE tO2Minus, "O2 -" | |
623 | 109 IFDEF _helium |
604 | 110 TCODE tHePlus, "He +" |
111 TCODE tHeMinus, "He -" | |
623 | 112 ENDIF |
604 | 113 TCODE tMOD, "MOD :" |
114 TCODE tEAD, "EAD:" | |
115 TCODE tSetup_GasDepth, "Setup Depth" | |
116 TCODE tDepthPlus, "Depth +" | |
117 TCODE tDepthMinus, "Depth -" | |
118 TCODE tDepthReset, "Reset to MOD:" | |
119 TCODE tSetup_GasMix, "Setup Mix" | |
623 | 120 IFDEF _ccr_pscr |
604 | 121 TCODE tSPPlus, "ppO2+" ; pO2+ |
122 TCODE tSensorFallback, "Fallback:" ; Fallback: | |
123 TCODE tCalculated, "calculated" ; calculated | |
124 TCODE tppO2O2, "ppO2(O2)" ; ppO2(O2) | |
125 TCODE tppO2Dil, "ppO2(Dil)" ; ppO2(Dil) | |
126 TCODE tppO2Mix, "ppO2(Mix)" ; ppO2(Mix) | |
623 | 127 TCODE tCCRMode, "Mode:" ; Mode: |
628 | 128 TCODE tCCRModeFixedSP, "Fixed SP" ; 0 fixed for CCR / calculated for pSCR | ENUM group |
623 | 129 TCODE tCCRModeSensor, "Sensor" ; 1 Sensor | |
130 TCODE tCCRModeAutoSP, "Auto SP" ; 2 Auto SP | | |
131 ELSE | |
132 TCODE tCCRModeFixedSP, " " ; target needed by option table | |
133 ENDIF | |
134 TCODE tSP, "SP" ; SP (SetPoint) | |
135 TCODE tppO2, "ppO2:" ; ppO2: | |
136 | |
604 | 137 |
560 | 138 ; New batteries menu |
614 | 139 ; 1 2 ; |
140 ; 12345678901234567890 ; max 20 chars | |
604 | 141 TCODE tNewBattTitle, "New Battery?" |
142 TCODE tNewBattOld, "Keep old" | |
614 | 143 TCODE tNewBattNew36, "3.6V disposable (T1)" ; new 3.6V disposable |
144 TCODE tNewBattNew15, "1.5V disposable (T0)" ; new 1.5V disposable | |
623 | 145 TCODE tNewBattAccu, "3.7V chargeable (T2)" ; new 3.7V rechargeable |
614 | 146 TCODE tNew18650, "OSTC 2 or cR (T3)" ; internal battery on 2 (old) / cR |
147 TCODE tNew16650, "OSTC 2 or TR (T4)" ; internal battery on 2 (new) / TR | |
623 | 148 TCODE tConfirmChargeable1,"Confirm:" ; safety question, line 1 |
149 TCODE tConfirmChargeable2,"inserted Battery" ; safety question, line 2 | |
150 TCODE tConfirmChargeable3,"is rechargeable" ; safety question, line 3 | |
151 | |
604 | 152 |
153 ; Gaslist Management | |
154 TCODE tGas, "Gas" ; Gas | |
155 TCODE tDil, "Dil" ; Diluent | |
156 TCODE tGasErr, "Err" ; Err (3 chars) | |
448 | 157 |
623 | 158 |
604 | 159 ; Communication menu |
160 TCODE tUsbTitle, "USB Mode" | |
161 TCODE tBleTitle, "Bluetooth Mode" | |
162 TCODE tUsbStarting, "Starting..." | |
163 TCODE tUsbStartDone, "Done." | |
164 TCODE tUsbServiceMode, "Service mode enabled" | |
165 TCODE tUsbClosed, "Port closed" | |
166 TCODE tUsbExit, "Exited" | |
167 TCODE tUsbDownloadMode, "Download mode enabled" | |
168 TCODE tUsbLlBld, "Low-level Bootloader" | |
0 | 169 |
623 | 170 |
604 | 171 ; Dive settings |
172 TCODE tDvMode, "Dive Mode: " | |
173 TCODE tDvOC, "OC" ; 0 - keep order, enum! | |
174 TCODE tDvCCR, "CCR" ; 1 | |
175 TCODE tDvGauge, "Gauge" ; 2 | |
176 TCODE tDvApnea, "Apnea" ; 3 | |
177 TCODE tDvPSCR, "pSCR" ; 4 | |
178 TCODE tDvCC, "CC" | |
179 TCODE tDkMode, "Decotype: ZH-L16" | |
180 TCODE tZHL16, " " ; 0 - keep order, enum! | |
181 TCODE tZHL16GF, "+GF" ; 1 | |
628 | 182 TCODE tPPO2Max, "Max Work:" ; max ppO2 during working phase |
183 TCODE tPPO2DECO, "Max Deco:" ; max ppO2 during deco phase | |
623 | 184 IFDEF _ccr_pscr |
628 | 185 TCODE tPPO2MIN, "Min OC :" ; min ppO2 in OC mode |
186 TCODE tPPO2MINCC, "Min Loop:" ; min ppO2 in loop mode | |
187 ELSE | |
188 TCODE tPPO2MIN, "Min :" ; min ppO2 in OC mode | |
623 | 189 ENDIF |
190 TCODE tLastDecostop, "Last Deco : " ; last deco stop depth | |
191 TCODE tAscentSpeed, "Ascent Speed : " ; Ascent Speed | |
192 TCODE tGasChangeTime, "Gas Change :+" ; additional Gas Change Time | |
628 | 193 TCODE tExtendedStops, "extended Stop: " ; extended stops |
623 | 194 TCODE tTimeoutDive, "Dive Timeout : " ; Dive Timeout |
195 TCODE tStoreApnoeDive, "Store Apnoe : " ; Store Apnoe Dives | |
604 | 196 TCODE tDecoparameters, "Deco Parameters" |
197 TCODE tGF_low, "GF low :" | |
198 TCODE tGF_high, "GF high:" | |
199 TCODE tSaturationMult, "Saturation : " | |
200 TCODE tDesaturationMult, "Desaturation: " | |
201 TCODE tFTTSMenu, "fTTS/Delay:" ; Future TTS / Ascent Delay | |
202 TCODE tLastDecostopSurf, "Last Deco :" ; last deco stop depth Surface Custom View | |
203 TCODE tGFMenu, "GF Settings" ; GF Settings | |
204 TCODE taGF_low, "aGF low :" ; aGF low | |
205 TCODE taGF_high, "aGF high:" ; aGF high | |
206 TCODE taGF_enable, "aGF selectable:" ; aGF Selectable | |
207 TCODE tDiveaGF_active, "using aGF" ; using aGF | |
208 TCODE tppO2settings, "ppO2 Settings" ; ppO2 Settings | |
209 TCODE tsafetystopmenu, "Safety Stop: " ; Safety Stop: | |
210 TCODE tGasUsage, "Gas Usage" ; Gas Usage | |
211 TCODE tSetBotUse, "Bottom Gas: " ; Bottom Gas: (space) | |
212 TCODE tSetDecoUse, "Deco Gas: " ; Deco Gas: (space) | |
623 | 213 TCODE tCalcAscGas, "Calc.Gas (B/O):" ; Calculate Gas (Bail Out) needs? |
604 | 214 TCODE tSetup_Tank, "Setup Tank" ; Setup Tank |
628 | 215 TCODE tTankSize, "Tank Size" ; Tank Size |
604 | 216 TCODE tTankUsablePress, "Turn Pres/Asc.Need" ; Tank Pressure Budget for Ascent (turn pressure) (max 19 chars) |
217 TCODE tLiter, " l" ; Liter as l | |
218 TCODE tLiterLong, "Liter" ; Liter as Liter | |
623 | 219 TCODE t2ndDecoPlanMenu, "2nd Deco Plan" ; 2nd Deco Plan |
220 | |
221 IFDEF _ccr_pscr | |
628 | 222 TCODE tCCmaxFracO2, "Loop %O2 max. : " ; max O2 percent (absolute) in the loop |
223 TCODE tDilppO2Check, "Check Dil ppO2: " ; check ppO2 of the diluent against the setpoint | |
224 TCODE tPSCR_O2_drop, "pSCR O2 Drop: " ; pSCR O2 drop | |
225 TCODE tPSCR_lungratio, " Lung Ratio: " ; pSCR lung ratio | |
226 TCODE tCopyDilToOC, "Copy Dil.-> OC" ; copy diluent settings to OC gas | |
227 TCODE tBackToLoop, "goto loop" ; back to loop (10 chars max) | |
623 | 228 ENDIF |
0 | 229 |
604 | 230 IFDEF _rx_functions |
623 | 231 TCODE tTankPairing, "Select Transmitter" ; select Transmitter |
604 | 232 TCODE tTrModeOff, "off" ; 0 off keep order, enum! |
233 TCODE tTrModeOn, "on" ; 1 on | |
234 TCODE tTrModeIndDouble, "indep.Double" ; 2 independent double | |
235 TCODE tTrModeCCR, "CCR Dil+O2" ; 3 CCR diluent and O2 | |
236 TCODE tTrPresNone, "none" ; 0 none keep order, enum! | |
237 TCODE tTrPresGas1, "Gas 1" ; 1 Gas 1 | |
238 TCODE tTrPresGas2, "Gas 2" ; 2 Gas 2 | |
239 TCODE tTrPresGas3, "Gas 3" ; 3 Gas 3 | |
240 TCODE tTrPresGas4, "Gas 4" ; 4 Gas 4 | |
241 TCODE tTrPresGas5, "Gas 5" ; 5 Gas 5 | |
623 | 242 IFDEF _ccr_pscr |
604 | 243 TCODE tTrPresDil1, "Dil 1" ; 6 Dil 1 |
244 TCODE tTrPresDil2, "Dil 2" ; 7 Dil 2 | |
245 TCODE tTrPresDil3, "Dil 3" ; 8 Dil 3 | |
246 TCODE tTrPresDil4, "Dil 4" ; 9 Dil 4 | |
247 TCODE tTrPresDil5, "Dil 5" ; 10 Dil 5 | |
248 TCODE tTrPresFirstGas, "First Gas" ; 11 first Gas | |
249 TCODE tTrPresActiveGas, "active Gas" ; 12 active Gas | |
250 TCODE tTrPresFirstDil, "First Dil" ; 13 first Dil | |
251 TCODE tTrPresActiveDil, "active Dil" ; 14 active Dil | |
623 | 252 ENDIF |
604 | 253 ELSE |
254 TCODE tTrModeOff, "" ; dummy target for entry in option table | |
255 TCODE tTrPresNone, "" ; dummy target for entry in option table | |
623 | 256 ENDIF ; _rx_functions |
257 | |
0 | 258 |
604 | 259 ; Display settings |
260 TCODE tBright, "Brightness:" | |
261 TCODE tEco, "Eco" | |
262 TCODE tMedium, "Medium" | |
263 TCODE tHigh, "High" | |
264 TCODE tDvSalinity, "Salinity: " ; Salinity | |
265 TCODE tShowppO2, "Always show ppO2:" ; Always show ppO2: | |
266 TCODE tFlip, "Rotate Screen:" ; Rotate Screen | |
608 | 267 TCODE tMODwarning, "Depth Warnings:" ; depth Warnings |
623 | 268 ; TCODE tIBCDwarning, "IBCD Warning :" ; IBCD Warning |
269 TCODE tLayout, "Layout :" ; Layout | |
628 | 270 TCODE t2ndDepth, "2nd Depth:" ; 2nd depth display content (11 chars max) |
623 | 271 TCODE tTissueGraphics, "Graphics :" ; tissue graphics |
272 | |
273 TCODE tLayoutNormal, "normal" ; normal | |
628 | 274 TCODE tLayoutBig, "large" ; large |
623 | 275 |
604 | 276 |
277 ; VSI display settings | |
278 TCODE tVSItext2, "Variable Speed:" ; Variable speed: | |
279 TCODE tVSIgraph, "Speed Graph :" ; Speed graph: | |
0 | 280 |
623 | 281 |
604 | 282 ; Setup menu |
283 TCODE tSystSets, "Settings" | |
623 | 284 IFDEF _compass |
604 | 285 TCODE tCompassMenu, "Compass Calibration" |
286 TCODE tCompassGain, "Compass Gain:" | |
287 TCODE tCalX, "Cal X:" ; Cal X | |
288 TCODE tCalY, "Cal Y:" ; Cal Y | |
289 TCODE tCalZ, "Cal Z:" ; Cal Z | |
623 | 290 ENDIF |
604 | 291 TCODE tUnits, "Units: " |
292 TCODE tMetric, " m/°C" ; 0 - keep order, enum! | |
293 TCODE tImperial, "ft/°F" ; 1 | |
294 ; 111 111 111 111 111 | |
623 | 295 ; 5 rows by 12 chars each: 123456789012123456789012123456789012123456789012123456789012 |
628 | 296 TCODE tDefName, "HW OSTC" ;" Read the Manual, know& understandthe inherentLimitations!" |
604 | 297 TCODE tButtonleft, "Left button:" ; Left button |
298 TCODE tButtonright, "Right button:" ; Right button | |
299 TCODE tAltMode, "Waiting Time:" | |
300 TCODE tAltModeFly, "Flying" | |
301 TCODE tAltMode1000, "1000m" | |
302 TCODE tAltMode2000, "2000m" | |
303 TCODE tAltMode3000, "3000m" | |
220
effd7259f5a5
make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents:
216
diff
changeset
|
304 |
623 | 305 |
0 | 306 ; Units for all menu |
604 | 307 TCODE tMeters, "m" |
308 TCODE tFeets, "ft" | |
309 TCODE tFeets1, "f" | |
310 TCODE tMinutes, "'" | |
311 TCODE tPercent, "%" | |
312 TCODE tLitersMinute, "l/min" | |
313 TCODE tbar, " bar" ; bar | |
314 TCODE tbar10, "0 bar" ; xx0 bar | |
315 TCODE tMeterMinute, "m/'" ; meter per minute | |
0 | 316 |
623 | 317 |
0 | 318 ; Date |
604 | 319 TCODE tDateFormat, "Format: " |
320 TCODE tDateformat, "MMDDYY" | |
321 TCODE tDateformat1, "DDMMYY" | |
322 TCODE tDateformat2, "YYMMDD" | |
0 | 323 |
623 | 324 |
0 | 325 ; Simulator menu |
604 | 326 TCODE tInter, "Start Simulator" ; Start Simulator |
327 TCODE tPlan, "Simulator" ; Simulator | |
0 | 328 |
623 | 329 |
0 | 330 ; Decoplanner submenu |
604 | 331 TCODE tBtTm, "Bot.Time : " ; Bot. Time: (10 chars) |
623 | 332 TCODE tBtTm_short, "Time :" ; Bot. Time: (max. 6 chars) |
604 | 333 TCODE tBtDep, "Bot.Depth: " ; Max Depth: (10 chars) |
334 TCODE tIntvl, "Interval : " ; Interval : (10 chars) | |
335 TCODE tDecoSetup, "Calculator Setup" | |
336 TCODE tDeco, "Start Calculator" ; Calculate Deco | |
623 | 337 TCODE tDivePlan, "Dive Plan" ; Dive Plan (max. 10 chars) |
604 | 338 TCODE tNoDeco, "No Deco" ; No Deco |
339 TCODE tMore, "more" ; more | |
628 | 340 TCODE tSelectSetpoint, "Setpoint : " ; Setpoint |
341 TCODE tuseAGF, "use aGF : " ; use alternative Grdient Factors | |
342 IFDEF _gas_contingency | |
343 TCODE tGasContingency, "Gas Cont.: " ; Gas Contingency | |
344 ENDIF | |
345 | |
346 ; Decoplanner progress indication | |
347 TCODE tNoBottomGas1, " No usable Gas for" ; no usable Gas for Bottom Depth found (line 1, max. 22 chars) | |
348 TCODE tNoBottomGas2, " Bottom Depth found!" ; no usable Gas for Bottom Depth found (line 2, max. 22 chars) | |
623 | 349 TCODE tCalculating, "Calculating..." ; Calculating... |
350 TCODE tCalcSurfInter, "Surface Interval" ; Surface Interval | |
351 TCODE tCalcBotSeg, "Bottom Segment" ; Bottom Segment | |
352 TCODE tCalcBailout, "Switch to Bailout" ; Switch to Bailout | |
628 | 353 TCODE tCalcAscent, "Ascent" ; Ascent (max. 8 chars) |
354 TCODE tNDLleft, "NDL" ; time left within NDL | |
0 | 355 |
623 | 356 |
0 | 357 ; Information menu |
604 | 358 TCODE tFirmware, "Firmware: " ; Firmware: (space) |
628 | 359 TCODE tHardware, "Hardware: " ; Hardware: (space) |
604 | 360 TCODE tSerial, "Serial : " ; Serial : (space) |
628 | 361 TCODE tTotalDives, "Total Dives:" ; Total Dives: (no space, moved to logbook) |
623 | 362 TCODE tBatteryV, "Battery : " ; Battery : (space) |
363 TCODE tUptime, "Uptime : " ; Uptime : (space) | |
364 | |
365 IFDEF _rx_functions | |
366 TCODE tFirmware_rx, "RX Ver : " ; RX Ver : (space) | |
367 ENDIF | |
368 | |
604 | 369 |
0 | 370 ; Divemode screen |
604 | 371 TCODE tNDL, "NDL" ; 3 chars max |
623 | 372 TCODE tTTS, "TTS" ; 3 chars max |
628 | 373 TCODE tSlow, " slow " ; slow - max 7 chars |
604 | 374 TCODE tVelMetric, "m/min" |
375 TCODE tVelImperial, "ft/m " | |
376 TCODE tGasSelect, "Select Gas" ; Select Gas | |
377 TCODE tSelectAir, "Air " ; Air | |
378 TCODE tSelectO2, "O2 " ; O2 | |
379 TCODE tSelectNx, "Nx" ; Nx | |
380 TCODE tSelectTx, "Tx" ; Tx | |
623 | 381 TCODE tDepth, "Depth" ; Depth (max 5 chars) |
382 TCODE tMaxDepth, "Max.Depth" ; Max. Depth - max 9 chars! | |
383 TCODE tAvgDepth, "Average" ; average Depth - max 9 chars! | |
384 TCODE tTissuePresSat, "Pres+Sat" ; 0 pressure and saturation | ENUM group | |
385 IFDEF _helium | |
386 TCODE tTissueN2He, "N2+He" ; 1 N2 + He pressure | | |
387 ENDIF | |
388 TCODE tDivetime, "Divetime" ; Divetime (max 8 chars) | |
604 | 389 TCODE tDiveTotalAvg, "Total Avg" |
390 TCODE tDiveStopwatch, "Stopwatch" | |
391 TCODE tDiveStopAvg, "Stopped Avg" ; 11 chars max | |
392 TCODE tApnoeTotal, " Total" ; Total (six chars, right aligned) | |
393 TCODE tApnoeMax, "Last Descent" ; Last descent | |
394 TCODE tApnoeSurface, "Surface Time" ; Surface Time | |
395 TCODE tTime, "Time of Day" ; Time | |
396 TCODE tSurface, "Surface" ; Surface (max 12 chars) | |
623 | 397 TCODE tDiveDecoplan, "next Stops" ; next Stops |
604 | 398 ; TCODE tDiveClock, "Clock" ; Clock |
399 TCODE tDiveEAD_END, "EAD/END" ; EAD/END | |
400 TCODE tDiveTissues, "Tissues" ; Tissues | |
401 TCODE tEND, "END:" ; END: | |
402 TCODE tN2, "N2" ; N2 | |
623 | 403 TCODE tDiveBailout, "Bailout" ; Bailout (max. 7 chars) |
604 | 404 TCODE tGFactors, "GF Values" ; GF Values |
405 TCODE taGFactors, "aGF Values" ; aGF Values | |
608 | 406 TCODE tGFInfo, "Saturation" ; Saturation |
604 | 407 TCODE tCeiling, "Ceiling" ; Ceiling |
408 TCODE tDiveFallback, "Fallback!" ; Fallback! (max. nine chars) | |
409 TCODE tDecoInfo, "Deco Zone" ; Deco info | |
410 TCODE tSensorCheck, "Sensor Check" ; Sensor Check | |
411 TCODE tdil, "Dil:" ; Diluent ppO2 Warning | |
412 TCODE tmix, "Mix:" ; Pre-Mix ppO2 Warning | |
413 TCODE tGasNeedsWarn, "Gas Needs" | |
414 TCODE tGasNeedsAscent, "Gas Needs Ascent" | |
415 TCODE tCNSsurf, "CNS Surf." | |
416 TCODE tCNSfTTS, "CNS fTTS" | |
417 TCODE tCNSBO, "CNS B/O" | |
418 TCODE tCNSnow, "CNS now" | |
419 TCODE tCNSeod, "CNS final" | |
420 TCODE tnoBOgas, "-B/O-Gas-" | |
421 TCODE tMicroBubbles, "M.Bubbles" | |
422 TCODE tCNS, "CNS: " | |
423 TCODE tgaschange, "Change?" ; better gas found | |
424 TCODE tNeed, "Need " ; gas need (5 chars) | |
425 TCODE tBattery, "Battery" ; Battery | |
623 | 426 |
427 IFDEF _helium | |
428 TCODE tHe, "He" ; He | |
429 TCODE tIBCD, "IBCD N2He" ; IBCD warning | |
628 | 430 TCODE tGasDensity, "G.Density" ; Gas Density |
623 | 431 ENDIF |
432 | |
604 | 433 IFDEF _rx_functions |
434 TCODE tTransmitter, "Pres XMTR" ; pressure transmitter | |
435 TCODE tPressure, "Tank Pres" ; tank pressure | |
436 TCODE tSAC, "SAC" ; SAC, must be 3 chars! | |
437 TCODE tswap, "Swap Tank" ; swap tank (max. 9 chars) | |
438 ENDIF | |
623 | 439 |
440 IFDEF _ccr_pscr | |
441 IFDEF _external_sensor | |
442 TCODE tDiveHudMask1, "Sensor 1" | |
443 TCODE tDiveHudMask2, "Sensor 2" | |
444 TCODE tDiveHudMask3, "Sensor 3" | |
445 TCODE tSensorDisagree, "Sensors<>" ; Sensors disagree Warning | |
446 ENDIF | |
447 ENDIF | |
448 | |
604 | 449 IFDEF _cave_mode |
450 TCODE tGasNeedsCaveMode, "Gas Needs Cave Mode" ; title for gas needs custom view | |
451 TCODE tDiveTurned, "Dv.turned" ; dive is turned (max. 9 char) | |
452 TCODE tCaveMode, "Cave Mode" ; cave mode activated (max. 9 char) | |
453 TCODE tCaveModeShutdown, "X-Cave-X" ; cave mode shut down (max. 9 char) | |
454 ENDIF | |
455 | |
0 | 456 |
457 ; Divemode menu | |
628 | 458 TCODE tDivePreMenu, "Menu?" ; Menu? (max. 5 chars) |
459 TCODE tDiveLayout, "Layout" ; Layout (max. 6 chars) | |
623 | 460 IFDEF _compass |
628 | 461 TCODE tSetHeading, "Course" ; Course (max. 6 chars) |
623 | 462 ENDIF |
463 | |
0 | 464 |
465 ; Simulator menu | |
623 | 466 TCODE tQuitSim, "Quit" ; Quit Simulation (max. 6 chars) |
467 TCODE tResetAvg, "Reset" ; Reset Timer (max. 6 chars) | |
468 | |
0 | 469 |
470 ; Logbook | |
604 | 471 TCODE tCNS2, "CNS:" |
472 TCODE tAVG, "Avg:" | |
473 TCODE tGF, "GF:" | |
623 | 474 TCODE tSAT, "Sat:" ; 4 chars max |
475 | |
0 | 476 |
477 ; Logbook units | |
604 | 478 TCODE tLogTunitC, "°C" |
479 TCODE tLogTunitF, "°F" | |
480 TCODE tKGL, "kg/l" | |
481 TCODE tMBAR, "hPa" | |
0 | 482 |
623 | 483 |
0 | 484 ; Logbook menu |
604 | 485 TCODE tNextLog, "Next Page" |
0 | 486 |
623 | 487 |
0 | 488 ; Reset menu |
604 | 489 TCODE tReboot, "Reboot" ; Reboot |
490 TCODE tResetMenu2, "Are you sure?" ; Are you sure? | |
491 TCODE tAbort, "Abort" ; Abort | |
492 TCODE tResetSettings, "Reset Settings" ; Reset Settings | |
493 TCODE tResetDeco, "Reset Deco" ; Reset Deco | |
494 TCODE tResetBattery, "Reset Battery" ; Reset Battery | |
495 TCODE tResetLogbook, "Reset Logbook" ; Reset Logbook | |
0 | 496 |
623 | 497 |
0 | 498 ; Set Time Menu/Set Date Menu |
623 | 499 TCODE tSetHours, "Set Hours" ; Set Hours |
500 TCODE tSetMinutes, "Set Minutes" ; Set Minutes | |
501 TCODE tSetSeconds, "clear Seconds" ; clear Seconds | |
604 | 502 TCODE tSetDay, "Set Day" ; Set Day |
503 TCODE tSetMonth, "Set Month" ; Set Month | |
504 TCODE tSetYear, "Set Year" ; Set Year | |
0 | 505 |
623 | 506 |
0 | 507 ; Logbook Offset Menu |
604 | 508 TCODE tLogOffset, "Logbook Offset" ; Logbook offset |
623 | 509 TCODE tLogOffsetValue, "Offset : " ; Offset |
510 TCODE tLogOffStepSize, "Step Size: " ; Step Size | |
511 TCODE tLogOffsetplus, "+" ; increment | |
512 TCODE tLogOffsetminus, "-" ; decrement | |
513 TCODE tLogOffStep1, " 1" ; 0 adjustment step size 1 | ENUM group | |
514 TCODE tLogOffStep10, " 10" ; 1 adjustment step size 10 | | |
515 TCODE tLogOffStep100, " 100" ; 3 adjustment step size 100 | | |
516 TCODE tLogOffStep1000, "1000" ; 4 adjustment step size 1000 | | |
517 | |
23
e402813343b6
new option to switch samplingrate between 10s and 2s
heinrichsweikamp
parents:
18
diff
changeset
|
518 |
604 | 519 ; Compass Directions |
520 TCODE tN, "N " ; N(orth), 338°- 22° | |
521 TCODE tNE, "NE" ; North-East, 23°- 67° | |
522 TCODE tE, "E " ; E(east), 68°-112° | |
523 TCODE tSE, "SE" ; South-East, 113°-157° | |
524 TCODE tS, "S " ; S(outh), 158°-202° | |
525 TCODE tSW, "SW" ; South-West, 203°-247° | |
526 TCODE tW, "W " ; W(West), 248°-292° | |
527 TCODE tNW, "NW" ; North-West, 293°-337° | |
29
50c3e2c7ba7a
adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents:
23
diff
changeset
|
528 |
623 | 529 |
50 | 530 ; Color Scheme menu |
604 | 531 TCODE tColorScheme, "Colour Scheme" ; Colour Scheme |
532 TCODE tColorSetDive, "Divemode:" ; Divemode: | |
533 TCODE tColorSetName0, "Standard" ; Standard | |
534 TCODE tColorSetName1, "Red" ; Red | |
535 TCODE tColorSetName2, "Green" ; Green | |
536 TCODE tColorSetName3, "Blue" ; Blue | |
537 | |
623 | 538 |
604 | 539 ; Language selection |
540 IF _language_2!=none | |
541 TCODE tLanguage, "Language: " ; used in menu_tree | |
542 ENDIF | |
543 | |
544 IF _language_1==en | |
545 TCODE tLang1, "English" ; tLang1 is 1st language, enum context | |
546 ELSE | |
547 IF _language_1==de | |
548 TCODE tLang1, "German" | |
549 ELSE | |
550 IF _language_1==fr | |
551 TCODE tLang1, "French" | |
552 ELSE | |
553 IF _language_1==it | |
554 TCODE tLang1, "Italian" | |
555 ELSE | |
556 TCODE tLang1, "" ; dummy target for options table | |
557 ENDIF | |
558 ENDIF | |
559 ENDIF | |
560 ENDIF | |
561 | |
562 IF _language_2==en | |
563 TCODE tLang2, "English" ; tLang2 is 2nd language, enum context | |
564 ELSE | |
565 IF _language_2==de | |
566 TCODE tLang2, "German" | |
567 ELSE | |
568 IF _language_2==fr | |
569 TCODE tLang2, "French" | |
570 ELSE | |
571 IF _language_2==it | |
572 TCODE tLang2, "Italian" | |
573 ENDIF | |
574 ENDIF | |
575 ENDIF | |
576 ENDIF |