annotate src/text_english.inc @ 603:00b24fb4324d

second method to detect a full charge
author heinrichsweikamp
date Thu, 11 Oct 2018 21:06:29 +0200
parents cb59872ad53d
children ca4556fb60b9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
heinrichsweikamp
parents:
diff changeset
1 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
2 ;
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
3 ; File text_english.asm REFACTORED VERSION V2.95
0
heinrichsweikamp
parents:
diff changeset
4 ;
heinrichsweikamp
parents:
diff changeset
5 ; English texts reference file.
heinrichsweikamp
parents:
diff changeset
6 ;
heinrichsweikamp
parents:
diff changeset
7 ; Copyright (c) 2011, JD Gascuel, HeinrichsWeikamp, all right reserved.
heinrichsweikamp
parents:
diff changeset
8 ;=============================================================================
heinrichsweikamp
parents:
diff changeset
9
heinrichsweikamp
parents:
diff changeset
10 ; Basic texts
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
11 TCODE tNo, "No" ; No
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
12 TCODE tYes, "Yes" ; Yes = No + 1
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
13 TCODE tblank, " " ; (a single space character) ## NEW (layout)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
14
0
heinrichsweikamp
parents:
diff changeset
15 ; Surface-mode texts
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
16 TCODE tBeta, "beta" ; beta
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
17 TCODE tMenu, "<Menu" ; <Menu
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
18 TCODE tView, "View>" ; View>
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
19 TCODE tHeading, "Heading:" ; Heading:
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
20 TCODE tLastDive, "Last Dive" ; Last Dive (Max 10 chars)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
21 TCODE tSensorMilliVolt, "CCR Sensors mV" ; CCR Sensors mV
0
heinrichsweikamp
parents:
diff changeset
22
heinrichsweikamp
parents:
diff changeset
23 ; Divemode Menu
heinrichsweikamp
parents:
diff changeset
24 TCODE tDivemenu_Gaslist, "Gaslist" ; Gaslist
437
23b58c4bc6aa CHANGE: Language fixes, 2.08 release
heinrichsweikamp
parents: 428
diff changeset
25 TCODE tDivemenu_ResetAvg, "Reset Avg." ; Reset Avg.
0
heinrichsweikamp
parents:
diff changeset
26 TCODE tDivemenu_Setpoint, "Setpoint" ; Setpoint
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
27 TCODE tDivemenu_UseSensor,"use Sensor" ; Use Sensor
0
heinrichsweikamp
parents:
diff changeset
28 TCODE tDivemenu_ToggleGF, "Toggle GF" ; Toggle GF
401
7be43d886bb1 Logbook marker can be set in dive mode menu (OC only)
heinrichsweikamp
parents: 383
diff changeset
29 TCODE tDivemenu_Marker, "Set Marker" ; Set Marker
403
6e60012bb3fc NEW: "Lost Gas" feature allows disabling gases during the dive
heinrichsweikamp
parents: 401
diff changeset
30 TCODE tDivemenu_LostGas, "Lost Gas" ; Lost Gas
0
heinrichsweikamp
parents:
diff changeset
31
heinrichsweikamp
parents:
diff changeset
32 ; Main menu
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
33 TCODE tNext, "<Next" ; <Next
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
34 TCODE tEnter, "Enter>" ; Enter>
0
heinrichsweikamp
parents:
diff changeset
35
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
36 TCODE tMainMenu, "Main Menu" ; MainMenu
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
37 TCODE tLogbook, "Logbook" ; Logbook
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
38 TCODE tGasSetup, "OC Gas Setup" ; OC Gas Setup
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
39 TCODE tSetTime, "Set Time" ; Set Time
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
40 TCODE tSetDate, "Set Date" ; Set Date
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
41 TCODE tSetTimeDate, "Set Time & Date" ; Set Time & Date
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
42 TCODE tDispSets, "Display Settings" ; Display Settings
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
43 TCODE tExit, "Exit" ; Exit
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
44 TCODE tResetMenu, "Reset Menu" ; Reset Menu
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
45 TCODE tDiveModeMenu, "Deco Setup" ; Deco Setup ## MODIFIED (consistent naming)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
46 TCODE tInfoMenu, "Information" ; Information
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
47 TCODE tCCRSetup, "CCR/pSCR Setup" ; CCR/pSCR Setup ## MODIFIED (consistent naming)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
48 TCODE tDiluentSetup, "Diluent Setup" ; Diluent Setup
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
49 TCODE tFixedSetpoints,"CCR Setpoints" ; Fixed Setpoints for CCR ## MODIFIED (consistent naming)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
50 TCODE tCCRSensor, "Sensor" ; CCR/pSCR Sensor ## MODIFIED (consistent naming)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
51 TCODE tCalibrateMenu, "Calibration" ; Calibration
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
52 TCODE tCalibrationGas,"Cal. Gas O2:" ; Cal. Gas O2:
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
53 TCODE tCalibrate, "Calibrate" ; Calibrate
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
54 TCODE tBack, "back..." ; ## NEW
0
heinrichsweikamp
parents:
diff changeset
55
heinrichsweikamp
parents:
diff changeset
56 ; Gas menu
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
57 TCODE tGaslist, "OC Gas List"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
58 TCODE tGaslistCC, "CC Diluents"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
59 TCODE tGasEdit, "Edit Gas"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
60 TCODE tType, "Type: "
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
61 TCODE tGasDisabled, "Disabled" ; Disabled
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
62 TCODE tGasFirst, "First" ; First
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
63 TCODE tGasTravel, "Travel" ; Travel
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
64 TCODE tGasDeco, "Deco" ; Deco
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
65 TCODE tDilDisabled, "Disabled" ; Disabled
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
66 TCODE tDilFirst, "First" ; First
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
67 TCODE tDilNorm, "Normal" ; Normal
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
68 TCODE tAir, "Air " ; Enum: values must follow (5 chars)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
69 TCODE tO2, "O2 " ; tAir + 5
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
70 TCODE tO2Plus, "O2 +"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
71 TCODE tO2Minus, "O2 -"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
72 TCODE tHePlus, "He +"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
73 TCODE tHeMinus, "He -"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
74 TCODE tMOD, "MOD:"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
75 TCODE tEAD, "EAD:"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
76 TCODE tGasDepth, "Change depth"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
77 TCODE tDepthPlus, "Depth +"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
78 TCODE tDepthMinus, "Depth -"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
79 TCODE tDepthReset, "Reset to MOD:"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
80 TCODE tSetup_mix, "Setup Mix"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
81 TCODE tCCRMode, "Mode:" ; Mode: ## MODIFIED (layout)
579
e6d5a1f02daf Work-Around for 2.97 stable
heinrichsweikamp
parents: 560
diff changeset
82 TCODE tCCRModeFixedSP,"Fixed SP" ; Fixed for CCR / Calc.for pSCR ## MODIFIED (layout)
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
83 TCODE tCCRModeSensor, "Sensor" ; Sensor
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
84 TCODE tCCRModeAutoSP, "Auto SP" ; Auto SP
0
heinrichsweikamp
parents:
diff changeset
85 TCODE tSP, "SP" ; SP (SetPoint)
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
86 TCODE tSPPlus, "ppO2+" ; pO2+
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
87 TCODE tSensorFallback,"Fallback:" ; Fallback:
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
88 TCODE tCalculated, "calculated" ; calculated
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
89 TCODE tppO2, "ppO2:" ; ppO2:
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
90 TCODE tppO2O2, "ppO2(O2)" ; ppO2(O2)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
91 TCODE tppO2Dil, "ppO2(Dil)" ; ppO2(Dil)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
92 TCODE tppO2Mix, "ppO2(Mix)" ; ppO2(Mix)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
93
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
94 ; New batteries menu
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
95 TCODE tNewBattTitle, "New Battery?"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
96 TCODE tNewBattOld, "Keep old"
600
cb59872ad53d fix typo
heinrichsweikamp
parents: 599
diff changeset
97 TCODE tNewBattNew36, "New 3.6V Saft (T1)"
cb59872ad53d fix typo
heinrichsweikamp
parents: 599
diff changeset
98 TCODE tNewBattNew15, "New 1.5V AA (T0)"
599
8087295a518b Identify battery type in menu
heinrichsweikamp
parents: 587
diff changeset
99 TCODE tNewBattAccu, "3.6V LiIon AA (T2)"
8087295a518b Identify battery type in menu
heinrichsweikamp
parents: 587
diff changeset
100 TCODE tNew18650, "Internal 18650 (T3)"
8087295a518b Identify battery type in menu
heinrichsweikamp
parents: 587
diff changeset
101 TCODE tNew16650, "Internal 16650 (T4)"
448
aadfe9f2edaf work on new battery options
heinrichsweikamp
parents: 437
diff changeset
102
0
heinrichsweikamp
parents:
diff changeset
103 ; Gaslist management
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
104 TCODE tGas, "Gas" ; Gas
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
105 TCODE tGasErr, "Err" ; Err (3 chars)
0
heinrichsweikamp
parents:
diff changeset
106
heinrichsweikamp
parents:
diff changeset
107 ; Communication Menu
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
108 TCODE tUsbTitle, "USB Mode"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
109 TCODE tBleTitle, "Bluetooth Mode"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
110 TCODE tUsbStarting, "Starting..."
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
111 TCODE tUsbStartDone, "Done."
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
112 TCODE tUsbServiceMode,"Service mode enabled"
0
heinrichsweikamp
parents:
diff changeset
113 TCODE tUsbClosed, "Port closed"
heinrichsweikamp
parents:
diff changeset
114 TCODE tUsbExit, "Exited"
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
115 TCODE tUsbDownloadMode,"Download mode enabled"
0
heinrichsweikamp
parents:
diff changeset
116 TCODE tUsbLlBld, "Low-level Bootloader"
heinrichsweikamp
parents:
diff changeset
117
heinrichsweikamp
parents:
diff changeset
118 ; Dive Settings
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
119 TCODE tDvMode, "Dive Mode:"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
120 TCODE tDvOC, "OC" ; keep order, enum from here...
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
121 TCODE tDvCCR, "CCR"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
122 TCODE tDvGauge, "Gauge"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
123 TCODE tDvApnea, "Apnea"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
124 TCODE tDvPSCR, "pSCR" ; ...up to here!
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
125 TCODE tDvCC, "CC"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
126 TCODE tDkMode, "Decotype:ZH-L16" ; ## MODIFIED (memory needs)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
127 TCODE tZHL16, " " ; keep order, enum from here... ## MODIFIED (memory needs)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
128 TCODE tZHL16GF, "+GF" ; ...up to here! ## MODIFIED (memory needs)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
129 TCODE tPPO2Max, "Max :" ; ## MODIFIED (layout)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
130 TCODE tPPO2DECO, "Max Deco:" ; ## MODIFIED (layout)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
131 TCODE tPPO2MIN, "Min :" ; ## MODIFIED (layout)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
132 TCODE tPPO2MINCC, "Min Loop:" ; ## NEW ppO2 min cc
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
133 TCODE tLastDecostop, "Last Deco:"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
134 TCODE tDecoparameters,"Deco Parameters"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
135 TCODE tGF_low, "GF low :" ; ## MODIFIED (layout)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
136 TCODE tGF_high, "GF high:"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
137 TCODE tSaturationMult, "Saturation :" ; ## MODIFIED (layout)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
138 TCODE tDesaturationMult,"Desaturation:"
582
b455b31ce022 work on 2.97 stable
heinrichsweikamp
parents: 579
diff changeset
139 TCODE tFTTSMenu, "fTTS/fB/O:" ; Future TTS / Ascent Delay ## MODIFIED (layout)
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
140 TCODE taGFMenu, "Alternative GF" ; Alternative GF
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
141 TCODE taGF_low, "aGF low :" ; aGF low ## MODIFIED (layout)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
142 TCODE taGF_high, "aGF high:" ; aGF high
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
143 TCODE taGF_enable, "aGF selectable:" ; aGF Selectable
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
144 TCODE tDiveaGF_active,"aGF!" ; aGF!
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
145 TCODE tppO2settings, "ppO2 Settings" ; ppO2 Settings
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
146 TCODE tsafetystopmenu,"Safety Stop:" ; Safety Stop:
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
147 TCODE tGasUsage, "Gas Usage" ; Gas Usage
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
148 TCODE tSetBotUse, "Bottom Gas: " ; Bottom Gas: (space)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
149 TCODE tSetDecoUse, "Deco Gas: " ; Deco Gas: (space) ## MODIFIED (layout)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
150 TCODE tCalcAscGas, "Calc.Gas (B/O):" ; ## NEW bailout gas needs
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
151 TCODE tTankSizes, "Tank Sizes" ; ## NEW bailout gas needs
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
152 TCODE tLiter, " l" ; ## NEW bailout gas needs
587
e81cf407261a V2.97 SP1
heinrichsweikamp
parents: 582
diff changeset
153 TCODE tBarLiter, "Liter"
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
154 TCODE tTankFillPress, "Tank Press Budget";
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
155 TCODE tGas1, "Gas 1:" ; ## NEW bailout gas needs
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
156 TCODE tGas2, "Gas 2:" ; ## NEW bailout gas needs
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
157 TCODE tGas3, "Gas 3:" ; ## NEW bailout gas needs
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
158 TCODE tGas4, "Gas 4:" ; ## NEW bailout gas needs
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
159 TCODE tGas5, "Gas 5:" ; ## NEW bailout gas needs
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
160 TCODE tCCmaxFracO2, "Loop %O2 max.:" ; ## NEW CCR max ppO2 limiter
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
161 TCODE t2ndDecoPlanMenu,"2nd Deco Plan" ; ## NEW deco engine
0
heinrichsweikamp
parents:
diff changeset
162
heinrichsweikamp
parents:
diff changeset
163 ; Display Settings
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
164 TCODE tBright, "Brightness:"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
165 TCODE tEco, "Eco"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
166 TCODE tMedium, "Medium"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
167 TCODE tHigh, "High"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
168 TCODE tDvSalinity, "Salinity: " ; Salinity ## MODIFIED (layout)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
169 TCODE tShowppO2, "Always show ppO2:" ; Always show ppO2:
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
170 TCODE tFlip, "Rotate Screen:" ; Rotate Screen
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
171 TCODE tMODwarning, "MOD Warning :" ; MOD warning ## MODIFIED (layout)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
172 TCODE tIBCDwarning, "IBCD Warning :" ; IBCD Warning ## NEW IBCD
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
173 TCODE tTimeoutDive, "Dive Timeout:" ; Dive Timeout ## MODIFIED (layout)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
174
326
d21b172d5a7a VSIbar #4: VSI settings submenu, graph option, logbook offset and compass calib. menu exit fix
Janos Kovacs <kovjanos@gmail.com>
parents: 310
diff changeset
175 ; VSI display Settings
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
176 TCODE tVSItext2, "Variable Speed:" ; Variable speed: ## MODIFIED (layout)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
177 TCODE tVSIgraph, "Speed Graph:" ; Speed graph: ## MODIFIED (layout)
0
heinrichsweikamp
parents:
diff changeset
178
heinrichsweikamp
parents:
diff changeset
179 ; Setup Menu
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
180 TCODE tSystSets, "Settings"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
181 TCODE tLanguage, "Language:"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
182 TCODE tEnglish, "English"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
183 TCODE tGerman, "German"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
184 TCODE tFrench, "French"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
185 TCODE tItalian, "Italian"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
186 TCODE tCompassMenu, "Compass calibration"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
187 TCODE tCompassGain, "Compass Gain:"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
188 TCODE tCalX, "Cal X:" ; Cal X
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
189 TCODE tCalY, "Cal Y:" ; Cal Y
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
190 TCODE tCalZ, "Cal Z:" ; Cal Z
0
heinrichsweikamp
parents:
diff changeset
191
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
192 TCODE tUnits, "Units:"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
193 TCODE tMetric, " m/°C" ; Enum menu
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
194 TCODE tImperial, "ft/°F"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
195
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
196 TCODE tDefName, "HW OSTC"
0
heinrichsweikamp
parents:
diff changeset
197
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
198 TCODE tButtonleft, "Left button:" ; Left button
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
199 TCODE tButtonright, "Right button:" ; Right button
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
200
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
201 TCODE tAltMode, "Waiting Time:" ; ## NEW no fly altitude
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
202 TCODE tAltModeFly, "Flying" ; ## NEW no fly altitude
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
203 TCODE tAltMode1000, "1000m" ; ## NEW no fly altitude
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
204 TCODE tAltMode2000, "2000m" ; ## NEW no fly altitude
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
205 TCODE tAltMode3000, "3000m" ; ## NEW no fly altitude
220
effd7259f5a5 make button sensitivity configurable (cR hardware)
heinrichsweikamp
parents: 216
diff changeset
206
0
heinrichsweikamp
parents:
diff changeset
207 ; Units for all menu
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
208 TCODE tMeters, "m"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
209 TCODE tFeets, "ft"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
210 TCODE tFeets1, "f"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
211 TCODE tMinutes, "'"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
212 TCODE tPercent, "%"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
213 TCODE tLitersMinute, "l/min"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
214 TCODE tbar, " bar" ; bar ## MODIFIED (layout)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
215 TCODE tbar10, "0 bar" ; bar ## NEW 2.95
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
216 TCODE tMeterMinute, "m/min" ; meter per minute ## ascent speed
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
217 TCODE tmin, "min" ; minutes
0
heinrichsweikamp
parents:
diff changeset
218
heinrichsweikamp
parents:
diff changeset
219 ; Date
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
220 TCODE tDateFormat, "Date:"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
221 TCODE tDateformat, "MMDDYY"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
222 TCODE tDateformat1, "DDMMYY"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
223 TCODE tDateformat2, "YYMMDD"
0
heinrichsweikamp
parents:
diff changeset
224
heinrichsweikamp
parents:
diff changeset
225 ; Simulator menu
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
226 TCODE tInter, "Start Simulator" ; Start Simulator
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
227 TCODE tPlan, "Simulator" ; Simulator
0
heinrichsweikamp
parents:
diff changeset
228
heinrichsweikamp
parents:
diff changeset
229 ; Decoplanner submenu
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
230 TCODE tBtTm, "Bot.Time : " ; Bot. Time: (10 chars) ## MODIFIED (layout)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
231 TCODE tBtTm_short, "Time:" ; Bot. Time: (max. 6 chars)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
232 TCODE tBtDep, "Bot.Depth: " ; Max Depth: (10 chars) ## MODIFIED (layout)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
233 TCODE tIntvl, "Interval : " ; Interval : (10 chars)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
234 TCODE tDecoSetup, "Calculator Setup" ; ## NEW (layout)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
235 TCODE tDeco, "Start Calculator" ; Calculate Deco ## MODIFIED (layout)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
236 TCODE tDivePlan, "Dive Plan:" ; Dive Plan:
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
237 TCODE tNoDeco, "No Deco" ; No Deco
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
238 TCODE tMore, "More..." ; More...
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
239 TCODE tSelectSetpoint,"CCR Setpoint: " ; ## NEW deco calculator enhancement
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
240 TCODE tuseAGF, "use aGF: " ; ## NEW deco calculator enhancement
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
241 TCODE tCalculating, "Calculating..." ; ## NEW deco calculator enhancement
0
heinrichsweikamp
parents:
diff changeset
242
heinrichsweikamp
parents:
diff changeset
243 ; Information menu
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
244 TCODE tFirmware, "Firmware: " ; Firmware: (space)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
245 TCODE tSerial, "Serial : " ; Serial : (space)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
246 TCODE tTotalDives, "Total Dives: " ; Total Dives:
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
247 TCODE tBatteryV, "Battery : " ; Battery: ## MODIFIED ## info - added one space
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
248 TCODE tUptime, "Uptime : " ; Uptime: ## MODIFIED ## info - added two spaces
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
249
0
heinrichsweikamp
parents:
diff changeset
250 ; Divemode screen
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
251 TCODE tNDL, "NDL"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
252 TCODE tTTS, "TTS"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
253 TCODE tVelMetric, "m/min"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
254 TCODE tVelImperial, "ft/m "
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
255 TCODE tGasSelect, "Select Gas" ; Select Gas
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
256 TCODE tSelectAir, "Air " ; Air
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
257 TCODE tSelectO2, "O2 " ; O2
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
258 TCODE tSelectNx, "Nx" ; Nx
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
259 TCODE tSelectTx, "Tx" ; Tx
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
260 TCODE tDepth, "Depth" ; Depth
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
261 TCODE tMaxDepth, "Max. Depth" ; Max. Depth - max 10chars!
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
262 TCODE tDivetime, "Divetime" ; Divetime
0
heinrichsweikamp
parents:
diff changeset
263 TCODE tDiveHudMask1, "Sensor 1"
heinrichsweikamp
parents:
diff changeset
264 TCODE tDiveHudMask2, "Sensor 2"
heinrichsweikamp
parents:
diff changeset
265 TCODE tDiveHudMask3, "Sensor 3"
437
23b58c4bc6aa CHANGE: Language fixes, 2.08 release
heinrichsweikamp
parents: 428
diff changeset
266 TCODE tDiveTotalAvg, "Total Avg"
0
heinrichsweikamp
parents:
diff changeset
267 TCODE tDiveStopwatch, "Stopwatch"
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
268 TCODE tDiveStopAvg, "Stopped Avg" ; 11chars max
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
269 TCODE tApnoeTotal, " Total" ; Total (Six chars, right alligned)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
270 TCODE tApnoeMax, "Last Descent" ; Last descent
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
271 TCODE tApnoeSurface, "Surface Time" ; Surface Time
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
272 TCODE tDiveDecoplan, "Decoplan" ; Decoplan
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
273 TCODE tDiveClock, "Clock" ; Clock
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
274 TCODE tDiveEAD_END, "EAD/END" ; EAD/END
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
275 TCODE tDiveTissues, "Tissues" ; Tissues
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
276 TCODE tEND, "END:" ; END:
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
277 TCODE tHe, "He" ; He
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
278 TCODE tN2, "N2" ; N2
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
279 TCODE tDiveBailout, "Bailout" ; Bailout
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
280 TCODE tGFactors, "GF Values" ; GF Values
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
281 TCODE taGFactors, "aGF Values" ; aGF Values
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
282 TCODE tGFInfo, "Current GF" ; GF Info
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
283 TCODE tCeiling, "Ceiling" ; Ceiling
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
284 TCODE tDiveSafetyStop,"Stop" ; Stop (Four chars, right alligned)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
285 TCODE tDiveFallback, "Fallback!" ; Fallback! (max. nine chars)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
286 TCODE tDecoInfo, "Deco Zone" ; Deco info
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
287 TCODE tSensorCheck, "Sensor Check" ; Sensor Check
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
288 TCODE tdil, "Dil:" ; Diluent ppO2 Warning
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
289 TCODE tmix, "Mix:" ; Pre-Mix ppO2 Warning
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
290 TCODE tSensorDisagree,"Sensors<>" ; Sensors disagree Warning ## NEW voting logic
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
291 TCODE tGasNeedsWarn, "Gas Needs" ; ## NEW bailout gas needs
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
292 TCODE tGasNeedsBar, "Gas Needs (bar)" ; ## NEW bailout gas needs
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
293 TCODE tCNSsurf, "CNS Surf." ; ## NEW CNS at end-of-dive
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
294 TCODE tCNSfTTS, "CNS fTTS" ; ## NEW CNS at end-of-dive
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
295 TCODE tCNSBO, "CNS B/O" ; ## NEW CNS at end-of-dive
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
296 TCODE tCNSnow, "CNS now" ; ## NEW CNS at end-of-dive
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
297 TCODE tCNSeod, "CNS final" ; ## NEW CNS at end-of-dive
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
298 TCODE tIBCD, "IBCD N2He" ; ## NEW IBCD
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
299 TCODE tMicroBubbles, "M.Bubbles" ; ## NEW microbubbles
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
300 TCODE tCNS, "CNS: " ; ## V2.95 optics
0
heinrichsweikamp
parents:
diff changeset
301
heinrichsweikamp
parents:
diff changeset
302 ; Divemode menu
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
303 TCODE tDivePreMenu, "Menu?" ; Menu?
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
304 TCODE tSetHeading, "Bearing" ; Bearing (Max. seven chars)
0
heinrichsweikamp
parents:
diff changeset
305
heinrichsweikamp
parents:
diff changeset
306 ; Simulator menu
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
307 TCODE tQuitSim, "Quit?" ; Quit Simulation?
0
heinrichsweikamp
parents:
diff changeset
308
heinrichsweikamp
parents:
diff changeset
309 ; Logbook
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
310 TCODE tCNS2, "CNS:"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
311 TCODE tAVG, "Avg:"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
312 TCODE tGF, "GF:"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
313 TCODE tSAT, "Sat:" ; Sat:
0
heinrichsweikamp
parents:
diff changeset
314
heinrichsweikamp
parents:
diff changeset
315 ; Logbook units
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
316 TCODE tLogTunitC, "°C"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
317 TCODE tLogTunitF, "°F"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
318 TCODE tKGL, "kg/l"
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
319 TCODE tMBAR, "mbar"
0
heinrichsweikamp
parents:
diff changeset
320
heinrichsweikamp
parents:
diff changeset
321 ; Logbook menu
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
322 TCODE tNextLog, "Next Page"
0
heinrichsweikamp
parents:
diff changeset
323
heinrichsweikamp
parents:
diff changeset
324 ; Reset menu
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
325 TCODE tReboot, "Reboot" ; Reboot
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
326 TCODE tResetMenu2, "Are you sure?" ; Are you sure?
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
327 TCODE tAbort, "Abort" ; Abort
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
328 TCODE tResetSettings, "Reset all" ; Reset all
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
329 TCODE tResetDeco, "Reset Deco" ; Reset Deco
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
330 TCODE tResetBattery, "Reset Battery" ; Reset Battery
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
331 TCODE tResetLogbook, "Reset Logbook" ; Reset Logbook
0
heinrichsweikamp
parents:
diff changeset
332
heinrichsweikamp
parents:
diff changeset
333 ; Set Time Menu/Set Date Menu
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
334 TCODE tSetHours, "Set Hours" ; Set Hours
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
335 TCODE tSetMinutes, "Set Minutes" ; Set Minutes
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
336 TCODE tSetSeconds, "Clear Seconds" ; Clear seconds
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
337 TCODE tSetDay, "Set Day" ; Set Day
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
338 TCODE tSetMonth, "Set Month" ; Set Month
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
339 TCODE tSetYear, "Set Year" ; Set Year
0
heinrichsweikamp
parents:
diff changeset
340
heinrichsweikamp
parents:
diff changeset
341 ; Logbook Offset Menu
heinrichsweikamp
parents:
diff changeset
342 TCODE tLogOffset, "Logbook offset" ; Logbook offset
heinrichsweikamp
parents:
diff changeset
343 TCODE tLogOffsetp1, "+1" ; +1
heinrichsweikamp
parents:
diff changeset
344 TCODE tLogOffsetp10, "+10" ; +10
heinrichsweikamp
parents:
diff changeset
345 TCODE tLogOffsetm1, "-1" ; -1
heinrichsweikamp
parents:
diff changeset
346 TCODE tLogOffsetm10, "-10" ; -10
23
e402813343b6 new option to switch samplingrate between 10s and 2s
heinrichsweikamp
parents: 18
diff changeset
347
29
50c3e2c7ba7a adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents: 23
diff changeset
348 ; Compass directions
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
349 TCODE tN, "N " ; N(orth), 338°- 22°
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
350 TCODE tNE, "NE" ; North-East, 23°- 67°
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
351 TCODE tE, "E " ; E(east), 68°-112°
29
50c3e2c7ba7a adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents: 23
diff changeset
352 TCODE tSE, "SE" ; South-East,113°-157°
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
353 TCODE tS, "S " ; S(outh), 158°-202°
29
50c3e2c7ba7a adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents: 23
diff changeset
354 TCODE tSW, "SW" ; South-West,203°-247°
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
355 TCODE tW, "W " ; W(West), 248°-292°
29
50c3e2c7ba7a adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents: 23
diff changeset
356 TCODE tNW, "NW" ; North-West,293°-337°
50c3e2c7ba7a adding cardinal (and ordinal) directions for the compass
heinrichsweikamp
parents: 23
diff changeset
357
50
ec4d8503ec45 NEW: user-selectable color schemes
heinrichsweikamp
parents: 38
diff changeset
358 ; Color Scheme menu
52
0fae975af741 english correction
heinrichsweikamp
parents: 51
diff changeset
359 TCODE tColorScheme, "Colour scheme" ; Colour scheme
51
e66c94471935 language updates
heinrichsweikamp
parents: 50
diff changeset
360 TCODE tColorSetDive, "Divemode:" ; Divemode:
e66c94471935 language updates
heinrichsweikamp
parents: 50
diff changeset
361 TCODE tColorSetName0, "Standard" ; Standard
e66c94471935 language updates
heinrichsweikamp
parents: 50
diff changeset
362 TCODE tColorSetName1, "Red" ; Red
e66c94471935 language updates
heinrichsweikamp
parents: 50
diff changeset
363 TCODE tColorSetName2, "Green" ; Green
e66c94471935 language updates
heinrichsweikamp
parents: 50
diff changeset
364 TCODE tColorSetName3, "Blue" ; Blue
480
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 474
diff changeset
365
ad8acade5567 NEW: PSCR mode (Passive semi-closed rebreather)
heinrichsweikamp
parents: 474
diff changeset
366 ; PSCR Menu and Settings
560
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
367 TCODE tPSCRMenu, "pSCR Setup" ; PSCR Menu ## MODIFIED (consistient naming)
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
368 TCODE tPSCR_O2_drop, "O2 drop:" ; O2 drop
b7eb98dbd800 bump to 2.96beta (REFACTORED VERSION)
heinrichsweikamp
parents: 544
diff changeset
369 TCODE tPSCR_lungratio,"Lung ratio:" ; lung ratio