Mercurial > public > ostc4
annotate Discovery/Src/text_multilanguage.c @ 1050:88b6ab90c55a GasConsumption
Added separate LLC view for surface GF:
A new LLC view has been added. In addition the surface GF is now clipped to a value of 9.99 => 999% in the visualization
| author | Ideenmodellierer |
|---|---|
| date | Wed, 19 Nov 2025 21:34:18 +0100 |
| parents | 5b913cdaa9dc |
| children |
| rev | line source |
|---|---|
|
552
531e7818b737
Added menu structure to acces viewport calibration:
Ideenmodellierer
parents:
547
diff
changeset
|
1 /// -*- coding: UTF-8 -*- |
| 38 | 2 /// |
| 3 /// \file Discovery/Src/text_multilanguage.c | |
| 4 /// \brief Date file of TXT Multilanguage Support | |
| 5 /// \author heinrichs weikamp gmbh | |
| 6 /// \date 20-April-2014 | |
| 7 /// | |
| 8 /// \details | |
| 9 /// All displayed texts, in ENglish, DEutch, FRench, ITalian and ESpagnol. | |
| 10 /// When a translation is left empty, the English one is used instead. | |
| 11 /// Those texts are expanded from one-byte or two-bytes special code. | |
| 12 /// | |
| 13 /// $Id$ | |
| 14 /////////////////////////////////////////////////////////////////////////////// | |
| 15 /// \par Copyright (c) 2014-2018 Heinrichs Weikamp gmbh | |
| 16 /// | |
| 17 /// This program is free software: you can redistribute it and/or modify | |
| 18 /// it under the terms of the GNU General Public License as published by | |
| 19 /// the Free Software Foundation, either version 3 of the License, or | |
| 20 /// (at your option) any later version. | |
| 21 /// | |
| 22 /// This program is distributed in the hope that it will be useful, | |
| 23 /// but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 24 /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 25 /// GNU General Public License for more details. | |
| 26 /// | |
| 27 /// You should have received a copy of the GNU General Public License | |
| 28 /// along with this program. If not, see <http://www.gnu.org/licenses/>. | |
| 29 ////////////////////////////////////////////////////////////////////////////// | |
| 30 | |
| 31 /* Includes ------------------------------------------------------------------*/ | |
| 32 | |
| 33 #include <stdint.h> | |
| 34 #include "text_multilanguage.h" | |
|
493
b560e474e319
Added possibility to switch between "classic" bigfont views and a selection with a new information combination
Ideenmodellierer
parents:
424
diff
changeset
|
35 #include "configuration.h" |
| 38 | 36 |
| 37 /* Text ----------------------------------------------------------------------*/ | |
| 38 | |
| 39 // Menu | |
| 40 static uint8_t text_EN_Language[] = "Language"; | |
| 41 static uint8_t text_DE_Language[] = "Sprache"; | |
| 42 static uint8_t text_FR_Language[] = "Langue"; | |
| 43 static uint8_t text_IT_Language[] = "Lingua"; | |
| 80 | 44 static uint8_t text_ES_Language[] = "Idioma"; |
| 38 | 45 |
| 46 // Menu | |
| 47 static uint8_t text_EN_LanguageName[] = "English"; | |
| 48 static uint8_t text_DE_LanguageName[] = "Deutsch"; | |
| 49 static uint8_t text_FR_LanguageName[] = "Français"; | |
| 50 static uint8_t text_IT_LanguageName[] = "Italiano"; | |
| 80 | 51 static uint8_t text_ES_LanguageName[] = "Spanish"; |
| 38 | 52 |
| 53 // dive mode | |
| 54 static uint8_t text_EN_Depth[] = "Depth"; | |
| 55 static uint8_t text_DE_Depth[] = "Tiefe"; | |
| 56 static uint8_t text_FR_Depth[] = "Profondeur"; | |
| 66 | 57 static uint8_t text_IT_Depth[] = "Profondita"; |
| 80 | 58 static uint8_t text_ES_Depth[] = "Profundidad"; |
| 38 | 59 |
| 60 // dive mode | |
| 61 static uint8_t text_EN_Divetime[] = "Divetime"; | |
| 62 static uint8_t text_DE_Divetime[] = "Tauchzeit"; | |
| 63 static uint8_t text_FR_Divetime[] = "Durée"; | |
| 56 | 64 static uint8_t text_IT_Divetime[] = "Tempo"; |
| 80 | 65 static uint8_t text_ES_Divetime[] = "Tiempo"; |
| 38 | 66 |
| 67 // dive mode | |
|
286
733877ab87d9
Minor: Some Texts fixed, allign RTErequired* values with RTE firmware
heinrichsweikamp
parents:
247
diff
changeset
|
68 static uint8_t text_EN_MaxDepth[] = "Max. depth"; |
|
733877ab87d9
Minor: Some Texts fixed, allign RTErequired* values with RTE firmware
heinrichsweikamp
parents:
247
diff
changeset
|
69 static uint8_t text_DE_MaxDepth[] = "Max. Tiefe"; |
| 38 | 70 static uint8_t text_FR_MaxDepth[] = "Prof. max"; // Profondeur |
| 56 | 71 static uint8_t text_IT_MaxDepth[] = "Prof. max"; |
| 80 | 72 static uint8_t text_ES_MaxDepth[] = "Prof. max"; |
| 38 | 73 |
| 74 // dive mode | |
|
286
733877ab87d9
Minor: Some Texts fixed, allign RTErequired* values with RTE firmware
heinrichsweikamp
parents:
247
diff
changeset
|
75 static uint8_t text_EN_AvgDepth[] = "Avg. depth"; |
| 38 | 76 static uint8_t text_DE_AvgDepth[] = "(/) Tiefe"; |
| 56 | 77 static uint8_t text_FR_AvgDepth[] = "Prof. moy"; |
| 78 static uint8_t text_IT_AvgDepth[] = "Prof. media"; | |
| 80 | 79 static uint8_t text_ES_AvgDepth[] = "Prof. media"; |
| 38 | 80 |
| 81 // dive mode | |
| 82 static uint8_t text_EN_Decostop[] = "Decostop"; | |
| 83 static uint8_t text_DE_Decostop[] = "Dekostopp"; | |
| 84 static uint8_t text_FR_Decostop[] = "Palier"; // Déco | |
| 56 | 85 static uint8_t text_IT_Decostop[] = "Decostop"; |
| 80 | 86 static uint8_t text_ES_Decostop[] = "Parada Deco"; |
| 38 | 87 |
| 88 // dive mode | |
| 89 static uint8_t text_EN_Nullzeit[] = "NDL"; | |
| 90 static uint8_t text_DE_Nullzeit[] = "Nullzeit"; | |
| 56 | 91 static uint8_t text_FR_Nullzeit[] = "No Déco"; // Sans palier |
| 38 | 92 static uint8_t text_IT_Nullzeit[] = "No Deco"; |
| 80 | 93 static uint8_t text_ES_Nullzeit[] = "No Deco"; |
| 38 | 94 |
| 95 // dive mode | |
| 96 static uint8_t text_EN_ppO2[] = "ppO2"; | |
| 59 | 97 static uint8_t text_DE_ppO2[] = "ppO2"; |
| 56 | 98 static uint8_t text_FR_ppO2[] = "ppO2"; |
| 99 static uint8_t text_IT_ppO2[] = "ppO2"; | |
| 80 | 100 static uint8_t text_ES_ppO2[] = "ppO2"; |
| 38 | 101 |
| 102 // dive mode | |
| 103 static uint8_t text_EN_TTS[] = "TTS"; | |
| 59 | 104 static uint8_t text_DE_TTS[] = "TTS"; |
| 38 | 105 static uint8_t text_FR_TTS[] = "DTR"; |
| 106 static uint8_t text_IT_TTS[] = "TTS"; | |
| 80 | 107 static uint8_t text_ES_TTS[] = "TTS"; |
| 38 | 108 |
| 109 // dive mode | |
| 110 static uint8_t text_EN_CNSshort[] = "CNS"; | |
| 59 | 111 static uint8_t text_DE_CNSshort[] = "ZNS"; |
| 38 | 112 static uint8_t text_FR_CNSshort[] = "SNC"; |
| 113 static uint8_t text_IT_CNSshort[] = "CNS"; | |
| 80 | 114 static uint8_t text_ES_CNSshort[] = "CNS"; |
| 38 | 115 |
| 116 // dive mode | |
| 117 static uint8_t text_EN_Temperature[] = "Temp."; | |
| 118 static uint8_t text_DE_Temperature[] = "Temperatur"; | |
| 968 | 119 static uint8_t text_FR_Temperature[] = "Temp."; // Température (Does not fit) |
| 56 | 120 static uint8_t text_IT_Temperature[] = "Temp."; |
| 80 | 121 static uint8_t text_ES_Temperature[] = "Temp."; |
| 38 | 122 |
| 123 // dive mode | |
| 124 static uint8_t text_EN_FutureTTS[] = "FutureTTS"; | |
| 59 | 125 static uint8_t text_DE_FutureTTS[] = "FutureTTS"; |
| 38 | 126 static uint8_t text_FR_FutureTTS[] = "FutureDTR"; |
| 127 static uint8_t text_IT_FutureTTS[] = "TTS Futuro"; | |
| 80 | 128 static uint8_t text_ES_FutureTTS[] = "TTS Futuro"; |
| 38 | 129 |
| 130 // Menu (as small text) | |
| 56 | 131 static uint8_t text_EN_Minutes[] = "Minutes"; |
| 38 | 132 static uint8_t text_DE_Minutes[] = "Minuten"; |
| 56 | 133 static uint8_t text_FR_Minutes[] = "Minutes"; |
| 38 | 134 static uint8_t text_IT_Minutes[] = "Minuti"; |
| 80 | 135 static uint8_t text_ES_Minutes[] = "Minutos"; |
| 38 | 136 |
| 137 // Menu SYS2 sub (as small text in custom views) | |
| 138 static uint8_t text_EN_Seconds[] = "Seconds"; | |
| 139 static uint8_t text_DE_Seconds[] = "Sekunden"; | |
| 140 static uint8_t text_FR_Seconds[] = "Secondes"; | |
| 141 static uint8_t text_IT_Seconds[] = "Secondi"; | |
| 80 | 142 static uint8_t text_ES_Seconds[] = "Segundos"; |
| 38 | 143 |
| 144 // Menu OC sub and Menu CC sub | |
| 145 static uint8_t text_EN_Gas[] = "Gas"; | |
| 59 | 146 static uint8_t text_DE_Gas[] = "Gas"; |
| 38 | 147 static uint8_t text_FR_Gas[] = "Gaz"; |
| 148 static uint8_t text_IT_Gas[] = "Gas"; | |
| 80 | 149 static uint8_t text_ES_Gas[] = "Gas"; |
| 38 | 150 |
| 151 // dive mode | |
| 152 static uint8_t text_EN_Ceiling[] = "Ceiling"; | |
| 59 | 153 static uint8_t text_DE_Ceiling[] = "Ceiling"; |
| 38 | 154 static uint8_t text_FR_Ceiling[] = "Plafond"; |
| 155 static uint8_t text_IT_Ceiling[] = "Ceiling"; | |
| 80 | 156 static uint8_t text_ES_Ceiling[] = "Techo"; |
| 38 | 157 |
| 158 // dive mode | |
|
247
3949781096d4
feature: Relative GF to Saturation renames
Jan Mulder <jlmulder@xs4all.nl>
parents:
225
diff
changeset
|
159 static uint8_t text_EN_ActualGradient[] = "Saturation"; |
|
286
733877ab87d9
Minor: Some Texts fixed, allign RTErequired* values with RTE firmware
heinrichsweikamp
parents:
247
diff
changeset
|
160 static uint8_t text_DE_ActualGradient[] = "Sättigung"; |
| 968 | 161 static uint8_t text_FR_ActualGradient[] = "Saturation"; |
| 162 static uint8_t text_IT_ActualGradient[] = "Saturazione"; | |
| 163 static uint8_t text_ES_ActualGradient[] = "Saturación"; | |
| 38 | 164 |
| 165 // dive mode | |
| 166 static uint8_t text_EN_Stopwatch[] = "Stopwatch"; | |
| 167 static uint8_t text_DE_Stopwatch[] = "Stoppuhr"; | |
| 168 static uint8_t text_FR_Stopwatch[] = "Chrono"; | |
| 169 static uint8_t text_IT_Stopwatch[] = "Stop Cronometro"; | |
| 80 | 170 static uint8_t text_ES_Stopwatch[] = "Parar Cronómetro"; |
| 38 | 171 |
| 172 // Menu SYS1 sub | |
| 173 static uint8_t text_EN_CompassCalib[] = "Calibrate compass"; | |
| 174 static uint8_t text_DE_CompassCalib[] = "Kompass kalibrieren"; | |
| 175 static uint8_t text_FR_CompassCalib[] = "Calibration boussole"; | |
| 176 static uint8_t text_IT_CompassCalib[] = "Calibrazione bussola"; | |
| 968 | 177 static uint8_t text_ES_CompassCalib[] = "Calibrar brujula"; |
| 38 | 178 |
| 1050 | 179 static uint8_t text_EN_GFSurf[] = "GF Surface"; |
| 180 static uint8_t text_DE_GFSurf[] = ""; | |
| 181 static uint8_t text_FR_GFSurf[] = ""; | |
| 182 static uint8_t text_IT_GFSurf[] = ""; | |
| 183 static uint8_t text_ES_GFSurf[] = ""; | |
| 184 | |
|
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
526
diff
changeset
|
185 static uint8_t text_EN_CompassInertia[] = "Compass inertia level"; |
|
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
526
diff
changeset
|
186 static uint8_t text_DE_CompassInertia[] = "Kompass Trägheitsfaktor"; |
| 968 | 187 static uint8_t text_FR_CompassInertia[] = "Facteur d'inertie"; |
| 188 static uint8_t text_IT_CompassInertia[] = "Inerzia della bussola"; | |
| 189 static uint8_t text_ES_CompassInertia[] = "inercia de la brujula"; | |
|
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
526
diff
changeset
|
190 |
| 968 | 191 static uint8_t text_EN_CompassDeclination[] = "Declination"; |
| 192 static uint8_t text_DE_CompassDeclination[] = "Deklination"; | |
|
776
45b8f3c2acce
Add support for a configurable compass declination in a range of -99 to 99 degrees.
heinrichsweikamp
parents:
775
diff
changeset
|
193 static uint8_t text_FR_CompassDeclination[] = "Déclinaison"; |
|
45b8f3c2acce
Add support for a configurable compass declination in a range of -99 to 99 degrees.
heinrichsweikamp
parents:
775
diff
changeset
|
194 static uint8_t text_IT_CompassDeclination[] = "Ddeclinazione"; |
|
45b8f3c2acce
Add support for a configurable compass declination in a range of -99 to 99 degrees.
heinrichsweikamp
parents:
775
diff
changeset
|
195 static uint8_t text_ES_CompassDeclination[] = "Declinación"; |
|
45b8f3c2acce
Add support for a configurable compass declination in a range of -99 to 99 degrees.
heinrichsweikamp
parents:
775
diff
changeset
|
196 |
|
834
2a8af51ab04d
Added event based display changes for big font view:
Ideenmodellierer
parents:
829
diff
changeset
|
197 static uint8_t text_EN_Autofocus[] = "Autofocus"; |
|
2a8af51ab04d
Added event based display changes for big font view:
Ideenmodellierer
parents:
829
diff
changeset
|
198 static uint8_t text_DE_Autofocus[] = "Automatik"; |
| 968 | 199 static uint8_t text_FR_Autofocus[] = "Automatique"; |
| 200 static uint8_t text_IT_Autofocus[] = "Automatico"; | |
| 201 static uint8_t text_ES_Autofocus[] = "Automático"; | |
|
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
526
diff
changeset
|
202 |
| 38 | 203 // Menu SYS1 and Customview header |
| 204 static uint8_t text_EN_Compass[] = "Compass"; | |
| 205 static uint8_t text_DE_Compass[] = "Kompass"; | |
| 206 static uint8_t text_FR_Compass[] = "Boussole"; | |
| 207 static uint8_t text_IT_Compass[] = "Bussola"; | |
| 968 | 208 static uint8_t text_ES_Compass[] = "Brujula"; |
| 38 | 209 |
| 210 // Menu SYS1 | |
|
958
902cb199eee6
Changed menu name O2 Sensors to External Sensors:
Ideenmodellierer
parents:
951
diff
changeset
|
211 static uint8_t text_EN_o2Sensors[] = "External sensors"; |
|
902cb199eee6
Changed menu name O2 Sensors to External Sensors:
Ideenmodellierer
parents:
951
diff
changeset
|
212 static uint8_t text_DE_o2Sensors[] = "Externe Sensoren"; |
| 968 | 213 static uint8_t text_FR_o2Sensors[] = "Capteurs externes"; |
|
958
902cb199eee6
Changed menu name O2 Sensors to External Sensors:
Ideenmodellierer
parents:
951
diff
changeset
|
214 static uint8_t text_IT_o2Sensors[] = "Sensori esterni"; |
|
902cb199eee6
Changed menu name O2 Sensors to External Sensors:
Ideenmodellierer
parents:
951
diff
changeset
|
215 static uint8_t text_ES_o2Sensors[] = "Sensores externos"; |
| 38 | 216 |
| 217 // Menu SYS1 | |
| 218 static uint8_t text_EN_Brightness[] = "Brightness"; | |
| 65 | 219 static uint8_t text_DE_Brightness[] = "Display-Helligkeit"; |
| 38 | 220 static uint8_t text_FR_Brightness[] = "Luminosité"; |
|
55
a7683f9765da
Italian activated (needs some fine tuning), special characters (?,?,?,?,? and others) currently not working...
heinrichsweikamp
parents:
38
diff
changeset
|
221 static uint8_t text_IT_Brightness[] = "Luminosite"; |
| 80 | 222 static uint8_t text_ES_Brightness[] = "Brillo"; |
| 38 | 223 |
| 224 // Menu SYS1 | |
| 225 static uint8_t text_EN_Cave[] = "Cave"; | |
| 56 | 226 static uint8_t text_DE_Cave[] = "Höhle"; |
| 227 static uint8_t text_FR_Cave[] = "Grotte"; | |
| 38 | 228 static uint8_t text_IT_Cave[] = "Grotta"; |
| 80 | 229 static uint8_t text_ES_Cave[] = "Cueva"; |
| 38 | 230 |
| 231 // Menu SYS1 | |
| 232 static uint8_t text_EN_Eco[] = "Eco"; | |
| 56 | 233 static uint8_t text_DE_Eco[] = "Eco"; |
| 234 static uint8_t text_FR_Eco[] = "Eco"; | |
| 235 static uint8_t text_IT_Eco[] = "Eco"; | |
| 80 | 236 static uint8_t text_ES_Eco[] = "Eco"; |
| 38 | 237 |
| 238 // Menu SYS1 | |
| 239 static uint8_t text_EN_Normal[] = "Medium"; | |
| 240 static uint8_t text_DE_Normal[] = "Standard"; | |
| 241 static uint8_t text_FR_Normal[] = "Moyenne"; | |
| 242 static uint8_t text_IT_Normal[] = "Medio"; | |
| 80 | 243 static uint8_t text_ES_Normal[] = "Medio"; |
| 38 | 244 |
| 245 // Menu SYS1 | |
| 246 static uint8_t text_EN_Bright[] = "High"; | |
| 247 static uint8_t text_DE_Bright[] = "Hoch"; | |
| 248 static uint8_t text_FR_Bright[] = "Haute"; | |
| 249 static uint8_t text_IT_Bright[] = "Alto"; | |
| 80 | 250 static uint8_t text_ES_Bright[] = "Alto"; |
| 38 | 251 |
| 252 // Menu SYS1 | |
| 56 | 253 static uint8_t text_EN_Ultrabright[] = "Max"; |
| 38 | 254 static uint8_t text_DE_Ultrabright[] = "Max"; |
| 56 | 255 static uint8_t text_FR_Ultrabright[] = "Max"; |
| 38 | 256 static uint8_t text_IT_Ultrabright[] = "Max"; |
| 80 | 257 static uint8_t text_ES_Ultrabright[] = "Max"; |
| 38 | 258 |
| 259 // Menu OC (Header) | |
| 65 | 260 static uint8_t text_EN_OC_Gas_Edit[] = "Open circuit"; |
| 261 static uint8_t text_DE_OC_Gas_Edit[] = "Open circuit"; | |
| 38 | 262 static uint8_t text_FR_OC_Gas_Edit[] = "Circuit ouvert"; |
| 56 | 263 static uint8_t text_IT_OC_Gas_Edit[] = "Circuito aperto"; |
| 80 | 264 static uint8_t text_ES_OC_Gas_Edit[] = "Circuito Abierto"; |
| 38 | 265 |
| 266 // Menu CC (Header) | |
| 267 static uint8_t text_EN_Diluent_Gas_Edit[] = "Diluent"; | |
| 59 | 268 static uint8_t text_DE_Diluent_Gas_Edit[] = "Diluent"; |
| 38 | 269 static uint8_t text_FR_Diluent_Gas_Edit[] = "Diluant"; |
| 270 static uint8_t text_IT_Diluent_Gas_Edit[] = "Diluente"; | |
| 80 | 271 static uint8_t text_ES_Diluent_Gas_Edit[] = "Diluyente"; |
| 38 | 272 |
| 273 // Menu Gas | |
| 274 static uint8_t text_EN_Mix[] = "Mix"; | |
| 59 | 275 static uint8_t text_DE_Mix[] = "Mix"; |
| 38 | 276 static uint8_t text_FR_Mix[] = "Gaz"; // Or Mélange |
| 65 | 277 static uint8_t text_IT_Mix[] = "Gas mix"; |
| 80 | 278 static uint8_t text_ES_Mix[] = "Mezcla"; |
| 38 | 279 |
| 280 // Menu Gas | |
| 281 static uint8_t text_EN_Active[] = "Active"; | |
| 282 static uint8_t text_DE_Active[] = "Aktiv"; | |
| 283 static uint8_t text_FR_Active[] = "Activé"; | |
| 284 static uint8_t text_IT_Active[] = "Attivo"; | |
| 80 | 285 static uint8_t text_ES_Active[] = "Activo"; |
| 38 | 286 |
| 287 // Menu Gas | |
| 288 static uint8_t text_EN_First[] = "First"; | |
| 289 static uint8_t text_DE_First[] = "Start"; | |
| 290 static uint8_t text_FR_First[] = "Premier"; | |
| 291 static uint8_t text_IT_First[] = "Primo"; | |
| 80 | 292 static uint8_t text_ES_First[] = "Inicial"; |
| 38 | 293 |
| 294 // Menu Gas | |
| 295 static uint8_t text_EN_Deco[] = "Deco"; | |
| 296 static uint8_t text_DE_Deco[] = "Deko"; | |
| 297 static uint8_t text_FR_Deco[] = "Déco"; | |
| 298 static uint8_t text_IT_Deco[] = "Deco"; | |
| 80 | 299 static uint8_t text_ES_Deco[] = "Deco"; |
| 38 | 300 |
| 301 // Menu Gas | |
|
974
53900dfe335b
Rename "Travel" to "Work" gas as in the older/smaller OSTC (again)
heinrichsweikamp
parents:
969
diff
changeset
|
302 static uint8_t text_EN_Travel[] = "Work"; |
|
53900dfe335b
Rename "Travel" to "Work" gas as in the older/smaller OSTC (again)
heinrichsweikamp
parents:
969
diff
changeset
|
303 static uint8_t text_DE_Travel[] = "Arbeit"; |
|
53900dfe335b
Rename "Travel" to "Work" gas as in the older/smaller OSTC (again)
heinrichsweikamp
parents:
969
diff
changeset
|
304 static uint8_t text_FR_Travel[] = "Travail"; |
|
53900dfe335b
Rename "Travel" to "Work" gas as in the older/smaller OSTC (again)
heinrichsweikamp
parents:
969
diff
changeset
|
305 static uint8_t text_IT_Travel[] = "Lavaro"; |
|
53900dfe335b
Rename "Travel" to "Work" gas as in the older/smaller OSTC (again)
heinrichsweikamp
parents:
969
diff
changeset
|
306 static uint8_t text_ES_Travel[] = "Labor"; |
| 38 | 307 |
| 308 // Menu Gas | |
| 309 static uint8_t text_EN_Inactive[] = "Inactive"; | |
| 310 static uint8_t text_DE_Inactive[] = "Deaktiviert"; | |
| 311 static uint8_t text_FR_Inactive[] = "Desactivé"; | |
| 312 static uint8_t text_IT_Inactive[] = "Disattivato"; | |
| 80 | 313 static uint8_t text_ES_Inactive[] = "Inactivo"; |
| 38 | 314 |
| 315 // Menu Gas | |
|
526
88c626d01ee5
Added new option to gas configuration: "Off":
Ideenmodellierer
parents:
523
diff
changeset
|
316 static uint8_t text_EN_Off[] = "Off"; |
|
88c626d01ee5
Added new option to gas configuration: "Off":
Ideenmodellierer
parents:
523
diff
changeset
|
317 static uint8_t text_DE_Off[] = "Ausblenden"; |
| 968 | 318 static uint8_t text_FR_Off[] = "Masquer"; |
| 319 static uint8_t text_IT_Off[] = "Nascondere"; | |
| 320 static uint8_t text_ES_Off[] = "Ocultar"; | |
|
526
88c626d01ee5
Added new option to gas configuration: "Off":
Ideenmodellierer
parents:
523
diff
changeset
|
321 |
|
88c626d01ee5
Added new option to gas configuration: "Off":
Ideenmodellierer
parents:
523
diff
changeset
|
322 // Menu Gas |
| 65 | 323 static uint8_t text_EN_ChangeDepth[] = "Change depth"; |
| 38 | 324 static uint8_t text_DE_ChangeDepth[] = "Wechseltiefe"; |
| 59 | 325 static uint8_t text_FR_ChangeDepth[] = "Prof.Changmt"; |
| 38 | 326 static uint8_t text_IT_ChangeDepth[] = "Cambio Prof."; |
| 80 | 327 static uint8_t text_ES_ChangeDepth[] = "Prof. cambio"; |
| 38 | 328 |
| 329 // Menu Gas | |
| 330 static uint8_t text_EN_Type[] = "Type"; | |
| 331 static uint8_t text_DE_Type[] = "Typ"; | |
| 59 | 332 static uint8_t text_FR_Type[] = "Type"; |
| 38 | 333 static uint8_t text_IT_Type[] = "Tipo"; |
| 80 | 334 static uint8_t text_ES_Type[] = "Tipo"; |
| 38 | 335 |
| 336 // Menu SP (Part of Header) | |
| 337 static uint8_t text_EN_Setpoint_Edit[] = "Setup"; | |
| 338 static uint8_t text_DE_Setpoint_Edit[] = "Einstellung"; | |
| 339 static uint8_t text_FR_Setpoint_Edit[] = "Configuration"; | |
| 340 static uint8_t text_IT_Setpoint_Edit[] = "Configurazione"; | |
| 80 | 341 static uint8_t text_ES_Setpoint_Edit[] = "Configuración"; |
| 38 | 342 |
| 343 // Menu SYS1 (O2 Sensors) | |
| 344 static uint8_t text_EN_Fallback[] = "Fallback"; | |
| 59 | 345 static uint8_t text_DE_Fallback[] = "Fallback"; |
| 346 static uint8_t text_FR_Fallback[] = "Fallback"; | |
| 56 | 347 static uint8_t text_IT_Fallback[] = "Fallback"; |
| 80 | 348 static uint8_t text_ES_Fallback[] = "Fallback"; |
| 38 | 349 |
| 350 // Menu DECO2 | |
| 351 static uint8_t text_EN_Algorithm[] = "Algorithm"; | |
| 352 static uint8_t text_DE_Algorithm[] = "Rechenmodell"; | |
| 59 | 353 static uint8_t text_FR_Algorithm[] = "Algorithm"; |
| 38 | 354 static uint8_t text_IT_Algorithm[] = "Algoritmo"; |
| 80 | 355 static uint8_t text_ES_Algorithm[] = "Algoritmo"; |
| 38 | 356 |
| 357 // Menu DECO1 | |
| 358 static uint8_t text_EN_SafetyStop[] = "Safety stop"; | |
| 359 static uint8_t text_DE_SafetyStop[] = "Sicherheitsstop"; | |
| 360 static uint8_t text_FR_SafetyStop[] = "Palier sécurité"; | |
| 56 | 361 static uint8_t text_IT_SafetyStop[] = "Sicurezza"; |
| 968 | 362 static uint8_t text_ES_SafetyStop[] = "Parada segurid."; |
| 38 | 363 |
| 364 // Menu DECO1 (CCR mode only) | |
| 365 static uint8_t text_EN_CCRmode[] = "CCR mode"; | |
| 65 | 366 static uint8_t text_DE_CCRmode[] = "CCR-Modus"; |
| 38 | 367 static uint8_t text_FR_CCRmode[] = "Mode CCR"; |
| 368 static uint8_t text_IT_CCRmode[] = "CCR mode"; | |
| 80 | 369 static uint8_t text_ES_CCRmode[] = "Modo CCR"; |
| 38 | 370 |
| 371 // Menu DECO1 (CCR mode only) | |
| 372 static uint8_t text_EN_Sensor[] = "Sensor"; | |
| 59 | 373 static uint8_t text_DE_Sensor[] = "Sensor"; |
| 38 | 374 static uint8_t text_FR_Sensor[] = "Cellule"; |
| 375 static uint8_t text_IT_Sensor[] = "Sensore"; | |
| 80 | 376 static uint8_t text_ES_Sensor[] = "Sensor"; |
| 38 | 377 |
| 378 // Menu DECO1 (CCR mode only) | |
| 379 static uint8_t text_EN_FixedSP[] = "Fixed SP"; | |
| 380 static uint8_t text_DE_FixedSP[] = "Fester SP"; | |
| 56 | 381 static uint8_t text_FR_FixedSP[] = "SP fixe"; |
| 382 static uint8_t text_IT_FixedSP[] = "Setpoint fisso"; | |
| 80 | 383 static uint8_t text_ES_FixedSP[] = "SP fijo"; |
| 38 | 384 |
| 385 // Menu DECO2 (VPM and Buehlmann Sub Menu) | |
| 56 | 386 static uint8_t text_EN_Decoparameters[] = "Deco parameters"; |
| 65 | 387 static uint8_t text_DE_Decoparameters[] = "Deko-Parameter"; |
| 38 | 388 static uint8_t text_FR_Decoparameters[] = "Paramètres déco"; |
| 56 | 389 static uint8_t text_IT_Decoparameters[] = "Parametri deco"; |
| 80 | 390 static uint8_t text_ES_Decoparameters[] = "Parámetros deco"; |
| 38 | 391 |
| 392 // Menu DECO2 | |
| 65 | 393 static uint8_t text_EN_LastDecostop[] = "Last deco"; |
| 56 | 394 static uint8_t text_DE_LastDecostop[] = "Letzter Stopp"; |
| 38 | 395 static uint8_t text_FR_LastDecostop[] = "Dern. palier"; |
| 56 | 396 static uint8_t text_IT_LastDecostop[] = "Ultima deco"; |
| 968 | 397 static uint8_t text_ES_LastDecostop[] = "Ultima parada"; |
| 38 | 398 |
| 399 // Menu DECO2 and Dive Menu | |
| 400 static uint8_t text_EN_ZHL16GF[] = "ZH-L16+GF"; | |
| 59 | 401 static uint8_t text_DE_ZHL16GF[] = "ZH-L16+GF"; |
| 402 static uint8_t text_FR_ZHL16GF[] = "ZH-L16+GF"; | |
| 403 static uint8_t text_IT_ZHL16GF[] = "ZH-L16+GF"; | |
| 80 | 404 static uint8_t text_ES_ZHL16GF[] = "ZH-L16+GF"; |
| 38 | 405 |
| 406 // Menu DECO2 and Dive Menu | |
| 407 static uint8_t text_EN_aGF[] = "aGF"; | |
| 59 | 408 static uint8_t text_DE_aGF[] = "aGF"; |
| 409 static uint8_t text_FR_aGF[] = "aGF"; | |
| 56 | 410 static uint8_t text_IT_aGF[] = "aGF"; |
| 80 | 411 static uint8_t text_ES_aGF[] = "aGF"; |
| 38 | 412 |
| 413 // Menu DECO2 and Dive Menu | |
| 414 static uint8_t text_EN_VPM[] = "VPM"; | |
| 59 | 415 static uint8_t text_DE_VPM[] = "VPM"; |
| 416 static uint8_t text_FR_VPM[] = "VPM"; | |
| 417 static uint8_t text_IT_VPM[] = "VPM"; | |
| 80 | 418 static uint8_t text_ES_VPM[] = "VPM"; |
| 38 | 419 |
| 420 // Dive Menu | |
| 421 static uint8_t text_EN_LowHigh[] = "low high"; | |
| 59 | 422 static uint8_t text_DE_LowHigh[] = "low high"; |
| 38 | 423 static uint8_t text_FR_LowHigh[] = "Bas Haut"; |
| 424 static uint8_t text_IT_LowHigh[] = "Basso Alto"; | |
| 80 | 425 static uint8_t text_ES_LowHigh[] = "Bajo Alto"; |
| 38 | 426 |
| 427 // Menu DECO1 Sub | |
| 65 | 428 static uint8_t text_EN_ppO2Name[] = "Partial pressure oxygen"; |
| 38 | 429 static uint8_t text_DE_ppO2Name[] = "Sauerstoff-Partialdruck"; |
| 430 static uint8_t text_FR_ppO2Name[] = "Pression partl. oxygène"; | |
| 65 | 431 static uint8_t text_IT_ppO2Name[] = "Pressione parziale ossigeno"; |
| 80 | 432 static uint8_t text_ES_ppO2Name[] = "Presión parcial de O2"; |
| 38 | 433 |
| 434 static uint8_t text_EN_Maximum[] = "Maximum"; | |
| 59 | 435 static uint8_t text_DE_Maximum[] = "Maximum"; |
| 436 static uint8_t text_FR_Maximum[] = "Maximum"; | |
| 38 | 437 static uint8_t text_IT_Maximum[] = "Massimo"; |
| 968 | 438 static uint8_t text_ES_Maximum[] = "Máximo"; |
| 38 | 439 |
| 440 static uint8_t text_EN_Minimum[] = "Minimum"; | |
| 59 | 441 static uint8_t text_DE_Minimum[] = "Minimum"; |
| 442 static uint8_t text_FR_Minimum[] = "Minimum"; | |
| 38 | 443 static uint8_t text_IT_Minimum[] = "Minimo"; |
| 968 | 444 static uint8_t text_ES_Minimum[] = "Mínimo"; |
| 38 | 445 |
| 446 static uint8_t text_EN_Salinity[] = "Salinity"; | |
| 447 static uint8_t text_DE_Salinity[] = "Salzgehalt"; | |
| 448 static uint8_t text_FR_Salinity[] = "Salinité"; | |
| 66 | 449 static uint8_t text_IT_Salinity[] = "Salinita"; |
| 80 | 450 static uint8_t text_ES_Salinity[] = "Salinidad"; |
| 38 | 451 |
| 452 // Menu DECO1 | |
| 65 | 453 static uint8_t text_EN_DiveMode[] = "Dive mode"; |
| 38 | 454 static uint8_t text_DE_DiveMode[] = "Tauchmodus"; |
| 65 | 455 static uint8_t text_FR_DiveMode[] = "Mode plongée"; |
| 456 static uint8_t text_IT_DiveMode[] = "Dive mode"; | |
| 80 | 457 static uint8_t text_ES_DiveMode[] = "Modo buceo"; |
| 38 | 458 |
| 459 // Menu DECO1 | |
| 56 | 460 static uint8_t text_EN_OpenCircuit[] = "Open circuit"; |
| 461 static uint8_t text_DE_OpenCircuit[] = "Offener Kreislauf"; | |
| 38 | 462 static uint8_t text_FR_OpenCircuit[] = "Circuit ouvert"; |
| 56 | 463 static uint8_t text_IT_OpenCircuit[] = "Circuito aperto"; |
| 80 | 464 static uint8_t text_ES_OpenCircuit[] = "Circuito abierto"; |
| 38 | 465 |
| 466 // Menu DECO1 | |
| 56 | 467 static uint8_t text_EN_ClosedCircuit[] = "Closed circuit"; |
| 65 | 468 static uint8_t text_DE_ClosedCircuit[] = "Geschlossen/CCR"; |
| 38 | 469 static uint8_t text_FR_ClosedCircuit[] = "Recycleur"; |
| 56 | 470 static uint8_t text_IT_ClosedCircuit[] = "Ciurcuito chiuso"; |
| 80 | 471 static uint8_t text_ES_ClosedCircuit[] = "Circuito cerrado"; |
| 38 | 472 |
| 662 | 473 static uint8_t text_EN_PSClosedCircuit[] = "PSC circuit"; |
| 474 static uint8_t text_DE_PSClosedCircuit[] = "PSC Kreislauf"; | |
| 475 static uint8_t text_FR_PSClosedCircuit[] = "PSC circuit"; | |
| 476 static uint8_t text_IT_PSClosedCircuit[] = "PSC circuit"; | |
| 477 static uint8_t text_ES_PSClosedCircuit[] = "PSC circuit"; | |
| 478 | |
| 845 | 479 static uint8_t text_EN_PreDive[] = "PreDive Check"; |
| 480 static uint8_t text_DE_PreDive[] = ""; | |
| 481 static uint8_t text_FR_PreDive[] = ""; | |
| 482 static uint8_t text_IT_PreDive[] = ""; | |
| 483 static uint8_t text_ES_PreDive[] = ""; | |
| 484 | |
| 672 | 485 static uint8_t text_EN_ChargeHour[] = "Hour(s) till 100%"; |
| 486 static uint8_t text_DE_ChargeHour[] = "Stunde(n) bis 100%"; | |
| 968 | 487 static uint8_t text_FR_ChargeHour[] = "Hour(s) jusqu'à 100"; |
| 488 static uint8_t text_IT_ChargeHour[] = "Ore fino al 100%"; | |
| 489 static uint8_t text_ES_ChargeHour[] = "Hora(s) hasta el 100%"; | |
| 38 | 490 |
| 491 static uint8_t text_EN_Date[] = "Date"; | |
| 492 static uint8_t text_DE_Date[] = "Datum"; | |
| 59 | 493 static uint8_t text_FR_Date[] = "Date"; |
| 38 | 494 static uint8_t text_IT_Date[] = "Data"; |
| 80 | 495 static uint8_t text_ES_Date[] = "Fecha"; |
| 38 | 496 |
| 497 static uint8_t text_EN_Format[] = "Format"; | |
| 498 static uint8_t text_DE_Format[] = "Format"; | |
| 59 | 499 static uint8_t text_FR_Format[] = "Format"; |
| 38 | 500 static uint8_t text_IT_Format[] = "Formato"; |
| 80 | 501 static uint8_t text_ES_Format[] = "Formato"; |
| 38 | 502 |
| 503 // Menu SYS2 sub | |
| 504 static uint8_t text_EN_DateTime[] = "Date and time"; | |
| 505 static uint8_t text_DE_DateTime[] = "Datum und Uhrzeit"; | |
| 506 static uint8_t text_FR_DateTime[] = "Date et heure"; | |
| 507 static uint8_t text_IT_DateTime[] = "Data e ora"; | |
| 80 | 508 static uint8_t text_ES_DateTime[] = "Fecha y hora"; |
| 38 | 509 |
| 510 static uint8_t text_EN_DayMonthYear[] = "Date"; | |
| 511 static uint8_t text_DE_DayMonthYear[] = "Datum"; | |
| 59 | 512 static uint8_t text_FR_DayMonthYear[] = "Date"; |
| 38 | 513 static uint8_t text_IT_DayMonthYear[] = "Data"; |
| 80 | 514 static uint8_t text_ES_DayMonthYear[] = "Fecha"; |
| 38 | 515 |
| 516 static uint8_t text_EN_StundeMinute[] = "Time"; | |
| 517 static uint8_t text_DE_StundeMinute[] = "Uhrzeit"; | |
| 518 static uint8_t text_FR_StundeMinute[] = "Heure"; | |
| 65 | 519 static uint8_t text_IT_StundeMinute[] = "Ora"; |
| 80 | 520 static uint8_t text_ES_StundeMinute[] = "Hora"; |
| 38 | 521 |
| 522 // Logbook | |
| 523 static uint8_t text_EN_Logbook[] = "Logbook"; | |
| 524 static uint8_t text_DE_Logbook[] = "Logbuch"; | |
| 525 static uint8_t text_FR_Logbook[] = "Carnet"; | |
| 526 static uint8_t text_IT_Logbook[] = "Logbook"; | |
| 80 | 527 static uint8_t text_ES_Logbook[] = "Diario"; |
| 38 | 528 |
| 529 // Logbook | |
| 530 static uint8_t text_EN_LogbookEmpty[] = "Logbook empty."; | |
| 531 static uint8_t text_DE_LogbookEmpty[] = "Logbuch leer."; | |
| 532 static uint8_t text_FR_LogbookEmpty[] = "Carnet vide"; | |
| 533 static uint8_t text_IT_LogbookEmpty[] = "Logbook vuoto"; | |
| 80 | 534 static uint8_t text_ES_LogbookEmpty[] = "Diario sin entradas"; |
| 38 | 535 |
| 536 // Menu SIM | |
| 65 | 537 static uint8_t text_EN_Start_Calculation[] = "Start calculation"; |
| 59 | 538 static uint8_t text_DE_Start_Calculation[] = "Berechnung starten"; |
| 38 | 539 static uint8_t text_FR_Start_Calculation[] = "Calculer"; |
| 540 static uint8_t text_IT_Start_Calculation[] = "Calcola"; | |
| 80 | 541 static uint8_t text_ES_Start_Calculation[] = "Calcular"; |
| 38 | 542 |
| 543 // Menu SYS2 | |
| 544 static uint8_t text_EN_Design[] = "Layout"; | |
| 59 | 545 static uint8_t text_DE_Design[] = "Design"; |
| 38 | 546 static uint8_t text_FR_Design[] = "Affichage"; |
| 56 | 547 static uint8_t text_IT_Design[] = "Layout"; |
| 80 | 548 static uint8_t text_ES_Design[] = "Apariencia"; |
| 38 | 549 |
| 550 // Menu SYS2 | |
| 551 static uint8_t text_EN_Farbschema[] = "Color scheme"; | |
| 552 static uint8_t text_DE_Farbschema[] = "Farbschema"; | |
| 65 | 553 static uint8_t text_FR_Farbschema[] = "Jeu de couleurs"; |
| 38 | 554 static uint8_t text_IT_Farbschema[] = "Colore schermo"; |
| 80 | 555 static uint8_t text_ES_Farbschema[] = "Colores"; |
| 38 | 556 |
| 557 // Menu SYS2 | |
| 65 | 558 static uint8_t text_EN_Customviews[] = "Custom views"; |
| 38 | 559 static uint8_t text_DE_Customviews[] = "Variable Anzeigen"; |
| 560 static uint8_t text_FR_Customviews[] = "Affichage personnel";//"Affich. perso."; | |
| 56 | 561 static uint8_t text_IT_Customviews[] = "Personalizza schermo"; |
| 80 | 562 static uint8_t text_ES_Customviews[] = "Vista personalizada"; |
| 38 | 563 |
| 564 // Menu SYS2 sub | |
| 565 static uint8_t text_EN_CViewTimeout[] = "Center auto return after"; | |
| 566 static uint8_t text_DE_CViewTimeout[] = "Mitte automat. zurück"; | |
| 567 static uint8_t text_FR_CViewTimeout[] = "Retour affich. central"; | |
| 56 | 568 static uint8_t text_IT_CViewTimeout[] = "Centro auto ritorno"; |
| 80 | 569 static uint8_t text_ES_CViewTimeout[] = "Campo central auto-retorno"; |
| 38 | 570 |
| 571 // Menu SYS2 sub | |
| 572 static uint8_t text_EN_CViewStandard[] = "Center primary"; | |
| 573 static uint8_t text_DE_CViewStandard[] = "Mitte primär"; | |
| 574 static uint8_t text_FR_CViewStandard[] = "Affichage central"; | |
| 56 | 575 static uint8_t text_IT_CViewStandard[] = "Display centrale"; |
| 80 | 576 static uint8_t text_ES_CViewStandard[] = "Campo central"; |
| 38 | 577 |
| 578 // Menu SYS2 sub | |
| 579 static uint8_t text_EN_CornerTimeout[] = "Field auto return after"; | |
| 580 static uint8_t text_DE_CornerTimeout[] = "Feld automat. zurück"; | |
| 581 static uint8_t text_FR_CornerTimeout[] = "Retour affich. gauche"; // This is the LEFT corner. | |
| 56 | 582 static uint8_t text_IT_CornerTimeout[] = "Campo auto ritorno"; |
| 80 | 583 static uint8_t text_ES_CornerTimeout[] = "Campo Izquierdo auto-retorno"; |
| 38 | 584 |
| 585 // Menu SYS2 sub | |
| 586 static uint8_t text_EN_CornerStandard[] = "Field primary"; | |
| 587 static uint8_t text_DE_CornerStandard[] = "Feld primär"; | |
| 588 static uint8_t text_FR_CornerStandard[] = "Affichage gauche"; | |
| 56 | 589 static uint8_t text_IT_CornerStandard[] = "Campo primario"; |
| 80 | 590 static uint8_t text_ES_CornerStandard[] = "Campo izquierdo inicial"; |
| 38 | 591 |
| 592 // Menu GAS sub | |
| 56 | 593 static uint8_t text_EN_SetToMOD[] = "Set change depth to MOD"; |
| 38 | 594 static uint8_t text_DE_SetToMOD[] = "Setze Wechseltiefe auf MOD"; |
| 66 | 595 static uint8_t text_FR_SetToMOD[] = "Régler prof. chgmt. a PMU"; |
| 596 static uint8_t text_IT_SetToMOD[] = "Cambia profondita MOD"; | |
| 80 | 597 static uint8_t text_ES_SetToMOD[] = "Cambiar profundidad a MOD"; |
| 38 | 598 |
| 599 // Menu SYS2 sub | |
| 600 static uint8_t text_EN_Units[] = "Units"; | |
| 601 static uint8_t text_DE_Units[] = "Einheit"; | |
| 602 static uint8_t text_FR_Units[] = "Unités"; | |
| 66 | 603 static uint8_t text_IT_Units[] = "Unita"; |
| 80 | 604 static uint8_t text_ES_Units[] = "Unidades"; |
| 38 | 605 |
| 606 // Menu SYS2 sub | |
| 56 | 607 static uint8_t text_EN_Design_t7_feet[] = "Feet/Fahrenheit"; |
| 65 | 608 static uint8_t text_DE_Design_t7_feet[] = "Fuss/Fahrenheit"; |
| 56 | 609 static uint8_t text_FR_Design_t7_feet[] = "Pied/Fahrenheit"; |
| 38 | 610 static uint8_t text_IT_Design_t7_feet[] = "Piedi/Fahrenheit"; |
| 80 | 611 static uint8_t text_ES_Design_t7_feet[] = "Pies/Fahrenheit"; |
| 38 | 612 |
| 613 // Menu SYS2 sub | |
| 56 | 614 static uint8_t text_EN_Design_t7_metric[] = "Meter/Celsius"; |
| 615 static uint8_t text_DE_Design_t7_metric[] = "Meter/Celsius"; | |
| 616 static uint8_t text_FR_Design_t7_metric[] = "Mètre/Celsius"; | |
| 617 static uint8_t text_IT_Design_t7_metric[] = "Metro/Celsius"; | |
| 80 | 618 static uint8_t text_ES_Design_t7_metric[] = "Metro/Celsius"; |
| 38 | 619 |
| 620 // Menu SYS2 | |
| 621 static uint8_t text_EN_Information[] = "Information"; | |
| 968 | 622 static uint8_t text_DE_Information[] = "Information"; |
| 623 static uint8_t text_FR_Information[] = "Information"; // Information | |
| 624 static uint8_t text_IT_Information[] = "Informazioni"; | |
| 80 | 625 static uint8_t text_ES_Information[] = "Información"; |
| 38 | 626 |
| 627 // Menu SYS2 | |
| 65 | 628 static uint8_t text_EN_ResetMenu[] = "Reset menu"; |
| 629 static uint8_t text_DE_ResetMenu[] = "Reset-Menü"; | |
| 66 | 630 static uint8_t text_FR_ResetMenu[] = "Menu RaZ"; // RaZ |
| 968 | 631 static uint8_t text_IT_ResetMenu[] = "Menu di reset"; |
| 632 static uint8_t text_ES_ResetMenu[] = "Menu de reinicio"; | |
| 38 | 633 |
| 634 // Menu SYS2 sub | |
| 635 static uint8_t text_EN_LogbookOffset[] = "Logbook offset"; | |
| 56 | 636 static uint8_t text_DE_LogbookOffset[] = "Logbuch-Versatz"; |
| 38 | 637 static uint8_t text_FR_LogbookOffset[] = "Num. 1er plongée"; |
| 59 | 638 static uint8_t text_IT_LogbookOffset[] = "Logbook offset"; |
| 968 | 639 static uint8_t text_ES_LogbookOffset[] = "Logbook offset"; |
| 38 | 640 |
| 641 | |
| 642 // Menu SYS2 sub | |
| 643 static uint8_t text_EN_Maintenance[] = "Maintenance"; | |
| 59 | 644 static uint8_t text_DE_Maintenance[] = "Wartung"; |
| 645 static uint8_t text_FR_Maintenance[] = "Maintenance"; | |
| 38 | 646 static uint8_t text_IT_Maintenance[] = "Manutenzione"; |
| 80 | 647 static uint8_t text_ES_Maintenance[] = "Mantenimiento"; |
| 38 | 648 |
| 649 // Menu SYS2 sub | |
| 650 static uint8_t text_EN_SetBatteryCharge[] = "Restore Battery Charge"; | |
| 59 | 651 static uint8_t text_DE_SetBatteryCharge[] = "Batterie zurücksetzen"; |
| 968 | 652 static uint8_t text_FR_SetBatteryCharge[] = "Réinit. l'état de charge"; |
| 38 | 653 static uint8_t text_IT_SetBatteryCharge[] = "Ricaricare batteria"; |
| 80 | 654 static uint8_t text_ES_SetBatteryCharge[] = "Recalibrar nivel carga"; |
| 38 | 655 |
| 656 // Menu SYS2 sub | |
| 845 | 657 static uint8_t text_EN_AdjustAmbPressure[] = "Adjust pressure"; |
| 658 static uint8_t text_DE_AdjustAmbPressure[] = "Druckanpassung"; | |
| 968 | 659 static uint8_t text_FR_AdjustAmbPressure[] = "Ajuster la pression"; |
| 660 static uint8_t text_IT_AdjustAmbPressure[] = "Regolare pressione"; | |
| 661 static uint8_t text_ES_AdjustAmbPressure[] = "Ajustar la presión"; | |
| 845 | 662 |
| 663 // Menu SYS2 sub | |
| 65 | 664 static uint8_t text_EN_SetFactoryDefaults[] = "Store button factory defaults"; |
| 56 | 665 static uint8_t text_DE_SetFactoryDefaults[] = "Taster zurücksetzen"; |
| 968 | 666 static uint8_t text_FR_SetFactoryDefaults[] = "Réinitialiser le bouton"; |
| 56 | 667 static uint8_t text_IT_SetFactoryDefaults[] = "Impostazioni pulsante"; |
| 80 | 668 static uint8_t text_ES_SetFactoryDefaults[] = "Restablecer ajustes de fábrica"; |
| 38 | 669 |
| 670 // Menu SYS2 sub | |
|
424
2b31cf1ebbcc
Added (optional) menu item to analyse log sample buffer:
ideenmodellierer
parents:
382
diff
changeset
|
671 static uint8_t text_EN_SetSampleIndex[] = "Analyse log memory"; |
|
2b31cf1ebbcc
Added (optional) menu item to analyse log sample buffer:
ideenmodellierer
parents:
382
diff
changeset
|
672 static uint8_t text_DE_SetSampleIndex[] = "Prüfe Logbuchspeicher"; |
| 968 | 673 static uint8_t text_FR_SetSampleIndex[] = "Vérifier carnet"; |
| 674 static uint8_t text_IT_SetSampleIndex[] = "Controllare registro"; | |
| 675 static uint8_t text_ES_SetSampleIndex[] = "Comprobar del diario"; | |
|
424
2b31cf1ebbcc
Added (optional) menu item to analyse log sample buffer:
ideenmodellierer
parents:
382
diff
changeset
|
676 |
|
2b31cf1ebbcc
Added (optional) menu item to analyse log sample buffer:
ideenmodellierer
parents:
382
diff
changeset
|
677 |
|
2b31cf1ebbcc
Added (optional) menu item to analyse log sample buffer:
ideenmodellierer
parents:
382
diff
changeset
|
678 // Menu SYS2 sub |
| 38 | 679 static uint8_t text_EN_Reboot[] = "Reboot"; |
| 680 static uint8_t text_DE_Reboot[] = "Neustart"; | |
| 681 static uint8_t text_FR_Reboot[] = "Redémarrage"; | |
| 682 static uint8_t text_IT_Reboot[] = "Riavvio"; | |
| 80 | 683 static uint8_t text_ES_Reboot[] = "Reiniciar"; |
| 38 | 684 |
| 685 // Menu SYS2 sub | |
| 686 static uint8_t text_EN__RebootRTE[] = "Reboot RTE"; | |
| 687 static uint8_t text_DE__RebootRTE[] = "RTE neu starten"; | |
| 688 static uint8_t text_FR__RebootRTE[] = "Redémarrage RTE"; | |
| 689 static uint8_t text_IT__RebootRTE[] = "Riavvio RTE"; | |
| 80 | 690 static uint8_t text_ES__RebootRTE[] = "Reiniciar RTE"; |
| 38 | 691 |
| 692 // Menu SYS2 sub | |
| 693 static uint8_t text_EN_AreYouSure[] = "Are you sure?"; | |
| 694 static uint8_t text_DE_AreYouSure[] = "Sind Sie sicher?"; | |
| 695 static uint8_t text_FR_AreYouSure[] = "Confirmer?"; | |
| 696 static uint8_t text_IT_AreYouSure[] = "Sei sicuro?"; | |
| 80 | 697 static uint8_t text_ES_AreYouSure[] = "Estás seguro?"; |
| 38 | 698 |
| 699 // Menu SYS2 sub | |
| 700 static uint8_t text_EN_Abort[] = "Abort"; | |
| 701 static uint8_t text_DE_Abort[] = "Abbrechen"; | |
| 702 static uint8_t text_FR_Abort[] = "Quitter"; | |
| 703 static uint8_t text_IT_Abort[] = "Uscita"; | |
| 80 | 704 static uint8_t text_ES_Abort[] = "Cancelar"; |
| 38 | 705 |
| 706 // Menu SYS2 sub | |
| 56 | 707 static uint8_t text_EN_ResetAll[] = "Reset settings"; |
| 38 | 708 static uint8_t text_DE_ResetAll[] = "Einstellung zurücksetzen"; |
| 65 | 709 static uint8_t text_FR_ResetAll[] = "RaZ paramètres"; |
| 56 | 710 static uint8_t text_IT_ResetAll[] = "Ripristina impostazioni"; |
| 80 | 711 static uint8_t text_ES_ResetAll[] = "Restaurar parámetros"; |
| 38 | 712 |
| 713 // Menu SYS2 sub | |
| 65 | 714 static uint8_t text_EN_ResetDeco[] = "Reset deco"; |
| 38 | 715 static uint8_t text_DE_ResetDeco[] = "Deko zurücksetzen"; |
| 65 | 716 static uint8_t text_FR_ResetDeco[] = "RaZ deco"; |
| 56 | 717 static uint8_t text_IT_ResetDeco[] = "Ripristina deco"; |
| 80 | 718 static uint8_t text_ES_ResetDeco[] = "Restaurar Deco"; |
| 38 | 719 |
| 720 // Menu SYS2 sub | |
| 721 static uint8_t text_EN_Exit[] = "Exit"; | |
| 722 static uint8_t text_DE_Exit[] = "Ende"; | |
| 723 static uint8_t text_FR_Exit[] = "Sortir"; | |
| 724 static uint8_t text_IT_Exit[] = "Esci"; | |
| 80 | 725 static uint8_t text_ES_Exit[] = "Salir"; |
| 38 | 726 |
| 727 // Menu SYS2 sub | |
| 65 | 728 static uint8_t text_EN_StartBootloader[] = "Reboot firmware"; |
| 38 | 729 static uint8_t text_DE_StartBootloader[] = "Neustart Firmware"; |
| 730 static uint8_t text_FR_StartBootloader[] = "Redémarrer"; | |
| 56 | 731 static uint8_t text_IT_StartBootloader[] = "Ripristina firmware"; |
| 80 | 732 static uint8_t text_ES_StartBootloader[] = "Reiniciar firmware"; |
| 38 | 733 |
| 734 // Menu SYS2 sub | |
| 56 | 735 static uint8_t text_EN_ResetLogbook[] = "Reset logbook"; |
| 38 | 736 static uint8_t text_DE_ResetLogbook[] = "Logbuch zurücksetzen"; |
| 66 | 737 static uint8_t text_FR_ResetLogbook[] = "RaZ carnet"; // RaZ |
| 56 | 738 static uint8_t text_IT_ResetLogbook[] = "Ripristina logbook"; |
| 80 | 739 static uint8_t text_ES_ResetLogbook[] = "Borrar diario"; |
| 38 | 740 |
| 741 // Surface warning | |
| 742 static uint8_t text_EN_PleaseUpdate[] = "Please update"; | |
| 743 static uint8_t text_DE_PleaseUpdate[] = "Bitte updaten:"; | |
| 66 | 744 static uint8_t text_FR_PleaseUpdate[] = "Mettre a jours svp."; |
| 38 | 745 static uint8_t text_IT_PleaseUpdate[] = "Aggiornamento"; |
| 80 | 746 static uint8_t text_ES_PleaseUpdate[] = "Por favor, actualice"; |
| 38 | 747 |
| 748 // Surface warning | |
| 749 static uint8_t text_EN_RTE[] = "RTE"; | |
| 750 static uint8_t text_DE_RTE[] = ""; | |
| 751 static uint8_t text_FR_RTE[] = ""; | |
| 752 static uint8_t text_IT_RTE[] = "RTE"; | |
| 80 | 753 static uint8_t text_ES_RTE[] = "RTE"; |
| 38 | 754 |
| 755 // Surface warning | |
| 756 static uint8_t text_EN_Fonts[] = "fonts"; // Character fonts!! | |
| 968 | 757 static uint8_t text_DE_Fonts[] = "schrift"; |
| 38 | 758 static uint8_t text_FR_Fonts[] = "polices"; |
| 759 static uint8_t text_IT_Fonts[] = "Carattere"; | |
| 80 | 760 static uint8_t text_ES_Fonts[] = "Tipos de letra"; |
| 38 | 761 |
| 762 // Dive Menu | |
| 763 static uint8_t text_EN_ResetStopwatch[] = "Reset stopwatch"; | |
| 764 static uint8_t text_DE_ResetStopwatch[] = "Stoppuhr zurückstellen"; | |
| 66 | 765 static uint8_t text_FR_ResetStopwatch[] = "RaZ chrono"; // RaZ |
| 38 | 766 static uint8_t text_IT_ResetStopwatch[] = "Riavvia cronometro"; |
| 80 | 767 static uint8_t text_ES_ResetStopwatch[] = "Reiniciar cronómetro"; |
| 38 | 768 |
| 769 // Dive Menu | |
| 770 static uint8_t text_EN_SetMarker[] = "Set marker"; | |
| 771 static uint8_t text_DE_SetMarker[] = "Markierung"; | |
| 772 static uint8_t text_FR_SetMarker[] = "Repère"; | |
| 65 | 773 static uint8_t text_IT_SetMarker[] = "Marcatura"; |
| 80 | 774 static uint8_t text_ES_SetMarker[] = "Poner Marcador"; |
| 38 | 775 |
|
619
8fa2de4414a8
Added t3 quick menu for marker synchronisation:
Ideenmodellierer
parents:
613
diff
changeset
|
776 static uint8_t text_EN_SetMarkerShort[] = "Set mark"; |
|
8fa2de4414a8
Added t3 quick menu for marker synchronisation:
Ideenmodellierer
parents:
613
diff
changeset
|
777 static uint8_t text_DE_SetMarkerShort[] = "Marker"; |
| 613 | 778 static uint8_t text_FR_SetMarkerShort[] = "Repère"; |
| 779 static uint8_t text_IT_SetMarkerShort[] = "Marcatura"; | |
| 780 static uint8_t text_ES_SetMarkerShort[] = "Marcador"; | |
| 781 | |
|
619
8fa2de4414a8
Added t3 quick menu for marker synchronisation:
Ideenmodellierer
parents:
613
diff
changeset
|
782 static uint8_t text_EN_CheckMarker[] = "Check"; |
|
8fa2de4414a8
Added t3 quick menu for marker synchronisation:
Ideenmodellierer
parents:
613
diff
changeset
|
783 static uint8_t text_DE_CheckMarker[] = "Passiert"; |
|
8fa2de4414a8
Added t3 quick menu for marker synchronisation:
Ideenmodellierer
parents:
613
diff
changeset
|
784 static uint8_t text_FR_CheckMarker[] = ""; |
|
8fa2de4414a8
Added t3 quick menu for marker synchronisation:
Ideenmodellierer
parents:
613
diff
changeset
|
785 static uint8_t text_IT_CheckMarker[] = ""; |
|
8fa2de4414a8
Added t3 quick menu for marker synchronisation:
Ideenmodellierer
parents:
613
diff
changeset
|
786 static uint8_t text_ES_CheckMarker[] = ""; |
|
8fa2de4414a8
Added t3 quick menu for marker synchronisation:
Ideenmodellierer
parents:
613
diff
changeset
|
787 |
| 38 | 788 // Dive Menu |
| 789 static uint8_t text_EN_CompassHeading[] = "Compass heading"; | |
| 790 static uint8_t text_DE_CompassHeading[] = "Kompasskurs"; | |
| 791 static uint8_t text_FR_CompassHeading[] = "Cap"; | |
| 792 static uint8_t text_IT_CompassHeading[] = "Direzione bussola"; | |
| 968 | 793 static uint8_t text_ES_CompassHeading[] = "Rumbo brujula"; |
| 38 | 794 |
|
347
77de014928d6
Added option to manually leave dive mode to system menu
ideenmodellierer
parents:
286
diff
changeset
|
795 // Dive Menu |
| 547 | 796 static uint8_t text_EN_CalibView[] = "Calibrate View"; |
| 573 | 797 static uint8_t text_DE_CalibView[] = "Kalibriere Blickwinkel"; |
| 547 | 798 static uint8_t text_FR_CalibView[] = "Calibrate View"; |
| 799 static uint8_t text_IT_CalibView[] = "Calibrate View"; | |
| 800 static uint8_t text_ES_CalibView[] = "Calibrate View"; | |
| 801 | |
| 802 // Dive Menu | |
|
347
77de014928d6
Added option to manually leave dive mode to system menu
ideenmodellierer
parents:
286
diff
changeset
|
803 static uint8_t text_EN_EndDiveMode[] = "End dive"; |
|
77de014928d6
Added option to manually leave dive mode to system menu
ideenmodellierer
parents:
286
diff
changeset
|
804 static uint8_t text_DE_EndDiveMode[] = "Tauchgang beenden"; |
|
77de014928d6
Added option to manually leave dive mode to system menu
ideenmodellierer
parents:
286
diff
changeset
|
805 static uint8_t text_FR_EndDiveMode[] = "End dive"; |
|
77de014928d6
Added option to manually leave dive mode to system menu
ideenmodellierer
parents:
286
diff
changeset
|
806 static uint8_t text_IT_EndDiveMode[] = "End dive"; |
|
77de014928d6
Added option to manually leave dive mode to system menu
ideenmodellierer
parents:
286
diff
changeset
|
807 static uint8_t text_ES_EndDiveMode[] = "End dive"; |
|
77de014928d6
Added option to manually leave dive mode to system menu
ideenmodellierer
parents:
286
diff
changeset
|
808 |
|
774
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
809 // Dive Menu |
|
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
810 static uint8_t text_EN_Set[] = "Set"; |
|
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
811 static uint8_t text_DE_Set[] = "Setzen"; |
|
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
812 static uint8_t text_FR_Set[] = "Réinitialiser"; |
|
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
813 static uint8_t text_IT_Set[] = "Impostare"; |
|
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
814 static uint8_t text_ES_Set[] = "Establecer"; |
|
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
815 |
|
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
816 // Dive Menu |
|
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
817 static uint8_t text_EN_Clear[] = "Clear"; |
|
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
818 static uint8_t text_DE_Clear[] = "Löschen"; |
|
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
819 static uint8_t text_FR_Clear[] = "Annuler"; |
|
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
820 static uint8_t text_IT_Clear[] = "Cancellare"; |
|
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
821 static uint8_t text_ES_Clear[] = "Borrar"; |
|
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
822 |
|
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
823 // Dive Menu |
|
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
824 static uint8_t text_EN_Reset[] = "Reset"; |
|
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
825 static uint8_t text_DE_Reset[] = "Zurücksetzen"; |
|
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
826 static uint8_t text_FR_Reset[] = "Réinitialiser"; |
|
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
827 static uint8_t text_IT_Reset[] = "Ripristina"; |
|
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
828 static uint8_t text_ES_Reset[] = "Restaurar"; |
|
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
829 |
| 845 | 830 static uint8_t text_EN_CounterLung[] = "Counterlung"; |
| 831 static uint8_t text_DE_CounterLung[] = "Gegenlunge"; | |
| 968 | 832 static uint8_t text_FR_CounterLung[] = "Poumon opposé"; |
| 833 static uint8_t text_IT_CounterLung[] = "Contropolmone"; | |
| 834 static uint8_t text_ES_CounterLung[] = "Contrapulmón"; | |
| 845 | 835 |
| 836 static uint8_t text_EN_Pressure[] = "Pressure"; | |
| 837 static uint8_t text_DE_Pressure[] = "Druck"; | |
| 968 | 838 static uint8_t text_FR_Pressure[] = "Pression"; |
| 839 static uint8_t text_IT_Pressure[] = "Pressione"; | |
| 840 static uint8_t text_ES_Pressure[] = "Presión"; | |
| 845 | 841 |
| 842 | |
| 38 | 843 // Menu SIM |
| 844 static uint8_t text_EN_Simulator[] = "Simulator"; | |
| 968 | 845 static uint8_t text_DE_Simulator[] = "Simulator"; |
| 38 | 846 static uint8_t text_FR_Simulator[] = "Simulateur"; |
| 847 static uint8_t text_IT_Simulator[] = "Simulazione"; | |
| 80 | 848 static uint8_t text_ES_Simulator[] = "Simulador"; |
| 38 | 849 |
| 850 // Menu SIM | |
| 65 | 851 static uint8_t text_EN_StartSimulator[] = "Start simulator"; |
| 38 | 852 static uint8_t text_DE_StartSimulator[] = "Simulator starten"; |
| 65 | 853 static uint8_t text_FR_StartSimulator[] = "Démarrage simulateur"; |
| 56 | 854 static uint8_t text_IT_StartSimulator[] = "Inizia simulazione"; |
| 80 | 855 static uint8_t text_ES_StartSimulator[] = "Iniciar simulador"; |
| 38 | 856 |
| 857 // Menu SIM | |
| 858 static uint8_t text_EN_Intervall[] = "Interval"; | |
| 859 static uint8_t text_DE_Intervall[] = "Intervall"; | |
| 860 static uint8_t text_FR_Intervall[] = "Intervalle"; | |
| 861 static uint8_t text_IT_Intervall[] = "Intervallo"; | |
| 80 | 862 static uint8_t text_ES_Intervall[] = "Intervalo"; |
| 38 | 863 |
| 864 // Menu SIM | |
| 65 | 865 static uint8_t text_EN_SimDiveTime[] = "Dive time"; |
| 38 | 866 static uint8_t text_DE_SimDiveTime[] = "Tauchzeit"; |
| 867 static uint8_t text_FR_SimDiveTime[] = "Temps fond"; | |
| 56 | 868 static uint8_t text_IT_SimDiveTime[] = "Tempo"; |
| 80 | 869 static uint8_t text_ES_SimDiveTime[] = "Tiempo"; |
| 38 | 870 |
| 871 // Menu SIM | |
| 65 | 872 static uint8_t text_EN_SimMaxDepth[] = "Max. depth"; |
| 38 | 873 static uint8_t text_DE_SimMaxDepth[] = "Max. Tiefe"; |
| 874 static uint8_t text_FR_SimMaxDepth[] = "Prof. max"; | |
| 65 | 875 static uint8_t text_IT_SimMaxDepth[] = "Profondita max."; |
| 80 | 876 static uint8_t text_ES_SimMaxDepth[] = "Prof. max."; |
| 38 | 877 |
| 878 // Menu SIM sub | |
| 879 static uint8_t text_EN_SimConsumption[] = "Gas consumption"; | |
| 56 | 880 static uint8_t text_DE_SimConsumption[] = "Gas-Verbrauch"; |
| 38 | 881 static uint8_t text_FR_SimConsumption[] = "Conso gaz"; |
| 56 | 882 static uint8_t text_IT_SimConsumption[] = "Consumo gas"; |
| 80 | 883 static uint8_t text_ES_SimConsumption[] = "Consumo de gas"; |
| 38 | 884 |
| 885 // Menu SIM sub | |
| 886 static uint8_t text_EN_SimSummary[] = "Summary"; | |
| 887 static uint8_t text_DE_SimSummary[] = "Zusammenfassung"; | |
| 888 static uint8_t text_FR_SimSummary[] = "Résumé"; | |
| 889 static uint8_t text_IT_SimSummary[] = "Leggenda"; | |
| 80 | 890 static uint8_t text_ES_SimSummary[] = "Resumen"; |
| 38 | 891 |
| 892 // Menu SIM sub | |
| 893 static uint8_t text_EN_SimDecTo[] = "Dec to"; | |
| 894 static uint8_t text_DE_SimDecTo[] = "Abst."; | |
| 66 | 895 static uint8_t text_FR_SimDecTo[] = "Desc a"; |
| 968 | 896 static uint8_t text_IT_SimDecTo[] = "Scen a"; |
| 80 | 897 static uint8_t text_ES_SimDecTo[] = "Desc a"; |
| 38 | 898 |
| 899 // Menu SIM sub | |
| 900 static uint8_t text_EN_SimLevel[] = "Level"; | |
| 901 static uint8_t text_DE_SimLevel[] = "Tiefe"; | |
| 902 static uint8_t text_FR_SimLevel[] = "Niveau"; | |
| 903 static uint8_t text_IT_SimLevel[] = "Livello"; | |
| 80 | 904 static uint8_t text_ES_SimLevel[] = "Nivel"; |
| 38 | 905 |
| 906 // Menu SIM sub | |
| 907 static uint8_t text_EN_SimAscTo[] = "Asc to"; | |
| 908 static uint8_t text_DE_SimAscTo[] = "Aufst."; | |
| 66 | 909 static uint8_t text_FR_SimAscTo[] = "Rem. a"; |
| 968 | 910 static uint8_t text_IT_SimAscTo[] = "Asce a"; |
| 80 | 911 static uint8_t text_ES_SimAscTo[] = "Asc a"; |
| 38 | 912 |
| 913 // Menu SIM sub | |
| 914 static uint8_t text_EN_SimSurface[] = "Surface"; | |
| 915 static uint8_t text_DE_SimSurface[] = "Oberfl."; | |
| 968 | 916 static uint8_t text_FR_SimSurface[] = "Surface"; |
| 38 | 917 static uint8_t text_IT_SimSurface[] = "Superficie"; |
| 80 | 918 static uint8_t text_ES_SimSurface[] = "Superficie"; |
| 38 | 919 |
| 920 // Menu SIM sub | |
| 921 static uint8_t text_EN_Calculating[] = "Calculating ..."; | |
| 922 static uint8_t text_DE_Calculating[] = "Auswertung ..."; | |
| 923 static uint8_t text_FR_Calculating[] = "Calcul..."; | |
| 924 static uint8_t text_IT_Calculating[] = "Elaborazione..."; | |
| 80 | 925 static uint8_t text_ES_Calculating[] = "Calculando..."; |
| 38 | 926 |
| 927 // Menu SIM sub | |
| 928 static uint8_t text_EN_PleaseWait[] = "Please wait!"; | |
| 929 static uint8_t text_DE_PleaseWait[] = "Bitte warten!"; | |
| 930 static uint8_t text_FR_PleaseWait[] = "Attendre svp."; | |
| 931 static uint8_t text_IT_PleaseWait[] = "Attendere..."; | |
| 80 | 932 static uint8_t text_ES_PleaseWait[] = "Por favor, espere"; |
| 38 | 933 |
| 934 // Menu SIM | |
| 65 | 935 static uint8_t text_EN_CalculateDeco[] = "Calculate deco"; |
| 38 | 936 static uint8_t text_DE_CalculateDeco[] = "Deko berechnen"; |
| 65 | 937 static uint8_t text_FR_CalculateDeco[] = "Calcul déco"; |
| 938 static uint8_t text_IT_CalculateDeco[] = "Calcolo deco"; | |
| 80 | 939 static uint8_t text_ES_CalculateDeco[] = "Calcular deco"; |
| 38 | 940 |
| 941 // Menu SIM sub | |
| 942 static uint8_t text_EN_Decolist[] = "Decoplan"; | |
| 943 static uint8_t text_DE_Decolist[] = "Dekoplan"; | |
| 65 | 944 static uint8_t text_FR_Decolist[] = "Plan déco"; |
| 56 | 945 static uint8_t text_IT_Decolist[] = "Pianifica deco"; |
| 80 | 946 static uint8_t text_ES_Decolist[] = "Plan deco"; |
| 38 | 947 |
| 948 // Menu SYS1 | |
| 949 static uint8_t text_EN_ButtonSensitivity[] = "Button sensitivity"; | |
| 65 | 950 static uint8_t text_DE_ButtonSensitivity[] = "Taster ansprechen"; |
| 38 | 951 static uint8_t text_FR_ButtonSensitivity[] = "Bouton sensibilité"; |
| 56 | 952 static uint8_t text_IT_ButtonSensitivity[] = "Pulsante"; |
| 80 | 953 static uint8_t text_ES_ButtonSensitivity[] = "Sensiblidad botones"; |
| 38 | 954 |
| 955 // | |
| 956 static uint8_t text_EN_SpecialDiveGas[] = "Free configurable"; | |
| 957 static uint8_t text_DE_SpecialDiveGas[] = "Frei einstellbar"; | |
| 968 | 958 static uint8_t text_FR_SpecialDiveGas[] = "Réglage libre"; |
| 38 | 959 static uint8_t text_IT_SpecialDiveGas[] = "Configurazione libera"; |
| 80 | 960 static uint8_t text_ES_SpecialDiveGas[] = "Configuración libre"; |
| 38 | 961 |
| 962 // Dive Menu | |
| 56 | 963 static uint8_t text_EN_SpecialDiveGasMenu[] = "Lost gas and extra gas"; |
| 964 static uint8_t text_DE_SpecialDiveGasMenu[] = "Verlorene Gase und Extra-Gas"; | |
| 968 | 965 static uint8_t text_FR_SpecialDiveGasMenu[] = "Gaz perdus et extra-gaz"; |
| 56 | 966 static uint8_t text_IT_SpecialDiveGasMenu[] = "Gas perso e extra gas"; |
| 80 | 967 static uint8_t text_ES_SpecialDiveGasMenu[] = "Gas perdido y gas extra"; |
| 38 | 968 |
| 969 // Dive Menu (CCR mode) | |
| 970 static uint8_t text_EN_SpecialDiveGasMenuCCR[] = "Lost Gas"; | |
| 971 static uint8_t text_DE_SpecialDiveGasMenuCCR[] = "Verlorene Gase"; | |
| 968 | 972 static uint8_t text_FR_SpecialDiveGasMenuCCR[] = "Gaz perdus"; |
| 38 | 973 static uint8_t text_IT_SpecialDiveGasMenuCCR[] = "Gas perso"; |
| 80 | 974 static uint8_t text_ES_SpecialDiveGasMenuCCR[] = "Gas perdido"; |
| 38 | 975 |
| 976 // Dive Menu (CCR mode) | |
| 65 | 977 static uint8_t text_EN_UseSensor[] = "Use sensor"; |
| 38 | 978 static uint8_t text_DE_UseSensor[] = "Benutze Sensor"; |
| 979 static uint8_t text_FR_UseSensor[] = "Cellules"; | |
| 980 static uint8_t text_IT_UseSensor[] = "Sensore"; | |
| 80 | 981 static uint8_t text_ES_UseSensor[] = "Usar sensor"; |
| 38 | 982 |
| 650 | 983 // Dive Menu (CCR mode) |
| 984 static uint8_t text_EN_AutomaticSP[] = "Switch SP automatically"; | |
| 985 static uint8_t text_DE_AutomaticSP[] = "Automatischer SP Wechsel"; | |
| 968 | 986 static uint8_t text_FR_AutomaticSP[] = "Changement automatique de SP"; |
| 987 static uint8_t text_IT_AutomaticSP[] = "Cambio automatico di SP"; | |
| 988 static uint8_t text_ES_AutomaticSP[] = "Cambio automático de SP"; | |
| 650 | 989 |
| 38 | 990 // Warning |
| 56 | 991 static uint8_t text_EN_WarnDecoMissed[] = "Deco stop"; |
| 968 | 992 static uint8_t text_DE_WarnDecoMissed[] = "Deko Stopp"; |
| 993 static uint8_t text_FR_WarnDecoMissed[] = "Palier déco"; | |
| 65 | 994 static uint8_t text_IT_WarnDecoMissed[] = "Deco stop"; |
| 80 | 995 static uint8_t text_ES_WarnDecoMissed[] = "Deco stop"; |
| 38 | 996 |
| 997 // Warning | |
| 998 static uint8_t text_EN_WarnFallback[] = "Fallback"; | |
| 968 | 999 static uint8_t text_DE_WarnFallback[] = "Fallback"; |
| 56 | 1000 static uint8_t text_FR_WarnFallback[] = "Fallback"; // NEED to more specific here I guess... |
| 1001 static uint8_t text_IT_WarnFallback[] = "Fallback"; | |
| 80 | 1002 static uint8_t text_ES_WarnFallback[] = "Fallback"; |
| 38 | 1003 |
| 1004 // Warning | |
| 65 | 1005 static uint8_t text_EN_WarnPPO2Low[] = "ppO2 low"; |
| 1006 static uint8_t text_DE_WarnPPO2Low[] = "ppO2 niedrig"; | |
| 56 | 1007 static uint8_t text_FR_WarnPPO2Low[] = "ppO2 basse"; |
| 1008 static uint8_t text_IT_WarnPPO2Low[] = "ppO2 basso"; | |
| 80 | 1009 static uint8_t text_ES_WarnPPO2Low[] = "ppO2 bajo"; |
| 38 | 1010 |
| 1011 // Warning | |
| 65 | 1012 static uint8_t text_EN_WarnPPO2High[] = "ppO2 high"; |
| 1013 static uint8_t text_DE_WarnPPO2High[] = "ppO2 hoch"; | |
| 56 | 1014 static uint8_t text_FR_WarnPPO2High[] = "ppO2 haut"; |
| 1015 static uint8_t text_IT_WarnPPO2High[] = "ppO2 alto"; | |
| 80 | 1016 static uint8_t text_ES_WarnPPO2High[] = "ppO2 alto"; |
| 38 | 1017 |
| 1018 // Warning | |
| 56 | 1019 static uint8_t text_EN_WarnBatteryLow[] = "Battery"; |
| 38 | 1020 static uint8_t text_DE_WarnBatteryLow[] = "Batterie"; |
| 1021 static uint8_t text_FR_WarnBatteryLow[] = "Batterie"; | |
| 1022 static uint8_t text_IT_WarnBatteryLow[] = "Batteria"; | |
| 80 | 1023 static uint8_t text_ES_WarnBatteryLow[] = "Carga baja"; |
| 38 | 1024 |
| 1025 // Warning | |
| 56 | 1026 static uint8_t text_EN_WarnSensorLinkLost[] = "Sensors"; |
| 38 | 1027 static uint8_t text_DE_WarnSensorLinkLost[] = "Sensoren"; |
| 1028 static uint8_t text_FR_WarnSensorLinkLost[] = "Cellules"; | |
| 1029 static uint8_t text_IT_WarnSensorLinkLost[] = "Sensori"; | |
| 80 | 1030 static uint8_t text_ES_WarnSensorLinkLost[] = "Sensores"; |
| 38 | 1031 |
| 1032 // Warning | |
| 1033 static uint8_t text_EN_WarnCnsHigh[] = "CNS high"; | |
| 1034 static uint8_t text_DE_WarnCnsHigh[] = "CNS hoch"; | |
| 1035 static uint8_t text_FR_WarnCnsHigh[] = "SNC haut"; | |
| 56 | 1036 static uint8_t text_IT_WarnCnsHigh[] = "CNS alto"; |
| 80 | 1037 static uint8_t text_ES_WarnCnsHigh[] = "CNS alto"; |
| 38 | 1038 |
| 756 | 1039 // Warning |
| 1040 static uint8_t text_EN_WarnCO2High[] = "CO2 high"; | |
| 1041 static uint8_t text_DE_WarnCO2High[] = "CO2 hoch"; | |
| 1042 static uint8_t text_FR_WarnCO2High[] = "CO2 haut"; | |
| 1043 static uint8_t text_IT_WarnCO2High[] = "CO2 alto"; | |
| 1044 static uint8_t text_ES_WarnCO2High[] = "CO2 alto"; | |
| 1045 | |
| 38 | 1046 // Tissue Graph |
| 1047 static uint8_t text_EN_Nitrogen[] = "Nitrogen"; | |
| 1048 static uint8_t text_DE_Nitrogen[] = "Stickstoff"; | |
| 1049 static uint8_t text_FR_Nitrogen[] = "Azote"; | |
| 1050 static uint8_t text_IT_Nitrogen[] = "Azoto"; | |
| 80 | 1051 static uint8_t text_ES_Nitrogen[] = "Nitrógeno"; |
| 38 | 1052 |
| 1053 // Tissue Graph | |
| 1054 static uint8_t text_EN_Helium[] = "Helium"; | |
| 968 | 1055 static uint8_t text_DE_Helium[] = "Helium"; |
| 38 | 1056 static uint8_t text_FR_Helium[] = "Hélium"; |
| 1057 static uint8_t text_IT_Helium[] = "Helio"; | |
| 80 | 1058 static uint8_t text_ES_Helium[] = "Helio"; |
| 38 | 1059 |
| 1060 // Tissue Graph | |
| 1061 static uint8_t text_EN_CNS[] = "Oxygen"; | |
| 1062 static uint8_t text_DE_CNS[] = "Sauerstoff"; | |
| 1063 static uint8_t text_FR_CNS[] = "Oxygène"; | |
| 1064 static uint8_t text_IT_CNS[] = "Ossigeno"; | |
| 80 | 1065 static uint8_t text_ES_CNS[] = "O2"; |
| 38 | 1066 |
| 1067 // Profile Graph | |
| 1068 static uint8_t text_EN_Profile[] = "Profile"; | |
| 1069 static uint8_t text_DE_Profile[] = "Profil"; | |
| 1070 static uint8_t text_FR_Profile[] = "Profil"; | |
| 1071 static uint8_t text_IT_Profile[] = "Profilo"; | |
| 80 | 1072 static uint8_t text_ES_Profile[] = "Perfil"; |
| 38 | 1073 |
| 1074 // Dive mode (header @ deco stop place) | |
| 56 | 1075 static uint8_t text_EN_SafetyStop2[] = "Safety stop"; |
| 38 | 1076 static uint8_t text_DE_SafetyStop2[] = "Sicherheit"; |
| 1077 static uint8_t text_FR_SafetyStop2[] = "Palier sécurité"; | |
| 56 | 1078 static uint8_t text_IT_SafetyStop2[] = "Sicurezza"; |
| 968 | 1079 static uint8_t text_ES_SafetyStop2[] = "Parada seguridad"; |
| 38 | 1080 |
| 1081 // Surface mode | |
| 1082 static uint8_t text_EN_noFly[] = "noFly"; | |
| 1083 static uint8_t text_DE_noFly[] = ""; | |
| 1084 static uint8_t text_FR_noFly[] = ""; // Or Avion | |
| 56 | 1085 static uint8_t text_IT_noFly[] = "No volo"; |
| 80 | 1086 static uint8_t text_ES_noFly[] = "No volar"; |
| 38 | 1087 |
| 1088 // Surface mode | |
| 1089 static uint8_t text_EN_Desaturation[] = "Desaturation"; | |
| 1090 static uint8_t text_DE_Desaturation[] = "Entsättigung"; | |
| 1091 static uint8_t text_FR_Desaturation[] = "Désaturation"; | |
| 1092 static uint8_t text_IT_Desaturation[] = "Desaturazione"; | |
| 80 | 1093 static uint8_t text_ES_Desaturation[] = "Desaturación"; |
| 38 | 1094 |
| 1095 // Surface mode | |
| 1096 static uint8_t text_EN_TimeSinceLastDive[] = "Last dive"; | |
| 1097 static uint8_t text_DE_TimeSinceLastDive[] = "Tauchpause"; | |
| 1098 static uint8_t text_FR_TimeSinceLastDive[] = "Intervalle"; | |
| 1099 static uint8_t text_IT_TimeSinceLastDive[] = "Ultima immersione"; | |
| 968 | 1100 static uint8_t text_ES_TimeSinceLastDive[] = "Ultima inmersión"; |
| 38 | 1101 |
| 1102 // Button label (tiny line) | |
| 1103 static uint8_t text_EN_ButtonLogbook[] = "Logbook"; | |
| 1104 static uint8_t text_DE_ButtonLogbook[] = "Logbuch"; | |
| 1105 static uint8_t text_FR_ButtonLogbook[] = "Carnet"; | |
| 1106 static uint8_t text_IT_ButtonLogbook[] = "Loogbook"; | |
| 80 | 1107 static uint8_t text_ES_ButtonLogbook[] = "Diario"; |
| 38 | 1108 |
| 1109 // Button label (tiny line) | |
| 1110 static uint8_t text_EN_ButtonView[] = "View"; | |
| 1111 static uint8_t text_DE_ButtonView[] = "Ansicht"; | |
| 1112 static uint8_t text_FR_ButtonView[] = "Vue"; | |
| 1113 static uint8_t text_IT_ButtonView[] = "Visuale"; | |
| 80 | 1114 static uint8_t text_ES_ButtonView[] = "Vista"; |
| 38 | 1115 |
| 1116 // Button label (tiny line) | |
| 1117 static uint8_t text_EN_ButtonMenu[] = "Menu"; | |
| 1118 static uint8_t text_DE_ButtonMenu[] = "Menü"; | |
| 59 | 1119 static uint8_t text_FR_ButtonMenu[] = "Menu"; |
| 38 | 1120 static uint8_t text_IT_ButtonMenu[] = "Menu"; |
| 968 | 1121 static uint8_t text_ES_ButtonMenu[] = "Menu"; |
| 38 | 1122 |
| 1123 // Button label (tiny line) | |
| 1124 static uint8_t text_EN_ButtonBack[] = "Back"; | |
| 1125 static uint8_t text_DE_ButtonBack[] = "Zurück"; | |
| 1126 static uint8_t text_FR_ButtonBack[] = "Retour"; | |
| 1127 static uint8_t text_IT_ButtonBack[] = "Indietro"; | |
| 80 | 1128 static uint8_t text_ES_ButtonBack[] = "Atrás"; |
| 38 | 1129 |
| 1130 // Button label (tiny line) | |
| 1131 static uint8_t text_EN_ButtonEnter[] = "Enter"; | |
| 1132 static uint8_t text_DE_ButtonEnter[] = "Bestätigen"; | |
| 1133 static uint8_t text_FR_ButtonEnter[] = "Entrer"; | |
| 1134 static uint8_t text_IT_ButtonEnter[] = "Conferma"; | |
| 80 | 1135 static uint8_t text_ES_ButtonEnter[] = "Entrar"; |
| 38 | 1136 |
| 1137 // Button label (tiny line) | |
| 1138 static uint8_t text_EN_ButtonNext[] = "Next"; | |
| 1139 static uint8_t text_DE_ButtonNext[] = "Weiter"; | |
| 1140 static uint8_t text_FR_ButtonNext[] = "Suivant"; //"Suiv."; | |
| 1141 static uint8_t text_IT_ButtonNext[] = "Prossimo"; | |
| 80 | 1142 static uint8_t text_ES_ButtonNext[] = "Siguiente"; |
| 38 | 1143 |
| 1144 // Button label (tiny line) | |
| 59 | 1145 static uint8_t text_EN_ButtonMinus[] = "-"; |
| 1146 static uint8_t text_DE_ButtonMinus[] = "-"; | |
| 1147 static uint8_t text_FR_ButtonMinus[] = "-"; | |
| 1148 static uint8_t text_IT_ButtonMinus[] = "-"; | |
| 1149 static uint8_t text_ES_ButtonMinus[] = "-"; | |
| 38 | 1150 |
| 1151 // Button label (tiny line) | |
| 59 | 1152 static uint8_t text_EN_ButtonPlus[] = "+"; |
| 1153 static uint8_t text_DE_ButtonPlus[] = "+"; | |
| 1154 static uint8_t text_FR_ButtonPlus[] = "+"; | |
| 1155 static uint8_t text_IT_ButtonPlus[] = "+"; | |
| 1156 static uint8_t text_ES_ButtonPlus[] = "+"; | |
| 38 | 1157 |
| 1158 // Dive menu | |
| 1159 static uint8_t text_EN_SimFollowDecoStops[] = "Ascent follows decostops"; | |
| 1160 static uint8_t text_DE_SimFollowDecoStops[] = "Sim-Aufstieg folgt Stopps"; | |
| 1161 static uint8_t text_FR_SimFollowDecoStops[] = "Remonté selon paliers"; | |
| 968 | 1162 static uint8_t text_IT_SimFollowDecoStops[] = "Sim ascenso sigue paradas"; |
| 1163 static uint8_t text_ES_SimFollowDecoStops[] = "Ascenso segUn paradas deco"; | |
| 38 | 1164 |
| 1165 // Menu SYS1 | |
| 1166 static uint8_t text_EN_Bluetooth[] = "Bluetooth"; | |
| 1167 static uint8_t text_DE_Bluetooth[] = ""; | |
| 1168 static uint8_t text_FR_Bluetooth[] = ""; | |
| 1169 static uint8_t text_IT_Bluetooth[] = ""; | |
| 80 | 1170 static uint8_t text_ES_Bluetooth[] = "Bluetooth"; |
| 38 | 1171 |
| 1172 // Customview Header | |
| 65 | 1173 static uint8_t text_EN_Tissues[] = "Tissue load"; |
| 38 | 1174 static uint8_t text_DE_Tissues[] = "Sättigung"; |
| 1175 static uint8_t text_FR_Tissues[] = "Saturation"; | |
| 56 | 1176 static uint8_t text_IT_Tissues[] = "Saturazione"; |
| 80 | 1177 static uint8_t text_ES_Tissues[] = "Saturación tejidos"; |
| 38 | 1178 |
| 1179 // Customview Header | |
| 1180 static uint8_t text_EN_O2monitor[] = "O2 monitor"; | |
| 65 | 1181 static uint8_t text_DE_O2monitor[] = "O2-Monitor"; |
| 38 | 1182 static uint8_t text_FR_O2monitor[] = "Moniteur O2"; // "O2 (bar)" ? |
| 1183 static uint8_t text_IT_O2monitor[] = "Monitor O2"; | |
| 80 | 1184 static uint8_t text_ES_O2monitor[] = "Monitor O2"; |
| 38 | 1185 |
| 1186 // Customview Header | |
| 1187 static uint8_t text_EN_O2voltage[] = "O2 voltage"; | |
| 1188 static uint8_t text_DE_O2voltage[] = "O2 voltage"; | |
| 1189 static uint8_t text_FR_O2voltage[] = "Voltage O2"; | |
| 1190 static uint8_t text_IT_O2voltage[] = "Voltaggio O2"; | |
| 80 | 1191 static uint8_t text_ES_O2voltage[] = "Voltaje O2"; |
| 38 | 1192 |
| 1193 // Customview Header | |
| 1194 static uint8_t text_EN_Gaslist[] = "Gaslist OC"; | |
| 968 | 1195 static uint8_t text_DE_Gaslist[] = "OC Gasliste"; |
| 38 | 1196 static uint8_t text_FR_Gaslist[] = "Liste gaz OC"; |
| 56 | 1197 static uint8_t text_IT_Gaslist[] = "Lista gas OC"; |
| 968 | 1198 static uint8_t text_ES_Gaslist[] = "lista gases OC"; |
| 38 | 1199 |
| 1200 // Customview Header | |
| 1201 static uint8_t text_EN_Info[] = "Info"; | |
| 968 | 1202 static uint8_t text_DE_Info[] = "Info"; |
| 1203 static uint8_t text_FR_Info[] = "Info"; | |
| 38 | 1204 static uint8_t text_IT_Info[] = "Info"; |
| 80 | 1205 static uint8_t text_ES_Info[] = "Info"; |
| 38 | 1206 |
| 1207 // Customview Header | |
| 1208 static uint8_t text_EN_Warning[] = "Warning"; | |
| 1209 static uint8_t text_DE_Warning[] = "Warnung"; | |
| 1210 static uint8_t text_FR_Warning[] = "Alerte"; | |
| 65 | 1211 static uint8_t text_IT_Warning[] = "Pericolo"; |
| 80 | 1212 static uint8_t text_ES_Warning[] = "Peligro"; |
| 38 | 1213 |
| 672 | 1214 // Customview Header |
| 1215 static uint8_t text_EN_Charging[] = "Charging"; | |
| 1216 static uint8_t text_DE_Charging[] = "Ladezyklus"; | |
| 968 | 1217 static uint8_t text_FR_Charging[] = "Cycle de charge"; |
| 1218 static uint8_t text_IT_Charging[] = "Ciclo di carica"; | |
| 1219 static uint8_t text_ES_Charging[] = "Ciclo de carga"; | |
| 672 | 1220 |
| 38 | 1221 // Menu SYS2 sub Information |
| 1222 static uint8_t text_EN_Usage_Battery[] = "Battery life"; | |
| 65 | 1223 static uint8_t text_DE_Usage_Battery[] = "Batterie-Nutzung"; |
| 38 | 1224 static uint8_t text_FR_Usage_Battery[] = "Durée batterie"; |
| 56 | 1225 static uint8_t text_IT_Usage_Battery[] = "Durata batteria"; |
| 80 | 1226 static uint8_t text_ES_Usage_Battery[] = "Duración carga"; |
| 38 | 1227 |
| 1228 // Menu SYS2 sub Information | |
| 56 | 1229 static uint8_t text_EN_Usage_Dives[] = "Dive records"; |
| 1230 static uint8_t text_DE_Usage_Dives[] = "Tauch-Historie"; | |
| 38 | 1231 static uint8_t text_FR_Usage_Dives[] = "Historique plongées"; |
| 1232 static uint8_t text_IT_Usage_Dives[] = "Totale immersioni"; | |
| 80 | 1233 static uint8_t text_ES_Usage_Dives[] = "Registro de inmersiones"; |
| 38 | 1234 |
| 1235 // Menu SYS2 sub Information | |
| 1236 static uint8_t text_EN_Usage_Environment[] = "Environmental conditions"; | |
| 1237 static uint8_t text_DE_Usage_Environment[] = "Umgebungsbedingungen"; | |
| 1238 static uint8_t text_FR_Usage_Environment[] = "Conditions environ."; | |
| 1239 static uint8_t text_IT_Usage_Environment[] = "Condizioni ambientali"; | |
| 80 | 1240 static uint8_t text_ES_Usage_Environment[] = "Condiciones ambientales"; |
| 38 | 1241 |
| 1242 // Menu SYS2 sub Information | |
|
646
0fc1b47d2482
Remove battery charge counter from information menu:
Ideenmodellierer
parents:
626
diff
changeset
|
1243 static uint8_t text_EN_ChargeCycles[] = "Last charging cycle (complete)"; |
|
0fc1b47d2482
Remove battery charge counter from information menu:
Ideenmodellierer
parents:
626
diff
changeset
|
1244 static uint8_t text_DE_ChargeCycles[] = "Letzter Ladezyklus (vollständig)"; |
|
0fc1b47d2482
Remove battery charge counter from information menu:
Ideenmodellierer
parents:
626
diff
changeset
|
1245 static uint8_t text_FR_ChargeCycles[] = "Dernier cycles de charge (complets)"; |
|
0fc1b47d2482
Remove battery charge counter from information menu:
Ideenmodellierer
parents:
626
diff
changeset
|
1246 static uint8_t text_IT_ChargeCycles[] = "Ultimo ciclo di ricarica (completata)"; |
|
0fc1b47d2482
Remove battery charge counter from information menu:
Ideenmodellierer
parents:
626
diff
changeset
|
1247 static uint8_t text_ES_ChargeCycles[] = "Ultimo ciclo de carga (completada)"; |
| 38 | 1248 |
| 1249 // Menu SYS2 sub Information | |
| 56 | 1250 static uint8_t text_EN_LowestVoltage[] = "Lowest battery voltage"; |
| 65 | 1251 static uint8_t text_DE_LowestVoltage[] = "Niedrigste Batteriespannung"; |
| 38 | 1252 static uint8_t text_FR_LowestVoltage[] = "Voltage min batterie"; |
| 1253 static uint8_t text_IT_LowestVoltage[] = "Batteria scarica"; | |
| 80 | 1254 static uint8_t text_ES_LowestVoltage[] = "Carga muy baja "; |
| 38 | 1255 |
| 1256 // Menu SYS2 sub Information | |
| 56 | 1257 static uint8_t text_EN_HoursOfOperation[] = "Hours of operation"; |
| 38 | 1258 static uint8_t text_DE_HoursOfOperation[] = "Betriebsstunden"; |
| 1259 static uint8_t text_FR_HoursOfOperation[] = "Heures d'utilisations"; | |
| 1260 static uint8_t text_IT_HoursOfOperation[] = "Ore di utilizzo"; | |
| 80 | 1261 static uint8_t text_ES_HoursOfOperation[] = "Horas de uso"; |
| 38 | 1262 |
| 1263 // Menu SYS2 sub Information | |
| 56 | 1264 static uint8_t text_EN_NumberOfDives[] = "Total number of dives (max. depth)"; |
| 38 | 1265 static uint8_t text_DE_NumberOfDives[] = "Anzahl Tauchgänge (max. Tiefe)"; |
| 1266 static uint8_t text_FR_NumberOfDives[] = "Nombre total de plongées (prof. max)"; | |
| 56 | 1267 static uint8_t text_IT_NumberOfDives[] = "Numero totale di immersioni (prof. max)"; |
| 968 | 1268 static uint8_t text_ES_NumberOfDives[] = "NUmero total de inmersiones (prof. max)"; |
| 38 | 1269 |
| 1270 // Menu SYS2 sub Information | |
| 56 | 1271 static uint8_t text_EN_AmbientTemperature[] = "Ambient temperature range"; |
| 38 | 1272 static uint8_t text_DE_AmbientTemperature[] = "Umgebungstemperaturbereich"; |
| 1273 static uint8_t text_FR_AmbientTemperature[] = "Temperature ambiante"; // Range --> Temperatures ? | |
| 1274 static uint8_t text_IT_AmbientTemperature[] = "Temperatura ambiente"; | |
| 80 | 1275 static uint8_t text_ES_AmbientTemperature[] = "Temperatura ambiente"; |
| 38 | 1276 |
| 1277 // Menu SYS2 sub Information | |
| 1278 static uint8_t text_EN_Korrekturwerte[] = "Correction values"; | |
| 1279 static uint8_t text_DE_Korrekturwerte[] = "Korrekturwerte"; | |
| 1280 static uint8_t text_FR_Korrekturwerte[] = "Corrections"; | |
| 1281 static uint8_t text_IT_Korrekturwerte[] = "Correzione valore"; | |
| 80 | 1282 static uint8_t text_ES_Korrekturwerte[] = "Corregir valores"; |
| 38 | 1283 |
| 1284 // Customview Content | |
| 1285 static uint8_t text_EN_Clock[] = "Clock"; | |
| 1286 static uint8_t text_DE_Clock[] = "Uhr"; | |
| 1287 static uint8_t text_FR_Clock[] = "Heure"; | |
| 1288 static uint8_t text_IT_Clock[] = "Orologio"; | |
| 80 | 1289 static uint8_t text_ES_Clock[] = "Reloj"; |
| 38 | 1290 |
| 1291 // Surface mode (all weekdays) | |
| 1292 static uint8_t text_EN_Sunday[] = "Sunday"; | |
| 1293 static uint8_t text_DE_Sunday[] = "Sonntag"; | |
| 1294 static uint8_t text_FR_Sunday[] = "Dimanche"; | |
| 1295 static uint8_t text_IT_Sunday[] = "Domenica"; | |
| 80 | 1296 static uint8_t text_ES_Sunday[] = "Domingo"; |
| 38 | 1297 |
| 1298 static uint8_t text_EN_Monday[] = "Monday"; | |
| 1299 static uint8_t text_DE_Monday[] = "Montag"; | |
| 1300 static uint8_t text_FR_Monday[] = "Lundi"; | |
|
55
a7683f9765da
Italian activated (needs some fine tuning), special characters (?,?,?,?,? and others) currently not working...
heinrichsweikamp
parents:
38
diff
changeset
|
1301 static uint8_t text_IT_Monday[] = "Lunedi"; |
| 80 | 1302 static uint8_t text_ES_Monday[] = "Lunes"; |
| 38 | 1303 |
| 1304 static uint8_t text_EN_Tuesday[] = "Tuesday"; | |
| 1305 static uint8_t text_DE_Tuesday[] = "Dienstag"; | |
| 1306 static uint8_t text_FR_Tuesday[] = "Mardi"; | |
|
55
a7683f9765da
Italian activated (needs some fine tuning), special characters (?,?,?,?,? and others) currently not working...
heinrichsweikamp
parents:
38
diff
changeset
|
1307 static uint8_t text_IT_Tuesday[] = "Martedi"; |
| 80 | 1308 static uint8_t text_ES_Tuesday[] = "Martes"; |
| 38 | 1309 |
| 1310 static uint8_t text_EN_Wednesday[] = "Wednesday"; | |
| 1311 static uint8_t text_DE_Wednesday[] = "Mittwoch"; | |
| 1312 static uint8_t text_FR_Wednesday[] = "Mercredi"; | |
|
55
a7683f9765da
Italian activated (needs some fine tuning), special characters (?,?,?,?,? and others) currently not working...
heinrichsweikamp
parents:
38
diff
changeset
|
1313 static uint8_t text_IT_Wednesday[] = "Mercoledi"; |
| 80 | 1314 static uint8_t text_ES_Wednesday[] = "Miércoles"; |
| 38 | 1315 |
| 1316 static uint8_t text_EN_Thursday[] = "Thursday"; | |
| 1317 static uint8_t text_DE_Thursday[] = "Donnerstag"; | |
| 1318 static uint8_t text_FR_Thursday[] = "Jeudi"; | |
|
55
a7683f9765da
Italian activated (needs some fine tuning), special characters (?,?,?,?,? and others) currently not working...
heinrichsweikamp
parents:
38
diff
changeset
|
1319 static uint8_t text_IT_Thursday[] = "Giovedi"; |
| 80 | 1320 static uint8_t text_ES_Thursday[] = "Jueves"; |
| 38 | 1321 |
| 1322 static uint8_t text_EN_Friday[] = "Friday"; | |
| 1323 static uint8_t text_DE_Friday[] = "Freitag"; | |
| 1324 static uint8_t text_FR_Friday[] = "Vendredi"; | |
|
55
a7683f9765da
Italian activated (needs some fine tuning), special characters (?,?,?,?,? and others) currently not working...
heinrichsweikamp
parents:
38
diff
changeset
|
1325 static uint8_t text_IT_Friday[] = "Venerdi"; |
| 80 | 1326 static uint8_t text_ES_Friday[] = "Viernes"; |
| 38 | 1327 |
| 1328 static uint8_t text_EN_Saturday[] = "Saturday"; | |
| 1329 static uint8_t text_DE_Saturday[] = "Samstag"; | |
| 1330 static uint8_t text_FR_Saturday[] = "Samedi"; | |
| 1331 static uint8_t text_IT_Saturday[] = "Sabato"; | |
| 80 | 1332 static uint8_t text_ES_Saturday[] = "Sábado"; |
| 38 | 1333 |
| 1334 // Menu SYS1 sub (Sensors) | |
| 65 | 1335 static uint8_t text_EN_HUDBattery[] = "HUD battery"; |
| 1336 static uint8_t text_DE_HUDBattery[] = "HUD-Batterie"; | |
| 38 | 1337 static uint8_t text_FR_HUDBattery[] = "Batterie HUD"; |
| 1338 static uint8_t text_IT_HUDBattery[] = "Batteria HUD"; | |
| 80 | 1339 static uint8_t text_ES_HUDBattery[] = "Carga del HUD"; |
| 38 | 1340 |
| 745 | 1341 static uint8_t text_EN_SensorDetect[] = "Auto detection"; |
| 968 | 1342 static uint8_t text_DE_SensorDetect[] = "Sensoren suchen"; |
| 1343 static uint8_t text_FR_SensorDetect[] = "Chercher capteurs"; | |
| 1344 static uint8_t text_IT_SensorDetect[] = "Ricerca sensori"; | |
| 1345 static uint8_t text_ES_SensorDetect[] = "BUsqueda sensores"; | |
| 745 | 1346 |
| 968 | 1347 static uint8_t text_EN_O2Calib[] = "Calibration"; |
| 584 | 1348 static uint8_t text_DE_O2Calib[] = "Kalibrierung"; |
| 968 | 1349 static uint8_t text_FR_O2Calib[] = "Calibrage"; |
| 1350 static uint8_t text_IT_O2Calib[] = "Calibrazione"; | |
| 1351 static uint8_t text_ES_O2Calib[] = "Calibración"; | |
|
562
ec76fa85009e
Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents:
552
diff
changeset
|
1352 |
|
ec76fa85009e
Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents:
552
diff
changeset
|
1353 static uint8_t text_EN_O2Interface[] = "O2 Interface"; |
|
ec76fa85009e
Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents:
552
diff
changeset
|
1354 static uint8_t text_DE_O2Interface[] = "O2 Interface"; |
| 968 | 1355 static uint8_t text_FR_O2Interface[] = "Interface O2"; |
| 1356 static uint8_t text_IT_O2Interface[] = "Interfaccia O2"; | |
| 1357 static uint8_t text_ES_O2Interface[] = "Interfaz O2"; | |
|
562
ec76fa85009e
Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents:
552
diff
changeset
|
1358 |
|
ec76fa85009e
Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents:
552
diff
changeset
|
1359 static uint8_t text_EN_O2IFOptic[] = "optical"; |
|
ec76fa85009e
Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents:
552
diff
changeset
|
1360 static uint8_t text_DE_O2IFOptic[] = "optisch"; |
| 968 | 1361 static uint8_t text_FR_O2IFOptic[] = "optique"; |
| 1362 static uint8_t text_IT_O2IFOptic[] = "ottico"; | |
| 1363 static uint8_t text_ES_O2IFOptic[] = "óptico"; | |
|
562
ec76fa85009e
Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents:
552
diff
changeset
|
1364 |
|
ec76fa85009e
Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents:
552
diff
changeset
|
1365 static uint8_t text_EN_O2IFAnalog[] = "analog"; |
|
ec76fa85009e
Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents:
552
diff
changeset
|
1366 static uint8_t text_DE_O2IFAnalog[] = "analog"; |
| 968 | 1367 static uint8_t text_FR_O2IFAnalog[] = "analogique"; |
| 1368 static uint8_t text_IT_O2IFAnalog[] = "analogico"; | |
| 1369 static uint8_t text_ES_O2IFAnalog[] = "analógico"; | |
|
562
ec76fa85009e
Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents:
552
diff
changeset
|
1370 |
|
703
2f457024049b
Added selection of digital o2 sensor source to HW menu:
Ideenmodellierer
parents:
672
diff
changeset
|
1371 static uint8_t text_EN_O2IFDigital[] = "digital"; |
|
2f457024049b
Added selection of digital o2 sensor source to HW menu:
Ideenmodellierer
parents:
672
diff
changeset
|
1372 static uint8_t text_DE_O2IFDigital[] = "digital"; |
| 968 | 1373 static uint8_t text_FR_O2IFDigital[] = "digitale"; |
| 1374 static uint8_t text_IT_O2IFDigital[] = "digital"; | |
| 1375 static uint8_t text_ES_O2IFDigital[] = "digital"; | |
|
703
2f457024049b
Added selection of digital o2 sensor source to HW menu:
Ideenmodellierer
parents:
672
diff
changeset
|
1376 |
| 38 | 1377 // Menu SYS1 sub (buttons) |
| 65 | 1378 static uint8_t text_EN_LowerIsLess[] = "Lower is less sensitive"; |
| 1379 static uint8_t text_DE_LowerIsLess[] = "Niedriger ist schwergängiger"; | |
| 1380 static uint8_t text_FR_LowerIsLess[] = "Diminuer moins sensible"; | |
| 1381 static uint8_t text_IT_LowerIsLess[] = "Più basso è più rigido"; | |
| 80 | 1382 static uint8_t text_ES_LowerIsLess[] = "A menor valor, menos sensibilidad"; |
| 38 | 1383 |
| 1384 // Dive Mode YELLOW TEXT under Customview | |
| 1385 static uint8_t text_EN_DiveMenuQ[] = " Menu? "; | |
| 1386 static uint8_t text_DE_DiveMenuQ[] = " Menü? "; | |
| 968 | 1387 static uint8_t text_FR_DiveMenuQ[] = " Menu "; |
| 1388 static uint8_t text_IT_DiveMenuQ[] = " Menu? "; | |
| 1389 static uint8_t text_ES_DiveMenuQ[] = " Menu "; | |
| 38 | 1390 |
| 1391 // Dive Mode YELLOW TEXT under Customview | |
| 1392 static uint8_t text_EN_DiveQuitQ[] = " Quit? "; | |
| 1393 static uint8_t text_DE_DiveQuitQ[] = " Ende? "; | |
| 1394 static uint8_t text_FR_DiveQuitQ[] = "Quitter"; | |
| 1395 static uint8_t text_IT_DiveQuitQ[] = "Uscita?"; | |
| 80 | 1396 static uint8_t text_ES_DiveQuitQ[] = "¿Salir?"; |
| 38 | 1397 |
| 1398 // Dive Mode YELLOW TEXT under Customview | |
| 1399 static uint8_t text_EN_DiveBearingQ[] = "Bearing"; | |
| 1400 static uint8_t text_DE_DiveBearingQ[] = "Peilung"; | |
| 968 | 1401 static uint8_t text_FR_DiveBearingQ[] = "Gisement"; |
| 38 | 1402 static uint8_t text_IT_DiveBearingQ[] = ""; |
| 80 | 1403 static uint8_t text_ES_DiveBearingQ[] = "Rumbo"; |
| 38 | 1404 |
| 1405 // Dive Mode YELLOW TEXT under Customview | |
| 1406 static uint8_t text_EN_DiveResetAvgQ[] = "ResetAvr."; | |
| 1407 static uint8_t text_DE_DiveResetAvgQ[] = "Stoppuhr"; | |
| 1408 static uint8_t text_FR_DiveResetAvgQ[] = ""; | |
| 1409 static uint8_t text_IT_DiveResetAvgQ[] = "Reset AVR"; | |
| 80 | 1410 static uint8_t text_ES_DiveResetAvgQ[] = "Reiniciar AVR"; |
| 38 | 1411 |
| 1412 // Menu SYS2 | |
| 65 | 1413 static uint8_t text_EN_ExtraDisplay[] = "Big font"; |
| 1414 static uint8_t text_DE_ExtraDisplay[] = "Grosse Schrift"; | |
| 1415 static uint8_t text_FR_ExtraDisplay[] = "Grand police"; | |
| 1416 static uint8_t text_IT_ExtraDisplay[] = "Caratteri grandi"; | |
| 80 | 1417 static uint8_t text_ES_ExtraDisplay[] = "Letras grandes"; |
| 38 | 1418 |
| 1419 // Menu SYS2 | |
|
740
5078da3845c0
Added button lock after wakeup in surface mode:
Ideenmodellierer
parents:
703
diff
changeset
|
1420 static uint8_t text_EN_ExtraBigFont[] = "Optional"; |
|
5078da3845c0
Added button lock after wakeup in surface mode:
Ideenmodellierer
parents:
703
diff
changeset
|
1421 static uint8_t text_DE_ExtraBigFont[] = "Optional"; |
| 968 | 1422 static uint8_t text_FR_ExtraBigFont[] = "En option"; |
| 1423 static uint8_t text_IT_ExtraBigFont[] = "Opzionale"; | |
| 1424 static uint8_t text_ES_ExtraBigFont[] = "Opcional"; | |
| 38 | 1425 |
|
740
5078da3845c0
Added button lock after wakeup in surface mode:
Ideenmodellierer
parents:
703
diff
changeset
|
1426 static uint8_t text_EN_ExtraBFActive[] = "Start screen"; |
| 968 | 1427 static uint8_t text_DE_ExtraBFActive[] = "Startbildschirm"; |
| 1428 static uint8_t text_FR_ExtraBFActive[] = "Écran démarrage"; | |
| 1429 static uint8_t text_IT_ExtraBFActive[] = "Schermata iniziale"; | |
| 1430 static uint8_t text_ES_ExtraBFActive[] = "Pantalla de inicio"; | |
|
740
5078da3845c0
Added button lock after wakeup in surface mode:
Ideenmodellierer
parents:
703
diff
changeset
|
1431 |
| 38 | 1432 // Menu SYS2 (future feature) |
| 65 | 1433 static uint8_t text_EN_ExtraDecoGame[] = "Deco game"; |
| 1434 static uint8_t text_DE_ExtraDecoGame[] = "Deko-Spiel"; | |
| 38 | 1435 static uint8_t text_FR_ExtraDecoGame[] = "Jeu déco"; |
| 1436 static uint8_t text_IT_ExtraDecoGame[] = "Giochi deco"; | |
| 80 | 1437 static uint8_t text_ES_ExtraDecoGame[] = "Juego deco"; |
| 38 | 1438 |
| 1439 // Menu SYS2 | |
| 1440 static uint8_t text_EN_ExtraNone[] = "none"; | |
| 65 | 1441 static uint8_t text_DE_ExtraNone[] = "nein"; |
| 1442 static uint8_t text_FR_ExtraNone[] = "non"; | |
| 1443 static uint8_t text_IT_ExtraNone[] = "no"; | |
| 80 | 1444 static uint8_t text_ES_ExtraNone[] = "ninguno"; |
| 38 | 1445 |
|
368
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1446 /* Menu SYS2 - Strings for Motion Control Selection */ |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1447 static uint8_t text_EN_MotionCtrl[] = "Motion Control"; |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1448 static uint8_t text_DE_MotionCtrl[] = "Bew. Steuerung"; |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1449 static uint8_t text_FR_MotionCtrl[] = "Motion Control"; |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1450 static uint8_t text_IT_MotionCtrl[] = "Motion Control"; |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1451 static uint8_t text_ES_MotionCtrl[] = "Motion Control"; |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1452 |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1453 static uint8_t text_EN_MoCtrlNone[] = "Off"; |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1454 static uint8_t text_DE_MoCtrlNone[] = "Aus"; |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1455 static uint8_t text_FR_MoCtrlNone[] = "Off"; |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1456 static uint8_t text_IT_MoCtrlNone[] = "Off"; |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1457 static uint8_t text_ES_MoCtrlNone[] = "Off"; |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1458 |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1459 static uint8_t text_EN_MoCtrlPitch[] = "Pitch move"; |
|
626
3e1a0e267f38
Added option to select sensitivity of focus detection:
Ideenmodellierer
parents:
619
diff
changeset
|
1460 static uint8_t text_DE_MoCtrlPitch[] = "Nicken"; |
|
368
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1461 static uint8_t text_FR_MoCtrlPitch[] = "Pitch move"; |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1462 static uint8_t text_IT_MoCtrlPitch[] = "Pitch move"; |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1463 static uint8_t text_ES_MoCtrlPitch[] = "Pitch move"; |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1464 |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1465 static uint8_t text_EN_MoCtrlSector[] = "Sector"; |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1466 static uint8_t text_DE_MoCtrlSector[] = "Sektoren"; |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1467 static uint8_t text_FR_MoCtrlSector[] = "Sector"; |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1468 static uint8_t text_IT_MoCtrlSector[] = "Sector"; |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1469 static uint8_t text_ES_MoCtrlSector[] = "Sector"; |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1470 |
|
373
7b981f8bdd41
Add scroll event by pitch angle detection:
ideenmodellierer
parents:
368
diff
changeset
|
1471 static uint8_t text_EN_MoCtrlScroll[] = "Scroll"; |
|
7b981f8bdd41
Add scroll event by pitch angle detection:
ideenmodellierer
parents:
368
diff
changeset
|
1472 static uint8_t text_DE_MoCtrlScroll[] = "Karussell"; |
|
7b981f8bdd41
Add scroll event by pitch angle detection:
ideenmodellierer
parents:
368
diff
changeset
|
1473 static uint8_t text_FR_MoCtrlScroll[] = "Scroll"; |
|
7b981f8bdd41
Add scroll event by pitch angle detection:
ideenmodellierer
parents:
368
diff
changeset
|
1474 static uint8_t text_IT_MoCtrlScroll[] = "Scroll"; |
|
7b981f8bdd41
Add scroll event by pitch angle detection:
ideenmodellierer
parents:
368
diff
changeset
|
1475 static uint8_t text_ES_MoCtrlScroll[] = "Scroll"; |
|
368
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
1476 |
| 38 | 1477 // Menu SYS2 Reset RTE and Firmware Update During Bluetooth Connection |
| 65 | 1478 static uint8_t text_EN_DecoDataLost[] = "Decompression data will be lost"; |
| 1479 static uint8_t text_DE_DecoDataLost[] = "Dekompressionsdaten verloren!"; | |
| 66 | 1480 static uint8_t text_FR_DecoDataLost[] = "RaZ de la décompression"; // RaZ |
| 968 | 1481 static uint8_t text_IT_DecoDataLost[] = "Dati di decompressione persi!"; |
| 80 | 1482 static uint8_t text_ES_DecoDataLost[] = "Se perderá la información de descompresión"; |
| 38 | 1483 |
| 1484 // Menu SYS1 sub and Dive Menu | |
| 1485 static uint8_t text_EN_SetBearing[] = "Set bearing"; | |
| 1486 static uint8_t text_DE_SetBearing[] = "Kurs setzen"; | |
| 1487 static uint8_t text_FR_SetBearing[] = "Réglage cap"; | |
| 65 | 1488 static uint8_t text_IT_SetBearing[] = "Direzione bussola"; |
| 80 | 1489 static uint8_t text_ES_SetBearing[] = "Ajustar rumbo"; |
| 38 | 1490 |
| 1491 static uint8_t text_EN_ResetBearing[] = "Clear bearing"; | |
| 1492 static uint8_t text_DE_ResetBearing[] = "Kurs löschen"; | |
| 1493 static uint8_t text_FR_ResetBearing[] = "Annulation cap"; | |
| 65 | 1494 static uint8_t text_IT_ResetBearing[] = "Cancellare rotta"; |
| 80 | 1495 static uint8_t text_ES_ResetBearing[] = "Borrar rumbo"; |
| 38 | 1496 |
| 1497 // Menu SYS1, sub | |
| 1498 static uint8_t text_EN_SensorList[] = "Sensor"; | |
| 968 | 1499 static uint8_t text_DE_SensorList[] = "Sensor"; |
| 1500 static uint8_t text_FR_SensorList[] = "Capteur"; | |
| 1501 static uint8_t text_IT_SensorList[] = "Sensore"; | |
| 80 | 1502 static uint8_t text_ES_SensorList[] = "Sensor"; |
| 38 | 1503 |
| 1504 // Menu SYS1, sub | |
| 65 | 1505 static uint8_t text_EN_ButtonLeft[] = "Left"; |
| 1506 static uint8_t text_DE_ButtonLeft[] = "Links"; | |
| 1507 static uint8_t text_FR_ButtonLeft[] = "Gauche"; | |
| 1508 static uint8_t text_IT_ButtonLeft[] = "Sinistra"; | |
| 80 | 1509 static uint8_t text_ES_ButtonLeft[] = "Izquierda"; |
| 38 | 1510 |
| 65 | 1511 static uint8_t text_EN_ButtonMitte[] = "Center"; |
| 1512 static uint8_t text_DE_ButtonMitte[] = "Mitte"; | |
| 38 | 1513 static uint8_t text_FR_ButtonMitte[] = "Centre"; |
| 65 | 1514 static uint8_t text_IT_ButtonMitte[] = "Centro"; |
| 80 | 1515 static uint8_t text_ES_ButtonMitte[] = "Centro"; |
| 38 | 1516 |
| 65 | 1517 static uint8_t text_EN_ButtonRight[] = "Right"; |
| 1518 static uint8_t text_DE_ButtonRight[] = "Rechts"; | |
| 38 | 1519 static uint8_t text_FR_ButtonRight[] = "Droite"; |
| 65 | 1520 static uint8_t text_IT_ButtonRight[] = "Destra"; |
| 80 | 1521 static uint8_t text_ES_ButtonRight[] = "Derecha"; |
| 38 | 1522 |
| 1523 // Customview in Divemode | |
| 1524 static uint8_t text_EN_Summary[] = "Overview"; | |
| 1525 static uint8_t text_DE_Summary[] = "Uebersicht"; // T42 hat keine großen Umlaute hw 170103 | |
| 1526 static uint8_t text_FR_Summary[] = "Exposé"; | |
| 1527 static uint8_t text_IT_Summary[] = "Tutto schermo"; | |
| 80 | 1528 static uint8_t text_ES_Summary[] = "Visión general"; |
| 38 | 1529 |
|
376
a90100959871
Added string for Empty/ Debug custom view selection
ideenmodellierer
parents:
373
diff
changeset
|
1530 static uint8_t text_EN_DispNoneDbg[] = "Debug/None"; |
|
a90100959871
Added string for Empty/ Debug custom view selection
ideenmodellierer
parents:
373
diff
changeset
|
1531 static uint8_t text_DE_DispNoneDbg[] = "Debug/Leer"; |
|
a90100959871
Added string for Empty/ Debug custom view selection
ideenmodellierer
parents:
373
diff
changeset
|
1532 static uint8_t text_FR_DispNoneDbg[] = "Debug/None"; |
|
a90100959871
Added string for Empty/ Debug custom view selection
ideenmodellierer
parents:
373
diff
changeset
|
1533 static uint8_t text_IT_DispNoneDbg[] = "Debug/None"; |
|
a90100959871
Added string for Empty/ Debug custom view selection
ideenmodellierer
parents:
373
diff
changeset
|
1534 static uint8_t text_ES_DispNoneDbg[] = "Debug/None"; |
|
a90100959871
Added string for Empty/ Debug custom view selection
ideenmodellierer
parents:
373
diff
changeset
|
1535 |
| 38 | 1536 static uint8_t text_EN_ApneaTotal[] = "total"; |
| 1537 static uint8_t text_DE_ApneaTotal[] = "gesamt"; | |
| 968 | 1538 static uint8_t text_FR_ApneaTotal[] = "total"; |
| 38 | 1539 static uint8_t text_IT_ApneaTotal[] = "Completo"; |
| 80 | 1540 static uint8_t text_ES_ApneaTotal[] = "Total"; |
| 38 | 1541 |
| 1542 static uint8_t text_EN_ApneaLast[] = "last"; | |
| 1543 static uint8_t text_DE_ApneaLast[] = "letzter"; | |
| 1544 static uint8_t text_FR_ApneaLast[] = "dernier"; | |
| 968 | 1545 static uint8_t text_IT_ApneaLast[] = "ultimo"; |
| 1546 static uint8_t text_ES_ApneaLast[] = "Ultimo"; | |
| 38 | 1547 |
| 65 | 1548 static uint8_t text_EN_ApneaSurface[] = "Surface time"; |
| 38 | 1549 static uint8_t text_DE_ApneaSurface[] = "Oberflächenzeit"; |
| 65 | 1550 static uint8_t text_FR_ApneaSurface[] = "Tps.surface"; |
| 38 | 1551 static uint8_t text_IT_ApneaSurface[] = "Tempo di superficie"; |
| 80 | 1552 static uint8_t text_ES_ApneaSurface[] = "Tiempo de superficie"; |
| 38 | 1553 |
|
552
531e7818b737
Added menu structure to acces viewport calibration:
Ideenmodellierer
parents:
547
diff
changeset
|
1554 static uint8_t text_EN_IndicateFrame[] = "Change frame color"; |
|
531e7818b737
Added menu structure to acces viewport calibration:
Ideenmodellierer
parents:
547
diff
changeset
|
1555 static uint8_t text_DE_IndicateFrame[] = "Farbwechsel Rahmen"; |
|
531e7818b737
Added menu structure to acces viewport calibration:
Ideenmodellierer
parents:
547
diff
changeset
|
1556 static uint8_t text_FR_IndicateFrame[] = ""; |
|
531e7818b737
Added menu structure to acces viewport calibration:
Ideenmodellierer
parents:
547
diff
changeset
|
1557 static uint8_t text_IT_IndicateFrame[] = ""; |
|
531e7818b737
Added menu structure to acces viewport calibration:
Ideenmodellierer
parents:
547
diff
changeset
|
1558 static uint8_t text_ES_IndicateFrame[] = ""; |
|
531e7818b737
Added menu structure to acces viewport calibration:
Ideenmodellierer
parents:
547
diff
changeset
|
1559 |
|
531e7818b737
Added menu structure to acces viewport calibration:
Ideenmodellierer
parents:
547
diff
changeset
|
1560 static uint8_t text_EN_BoostBacklight[] = "Boost Backlight:"; |
|
626
3e1a0e267f38
Added option to select sensitivity of focus detection:
Ideenmodellierer
parents:
619
diff
changeset
|
1561 static uint8_t text_DE_BoostBacklight[] = "Helligkeit +:"; |
|
552
531e7818b737
Added menu structure to acces viewport calibration:
Ideenmodellierer
parents:
547
diff
changeset
|
1562 static uint8_t text_FR_BoostBacklight[] = ""; |
|
531e7818b737
Added menu structure to acces viewport calibration:
Ideenmodellierer
parents:
547
diff
changeset
|
1563 static uint8_t text_IT_BoostBacklight[] = ""; |
|
531e7818b737
Added menu structure to acces viewport calibration:
Ideenmodellierer
parents:
547
diff
changeset
|
1564 static uint8_t text_ES_BoostBacklight[] = ""; |
|
531e7818b737
Added menu structure to acces viewport calibration:
Ideenmodellierer
parents:
547
diff
changeset
|
1565 |
|
626
3e1a0e267f38
Added option to select sensitivity of focus detection:
Ideenmodellierer
parents:
619
diff
changeset
|
1566 static uint8_t text_EN_FocusSpotSize[] = "Focus detection:"; |
|
3e1a0e267f38
Added option to select sensitivity of focus detection:
Ideenmodellierer
parents:
619
diff
changeset
|
1567 static uint8_t text_DE_FocusSpotSize[] = "Fokus Reaktion:"; |
|
3e1a0e267f38
Added option to select sensitivity of focus detection:
Ideenmodellierer
parents:
619
diff
changeset
|
1568 static uint8_t text_FR_FocusSpotSize[] = ""; |
|
3e1a0e267f38
Added option to select sensitivity of focus detection:
Ideenmodellierer
parents:
619
diff
changeset
|
1569 static uint8_t text_IT_FocusSpotSize[] = ""; |
|
3e1a0e267f38
Added option to select sensitivity of focus detection:
Ideenmodellierer
parents:
619
diff
changeset
|
1570 static uint8_t text_ES_FocusSpotSize[] = ""; |
|
929
63c340abd70e
Add a line to the compass heading dive menu that shows the currently set heading to enable the
heinrichsweikamp
parents:
902
diff
changeset
|
1571 |
| 38 | 1572 /* |
| 1573 static uint8_t text_EN_ApneaCount[] = ""; | |
| 1574 static uint8_t text_DE_ApneaCount[] = ""; | |
| 1575 static uint8_t text_FR_ApneaCount[] = ""; | |
| 1576 static uint8_t text_IT_ApneaCount[] = ""; | |
| 1577 static uint8_t text_ES_ApneaCount[] = ""; | |
| 1578 */ | |
| 1579 | |
| 1580 // ----------------------------------- | |
| 1581 // not used | |
| 1582 // ----------------------------------- | |
| 1583 | |
| 1584 | |
| 1585 // Menu DECO1 (future) | |
| 1586 static uint8_t text_EN_Apnoe[] = "Apnea"; | |
| 1587 static uint8_t text_DE_Apnoe[] = "Apnoe"; | |
| 1588 static uint8_t text_FR_Apnoe[] = "Apnée"; | |
| 56 | 1589 static uint8_t text_IT_Apnoe[] = "Apnea"; |
| 80 | 1590 static uint8_t text_ES_Apnoe[] = "Apnea"; |
| 38 | 1591 |
| 1592 // Menu DECO1 (future) | |
| 1593 static uint8_t text_EN_Gauge[] = "Gauge"; | |
| 1594 static uint8_t text_DE_Gauge[] = "Tiefenmesser"; | |
| 1595 static uint8_t text_FR_Gauge[] = "Profondimétre"; | |
| 1596 static uint8_t text_IT_Gauge[] = "Profondimetro"; | |
| 80 | 1597 static uint8_t text_ES_Gauge[] = "Profundimetro"; |
| 38 | 1598 |
| 1599 | |
| 1600 static uint8_t text_EN_Default[] = "Default"; | |
| 968 | 1601 static uint8_t text_DE_Default[] = "Standard"; |
| 38 | 1602 static uint8_t text_FR_Default[] = "Défaut"; |
| 1603 static uint8_t text_IT_Default[] = "Standard"; | |
| 80 | 1604 static uint8_t text_ES_Default[] = "Por defecto"; |
| 38 | 1605 |
| 56 | 1606 static uint8_t text_EN_LiterproMinute[] = "Liter/Minute"; |
| 38 | 1607 static uint8_t text_DE_LiterproMinute[] = "Liter/Minute"; |
| 1608 static uint8_t text_FR_LiterproMinute[] = "Litre/minute"; | |
| 56 | 1609 static uint8_t text_IT_LiterproMinute[] = "Litri/Minuti"; |
| 80 | 1610 static uint8_t text_ES_LiterproMinute[] = "Litros/Minuto"; |
| 38 | 1611 |
| 1612 static uint8_t text_EN_Reserve[] = "Reserve"; | |
| 968 | 1613 static uint8_t text_DE_Reserve[] = "Reserve"; |
| 38 | 1614 static uint8_t text_FR_Reserve[] = "Réserve"; |
| 1615 static uint8_t text_IT_Reserve[] = "Riserva"; | |
| 80 | 1616 static uint8_t text_ES_Reserve[] = "Reserva"; |
| 38 | 1617 |
| 1618 static uint8_t text_EN_Daylightsaving[] = "Daylight sav."; | |
| 1619 static uint8_t text_DE_Daylightsaving[] = "Sommerzeit"; | |
| 1620 static uint8_t text_FR_Daylightsaving[] = "Heure d'été"; | |
| 968 | 1621 static uint8_t text_IT_Daylightsaving[] = "L'ora legale"; |
| 80 | 1622 static uint8_t text_ES_Daylightsaving[] = "Horario de verano"; |
| 38 | 1623 |
| 1624 static uint8_t text_EN_ShowDebug[] = "Debug info"; | |
| 1625 static uint8_t text_DE_ShowDebug[] = "Fehlersuche"; | |
| 1626 static uint8_t text_FR_ShowDebug[] = "Info de déboguage"; | |
| 1627 static uint8_t text_IT_ShowDebug[] = "Informazioni Debug"; | |
| 80 | 1628 static uint8_t text_ES_ShowDebug[] = "Información de depuración"; |
| 38 | 1629 |
|
974
53900dfe335b
Rename "Travel" to "Work" gas as in the older/smaller OSTC (again)
heinrichsweikamp
parents:
969
diff
changeset
|
1630 static uint8_t text_EN_SimTravelGas[] = "Work Gas"; |
|
53900dfe335b
Rename "Travel" to "Work" gas as in the older/smaller OSTC (again)
heinrichsweikamp
parents:
969
diff
changeset
|
1631 static uint8_t text_DE_SimTravelGas[] = "Arbeitsgas"; |
|
53900dfe335b
Rename "Travel" to "Work" gas as in the older/smaller OSTC (again)
heinrichsweikamp
parents:
969
diff
changeset
|
1632 static uint8_t text_FR_SimTravelGas[] = "Gaz Travail"; |
|
53900dfe335b
Rename "Travel" to "Work" gas as in the older/smaller OSTC (again)
heinrichsweikamp
parents:
969
diff
changeset
|
1633 static uint8_t text_IT_SimTravelGas[] = "Gas da Lavaro"; |
|
53900dfe335b
Rename "Travel" to "Work" gas as in the older/smaller OSTC (again)
heinrichsweikamp
parents:
969
diff
changeset
|
1634 static uint8_t text_ES_SimTravelGas[] = "Gas de Labor"; |
| 38 | 1635 |
| 1636 static uint8_t text_EN_SimDecoGas[] = "Deco Gas"; | |
| 1637 static uint8_t text_DE_SimDecoGas[] = "Deko Gas"; | |
| 1638 static uint8_t text_FR_SimDecoGas[] = "Gaz déco"; | |
| 1639 static uint8_t text_IT_SimDecoGas[] = "Gas decompressivo"; | |
| 80 | 1640 static uint8_t text_ES_SimDecoGas[] = "Gas deco"; |
| 38 | 1641 |
| 1642 static uint8_t text_EN_OTU[] = "OTU"; | |
| 1643 static uint8_t text_DE_OTU[] = ""; | |
| 1644 static uint8_t text_FR_OTU[] = ""; // UTO ?? I think we do use OTU too. | |
| 1645 static uint8_t text_IT_OTU[] = "OTU"; | |
| 80 | 1646 static uint8_t text_ES_OTU[] = "OTUs"; |
| 38 | 1647 |
| 1648 /* | |
| 1649 static uint8_t text_EN_Button1[] = "Button 1"; | |
| 1650 static uint8_t text_DE_Button1[] = "Taster 1"; | |
| 1651 static uint8_t text_FR_Button1[] = "Bouton 1"; | |
| 56 | 1652 static uint8_t text_IT_Button1[] = "Pulsante1"; |
| 80 | 1653 static uint8_t text_ES_Button1[] = "Botón 1"; |
| 38 | 1654 |
| 1655 static uint8_t text_EN_Button2[] = "Button 2"; | |
| 1656 static uint8_t text_DE_Button2[] = "Taster 2"; | |
| 1657 static uint8_t text_FR_Button2[] = ""; | |
| 1658 static uint8_t text_IT_Button2[] = "Pulsante2"; | |
| 80 | 1659 static uint8_t text_ES_Button2[] = "Botón 2"; |
| 38 | 1660 |
| 1661 static uint8_t text_EN_Button3[] = "Button 3"; | |
| 1662 static uint8_t text_DE_Button3[] = "Taster 3"; | |
| 1663 static uint8_t text_FR_Button3[] = ""; | |
| 1664 static uint8_t text_IT_Button3[] = "Pulsante3"; | |
| 80 | 1665 static uint8_t text_ES_Button3[] = "Botón 3"; |
| 38 | 1666 |
| 1667 static uint8_t text_EN_Button4[] = "Button 4"; | |
| 1668 static uint8_t text_DE_Button4[] = "Taster 4"; | |
| 1669 static uint8_t text_FR_Button4[] = ""; | |
| 1670 static uint8_t text_IT_Button4[] = "Pulsante4"; | |
| 80 | 1671 static uint8_t text_ES_Button4[] = "Botón 4"; |
| 38 | 1672 |
| 1673 static uint8_t text_EN_Yes[] = "Yes"; | |
| 1674 static uint8_t text_DE_Yes[] = "Ja"; | |
| 1675 static uint8_t text_FR_Yes[] = "Oui"; | |
| 56 | 1676 static uint8_t text_IT_Yes[] = "Si"; |
| 80 | 1677 static uint8_t text_ES_Yes[] = "Si"; |
| 38 | 1678 |
| 1679 static uint8_t text_EN_No[] = "No"; | |
| 1680 static uint8_t text_DE_No[] = "Nein"; | |
| 1681 static uint8_t text_FR_No[] = "Non"; | |
| 56 | 1682 static uint8_t text_IT_No[] = "No"; |
| 80 | 1683 static uint8_t text_ES_No[] = "No"; |
| 38 | 1684 |
| 1685 static uint8_t text_EN_Conservatism[] = "Conservatism"; | |
| 1686 static uint8_t text_DE_Conservatism[] = "Konservatismus"; | |
| 1687 static uint8_t text_FR_Conservatism[] = "Conservatisme"; | |
| 1688 static uint8_t text_IT_Conservatism[] = "Conservativismo"; | |
| 80 | 1689 static uint8_t text_ES_Conservatism[] = "Conservadurismo"; |
| 38 | 1690 |
| 1691 static uint8_t text_EN_Conservatism[] = "Setting"; // was Dive Menu | |
| 1692 static uint8_t text_DE_Conservatism[] = "Level"; | |
| 1693 static uint8_t text_FR_Conservatism[] = "Conservatisme"; // Or "Durcis." | |
| 1694 static uint8_t text_IT_Conservatism[] = "Livello conservativismo"; | |
| 80 | 1695 static uint8_t text_ES_Conservatism[] = "Grado de conservadurismo"; |
| 38 | 1696 |
| 65 | 1697 static uint8_t text_EN_FirmwareUpdate[] = "Firmware update"; |
| 38 | 1698 static uint8_t text_DE_FirmwareUpdate[] = "Firmware aktualisieren"; |
| 65 | 1699 static uint8_t text_FR_FirmwareUpdate[] = ""; |
| 38 | 1700 static uint8_t text_IT_FirmwareUpdate[] = "Firmware"; |
| 80 | 1701 static uint8_t text_ES_FirmwareUpdate[] = "Actualizar firmware"; |
| 38 | 1702 |
| 1703 static uint8_t text_EN_ppo2_setting[] = "ppO2 bar"; | |
| 1704 static uint8_t text_DE_ppo2_setting[] = ""; | |
| 56 | 1705 static uint8_t text_FR_ppo2_setting[] = "ppO2 bar"; |
| 1706 static uint8_t text_IT_ppo2_setting[] = "ppO2 Bar"; | |
| 80 | 1707 static uint8_t text_ES_ppo2_setting[] = "ppO2 Bar"; |
| 38 | 1708 |
| 1709 static uint8_t text_EN_down[] = "Down"; | |
| 1710 static uint8_t text_DE_down[] = "Hinunter"; | |
| 1711 static uint8_t text_FR_down[] = ""; | |
| 1712 static uint8_t text_IT_down[] = "Sotto"; | |
| 80 | 1713 static uint8_t text_ES_down[] = "Abajo"; |
| 38 | 1714 |
| 1715 static uint8_t text_EN_enter[] = "Enter"; | |
| 1716 static uint8_t text_DE_enter[] = ""; | |
| 1717 static uint8_t text_FR_enter[] = "Entrer"; | |
| 1718 static uint8_t text_IT_enter[] = "Conferma"; | |
| 80 | 1719 static uint8_t text_ES_enter[] = "Entrar"; |
| 38 | 1720 |
| 1721 static uint8_t text_EN_Change[] = "Change"; | |
| 1722 static uint8_t text_DE_Change[] = ""; | |
| 1723 static uint8_t text_FR_Change[] = ""; | |
| 1724 static uint8_t text_IT_Change[] = "Cambio"; | |
| 80 | 1725 static uint8_t text_ES_Change[] = "Cambiar"; |
| 38 | 1726 */ |
| 1727 | |
| 1728 | |
| 1729 // not installed 2 | |
| 1730 | |
| 1731 static uint8_t text_EN_Bottle[] = "tank size"; | |
| 1732 static uint8_t text_DE_Bottle[] = "Flasche"; | |
| 1733 static uint8_t text_FR_Bottle[] = ""; | |
| 1734 static uint8_t text_IT_Bottle[] = "Litraggio bombola"; | |
| 80 | 1735 static uint8_t text_ES_Bottle[] = "Volumen botella"; |
| 38 | 1736 |
| 1737 | |
| 80 | 1738 static uint8_t text_EN_GasVorrat[] = "Pressure Budget"; |
| 1739 static uint8_t text_DE_GasVorrat[] = "Gasvorrat"; | |
| 38 | 1740 static uint8_t text_FR_GasVorrat[] = ""; |
| 1741 static uint8_t text_IT_GasVorrat[] = ""; | |
| 1742 static uint8_t text_ES_GasVorrat[] = ""; | |
| 1743 | |
| 107 | 1744 static uint8_t text_EN_FlipDisplay[] = "Flip display"; |
| 1745 static uint8_t text_DE_FlipDisplay[] = "Anzeige spiegeln"; | |
| 1746 static uint8_t text_FR_FlipDisplay[] = ""; | |
| 1747 static uint8_t text_IT_FlipDisplay[] = ""; | |
| 1748 static uint8_t text_ES_FlipDisplay[] = ""; | |
| 1749 | |
| 523 | 1750 static uint8_t text_EN_SelectCustom[] = "Select data views"; |
|
506
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1751 static uint8_t text_DE_SelectCustom[] = "Auswahl Datenanzeige"; |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1752 static uint8_t text_FR_SelectCustom[] = ""; |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1753 static uint8_t text_IT_SelectCustom[] = ""; |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1754 static uint8_t text_ES_SelectCustom[] = ""; |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1755 |
|
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
526
diff
changeset
|
1756 static uint8_t text_EN_SelectBigFont[] = "Select big font data views"; |
| 523 | 1757 static uint8_t text_DE_SelectBigFont[] = "Auswahl Grosschrift Daten"; |
|
506
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1758 static uint8_t text_FR_SelectBigFont[] = ""; |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1759 static uint8_t text_IT_SelectBigFont[] = ""; |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1760 static uint8_t text_ES_SelectBigFont[] = ""; |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1761 |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1762 static uint8_t text_EN_ppo2Air[] = "PPO2 and active gas"; |
| 543 | 1763 static uint8_t text_DE_ppo2Air[] = "PPO2/Atemgas"; |
|
506
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1764 static uint8_t text_FR_ppo2Air[] = ""; |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1765 static uint8_t text_IT_ppo2Air[] = ""; |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1766 static uint8_t text_ES_ppo2Air[] = ""; |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1767 |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1768 static uint8_t text_EN_Navigation[] = "Compass and stop watch"; |
| 543 | 1769 static uint8_t text_DE_Navigation[] = "Kompass/Stoppuhr"; |
|
506
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1770 static uint8_t text_FR_Navigation[] = ""; |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1771 static uint8_t text_IT_Navigation[] = ""; |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1772 static uint8_t text_ES_Navigation[] = ""; |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1773 |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1774 static uint8_t text_EN_DepthData[] = "Average and max depth"; |
| 543 | 1775 static uint8_t text_DE_DepthData[] = "Mittlere/max Tiefe"; |
|
506
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1776 static uint8_t text_FR_DepthData[] = ""; |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1777 static uint8_t text_IT_DepthData[] = ""; |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1778 static uint8_t text_ES_DepthData[] = ""; |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
1779 |
|
542
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
539
diff
changeset
|
1780 static uint8_t text_EN_DecoTTS[] = "Deco and TTS"; |
| 543 | 1781 static uint8_t text_DE_DecoTTS[] = "Deco/TTS"; |
|
542
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
539
diff
changeset
|
1782 static uint8_t text_FR_DecoTTS[] = ""; |
|
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
539
diff
changeset
|
1783 static uint8_t text_IT_DecoTTS[] = ""; |
|
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
539
diff
changeset
|
1784 static uint8_t text_ES_DecoTTS[] = ""; |
|
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
539
diff
changeset
|
1785 |
| 882 | 1786 static uint8_t text_EN_SlowExit[] = "Slow exit"; |
| 1787 static uint8_t text_DE_SlowExit[] = "Ausstieg"; | |
| 1788 static uint8_t text_FR_SlowExit[] = ""; | |
| 968 | 1789 static uint8_t text_IT_SlowExit[] = "Ascensione"; |
| 1790 static uint8_t text_ES_SlowExit[] = "Salida lenta"; | |
| 882 | 1791 |
|
654
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1792 static uint8_t text_EN_ScrubTime[] = "Scrubber time"; |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1793 static uint8_t text_DE_ScrubTime[] = "Kalkstandzeit"; |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1794 static uint8_t text_FR_ScrubTime[] = "Scrubber time"; |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1795 static uint8_t text_IT_ScrubTime[] = "Scrubber time"; |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1796 static uint8_t text_ES_ScrubTime[] = "Scrubber time"; |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1797 |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1798 static uint8_t text_EN_ScrubTimeReset[] = "Reset scrubber timer"; |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1799 static uint8_t text_DE_ScrubTimeReset[] = "Kalkstandzeit zurücksetzen"; |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1800 static uint8_t text_FR_ScrubTimeReset[] = "Reset scrubber timer"; |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1801 static uint8_t text_IT_ScrubTimeReset[] = "Reset scrubber timer"; |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1802 static uint8_t text_ES_ScrubTimeReset[] = "Reset scrubber timer"; |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1803 |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1804 static uint8_t text_EN_ScrubTimeMode[] = "Scrubber timer display"; |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1805 static uint8_t text_DE_ScrubTimeMode[] = "Anzeige Modus"; |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1806 static uint8_t text_FR_ScrubTimeMode[] = "Scrubber timer display"; |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1807 static uint8_t text_IT_ScrubTimeMode[] = "Scrubber timer display"; |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1808 static uint8_t text_ES_ScrubTimeMode[] = "Scrubber timer display"; |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1809 |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1810 static uint8_t text_EN_Percent[] = "Percent"; |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1811 static uint8_t text_DE_Percent[] = "Prozent"; |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1812 static uint8_t text_FR_Percent[] = "Percent"; |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1813 static uint8_t text_IT_Percent[] = "Percent"; |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1814 static uint8_t text_ES_Percent[] = "Percent"; |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
1815 |
| 662 | 1816 static uint8_t text_EN_PSCRO2Drop[] = "PSCR O2 drop"; |
| 1817 static uint8_t text_DE_PSCRO2Drop[] = "PSCR O2 Abfall"; | |
| 1818 static uint8_t text_FR_PSCRO2Drop[] = "PSCR O2 drop"; | |
| 1819 static uint8_t text_IT_PSCRO2Drop[] = "PSCR O2 drop"; | |
| 1820 static uint8_t text_ES_PSCRO2Drop[] = "PSCR O2 drop"; | |
| 1821 | |
| 1822 static uint8_t text_EN_LungRatio[] = "PSCR lung ratio"; | |
| 1823 static uint8_t text_DE_LungRatio[] = "PSCR Lungen Faktor"; | |
| 1824 static uint8_t text_FR_LungRatio[] = "PSCR lung ratio"; | |
| 1825 static uint8_t text_IT_LungRatio[] = "PSCR lung ratio"; | |
| 1826 static uint8_t text_ES_LungRatio[] = "PSCR lung ratio"; | |
| 1827 | |
| 1828 static uint8_t text_EN_CheckSettings[] = "Check settings"; | |
| 1829 static uint8_t text_DE_CheckSettings[] = "Prüfe Optionen"; | |
| 1830 static uint8_t text_FR_CheckSettings[] = "Check settings"; | |
| 1831 static uint8_t text_IT_CheckSettings[] = "Check settings"; | |
| 1832 static uint8_t text_ES_CheckSettings[] = "Check settings"; | |
| 1833 | |
| 1834 static uint8_t text_EN_SimPpo2[] = "Sim ppO2"; | |
| 1835 static uint8_t text_DE_SimPpo2[] = "Sim ppO2"; | |
| 1836 static uint8_t text_FR_SimPpo2[] = "Sim ppO2"; | |
| 1837 static uint8_t text_IT_SimPpo2[] = "Sim ppO2"; | |
| 1838 static uint8_t text_ES_SimPpo2[] = "Sim ppO2"; | |
| 1839 | |
| 1840 static uint8_t text_EN_CO2Sensor[] = "CO2 Sensor"; | |
| 1841 static uint8_t text_DE_CO2Sensor[] = "CO2 Sensor"; | |
| 1842 static uint8_t text_FR_CO2Sensor[] = "CO2 Sensor"; | |
| 1843 static uint8_t text_IT_CO2Sensor[] = "CO2 Sensor"; | |
| 1844 static uint8_t text_ES_CO2Sensor[] = "CO2 Sensor"; | |
| 1845 | |
|
740
5078da3845c0
Added button lock after wakeup in surface mode:
Ideenmodellierer
parents:
703
diff
changeset
|
1846 static uint8_t text_EN_KeyLock[] = "Key lock"; |
|
5078da3845c0
Added button lock after wakeup in surface mode:
Ideenmodellierer
parents:
703
diff
changeset
|
1847 static uint8_t text_DE_KeyLock[] = "Tastensperre"; |
| 968 | 1848 static uint8_t text_FR_KeyLock[] = "Verrouillage du clavier"; |
| 1849 static uint8_t text_IT_KeyLock[] = "Serratura a chiave"; | |
| 1850 static uint8_t text_ES_KeyLock[] = "Cerradura de llave"; | |
| 662 | 1851 |
| 759 | 1852 static uint8_t text_EN_NotCalibrated[] = "not calibrated"; |
| 1853 static uint8_t text_DE_NotCalibrated[] = "nicht kalibriert"; | |
| 1854 static uint8_t text_FR_NotCalibrated[] = "non calibrée"; | |
| 1855 static uint8_t text_IT_NotCalibrated[] = "non calibrata"; | |
| 1856 static uint8_t text_ES_NotCalibrated[] = "no calibrada"; | |
| 1857 | |
|
770
8deb28b2d4da
CCR overview in surface mode. Makes it easy to quickly check that all settings (mode, setpoints, diluent, scrubber timer) are correct when preparing to dive (also makes the OC gas list available in surface mode for the same reason).
heinrichsweikamp
parents:
759
diff
changeset
|
1858 static uint8_t text_EN_CcrSummary[] = "CCR Overview"; |
|
8deb28b2d4da
CCR overview in surface mode. Makes it easy to quickly check that all settings (mode, setpoints, diluent, scrubber timer) are correct when preparing to dive (also makes the OC gas list available in surface mode for the same reason).
heinrichsweikamp
parents:
759
diff
changeset
|
1859 static uint8_t text_DE_CcrSummary[] = "CCR Uebersicht"; // T42 hat keine großen Umlaute hw 170103 |
|
8deb28b2d4da
CCR overview in surface mode. Makes it easy to quickly check that all settings (mode, setpoints, diluent, scrubber timer) are correct when preparing to dive (also makes the OC gas list available in surface mode for the same reason).
heinrichsweikamp
parents:
759
diff
changeset
|
1860 static uint8_t text_FR_CcrSummary[] = "Aperçu du CCR"; |
|
8deb28b2d4da
CCR overview in surface mode. Makes it easy to quickly check that all settings (mode, setpoints, diluent, scrubber timer) are correct when preparing to dive (also makes the OC gas list available in surface mode for the same reason).
heinrichsweikamp
parents:
759
diff
changeset
|
1861 static uint8_t text_IT_CcrSummary[] = "Panoramica CCR"; |
|
8deb28b2d4da
CCR overview in surface mode. Makes it easy to quickly check that all settings (mode, setpoints, diluent, scrubber timer) are correct when preparing to dive (also makes the OC gas list available in surface mode for the same reason).
heinrichsweikamp
parents:
759
diff
changeset
|
1862 static uint8_t text_ES_CcrSummary[] = "Desc. gen. CCR"; |
|
8deb28b2d4da
CCR overview in surface mode. Makes it easy to quickly check that all settings (mode, setpoints, diluent, scrubber timer) are correct when preparing to dive (also makes the OC gas list available in surface mode for the same reason).
heinrichsweikamp
parents:
759
diff
changeset
|
1863 |
|
8deb28b2d4da
CCR overview in surface mode. Makes it easy to quickly check that all settings (mode, setpoints, diluent, scrubber timer) are correct when preparing to dive (also makes the OC gas list available in surface mode for the same reason).
heinrichsweikamp
parents:
759
diff
changeset
|
1864 static uint8_t text_EN_Setpoint[] = "Setpoint"; |
|
8deb28b2d4da
CCR overview in surface mode. Makes it easy to quickly check that all settings (mode, setpoints, diluent, scrubber timer) are correct when preparing to dive (also makes the OC gas list available in surface mode for the same reason).
heinrichsweikamp
parents:
759
diff
changeset
|
1865 static uint8_t text_DE_Setpoint[] = "Setpoint"; |
|
8deb28b2d4da
CCR overview in surface mode. Makes it easy to quickly check that all settings (mode, setpoints, diluent, scrubber timer) are correct when preparing to dive (also makes the OC gas list available in surface mode for the same reason).
heinrichsweikamp
parents:
759
diff
changeset
|
1866 static uint8_t text_FR_Setpoint[] = "Setpoint"; |
|
8deb28b2d4da
CCR overview in surface mode. Makes it easy to quickly check that all settings (mode, setpoints, diluent, scrubber timer) are correct when preparing to dive (also makes the OC gas list available in surface mode for the same reason).
heinrichsweikamp
parents:
759
diff
changeset
|
1867 static uint8_t text_IT_Setpoint[] = "Setpoint"; |
|
8deb28b2d4da
CCR overview in surface mode. Makes it easy to quickly check that all settings (mode, setpoints, diluent, scrubber timer) are correct when preparing to dive (also makes the OC gas list available in surface mode for the same reason).
heinrichsweikamp
parents:
759
diff
changeset
|
1868 static uint8_t text_ES_Setpoint[] = "Setpoint"; |
|
8deb28b2d4da
CCR overview in surface mode. Makes it easy to quickly check that all settings (mode, setpoints, diluent, scrubber timer) are correct when preparing to dive (also makes the OC gas list available in surface mode for the same reason).
heinrichsweikamp
parents:
759
diff
changeset
|
1869 |
|
8deb28b2d4da
CCR overview in surface mode. Makes it easy to quickly check that all settings (mode, setpoints, diluent, scrubber timer) are correct when preparing to dive (also makes the OC gas list available in surface mode for the same reason).
heinrichsweikamp
parents:
759
diff
changeset
|
1870 static uint8_t text_EN_Scrubber[] = "Scrubber"; |
|
8deb28b2d4da
CCR overview in surface mode. Makes it easy to quickly check that all settings (mode, setpoints, diluent, scrubber timer) are correct when preparing to dive (also makes the OC gas list available in surface mode for the same reason).
heinrichsweikamp
parents:
759
diff
changeset
|
1871 static uint8_t text_DE_Scrubber[] = "Atemkalk"; |
|
8deb28b2d4da
CCR overview in surface mode. Makes it easy to quickly check that all settings (mode, setpoints, diluent, scrubber timer) are correct when preparing to dive (also makes the OC gas list available in surface mode for the same reason).
heinrichsweikamp
parents:
759
diff
changeset
|
1872 static uint8_t text_FR_Scrubber[] = "Scrubber"; |
|
8deb28b2d4da
CCR overview in surface mode. Makes it easy to quickly check that all settings (mode, setpoints, diluent, scrubber timer) are correct when preparing to dive (also makes the OC gas list available in surface mode for the same reason).
heinrichsweikamp
parents:
759
diff
changeset
|
1873 static uint8_t text_IT_Scrubber[] = "Scrubber"; |
|
8deb28b2d4da
CCR overview in surface mode. Makes it easy to quickly check that all settings (mode, setpoints, diluent, scrubber timer) are correct when preparing to dive (also makes the OC gas list available in surface mode for the same reason).
heinrichsweikamp
parents:
759
diff
changeset
|
1874 static uint8_t text_ES_Scrubber[] = "Scrubber"; |
|
8deb28b2d4da
CCR overview in surface mode. Makes it easy to quickly check that all settings (mode, setpoints, diluent, scrubber timer) are correct when preparing to dive (also makes the OC gas list available in surface mode for the same reason).
heinrichsweikamp
parents:
759
diff
changeset
|
1875 |
|
773
2c243233c999
Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents:
770
diff
changeset
|
1876 static uint8_t text_EN_BailoutShort[] = "BO"; |
|
2c243233c999
Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents:
770
diff
changeset
|
1877 static uint8_t text_DE_BailoutShort[] = "BO"; |
|
2c243233c999
Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents:
770
diff
changeset
|
1878 static uint8_t text_FR_BailoutShort[] = "BO"; |
|
2c243233c999
Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents:
770
diff
changeset
|
1879 static uint8_t text_IT_BailoutShort[] = "BO"; |
|
2c243233c999
Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents:
770
diff
changeset
|
1880 static uint8_t text_ES_BailoutShort[] = "BO"; |
|
2c243233c999
Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents:
770
diff
changeset
|
1881 |
|
2c243233c999
Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents:
770
diff
changeset
|
1882 static uint8_t text_EN_LoopShort[] = "CC"; |
|
2c243233c999
Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents:
770
diff
changeset
|
1883 static uint8_t text_DE_LoopShort[] = "KL"; |
|
2c243233c999
Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents:
770
diff
changeset
|
1884 static uint8_t text_FR_LoopShort[] = "CC"; |
|
2c243233c999
Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents:
770
diff
changeset
|
1885 static uint8_t text_IT_LoopShort[] = "CC"; |
|
2c243233c999
Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents:
770
diff
changeset
|
1886 static uint8_t text_ES_LoopShort[] = "CC"; |
|
2c243233c999
Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents:
770
diff
changeset
|
1887 |
|
775
46c6d2380d4e
Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents:
774
diff
changeset
|
1888 static uint8_t text_EN_SetpointShort[] = "SP"; |
|
46c6d2380d4e
Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents:
774
diff
changeset
|
1889 static uint8_t text_DE_SetpointShort[] = "SP"; |
|
46c6d2380d4e
Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents:
774
diff
changeset
|
1890 static uint8_t text_FR_SetpointShort[] = "SP"; |
|
46c6d2380d4e
Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents:
774
diff
changeset
|
1891 static uint8_t text_IT_SetpointShort[] = "SP"; |
|
46c6d2380d4e
Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents:
774
diff
changeset
|
1892 static uint8_t text_ES_SetpointShort[] = "SP"; |
|
46c6d2380d4e
Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents:
774
diff
changeset
|
1893 |
|
788
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1894 static uint8_t text_EN_SetpointLow[] = "low"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1895 static uint8_t text_DE_SetpointLow[] = "tief"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1896 static uint8_t text_FR_SetpointLow[] = "low"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1897 static uint8_t text_IT_SetpointLow[] = "low"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1898 static uint8_t text_ES_SetpointLow[] = "low"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1899 |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1900 static uint8_t text_EN_SetpointHigh[] = "high"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1901 static uint8_t text_DE_SetpointHigh[] = "hoch"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1902 static uint8_t text_FR_SetpointHigh[] = "high"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1903 static uint8_t text_IT_SetpointHigh[] = "high"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1904 static uint8_t text_ES_SetpointHigh[] = "high"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1905 |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1906 static uint8_t text_EN_SetpointDeco[] = "deco"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1907 static uint8_t text_DE_SetpointDeco[] = "deko"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1908 static uint8_t text_FR_SetpointDeco[] = "deco"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1909 static uint8_t text_IT_SetpointDeco[] = "deco"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1910 static uint8_t text_ES_SetpointDeco[] = "deco"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1911 |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1912 static uint8_t text_EN_SetpointDelayed[] = "delayed until deco clear"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1913 static uint8_t text_DE_SetpointDelayed[] = "erst wenn Deko beendet"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1914 static uint8_t text_FR_SetpointDelayed[] = "delayed until deco clear"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1915 static uint8_t text_IT_SetpointDelayed[] = "delayed until deco clear"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1916 static uint8_t text_ES_SetpointDelayed[] = "delayed until deco clear"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1917 |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1918 static uint8_t text_EN_Enabled[] = "enabled"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1919 static uint8_t text_DE_Enabled[] = "aktiv"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1920 static uint8_t text_FR_Enabled[] = "activé"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1921 static uint8_t text_IT_Enabled[] = "abilitato"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1922 static uint8_t text_ES_Enabled[] = "activado"; |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
1923 |
|
789
b7cd0c5c8e43
When using automatic setpoint switching, allow the user to set an arbitrary ppO2 as a custom setpoint during the dive.
heinrichsweikamp
parents:
788
diff
changeset
|
1924 static uint8_t text_EN_Custom[] = "Custom"; |
|
b7cd0c5c8e43
When using automatic setpoint switching, allow the user to set an arbitrary ppO2 as a custom setpoint during the dive.
heinrichsweikamp
parents:
788
diff
changeset
|
1925 static uint8_t text_DE_Custom[] = "Benützer"; |
|
b7cd0c5c8e43
When using automatic setpoint switching, allow the user to set an arbitrary ppO2 as a custom setpoint during the dive.
heinrichsweikamp
parents:
788
diff
changeset
|
1926 static uint8_t text_FR_Custom[] = "Custom"; |
|
b7cd0c5c8e43
When using automatic setpoint switching, allow the user to set an arbitrary ppO2 as a custom setpoint during the dive.
heinrichsweikamp
parents:
788
diff
changeset
|
1927 static uint8_t text_IT_Custom[] = "Custom"; |
|
b7cd0c5c8e43
When using automatic setpoint switching, allow the user to set an arbitrary ppO2 as a custom setpoint during the dive.
heinrichsweikamp
parents:
788
diff
changeset
|
1928 static uint8_t text_ES_Custom[] = "Custom"; |
|
b7cd0c5c8e43
When using automatic setpoint switching, allow the user to set an arbitrary ppO2 as a custom setpoint during the dive.
heinrichsweikamp
parents:
788
diff
changeset
|
1929 |
|
805
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
789
diff
changeset
|
1930 static uint8_t text_EN_Timer[] = "Timer"; |
|
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
789
diff
changeset
|
1931 static uint8_t text_DE_Timer[] = "Timer"; |
|
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
789
diff
changeset
|
1932 static uint8_t text_FR_Timer[] = "Minuteur"; |
|
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
789
diff
changeset
|
1933 static uint8_t text_IT_Timer[] = "Timer"; |
|
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
789
diff
changeset
|
1934 static uint8_t text_ES_Timer[] = "Temporizador"; |
|
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
789
diff
changeset
|
1935 |
|
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
789
diff
changeset
|
1936 static uint8_t text_EN_Starting[] = "Start in"; |
|
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
789
diff
changeset
|
1937 static uint8_t text_DE_Starting[] = "Startet in"; |
|
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
789
diff
changeset
|
1938 static uint8_t text_FR_Starting[] = "Démarre en"; |
|
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
789
diff
changeset
|
1939 static uint8_t text_IT_Starting[] = "Inizio in"; |
|
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
789
diff
changeset
|
1940 static uint8_t text_ES_Starting[] = "Comienza en"; |
|
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
789
diff
changeset
|
1941 |
|
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
789
diff
changeset
|
1942 static uint8_t text_EN_Finished[] = "Finished"; |
|
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
789
diff
changeset
|
1943 static uint8_t text_DE_Finished[] = "Beendet"; |
|
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
789
diff
changeset
|
1944 static uint8_t text_FR_Finished[] = "Fini"; |
|
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
789
diff
changeset
|
1945 static uint8_t text_IT_Finished[] = "Finito"; |
|
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
789
diff
changeset
|
1946 static uint8_t text_ES_Finished[] = "Terminado"; |
|
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
789
diff
changeset
|
1947 |
|
899
2225c467f1e9
Added data path and visualization for position data:
Ideenmodellierer
parents:
882
diff
changeset
|
1948 static uint8_t text_EN_Position[] = "Position"; |
|
2225c467f1e9
Added data path and visualization for position data:
Ideenmodellierer
parents:
882
diff
changeset
|
1949 static uint8_t text_DE_Position[] = "Position"; |
|
2225c467f1e9
Added data path and visualization for position data:
Ideenmodellierer
parents:
882
diff
changeset
|
1950 static uint8_t text_FR_Position[] = ""; |
|
2225c467f1e9
Added data path and visualization for position data:
Ideenmodellierer
parents:
882
diff
changeset
|
1951 static uint8_t text_IT_Position[] = ""; |
|
2225c467f1e9
Added data path and visualization for position data:
Ideenmodellierer
parents:
882
diff
changeset
|
1952 static uint8_t text_ES_Position[] = ""; |
|
2225c467f1e9
Added data path and visualization for position data:
Ideenmodellierer
parents:
882
diff
changeset
|
1953 |
| 902 | 1954 static uint8_t text_EN_VpmTable[] = "VPM table mode"; |
| 1955 static uint8_t text_DE_VpmTable[] = "VPM Tabellenmodus"; | |
| 1956 static uint8_t text_FR_VpmTable[] = ""; | |
| 1957 static uint8_t text_IT_VpmTable[] = ""; | |
| 1958 static uint8_t text_ES_VpmTable[] = ""; | |
| 1959 | |
|
865
cb386cccc7c5
When opening the logbook, or scrolling inside a logbook page,
heinrichsweikamp
parents:
805
diff
changeset
|
1960 static uint8_t text_EN_Page[] = "Page"; |
|
cb386cccc7c5
When opening the logbook, or scrolling inside a logbook page,
heinrichsweikamp
parents:
805
diff
changeset
|
1961 static uint8_t text_DE_Page[] = "Blättern"; |
|
cb386cccc7c5
When opening the logbook, or scrolling inside a logbook page,
heinrichsweikamp
parents:
805
diff
changeset
|
1962 static uint8_t text_FR_Page[] = "Défiler"; |
|
cb386cccc7c5
When opening the logbook, or scrolling inside a logbook page,
heinrichsweikamp
parents:
805
diff
changeset
|
1963 static uint8_t text_IT_Page[] = "Scorrere"; |
|
cb386cccc7c5
When opening the logbook, or scrolling inside a logbook page,
heinrichsweikamp
parents:
805
diff
changeset
|
1964 static uint8_t text_ES_Page[] = "Desplazarse"; |
|
cb386cccc7c5
When opening the logbook, or scrolling inside a logbook page,
heinrichsweikamp
parents:
805
diff
changeset
|
1965 |
|
929
63c340abd70e
Add a line to the compass heading dive menu that shows the currently set heading to enable the
heinrichsweikamp
parents:
902
diff
changeset
|
1966 static uint8_t text_EN_Current[] = "Current"; |
|
63c340abd70e
Add a line to the compass heading dive menu that shows the currently set heading to enable the
heinrichsweikamp
parents:
902
diff
changeset
|
1967 static uint8_t text_DE_Current[] = "Aktuell"; |
|
63c340abd70e
Add a line to the compass heading dive menu that shows the currently set heading to enable the
heinrichsweikamp
parents:
902
diff
changeset
|
1968 static uint8_t text_FR_Current[] = "Actuel"; |
|
63c340abd70e
Add a line to the compass heading dive menu that shows the currently set heading to enable the
heinrichsweikamp
parents:
902
diff
changeset
|
1969 static uint8_t text_IT_Current[] = "Attuale"; |
|
63c340abd70e
Add a line to the compass heading dive menu that shows the currently set heading to enable the
heinrichsweikamp
parents:
902
diff
changeset
|
1970 static uint8_t text_ES_Current[] = "Actual"; |
|
63c340abd70e
Add a line to the compass heading dive menu that shows the currently set heading to enable the
heinrichsweikamp
parents:
902
diff
changeset
|
1971 |
|
63c340abd70e
Add a line to the compass heading dive menu that shows the currently set heading to enable the
heinrichsweikamp
parents:
902
diff
changeset
|
1972 static uint8_t text_EN_Log[] = "Log"; |
|
63c340abd70e
Add a line to the compass heading dive menu that shows the currently set heading to enable the
heinrichsweikamp
parents:
902
diff
changeset
|
1973 static uint8_t text_DE_Log[] = "Aufzeichnen"; |
|
63c340abd70e
Add a line to the compass heading dive menu that shows the currently set heading to enable the
heinrichsweikamp
parents:
902
diff
changeset
|
1974 static uint8_t text_FR_Log[] = "Enregistrer"; |
|
63c340abd70e
Add a line to the compass heading dive menu that shows the currently set heading to enable the
heinrichsweikamp
parents:
902
diff
changeset
|
1975 static uint8_t text_IT_Log[] = "Registrare"; |
|
63c340abd70e
Add a line to the compass heading dive menu that shows the currently set heading to enable the
heinrichsweikamp
parents:
902
diff
changeset
|
1976 static uint8_t text_ES_Log[] = "Registrar"; |
|
63c340abd70e
Add a line to the compass heading dive menu that shows the currently set heading to enable the
heinrichsweikamp
parents:
902
diff
changeset
|
1977 |
| 944 | 1978 static uint8_t text_EN_DDMMYY[] = "DDMMYY"; |
| 1979 static uint8_t text_DE_DDMMYY[] = "TTMMJJ"; | |
| 1980 static uint8_t text_FR_DDMMYY[] = ""; | |
| 1981 static uint8_t text_IT_DDMMYY[] = ""; | |
| 1982 static uint8_t text_ES_DDMMYY[] = ""; | |
| 1983 | |
| 1984 static uint8_t text_EN_MMDDYY[] = "MMDDYY"; | |
| 1985 static uint8_t text_DE_MMDDYY[] = "MMTTJJ"; | |
| 1986 static uint8_t text_FR_MMDDYY[] = ""; | |
| 1987 static uint8_t text_IT_MMDDYY[] = ""; | |
| 1988 static uint8_t text_ES_MMDDYY[] = ""; | |
| 1989 | |
| 1990 static uint8_t text_EN_YYMMDD[] = "YYMMDD"; | |
| 1991 static uint8_t text_DE_YYMMDD[] = "JJMMTT"; | |
| 1992 static uint8_t text_FR_YYMMDD[] = ""; | |
| 1993 static uint8_t text_IT_YYMMDD[] = ""; | |
| 1994 static uint8_t text_ES_YYMMDD[] = ""; | |
| 1995 | |
| 949 | 1996 static uint8_t text_EN_TIMEZONE[] = "Time zone"; |
| 1997 static uint8_t text_DE_TIMEZONE[] = "Zeitzone"; | |
| 1998 static uint8_t text_FR_TIMEZONE[] = ""; | |
| 1999 static uint8_t text_IT_TIMEZONE[] = ""; | |
| 2000 static uint8_t text_ES_TIMEZONE[] = ""; | |
| 944 | 2001 |
| 951 | 2002 static uint8_t text_EN_BUZZER[] = "Buzzer"; |
| 2003 static uint8_t text_DE_BUZZER[] = "Vibration"; | |
| 2004 static uint8_t text_FR_BUZZER[] = ""; | |
| 2005 static uint8_t text_IT_BUZZER[] = ""; | |
| 2006 static uint8_t text_ES_BUZZER[] = ""; | |
| 2007 | |
|
967
9b418e63dbc2
Add a 'Reverse' action to the compass heading dive menu.
heinrichsweikamp
parents:
958
diff
changeset
|
2008 static uint8_t text_EN_Reverse[] = "Reverse"; |
|
9b418e63dbc2
Add a 'Reverse' action to the compass heading dive menu.
heinrichsweikamp
parents:
958
diff
changeset
|
2009 static uint8_t text_DE_Reverse[] = "Umkehren"; |
|
9b418e63dbc2
Add a 'Reverse' action to the compass heading dive menu.
heinrichsweikamp
parents:
958
diff
changeset
|
2010 static uint8_t text_FR_Reverse[] = "Inverser"; |
|
9b418e63dbc2
Add a 'Reverse' action to the compass heading dive menu.
heinrichsweikamp
parents:
958
diff
changeset
|
2011 static uint8_t text_IT_Reverse[] = "Invertire"; |
|
9b418e63dbc2
Add a 'Reverse' action to the compass heading dive menu.
heinrichsweikamp
parents:
958
diff
changeset
|
2012 static uint8_t text_ES_Reverse[] = "Invertir"; |
|
9b418e63dbc2
Add a 'Reverse' action to the compass heading dive menu.
heinrichsweikamp
parents:
958
diff
changeset
|
2013 |
| 1032 | 2014 static uint8_t text_EN_Pulse[] = "Heartbeat sensor (BT)"; |
| 2015 static uint8_t text_DE_Pulse[] = "Pulssensor (BT)"; | |
| 2016 static uint8_t text_FR_Pulse[] = ""; | |
| 2017 static uint8_t text_IT_Pulse[] = ""; | |
| 2018 static uint8_t text_ES_Pulse[] = ""; | |
| 2019 | |
| 1035 | 2020 static uint8_t text_EN_Logger[] = "Debug Messages"; |
| 2021 static uint8_t text_DE_Logger[] = "Logger"; | |
| 2022 static uint8_t text_FR_Logger[] = ""; | |
| 2023 static uint8_t text_IT_Logger[] = ""; | |
| 2024 static uint8_t text_ES_Logger[] = ""; | |
| 1032 | 2025 |
| 38 | 2026 /* Lookup Table -------------------------------------------------------------*/ |
| 2027 | |
| 2028 const tText text_array[] = | |
| 2029 { | |
| 2030 {(uint8_t)TXT_Language, {text_EN_Language, text_DE_Language, text_FR_Language, text_IT_Language, text_ES_Language}}, | |
| 2031 {(uint8_t)TXT_LanguageName, {text_EN_LanguageName, text_DE_LanguageName, text_FR_LanguageName, text_IT_LanguageName, text_ES_LanguageName}}, | |
| 2032 {(uint8_t)TXT_Depth, {text_EN_Depth, text_DE_Depth, text_FR_Depth, text_IT_Depth, text_ES_Depth}}, | |
| 2033 {(uint8_t)TXT_Divetime, {text_EN_Divetime, text_DE_Divetime, text_FR_Divetime, text_IT_Divetime, text_ES_Divetime}}, | |
| 2034 {(uint8_t)TXT_MaxDepth, {text_EN_MaxDepth, text_DE_MaxDepth, text_FR_MaxDepth, text_IT_MaxDepth, text_ES_MaxDepth}}, | |
| 2035 {(uint8_t)TXT_Decostop, {text_EN_Decostop, text_DE_Decostop, text_FR_Decostop, text_IT_Decostop, text_ES_Decostop}}, | |
| 2036 {(uint8_t)TXT_Nullzeit, {text_EN_Nullzeit, text_DE_Nullzeit, text_FR_Nullzeit, text_IT_Nullzeit, text_ES_Nullzeit}}, | |
| 2037 {(uint8_t)TXT_ppO2, {text_EN_ppO2, text_DE_ppO2, text_FR_ppO2, text_IT_ppO2, text_ES_ppO2}}, | |
| 2038 {(uint8_t)TXT_TTS, {text_EN_TTS, text_DE_TTS, text_FR_TTS, text_IT_TTS, text_ES_TTS}}, | |
| 2039 {(uint8_t)TXT_CNS, {text_EN_CNSshort, text_DE_CNSshort, text_FR_CNSshort, text_IT_CNSshort, text_ES_CNSshort}}, | |
| 2040 {(uint8_t)TXT_Temperature, {text_EN_Temperature, text_DE_Temperature, text_FR_Temperature, text_IT_Temperature, text_ES_Temperature}}, | |
| 2041 {(uint8_t)TXT_FutureTTS, {text_EN_FutureTTS, text_DE_FutureTTS, text_FR_FutureTTS, text_IT_FutureTTS, text_ES_FutureTTS}}, | |
| 2042 {(uint8_t)TXT_AvgDepth, {text_EN_AvgDepth, text_DE_AvgDepth, text_FR_AvgDepth, text_IT_AvgDepth, text_ES_AvgDepth}}, | |
| 2043 {(uint8_t)TXT_Ceiling, {text_EN_Ceiling, text_DE_Ceiling, text_FR_Ceiling, text_IT_Ceiling, text_ES_Ceiling}}, | |
| 2044 {(uint8_t)TXT_ActualGradient, {text_EN_ActualGradient, text_DE_ActualGradient, text_FR_ActualGradient, text_IT_ActualGradient, text_ES_ActualGradient}}, | |
| 2045 {(uint8_t)TXT_Stopwatch, {text_EN_Stopwatch, text_DE_Stopwatch, text_FR_Stopwatch, text_IT_Stopwatch, text_ES_Stopwatch}}, | |
| 2046 {(uint8_t)TXT_Gas, {text_EN_Gas, text_DE_Gas, text_FR_Gas, text_IT_Gas, text_ES_Gas}}, | |
| 672 | 2047 {(uint8_t)TXT_ChargeHour, {text_EN_ChargeHour, text_DE_ChargeHour, text_FR_ChargeHour, text_IT_ChargeHour, text_ES_ChargeHour}}, |
| 38 | 2048 {(uint8_t)TXT_Date, {text_EN_Date, text_DE_Date, text_FR_Date, text_IT_Date, text_ES_Date}}, |
| 2049 {(uint8_t)TXT_Format, {text_EN_Format, text_DE_Format, text_FR_Format, text_IT_Format, text_ES_Format}}, | |
| 2050 {(uint8_t)TXT_Warning, {text_EN_Warning, text_DE_Warning, text_FR_Warning, text_IT_Warning, text_ES_Warning}}, | |
| 672 | 2051 {(uint8_t)TXT_Charging, {text_EN_Charging, text_DE_Charging, text_FR_Charging, text_IT_Charging, text_ES_Charging}}, |
| 38 | 2052 {(uint8_t)TXT_o2Sensors, {text_EN_o2Sensors, text_DE_o2Sensors, text_FR_o2Sensors, text_IT_o2Sensors, text_ES_o2Sensors}}, |
| 2053 {(uint8_t)TXT_Brightness, {text_EN_Brightness, text_DE_Brightness, text_FR_Brightness, text_IT_Brightness, text_ES_Brightness}}, | |
| 2054 {(uint8_t)TXT_Cave, {text_EN_Cave, text_DE_Cave, text_FR_Cave, text_IT_Cave, text_ES_Cave}}, | |
| 2055 {(uint8_t)TXT_Eco, {text_EN_Eco, text_DE_Eco, text_FR_Eco, text_IT_Eco, text_ES_Eco}}, | |
| 2056 {(uint8_t)TXT_Normal, {text_EN_Normal, text_DE_Normal, text_FR_Normal, text_IT_Normal, text_ES_Normal}}, | |
| 2057 {(uint8_t)TXT_Bright, {text_EN_Bright, text_DE_Bright, text_FR_Bright, text_IT_Bright, text_ES_Bright}}, | |
| 2058 {(uint8_t)TXT_Ultrabright, {text_EN_Ultrabright, text_DE_Ultrabright, text_FR_Ultrabright, text_IT_Ultrabright, text_ES_Ultrabright}}, | |
| 2059 {(uint8_t)TXT_OC_Gas_Edit, {text_EN_OC_Gas_Edit, text_DE_OC_Gas_Edit, text_FR_OC_Gas_Edit, text_IT_OC_Gas_Edit, text_ES_OC_Gas_Edit}}, | |
| 2060 {(uint8_t)TXT_Diluent_Gas_Edit, {text_EN_Diluent_Gas_Edit, text_DE_Diluent_Gas_Edit, text_FR_Diluent_Gas_Edit, text_IT_Diluent_Gas_Edit, text_ES_Diluent_Gas_Edit}}, | |
| 2061 {(uint8_t)TXT_Mix, {text_EN_Mix, text_DE_Mix, text_FR_Mix, text_IT_Mix, text_ES_Mix}}, | |
| 2062 {(uint8_t)TXT_First, {text_EN_First, text_DE_First, text_FR_First, text_IT_First, text_ES_First}}, | |
| 2063 {(uint8_t)TXT_Deco, {text_EN_Deco, text_DE_Deco, text_FR_Deco, text_IT_Deco, text_ES_Deco}}, | |
| 2064 {(uint8_t)TXT_Travel, {text_EN_Travel, text_DE_Travel, text_FR_Travel, text_IT_Travel, text_ES_Travel}}, | |
|
526
88c626d01ee5
Added new option to gas configuration: "Off":
Ideenmodellierer
parents:
523
diff
changeset
|
2065 {(uint8_t)TXT_Inactive, {text_EN_Inactive, text_DE_Inactive, text_FR_Inactive, text_IT_Inactive, text_ES_Inactive}}, |
|
88c626d01ee5
Added new option to gas configuration: "Off":
Ideenmodellierer
parents:
523
diff
changeset
|
2066 {(uint8_t)TXT_Off, {text_EN_Off, text_DE_Off, text_FR_Off, text_IT_Off, text_ES_Off}}, |
| 38 | 2067 {(uint8_t)TXT_ChangeDepth, {text_EN_ChangeDepth, text_DE_ChangeDepth, text_FR_ChangeDepth, text_IT_ChangeDepth, text_ES_ChangeDepth}}, |
| 2068 {(uint8_t)TXT_Active, {text_EN_Active, text_DE_Active, text_FR_Active, text_IT_Active, text_ES_Active}}, | |
| 2069 {(uint8_t)TXT_Default, {text_EN_Default, text_DE_Default, text_FR_Default, text_IT_Default, text_ES_Default}}, | |
| 2070 {(uint8_t)TXT_Type, {text_EN_Type, text_DE_Type, text_FR_Type, text_IT_Type, text_ES_Type}}, | |
| 2071 {(uint8_t)TXT_Setpoint_Edit, {text_EN_Setpoint_Edit, text_DE_Setpoint_Edit, text_FR_Setpoint_Edit, text_IT_Setpoint_Edit, text_ES_Setpoint_Edit}}, | |
| 2072 {(uint8_t)TXT_DecoAlgorithm, {text_EN_Algorithm, text_DE_Algorithm, text_FR_Algorithm, text_IT_Algorithm, text_ES_Algorithm}}, | |
| 2073 {(uint8_t)TXT_ZHL16GF, {text_EN_ZHL16GF, text_DE_ZHL16GF, text_FR_ZHL16GF, text_IT_ZHL16GF, text_ES_ZHL16GF}}, | |
| 2074 {(uint8_t)TXT_aGF, {text_EN_aGF, text_DE_aGF, text_FR_aGF, text_IT_aGF, text_ES_aGF}}, | |
| 2075 {(uint8_t)TXT_VPM, {text_EN_VPM, text_DE_VPM, text_FR_VPM, text_IT_VPM, text_ES_VPM}}, | |
| 2076 {(uint8_t)TXT_SafetyStop, {text_EN_SafetyStop, text_DE_SafetyStop, text_FR_SafetyStop, text_IT_SafetyStop, text_ES_SafetyStop}}, | |
| 2077 {(uint8_t)TXT_low_high, {text_EN_LowHigh, text_DE_LowHigh, text_FR_LowHigh, text_IT_LowHigh, text_ES_LowHigh}}, | |
| 2078 {(uint8_t)TXT_ppO2Name, {text_EN_ppO2Name, text_DE_ppO2Name, text_FR_ppO2Name, text_IT_ppO2Name, text_ES_ppO2Name}}, | |
| 2079 {(uint8_t)TXT_Maximum, {text_EN_Maximum, text_DE_Maximum, text_FR_Maximum, text_IT_Maximum, text_ES_Maximum}}, | |
| 2080 {(uint8_t)TXT_Minimum, {text_EN_Minimum, text_DE_Minimum, text_FR_Minimum, text_IT_Minimum, text_ES_Minimum}}, | |
| 2081 {(uint8_t)TXT_Minutes, {text_EN_Minutes, text_DE_Minutes, text_FR_Minutes, text_IT_Minutes, text_ES_Minutes}}, | |
| 2082 {(uint8_t)TXT_Seconds, {text_EN_Seconds, text_DE_Seconds, text_FR_Seconds, text_IT_Seconds, text_ES_Seconds}}, | |
| 2083 {(uint8_t)TXT_CCRmode, {text_EN_CCRmode, text_DE_CCRmode, text_FR_CCRmode, text_IT_CCRmode, text_ES_CCRmode}}, | |
| 2084 {(uint8_t)TXT_AtemGasVorrat, {text_EN_GasVorrat, text_DE_GasVorrat, text_FR_GasVorrat, text_IT_GasVorrat, text_ES_GasVorrat}}, | |
| 2085 {(uint8_t)TXT_LiterproMinute, {text_EN_LiterproMinute, text_DE_LiterproMinute, text_FR_LiterproMinute, text_IT_LiterproMinute, text_ES_LiterproMinute}}, | |
| 2086 {(uint8_t)TXT_Reserve, {text_EN_Reserve, text_DE_Reserve, text_FR_Reserve, text_IT_Reserve, text_ES_Reserve}}, | |
| 2087 {(uint8_t)TXT_Salinity, {text_EN_Salinity, text_DE_Salinity, text_FR_Salinity, text_IT_Salinity, text_ES_Salinity}}, | |
| 2088 {(uint8_t)TXT_DiveMode, {text_EN_DiveMode, text_DE_DiveMode, text_FR_DiveMode, text_IT_DiveMode, text_ES_DiveMode}}, | |
| 2089 {(uint8_t)TXT_OpenCircuit, {text_EN_OpenCircuit, text_DE_OpenCircuit, text_FR_OpenCircuit, text_IT_OpenCircuit, text_ES_OpenCircuit}}, | |
| 2090 {(uint8_t)TXT_ClosedCircuit, {text_EN_ClosedCircuit, text_DE_ClosedCircuit, text_FR_ClosedCircuit, text_IT_ClosedCircuit, text_ES_ClosedCircuit}}, | |
| 2091 {(uint8_t)TXT_Apnoe, {text_EN_Apnoe, text_DE_Apnoe, text_FR_Apnoe, text_IT_Apnoe, text_ES_Apnoe}}, | |
| 2092 {(uint8_t)TXT_Gauge, {text_EN_Gauge, text_DE_Gauge, text_FR_Gauge, text_IT_Gauge, text_ES_Gauge}}, | |
| 662 | 2093 {(uint8_t)TXT_PSClosedCircuit, {text_EN_PSClosedCircuit, text_DE_PSClosedCircuit, text_FR_PSClosedCircuit, text_IT_PSClosedCircuit, text_ES_PSClosedCircuit}}, |
| 845 | 2094 {(uint8_t)TXT_PreDive, {text_EN_PreDive, text_DE_PreDive, text_FR_PreDive, text_IT_PreDive, text_ES_PreDive}}, |
| 662 | 2095 {(uint8_t)TXT_Sensor, {text_EN_Sensor, text_DE_Sensor, text_FR_Sensor, text_IT_Sensor, text_ES_Sensor}}, |
| 38 | 2096 {(uint8_t)TXT_FixedSP, {text_EN_FixedSP, text_DE_FixedSP, text_FR_FixedSP, text_IT_FixedSP, text_ES_FixedSP}}, |
| 2097 {(uint8_t)TXT_Decoparameters, {text_EN_Decoparameters, text_DE_Decoparameters, text_FR_Decoparameters, text_IT_Decoparameters, text_ES_Decoparameters}}, | |
| 2098 {(uint8_t)TXT_LastDecostop, {text_EN_LastDecostop, text_DE_LastDecostop, text_FR_LastDecostop, text_IT_LastDecostop, text_ES_LastDecostop}}, | |
| 2099 {(uint8_t)TXT_Fallback, {text_EN_Fallback, text_DE_Fallback, text_FR_Fallback, text_IT_Fallback, text_ES_Fallback}}, | |
| 2100 {(uint8_t)TXT_DateAndTime, {text_EN_DateTime, text_DE_DateTime, text_FR_DateTime, text_IT_DateTime, text_ES_DateTime}}, | |
| 2101 {(uint8_t)TXT_DateConfig, {text_EN_DayMonthYear, text_DE_DayMonthYear, text_FR_DayMonthYear, text_IT_DayMonthYear, text_ES_DayMonthYear}}, | |
| 2102 {(uint8_t)TXT_TimeConfig, {text_EN_StundeMinute, text_DE_StundeMinute, text_FR_StundeMinute, text_IT_StundeMinute, text_ES_StundeMinute}}, | |
| 2103 {(uint8_t)TXT_Daylightsaving, {text_EN_Daylightsaving, text_DE_Daylightsaving, text_FR_Daylightsaving, text_IT_Daylightsaving, text_ES_Daylightsaving}}, | |
| 2104 {(uint8_t)TXT_Logbook, {text_EN_Logbook, text_DE_Logbook, text_FR_Logbook, text_IT_Logbook, text_ES_Logbook}}, | |
| 2105 {(uint8_t)TXT_LogbookEmpty, {text_EN_LogbookEmpty, text_DE_LogbookEmpty, text_FR_LogbookEmpty, text_IT_LogbookEmpty, text_ES_LogbookEmpty}}, | |
| 2106 {(uint8_t)TXT_Start_Calculation,{text_EN_Start_Calculation, text_DE_Start_Calculation, text_FR_Start_Calculation, text_IT_Start_Calculation, text_ES_Start_Calculation}}, | |
| 2107 {(uint8_t)TXT_Information, {text_EN_Information, text_DE_Information, text_FR_Information, text_IT_Information, text_ES_Information}}, | |
|
654
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
2108 {(uint8_t)TXT_ScrubTime, {text_EN_ScrubTime, text_DE_ScrubTime, text_FR_ScrubTime, text_IT_ScrubTime, text_ES_ScrubTime}}, |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
2109 {(uint8_t)TXT_ScrubTimeReset, {text_EN_ScrubTimeReset, text_DE_ScrubTimeReset, text_FR_ScrubTimeReset, text_IT_ScrubTimeReset, text_ES_ScrubTimeReset}}, |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
2110 {(uint8_t)TXT_ScrubTimeMode, {text_EN_ScrubTimeMode, text_DE_ScrubTimeMode, text_FR_ScrubTimeMode, text_IT_ScrubTimeMode, text_ES_ScrubTimeMode}}, |
|
890440ab993a
Introduced new menu tab for addition CCR options:
Ideenmodellierer
parents:
650
diff
changeset
|
2111 {(uint8_t)TXT_Percent, {text_EN_Percent, text_DE_Percent, text_FR_Percent, text_IT_Percent, text_ES_Percent}}, |
| 662 | 2112 {(uint8_t)TXT_PSCRO2Drop, {text_EN_PSCRO2Drop, text_DE_PSCRO2Drop, text_FR_PSCRO2Drop, text_IT_PSCRO2Drop, text_ES_PSCRO2Drop}}, |
| 2113 {(uint8_t)TXT_PSCRLungRatio, {text_EN_LungRatio, text_DE_LungRatio, text_FR_LungRatio, text_IT_LungRatio, text_ES_LungRatio}}, | |
| 2114 {(uint8_t)TXT_SimPpo2, {text_EN_SimPpo2, text_DE_SimPpo2, text_FR_SimPpo2, text_IT_SimPpo2, text_ES_SimPpo2}}, | |
| 2115 {(uint8_t)TXT_CO2Sensor, {text_EN_CO2Sensor, text_DE_CO2Sensor, text_FR_CO2Sensor, text_IT_CO2Sensor, text_ES_CO2Sensor}}, | |
| 944 | 2116 {(uint8_t)TXT_ButtonLock, {text_EN_KeyLock, text_DE_KeyLock, text_FR_KeyLock, text_IT_KeyLock, text_ES_KeyLock}}, |
| 38 | 2117 }; |
| 2118 | |
| 2119 const tText text_array2[] = | |
| 2120 { | |
| 2121 {(uint8_t)TXT2BYTE_ResetMenu, {text_EN_ResetMenu, text_DE_ResetMenu, text_FR_ResetMenu, text_IT_ResetMenu, text_ES_ResetMenu}}, | |
| 2122 {(uint8_t)TXT2BYTE_LogbookOffset, {text_EN_LogbookOffset, text_DE_LogbookOffset, text_FR_LogbookOffset, text_IT_LogbookOffset, text_ES_LogbookOffset}}, | |
| 2123 {(uint8_t)TXT2BYTE_AreYouSure, {text_EN_AreYouSure, text_DE_AreYouSure, text_FR_AreYouSure, text_IT_AreYouSure, text_ES_AreYouSure}}, | |
| 2124 {(uint8_t)TXT2BYTE_Abort, {text_EN_Abort, text_DE_Abort, text_FR_Abort, text_IT_Abort, text_ES_Abort}}, | |
| 2125 {(uint8_t)TXT2BYTE_RebootRTE, {text_EN__RebootRTE, text_DE__RebootRTE, text_FR__RebootRTE, text_IT__RebootRTE, text_ES__RebootRTE}}, | |
| 2126 {(uint8_t)TXT2BYTE_ResetAll, {text_EN_ResetAll, text_DE_ResetAll, text_FR_ResetAll, text_IT_ResetAll, text_ES_ResetAll}}, | |
| 2127 {(uint8_t)TXT2BYTE_ResetDeco, {text_EN_ResetDeco, text_DE_ResetDeco, text_FR_ResetDeco, text_IT_ResetDeco, text_ES_ResetDeco}}, | |
| 2128 {(uint8_t)TXT2BYTE_ResetLogbook, {text_EN_ResetLogbook, text_DE_ResetLogbook, text_FR_ResetLogbook, text_IT_ResetLogbook, text_ES_ResetLogbook}}, | |
| 2129 {(uint8_t)TXT2BYTE_RebootMainCPU, {text_EN_StartBootloader, text_DE_StartBootloader, text_FR_StartBootloader, text_IT_StartBootloader, text_ES_StartBootloader}}, | |
| 2130 {(uint8_t)TXT2BYTE_Exit, {text_EN_Exit, text_DE_Exit, text_FR_Exit, text_IT_Exit, text_ES_Exit}}, | |
| 2131 {(uint8_t)TXT2BYTE_ShowDebug, {text_EN_ShowDebug, text_DE_ShowDebug, text_FR_ShowDebug, text_IT_ShowDebug, text_ES_ShowDebug}}, | |
| 2132 {(uint8_t)TXT2BYTE_PleaseUpdate, {text_EN_PleaseUpdate, text_DE_PleaseUpdate, text_FR_PleaseUpdate, text_IT_PleaseUpdate, text_ES_PleaseUpdate}}, | |
| 2133 {(uint8_t)TXT2BYTE_RTE, {text_EN_RTE, text_DE_RTE, text_FR_RTE, text_IT_RTE, text_ES_RTE}}, | |
| 2134 {(uint8_t)TXT2BYTE_Fonts, {text_EN_Fonts, text_DE_Fonts, text_FR_Fonts, text_IT_Fonts, text_ES_Fonts}}, | |
| 2135 {(uint8_t)TXT2BYTE_ResetStopwatch, {text_EN_ResetStopwatch, text_DE_ResetStopwatch, text_FR_ResetStopwatch, text_IT_ResetStopwatch, text_ES_ResetStopwatch}}, | |
| 2136 {(uint8_t)TXT2BYTE_SetMarker, {text_EN_SetMarker, text_DE_SetMarker, text_FR_SetMarker, text_IT_SetMarker, text_ES_SetMarker}}, | |
| 613 | 2137 {(uint8_t)TXT2BYTE_SetMarkerShort, {text_EN_SetMarkerShort, text_DE_SetMarkerShort, text_FR_SetMarkerShort, text_IT_SetMarkerShort, text_ES_SetMarkerShort}}, |
|
619
8fa2de4414a8
Added t3 quick menu for marker synchronisation:
Ideenmodellierer
parents:
613
diff
changeset
|
2138 {(uint8_t)TXT2BYTE_CheckMarker, {text_EN_CheckMarker, text_DE_CheckMarker, text_FR_CheckMarker, text_IT_CheckMarker, text_ES_CheckMarker}}, |
| 38 | 2139 {(uint8_t)TXT2BYTE_CompassHeading, {text_EN_CompassHeading, text_DE_CompassHeading, text_FR_CompassHeading, text_IT_CompassHeading, text_ES_CompassHeading}}, |
| 1050 | 2140 {(uint8_t)TXT2BYTE_GFSurf, {text_EN_GFSurf, text_DE_GFSurf, text_FR_GFSurf, text_IT_GFSurf, text_ES_GFSurf}}, |
|
929
63c340abd70e
Add a line to the compass heading dive menu that shows the currently set heading to enable the
heinrichsweikamp
parents:
902
diff
changeset
|
2141 {(uint8_t)TXT2BYTE_CalibView, {text_EN_CalibView, text_DE_CalibView, text_FR_CalibView, text_IT_CalibView, text_ES_CalibView}}, |
|
552
531e7818b737
Added menu structure to acces viewport calibration:
Ideenmodellierer
parents:
547
diff
changeset
|
2142 {(uint8_t)TXT2BYTE_IndicateFrame, {text_EN_IndicateFrame, text_DE_IndicateFrame, text_FR_IndicateFrame, text_IT_IndicateFrame, text_ES_IndicateFrame}}, |
|
531e7818b737
Added menu structure to acces viewport calibration:
Ideenmodellierer
parents:
547
diff
changeset
|
2143 {(uint8_t)TXT2BYTE_BoostBacklight, {text_EN_BoostBacklight, text_DE_BoostBacklight, text_FR_BoostBacklight, text_IT_BoostBacklight, text_ES_BoostBacklight}}, |
|
626
3e1a0e267f38
Added option to select sensitivity of focus detection:
Ideenmodellierer
parents:
619
diff
changeset
|
2144 {(uint8_t)TXT2BYTE_FocusSpotSize, {text_EN_FocusSpotSize, text_DE_FocusSpotSize, text_FR_FocusSpotSize, text_IT_FocusSpotSize, text_ES_FocusSpotSize}}, |
|
347
77de014928d6
Added option to manually leave dive mode to system menu
ideenmodellierer
parents:
286
diff
changeset
|
2145 {(uint8_t)TXT2BYTE_EndDiveMode, {text_EN_EndDiveMode, text_DE_EndDiveMode, text_FR_EndDiveMode, text_IT_EndDiveMode, text_ES_EndDiveMode}}, |
|
77de014928d6
Added option to manually leave dive mode to system menu
ideenmodellierer
parents:
286
diff
changeset
|
2146 {(uint8_t)TXT2BYTE_Simulator, {text_EN_Simulator, text_DE_Simulator, text_FR_Simulator, text_IT_Simulator, text_ES_Simulator}}, |
| 38 | 2147 {(uint8_t)TXT2BYTE_StartSimulator, {text_EN_StartSimulator, text_DE_StartSimulator, text_FR_StartSimulator, text_IT_StartSimulator, text_ES_StartSimulator}}, |
| 2148 {(uint8_t)TXT2BYTE_Intervall, {text_EN_Intervall, text_DE_Intervall, text_FR_Intervall, text_IT_Intervall, text_ES_Intervall}}, | |
| 2149 {(uint8_t)TXT2BYTE_SimDiveTime, {text_EN_SimDiveTime, text_DE_SimDiveTime, text_FR_SimDiveTime, text_IT_SimDiveTime, text_ES_SimDiveTime}}, | |
| 2150 {(uint8_t)TXT2BYTE_SimMaxDepth, {text_EN_SimMaxDepth, text_DE_SimMaxDepth, text_FR_SimMaxDepth, text_IT_SimMaxDepth, text_ES_SimMaxDepth}}, | |
| 2151 {(uint8_t)TXT2BYTE_SimTravelGas, {text_EN_SimTravelGas, text_DE_SimTravelGas, text_FR_SimTravelGas, text_IT_SimTravelGas, text_ES_SimTravelGas}}, | |
| 2152 {(uint8_t)TXT2BYTE_SimDecoGas, {text_EN_SimDecoGas, text_DE_SimDecoGas, text_FR_SimDecoGas, text_IT_SimDecoGas, text_ES_SimDecoGas}}, | |
| 2153 {(uint8_t)TXT2BYTE_SimConsumption, {text_EN_SimConsumption, text_DE_SimConsumption, text_FR_SimConsumption, text_IT_SimConsumption, text_ES_SimConsumption}}, | |
| 2154 {(uint8_t)TXT2BYTE_SimSummary, {text_EN_SimSummary, text_DE_SimSummary, text_FR_SimSummary, text_IT_SimSummary, text_ES_SimSummary}}, | |
| 2155 {(uint8_t)TXT2BYTE_SimDecTo, {text_EN_SimDecTo, text_DE_SimDecTo, text_FR_SimDecTo, text_IT_SimDecTo, text_ES_SimDecTo}}, | |
| 2156 {(uint8_t)TXT2BYTE_SimLevel, {text_EN_SimLevel, text_DE_SimLevel, text_FR_SimLevel, text_IT_SimLevel, text_ES_SimLevel}}, | |
| 2157 {(uint8_t)TXT2BYTE_SimAscTo, {text_EN_SimAscTo, text_DE_SimAscTo, text_FR_SimAscTo, text_IT_SimAscTo, text_ES_SimAscTo}}, | |
| 2158 {(uint8_t)TXT2BYTE_SimSurface, {text_EN_SimSurface, text_DE_SimSurface, text_FR_SimSurface, text_IT_SimSurface, text_ES_SimSurface}}, | |
| 2159 {(uint8_t)TXT2BYTE_CalculateDeco, {text_EN_CalculateDeco, text_DE_CalculateDeco, text_FR_CalculateDeco, text_IT_CalculateDeco, text_ES_CalculateDeco}}, | |
| 2160 {(uint8_t)TXT2BYTE_Calculating, {text_EN_Calculating, text_DE_Calculating, text_FR_Calculating, text_IT_Calculating, text_ES_Calculating}}, | |
| 2161 {(uint8_t)TXT2BYTE_PleaseWait, {text_EN_PleaseWait, text_DE_PleaseWait, text_FR_PleaseWait, text_IT_PleaseWait, text_ES_PleaseWait}}, | |
| 2162 {(uint8_t)TXT2BYTE_Decolist, {text_EN_Decolist, text_DE_Decolist, text_FR_Decolist, text_IT_Decolist, text_ES_Decolist}}, | |
| 2163 {(uint8_t)TXT2BYTE_ButtonSensitivity,{text_EN_ButtonSensitivity, text_DE_ButtonSensitivity, text_FR_ButtonSensitivity, text_IT_ButtonSensitivity, text_ES_ButtonSensitivity}}, | |
| 2164 {(uint8_t)TXT2BYTE_SpecialDiveGas, {text_EN_SpecialDiveGas, text_DE_SpecialDiveGas, text_FR_SpecialDiveGas, text_IT_SpecialDiveGas, text_ES_SpecialDiveGas}}, | |
| 2165 {(uint8_t)TXT2BYTE_SpecialDiveGasMenu,{text_EN_SpecialDiveGasMenu, text_DE_SpecialDiveGasMenu, text_FR_SpecialDiveGasMenu, text_IT_SpecialDiveGasMenu, text_ES_SpecialDiveGasMenu}}, | |
| 2166 {(uint8_t)TXT2BYTE_SpecialDiveGasMenuCCR,{text_EN_SpecialDiveGasMenuCCR, text_DE_SpecialDiveGasMenuCCR, text_FR_SpecialDiveGasMenuCCR, text_IT_SpecialDiveGasMenuCCR, text_ES_SpecialDiveGasMenuCCR}}, | |
| 2167 {(uint8_t)TXT2BYTE_CompassCalib, {text_EN_CompassCalib, text_DE_CompassCalib, text_FR_CompassCalib, text_IT_CompassCalib, text_ES_CompassCalib}}, | |
|
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
526
diff
changeset
|
2168 {(uint8_t)TXT2BYTE_CompassInertia, {text_EN_CompassInertia, text_DE_CompassInertia, text_FR_CompassInertia, text_IT_CompassInertia, text_ES_CompassInertia}}, |
|
776
45b8f3c2acce
Add support for a configurable compass declination in a range of -99 to 99 degrees.
heinrichsweikamp
parents:
775
diff
changeset
|
2169 {(uint8_t)TXT2BYTE_CompassDeclination, {text_EN_CompassDeclination, text_DE_CompassDeclination, text_FR_CompassDeclination, text_IT_CompassDeclination, text_ES_CompassDeclination}}, |
|
834
2a8af51ab04d
Added event based display changes for big font view:
Ideenmodellierer
parents:
829
diff
changeset
|
2170 {(uint8_t)TXT2BYTE_Autofocus , {text_EN_Autofocus, text_DE_Autofocus, text_FR_Autofocus, text_IT_Autofocus, text_ES_Autofocus}}, |
|
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
526
diff
changeset
|
2171 {(uint8_t)TXT2BYTE_UseSensor, {text_EN_UseSensor, text_DE_UseSensor, text_FR_UseSensor, text_IT_UseSensor, text_ES_UseSensor}}, |
| 650 | 2172 {(uint8_t)TXT2BYTE_AutomaticSP, {text_EN_AutomaticSP, text_DE_AutomaticSP, text_FR_AutomaticSP, text_IT_AutomaticSP, text_ES_AutomaticSP}}, |
| 38 | 2173 {(uint8_t)TXT2BYTE_WarnDecoMissed, {text_EN_WarnDecoMissed, text_DE_WarnDecoMissed, text_FR_WarnDecoMissed, text_IT_WarnDecoMissed, text_ES_WarnDecoMissed}}, |
| 2174 {(uint8_t)TXT2BYTE_WarnPPO2Low, {text_EN_WarnPPO2Low, text_DE_WarnPPO2Low, text_FR_WarnPPO2Low, text_IT_WarnPPO2Low, text_ES_WarnPPO2Low}}, | |
| 2175 {(uint8_t)TXT2BYTE_WarnPPO2High, {text_EN_WarnPPO2High, text_DE_WarnPPO2High, text_FR_WarnPPO2High, text_IT_WarnPPO2High, text_ES_WarnPPO2High}}, | |
| 2176 {(uint8_t)TXT2BYTE_WarnBatteryLow, {text_EN_WarnBatteryLow, text_DE_WarnBatteryLow, text_FR_WarnBatteryLow, text_IT_WarnBatteryLow, text_ES_WarnBatteryLow}}, | |
| 2177 {(uint8_t)TXT2BYTE_WarnSensorLinkLost,{text_EN_WarnSensorLinkLost, text_DE_WarnSensorLinkLost, text_FR_WarnSensorLinkLost, text_IT_WarnSensorLinkLost, text_ES_WarnSensorLinkLost}}, | |
| 2178 {(uint8_t)TXT2BYTE_WarnFallback, {text_EN_WarnFallback, text_DE_WarnFallback, text_FR_WarnFallback, text_IT_WarnFallback, text_ES_WarnFallback}}, | |
| 2179 {(uint8_t)TXT2BYTE_WarnCnsHigh, {text_EN_WarnCnsHigh, text_DE_WarnCnsHigh, text_FR_WarnCnsHigh, text_IT_WarnCnsHigh, text_ES_WarnCnsHigh}}, | |
| 756 | 2180 {(uint8_t)TXT2BYTE_WarnCO2High, {text_EN_WarnCO2High, text_DE_WarnCO2High, text_FR_WarnCO2High, text_IT_WarnCO2High, text_ES_WarnCO2High}}, |
| 38 | 2181 {(uint8_t)TXT2BYTE_O2monitor, {text_EN_O2monitor, text_DE_O2monitor, text_FR_O2monitor, text_IT_O2monitor, text_ES_O2monitor}}, |
| 2182 {(uint8_t)TXT2BYTE_O2voltage, {text_EN_O2voltage, text_DE_O2voltage, text_FR_O2voltage, text_IT_O2voltage, text_ES_O2voltage}}, | |
| 2183 {(uint8_t)TXT2BYTE_Tissues, {text_EN_Tissues, text_DE_Tissues, text_FR_Tissues, text_IT_Tissues, text_ES_Tissues}}, | |
| 2184 {(uint8_t)TXT2BYTE_Nitrogen, {text_EN_Nitrogen, text_DE_Nitrogen, text_FR_Nitrogen, text_IT_Nitrogen, text_ES_Nitrogen}}, | |
| 2185 {(uint8_t)TXT2BYTE_Helium, {text_EN_Helium, text_DE_Helium, text_FR_Helium, text_IT_Helium, text_ES_Helium}}, | |
| 2186 {(uint8_t)TXT2BYTE_CNS, {text_EN_CNS, text_DE_CNS, text_FR_CNS, text_IT_CNS, text_ES_CNS}}, | |
| 2187 {(uint8_t)TXT2BYTE_OTU, {text_EN_OTU, text_DE_OTU, text_FR_OTU, text_IT_OTU, text_ES_OTU}}, | |
| 2188 {(uint8_t)TXT2BYTE_Profile, {text_EN_Profile, text_DE_Profile, text_FR_Profile, text_IT_Profile, text_ES_Profile}}, | |
| 2189 {(uint8_t)TXT2BYTE_Compass, {text_EN_Compass, text_DE_Compass, text_FR_Compass, text_IT_Compass, text_ES_Compass}}, | |
| 2190 {(uint8_t)TXT2BYTE_SafetyStop2, {text_EN_SafetyStop2, text_DE_SafetyStop2, text_FR_SafetyStop2, text_IT_SafetyStop2, text_ES_SafetyStop2}}, | |
| 2191 {(uint8_t)TXT2BYTE_noFly, {text_EN_noFly, text_DE_noFly, text_FR_noFly, text_IT_noFly, text_ES_noFly}}, | |
| 2192 {(uint8_t)TXT2BYTE_Desaturation, {text_EN_Desaturation, text_DE_Desaturation, text_FR_Desaturation, text_IT_Desaturation, text_ES_Desaturation}}, | |
| 2193 {(uint8_t)TXT2BYTE_TimeSinceLastDive,{text_EN_TimeSinceLastDive, text_DE_TimeSinceLastDive, text_FR_TimeSinceLastDive, text_IT_TimeSinceLastDive, text_ES_TimeSinceLastDive}}, | |
| 2194 {(uint8_t)TXT2BYTE_ButtonLogbook, {text_EN_ButtonLogbook, text_DE_ButtonLogbook, text_FR_ButtonLogbook, text_IT_ButtonLogbook, text_ES_ButtonLogbook}}, | |
| 2195 {(uint8_t)TXT2BYTE_ButtonMenu, {text_EN_ButtonMenu, text_DE_ButtonMenu, text_FR_ButtonMenu, text_IT_ButtonMenu, text_ES_ButtonMenu}}, | |
| 2196 {(uint8_t)TXT2BYTE_ButtonView, {text_EN_ButtonView, text_DE_ButtonView, text_FR_ButtonView, text_IT_ButtonView, text_ES_ButtonView}}, | |
| 2197 {(uint8_t)TXT2BYTE_ButtonBack, {text_EN_ButtonBack, text_DE_ButtonBack, text_FR_ButtonBack, text_IT_ButtonBack, text_ES_ButtonBack}}, | |
| 2198 {(uint8_t)TXT2BYTE_ButtonEnter, {text_EN_ButtonEnter, text_DE_ButtonEnter, text_FR_ButtonEnter, text_IT_ButtonEnter, text_ES_ButtonEnter}}, | |
| 2199 {(uint8_t)TXT2BYTE_ButtonNext, {text_EN_ButtonNext, text_DE_ButtonNext, text_FR_ButtonNext, text_IT_ButtonNext, text_ES_ButtonNext}}, | |
| 2200 {(uint8_t)TXT2BYTE_ButtonMinus, {text_EN_ButtonMinus, text_DE_ButtonMinus, text_FR_ButtonMinus, text_IT_ButtonMinus, text_ES_ButtonMinus}}, | |
| 2201 {(uint8_t)TXT2BYTE_ButtonPlus, {text_EN_ButtonPlus, text_DE_ButtonPlus, text_FR_ButtonPlus, text_IT_ButtonPlus, text_ES_ButtonPlus}}, | |
| 2202 {(uint8_t)TXT2BYTE_SimFollowDecoStops,{text_EN_SimFollowDecoStops, text_DE_SimFollowDecoStops, text_FR_SimFollowDecoStops, text_IT_SimFollowDecoStops, text_ES_SimFollowDecoStops}}, | |
| 2203 {(uint8_t)TXT2BYTE_Bluetooth, {text_EN_Bluetooth, text_DE_Bluetooth, text_FR_Bluetooth, text_IT_Bluetooth, text_ES_Bluetooth}}, | |
| 2204 {(uint8_t)TXT2BYTE_Usage_Battery, {text_EN_Usage_Battery, text_DE_Usage_Battery, text_FR_Usage_Battery, text_IT_Usage_Battery, text_ES_Usage_Battery}}, | |
| 2205 {(uint8_t)TXT2BYTE_Usage_Dives, {text_EN_Usage_Dives, text_DE_Usage_Dives, text_FR_Usage_Dives, text_IT_Usage_Dives, text_ES_Usage_Dives}}, | |
| 2206 {(uint8_t)TXT2BYTE_Usage_Environment,{text_EN_Usage_Environment, text_DE_Usage_Environment, text_FR_Usage_Environment, text_IT_Usage_Environment, text_ES_Usage_Environment}}, | |
| 2207 {(uint8_t)TXT2BYTE_ChargeCycles, {text_EN_ChargeCycles, text_DE_ChargeCycles, text_FR_ChargeCycles, text_IT_ChargeCycles, text_ES_ChargeCycles}}, | |
| 2208 {(uint8_t)TXT2BYTE_LowestVoltage, {text_EN_LowestVoltage, text_DE_LowestVoltage, text_FR_LowestVoltage, text_IT_LowestVoltage, text_ES_LowestVoltage}}, | |
| 2209 {(uint8_t)TXT2BYTE_HoursOfOperation,{text_EN_HoursOfOperation, text_DE_HoursOfOperation, text_FR_HoursOfOperation, text_IT_HoursOfOperation, text_ES_HoursOfOperation}}, | |
| 2210 {(uint8_t)TXT2BYTE_NumberOfDives, {text_EN_NumberOfDives, text_DE_NumberOfDives, text_FR_NumberOfDives, text_IT_NumberOfDives, text_ES_NumberOfDives}}, | |
| 2211 {(uint8_t)TXT2BYTE_AmbientTemperature,{text_EN_AmbientTemperature, text_DE_AmbientTemperature, text_FR_AmbientTemperature, text_IT_AmbientTemperature, text_ES_AmbientTemperature}}, | |
| 2212 {(uint8_t)TXT2BYTE_Bottle, {text_EN_Bottle, text_DE_Bottle, text_FR_Bottle, text_IT_Bottle, text_ES_Bottle}}, | |
| 2213 {(uint8_t)TXT2BYTE_Gaslist, {text_EN_Gaslist, text_DE_Gaslist, text_FR_Gaslist, text_IT_Gaslist, text_ES_Gaslist}}, | |
| 2214 {(uint8_t)TXT2BYTE_Clock, {text_EN_Clock, text_DE_Clock, text_FR_Clock, text_IT_Clock, text_ES_Clock}}, | |
| 2215 {(uint8_t)TXT2BYTE_Sunday, {text_EN_Sunday, text_DE_Sunday, text_FR_Sunday, text_IT_Sunday, text_ES_Sunday}}, | |
| 2216 {(uint8_t)TXT2BYTE_Monday, {text_EN_Monday, text_DE_Monday, text_FR_Monday, text_IT_Monday, text_ES_Monday}}, | |
| 2217 {(uint8_t)TXT2BYTE_Tuesday, {text_EN_Tuesday, text_DE_Tuesday, text_FR_Tuesday, text_IT_Tuesday, text_ES_Tuesday}}, | |
| 2218 {(uint8_t)TXT2BYTE_Wednesday, {text_EN_Wednesday, text_DE_Wednesday, text_FR_Wednesday, text_IT_Wednesday, text_ES_Wednesday}}, | |
| 2219 {(uint8_t)TXT2BYTE_Thursday, {text_EN_Thursday, text_DE_Thursday, text_FR_Thursday, text_IT_Thursday, text_ES_Thursday}}, | |
| 2220 {(uint8_t)TXT2BYTE_Friday, {text_EN_Friday, text_DE_Friday, text_FR_Friday, text_IT_Friday, text_ES_Friday}}, | |
| 2221 {(uint8_t)TXT2BYTE_Saturday, {text_EN_Saturday, text_DE_Saturday, text_FR_Saturday, text_IT_Saturday, text_ES_Saturday}}, | |
| 2222 {(uint8_t)TXT2BYTE_Layout, {text_EN_Design, text_DE_Design, text_FR_Design, text_IT_Design, text_ES_Design}}, | |
| 2223 {(uint8_t)TXT2BYTE_Units, {text_EN_Units, text_DE_Units, text_FR_Units, text_IT_Units, text_ES_Units}}, | |
| 2224 {(uint8_t)TXT2BYTE_Units_metric, {text_EN_Design_t7_metric, text_DE_Design_t7_metric, text_FR_Design_t7_metric, text_IT_Design_t7_metric, text_ES_Design_t7_metric}}, | |
| 2225 {(uint8_t)TXT2BYTE_Units_feet, {text_EN_Design_t7_feet, text_DE_Design_t7_feet, text_FR_Design_t7_feet, text_IT_Design_t7_feet, text_ES_Design_t7_feet}}, | |
| 2226 {(uint8_t)TXT2BYTE_Farbschema, {text_EN_Farbschema, text_DE_Farbschema, text_FR_Farbschema, text_IT_Farbschema, text_ES_Farbschema}}, | |
| 2227 {(uint8_t)TXT2BYTE_Customviews, {text_EN_Customviews, text_DE_Customviews, text_FR_Customviews, text_IT_Customviews, text_ES_Customviews}}, | |
| 2228 {(uint8_t)TXT2BYTE_CViewTimeout, {text_EN_CViewTimeout, text_DE_CViewTimeout, text_FR_CViewTimeout, text_IT_CViewTimeout, text_ES_CViewTimeout}}, | |
| 2229 {(uint8_t)TXT2BYTE_CViewStandard, {text_EN_CViewStandard, text_DE_CViewStandard, text_FR_CViewStandard, text_IT_CViewStandard, text_ES_CViewStandard}}, | |
| 2230 {(uint8_t)TXT2BYTE_CornerTimeout, {text_EN_CornerTimeout, text_DE_CornerTimeout, text_FR_CornerTimeout, text_IT_CornerTimeout, text_ES_CornerTimeout}}, | |
| 2231 {(uint8_t)TXT2BYTE_CornerStandard, {text_EN_CornerStandard, text_DE_CornerStandard, text_FR_CornerStandard, text_IT_CornerStandard, text_ES_CornerStandard}}, | |
| 2232 {(uint8_t)TXT2BYTE_SetToMOD, {text_EN_SetToMOD, text_DE_SetToMOD, text_FR_SetToMOD, text_IT_SetToMOD, text_ES_SetToMOD}}, | |
| 2233 {(uint8_t)TXT2BYTE_HUDbattery, {text_EN_HUDBattery, text_DE_HUDBattery, text_FR_HUDBattery, text_IT_HUDBattery, text_ES_HUDBattery}}, | |
| 745 | 2234 {(uint8_t)TXT2BYTE_SensorDetect, {text_EN_SensorDetect, text_DE_SensorDetect, text_FR_SensorDetect, text_IT_SensorDetect, text_ES_SensorDetect}}, |
| 584 | 2235 {(uint8_t)TXT2BYTE_O2Calib, {text_EN_O2Calib, text_DE_O2Calib, text_FR_O2Calib, text_IT_O2Calib, text_ES_O2Calib}}, |
|
562
ec76fa85009e
Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents:
552
diff
changeset
|
2236 {(uint8_t)TXT2BYTE_O2Interface, {text_EN_O2Interface, text_DE_O2Interface, text_FR_O2Interface, text_IT_O2Interface, text_ES_O2Interface}}, |
|
ec76fa85009e
Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents:
552
diff
changeset
|
2237 {(uint8_t)TXT2BYTE_O2IFOptic, {text_EN_O2IFOptic, text_DE_O2IFOptic, text_FR_O2IFOptic, text_IT_O2IFOptic, text_ES_O2IFOptic}}, |
|
ec76fa85009e
Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents:
552
diff
changeset
|
2238 {(uint8_t)TXT2BYTE_O2IFAnalog, {text_EN_O2IFAnalog, text_DE_O2IFAnalog, text_FR_O2IFAnalog, text_IT_O2IFAnalog, text_ES_O2IFAnalog}}, |
|
703
2f457024049b
Added selection of digital o2 sensor source to HW menu:
Ideenmodellierer
parents:
672
diff
changeset
|
2239 {(uint8_t)TXT2BYTE_O2IFDigital, {text_EN_O2IFDigital, text_DE_O2IFDigital, text_FR_O2IFDigital, text_IT_O2IFDigital, text_ES_O2IFDigital}}, |
| 38 | 2240 {(uint8_t)TXT2BYTE_LowerIsLess, {text_EN_LowerIsLess, text_DE_LowerIsLess, text_FR_LowerIsLess, text_IT_LowerIsLess, text_ES_LowerIsLess}}, |
| 2241 {(uint8_t)TXT2BYTE_DiveMenuQ, {text_EN_DiveMenuQ, text_DE_DiveMenuQ, text_FR_DiveMenuQ, text_IT_DiveMenuQ, text_ES_DiveMenuQ}}, | |
| 2242 {(uint8_t)TXT2BYTE_DiveQuitQ, {text_EN_DiveQuitQ, text_DE_DiveQuitQ, text_FR_DiveQuitQ, text_IT_DiveQuitQ, text_ES_DiveQuitQ}}, | |
| 2243 {(uint8_t)TXT2BYTE_DiveBearingQ, {text_EN_DiveBearingQ, text_DE_DiveBearingQ, text_FR_DiveBearingQ, text_IT_DiveBearingQ, text_ES_DiveBearingQ}}, | |
| 2244 {(uint8_t)TXT2BYTE_DiveResetAvgQ, {text_EN_DiveResetAvgQ, text_DE_DiveResetAvgQ, text_FR_DiveResetAvgQ, text_IT_DiveResetAvgQ, text_ES_DiveResetAvgQ}}, | |
| 2245 {(uint8_t)TXT2BYTE_ExtraDisplay, {text_EN_ExtraDisplay, text_DE_ExtraDisplay, text_FR_ExtraDisplay, text_IT_ExtraDisplay, text_ES_ExtraDisplay}}, | |
| 2246 {(uint8_t)TXT2BYTE_ExtraBigFont, {text_EN_ExtraBigFont, text_DE_ExtraBigFont, text_FR_ExtraBigFont, text_IT_ExtraBigFont, text_ES_ExtraBigFont}}, | |
| 2247 {(uint8_t)TXT2BYTE_ExtraDecoGame, {text_EN_ExtraDecoGame, text_DE_ExtraDecoGame, text_FR_ExtraDecoGame, text_IT_ExtraDecoGame, text_ES_ExtraDecoGame}}, | |
| 2248 {(uint8_t)TXT2BYTE_ExtraNone, {text_EN_ExtraNone, text_DE_ExtraNone, text_FR_ExtraNone, text_IT_ExtraNone, text_ES_ExtraNone}}, | |
|
740
5078da3845c0
Added button lock after wakeup in surface mode:
Ideenmodellierer
parents:
703
diff
changeset
|
2249 {(uint8_t)TXT2BYTE_ExtraActive, {text_EN_ExtraBFActive, text_DE_ExtraBFActive, text_FR_ExtraBFActive, text_IT_ExtraBFActive, text_ES_ExtraBFActive}}, |
|
368
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
2250 {(uint8_t)TXT2BYTE_MotionCtrl, {text_EN_MotionCtrl, text_DE_MotionCtrl, text_FR_MotionCtrl, text_IT_MotionCtrl, text_ES_MotionCtrl}}, |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
2251 {(uint8_t)TXT2BYTE_MoCtrlNone, {text_EN_MoCtrlNone, text_DE_MoCtrlNone, text_FR_MoCtrlNone, text_IT_MoCtrlNone, text_ES_MoCtrlNone}}, |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
2252 {(uint8_t)TXT2BYTE_MoCtrlPitch, {text_EN_MoCtrlPitch, text_DE_MoCtrlPitch, text_FR_MoCtrlPitch, text_IT_MoCtrlPitch, text_ES_MoCtrlPitch}}, |
|
50ea68c7a153
Added menu item for motion detection. There are several possibility to use motion detection for user action input. To select of the a new menu entry has been added to the Sys2 =>Custom View Menu (Variables in german)
ideenmodellierer
parents:
286
diff
changeset
|
2253 {(uint8_t)TXT2BYTE_MoCtrlSector, {text_EN_MoCtrlSector, text_DE_MoCtrlSector, text_FR_MoCtrlSector, text_IT_MoCtrlSector, text_ES_MoCtrlSector}}, |
|
373
7b981f8bdd41
Add scroll event by pitch angle detection:
ideenmodellierer
parents:
368
diff
changeset
|
2254 {(uint8_t)TXT2BYTE_MoCtrlScroll, {text_EN_MoCtrlScroll, text_DE_MoCtrlScroll, text_FR_MoCtrlScroll, text_IT_MoCtrlScroll, text_ES_MoCtrlScroll}}, |
| 38 | 2255 {(uint8_t)TXT2BYTE_DecoDataLost, {text_EN_DecoDataLost, text_DE_DecoDataLost, text_FR_DecoDataLost, text_IT_DecoDataLost, text_ES_DecoDataLost}}, |
| 2256 {(uint8_t)TXT2BYTE_Info, {text_EN_Info, text_DE_Info, text_FR_Info, text_IT_Info, text_ES_Info}}, | |
| 2257 {(uint8_t)TXT2BYTE_Korrekturwerte, {text_EN_Korrekturwerte, text_DE_Korrekturwerte, text_FR_Korrekturwerte, text_IT_Korrekturwerte, text_ES_Korrekturwerte}}, | |
| 2258 {(uint8_t)TXT2BYTE_SetBearing, {text_EN_SetBearing, text_DE_SetBearing, text_FR_SetBearing, text_IT_SetBearing, text_ES_SetBearing}}, | |
| 2259 {(uint8_t)TXT2BYTE_ResetBearing, {text_EN_ResetBearing, text_DE_ResetBearing, text_FR_ResetBearing, text_IT_ResetBearing, text_ES_ResetBearing}}, | |
| 2260 {(uint8_t)TXT2BYTE_Sensor, {text_EN_SensorList, text_DE_SensorList, text_FR_SensorList, text_IT_SensorList, text_ES_SensorList}}, | |
| 2261 {(uint8_t)TXT2BYTE_Maintenance, {text_EN_Maintenance, text_DE_Maintenance, text_FR_Maintenance, text_IT_Maintenance, text_ES_Maintenance}}, | |
| 2262 {(uint8_t)TXT2BYTE_SetBatteryCharge,{text_EN_SetBatteryCharge, text_DE_SetBatteryCharge, text_FR_SetBatteryCharge, text_IT_SetBatteryCharge, text_ES_SetBatteryCharge}}, | |
| 845 | 2263 {(uint8_t)TXT2BYTE_AdjustAmbPressure,{text_EN_AdjustAmbPressure, text_DE_AdjustAmbPressure, text_FR_AdjustAmbPressure, text_IT_AdjustAmbPressure, text_ES_AdjustAmbPressure}}, |
| 38 | 2264 {(uint8_t)TXT2BYTE_SetFactoryDefaults,{text_EN_SetFactoryDefaults, text_DE_SetFactoryDefaults, text_FR_SetFactoryDefaults, text_IT_SetFactoryDefaults, text_ES_SetFactoryDefaults}}, |
|
424
2b31cf1ebbcc
Added (optional) menu item to analyse log sample buffer:
ideenmodellierer
parents:
382
diff
changeset
|
2265 {(uint8_t)TXT2BYTE_SetSampleIndex, {text_EN_SetSampleIndex, text_DE_SetSampleIndex, text_FR_SetSampleIndex, text_IT_SetSampleIndex, text_ES_SetSampleIndex}}, |
| 38 | 2266 |
| 2267 {(uint8_t)TXT2BYTE_Reboot, {text_EN_Reboot, text_DE_Reboot, text_FR_Reboot, text_IT_Reboot, text_ES_Reboot}}, | |
| 2268 {(uint8_t)TXT2BYTE_ButtonLeft, {text_EN_ButtonLeft, text_DE_ButtonLeft, text_FR_ButtonLeft, text_IT_ButtonLeft, text_ES_ButtonLeft}}, | |
| 2269 {(uint8_t)TXT2BYTE_ButtonMitte, {text_EN_ButtonMitte, text_DE_ButtonMitte, text_FR_ButtonMitte, text_IT_ButtonMitte, text_ES_ButtonMitte}}, | |
| 2270 {(uint8_t)TXT2BYTE_ButtonRight, {text_EN_ButtonRight, text_DE_ButtonRight, text_FR_ButtonRight, text_IT_ButtonRight, text_ES_ButtonRight}}, | |
| 2271 {(uint8_t)TXT2BYTE_Summary, {text_EN_Summary, text_DE_Summary, text_FR_Summary, text_IT_Summary, text_ES_Summary}}, | |
|
376
a90100959871
Added string for Empty/ Debug custom view selection
ideenmodellierer
parents:
373
diff
changeset
|
2272 {(uint8_t)TXT2BYTE_DispNoneDbg, {text_EN_DispNoneDbg, text_DE_DispNoneDbg, text_FR_DispNoneDbg, text_IT_DispNoneDbg, text_ES_DispNoneDbg}}, |
| 38 | 2273 {(uint8_t)TXT2BYTE_ApneaLast, {text_EN_ApneaLast, text_DE_ApneaLast, text_FR_ApneaLast, text_IT_ApneaLast, text_ES_ApneaLast}}, |
| 2274 {(uint8_t)TXT2BYTE_ApneaTotal, {text_EN_ApneaTotal, text_DE_ApneaTotal, text_FR_ApneaTotal, text_IT_ApneaTotal, text_ES_ApneaTotal}}, | |
| 2275 {(uint8_t)TXT2BYTE_ApneaSurface, {text_EN_ApneaSurface, text_DE_ApneaSurface, text_FR_ApneaSurface, text_IT_ApneaSurface, text_ES_ApneaSurface}}, | |
| 2276 | |
| 107 | 2277 {(uint8_t)TXT2BYTE_FLIPDISPLAY, {text_EN_FlipDisplay, text_DE_FlipDisplay, text_FR_FlipDisplay, text_IT_FlipDisplay, text_ES_FlipDisplay}}, |
| 2278 | |
|
506
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
2279 {(uint8_t)TXT2BYTE_SelectCustomviews,{text_EN_SelectCustom, text_DE_SelectCustom, text_FR_SelectCustom, text_IT_SelectCustom, text_ES_SelectCustom}}, |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
2280 {(uint8_t)TXT2BYTE_SelectBigFont, {text_EN_SelectBigFont, text_DE_SelectBigFont, text_FR_SelectBigFont, text_IT_SelectBigFont, text_ES_SelectBigFont}}, |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
2281 {(uint8_t)TXT2BYTE_MaxDepth, {text_EN_MaxDepth, text_DE_MaxDepth, text_FR_MaxDepth, text_IT_MaxDepth, text_ES_MaxDepth}}, |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
2282 {(uint8_t)TXT2BYTE_Stopwatch, {text_EN_Stopwatch, text_DE_Stopwatch, text_FR_Stopwatch, text_IT_Stopwatch, text_ES_Stopwatch}}, |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
2283 {(uint8_t)TXT2BYTE_TTS, {text_EN_TTS, text_DE_TTS, text_FR_TTS, text_IT_TTS, text_ES_TTS}}, |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
2284 {(uint8_t)TXT2BYTE_ppoNair, {text_EN_ppo2Air, text_DE_ppo2Air, text_FR_ppo2Air, text_IT_ppo2Air, text_ES_ppo2Air}}, |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
2285 {(uint8_t)TXT2BYTE_Navigation, {text_EN_Navigation, text_DE_Navigation, text_FR_Navigation, text_IT_Navigation, text_ES_Navigation}}, |
|
998529b3e142
Added new top level menu for customization of views
Ideenmodellierer
parents:
493
diff
changeset
|
2286 {(uint8_t)TXT2BYTE_DepthData, {text_EN_DepthData, text_DE_DepthData, text_FR_DepthData, text_IT_DepthData, text_ES_DepthData}}, |
|
542
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
539
diff
changeset
|
2287 {(uint8_t)TXT2BYTE_DecoTTS, {text_EN_DecoTTS, text_DE_DecoTTS, text_FR_DecoTTS, text_IT_DecoTTS, text_ES_DecoTTS}}, |
| 882 | 2288 {(uint8_t)TXT2BYTE_SlowExit, {text_EN_SlowExit, text_DE_SlowExit, text_FR_SlowExit, text_IT_SlowExit, text_ES_SlowExit}}, |
|
626
3e1a0e267f38
Added option to select sensitivity of focus detection:
Ideenmodellierer
parents:
619
diff
changeset
|
2289 |
|
3e1a0e267f38
Added option to select sensitivity of focus detection:
Ideenmodellierer
parents:
619
diff
changeset
|
2290 {(uint8_t)TXT2BYTE_Minimum, {text_EN_Minimum, text_DE_Minimum, text_FR_Minimum, text_IT_Minimum, text_ES_Minimum}}, |
|
3e1a0e267f38
Added option to select sensitivity of focus detection:
Ideenmodellierer
parents:
619
diff
changeset
|
2291 {(uint8_t)TXT2BYTE_Normal, {text_EN_Normal, text_DE_Normal, text_FR_Normal, text_IT_Normal, text_ES_Normal}}, |
|
3e1a0e267f38
Added option to select sensitivity of focus detection:
Ideenmodellierer
parents:
619
diff
changeset
|
2292 {(uint8_t)TXT2BYTE_Maximum, {text_EN_Maximum, text_DE_Maximum, text_FR_Maximum, text_IT_Maximum, text_ES_Maximum}}, |
| 662 | 2293 |
| 2294 {(uint8_t)TXT2BYTE_CheckSettings, {text_EN_CheckSettings, text_DE_CheckSettings, text_FR_CheckSettings, text_IT_CheckSettings, text_ES_CheckSettings}}, | |
| 759 | 2295 {(uint8_t)TXT2BYTE_NotCalibrated, {text_EN_NotCalibrated, text_DE_NotCalibrated, text_FR_NotCalibrated, text_IT_NotCalibrated, text_ES_NotCalibrated}}, |
|
770
8deb28b2d4da
CCR overview in surface mode. Makes it easy to quickly check that all settings (mode, setpoints, diluent, scrubber timer) are correct when preparing to dive (also makes the OC gas list available in surface mode for the same reason).
heinrichsweikamp
parents:
759
diff
changeset
|
2296 |
| 944 | 2297 {(uint8_t)TXT2BYTE_CcrSummary, {text_EN_CcrSummary, text_DE_CcrSummary, text_FR_CcrSummary, text_IT_CcrSummary, text_ES_CcrSummary}}, |
| 2298 {(uint8_t)TXT2BYTE_Setpoint, {text_EN_Setpoint, text_DE_Setpoint, text_FR_Setpoint, text_IT_Setpoint, text_ES_Setpoint}}, | |
| 2299 {(uint8_t)TXT2BYTE_Scrubber, {text_EN_Scrubber, text_DE_Scrubber, text_FR_Scrubber, text_IT_Scrubber, text_ES_Scrubber}}, | |
|
775
46c6d2380d4e
Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents:
774
diff
changeset
|
2300 {(uint8_t)TXT2BYTE_BailoutShort, {text_EN_BailoutShort, text_DE_BailoutShort, text_FR_BailoutShort, text_IT_BailoutShort, text_ES_BailoutShort}}, |
| 944 | 2301 {(uint8_t)TXT2BYTE_LoopShort, {text_EN_LoopShort, text_DE_LoopShort, text_FR_LoopShort, text_IT_LoopShort, text_ES_LoopShort}}, |
|
775
46c6d2380d4e
Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents:
774
diff
changeset
|
2302 {(uint8_t)TXT2BYTE_SetpointShort, {text_EN_SetpointShort, text_DE_SetpointShort, text_FR_SetpointShort, text_IT_SetpointShort, text_ES_SetpointShort}}, |
|
774
6169309d6eb9
more menu items for the compass menu: Delete bearing, and reset to land based bearing. I have also re-enabled the real time bearing display in the menu - makes it easier to set the correct bearing. (mikeller)
heinrichsweikamp
parents:
773
diff
changeset
|
2303 |
|
788
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
2304 {(uint8_t)TXT2BYTE_SetpointLow, {text_EN_SetpointLow, text_DE_SetpointLow, text_FR_SetpointLow, text_IT_SetpointLow, text_ES_SetpointLow}}, |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
2305 {(uint8_t)TXT2BYTE_SetpointHigh, {text_EN_SetpointHigh, text_DE_SetpointHigh, text_FR_SetpointHigh, text_IT_SetpointHigh, text_ES_SetpointHigh}}, |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
2306 {(uint8_t)TXT2BYTE_SetpointDeco, {text_EN_SetpointDeco, text_DE_SetpointDeco, text_FR_SetpointDeco, text_IT_SetpointDeco, text_ES_SetpointDeco}}, |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
2307 {(uint8_t)TXT2BYTE_SetpointDelayed, {text_EN_SetpointDelayed, text_DE_SetpointDelayed, text_FR_SetpointDelayed, text_IT_SetpointDelayed, text_ES_SetpointDelayed}}, |
|
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
2308 |
| 944 | 2309 {(uint8_t)TXT2BYTE_Enabled, {text_EN_Enabled, text_DE_Enabled, text_FR_Enabled, text_IT_Enabled, text_ES_Enabled}}, |
| 2310 {(uint8_t)TXT2BYTE_Custom, {text_EN_Custom, text_DE_Custom, text_FR_Custom, text_IT_Custom, text_ES_Custom}}, | |
|
788
4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
heinrichsweikamp
parents:
776
diff
changeset
|
2311 |
| 944 | 2312 {(uint8_t)TXT2BYTE_Set, {text_EN_Set, text_DE_Set, text_FR_Set, text_IT_Set, text_ES_Set}}, |
| 2313 {(uint8_t)TXT2BYTE_Clear, {text_EN_Clear, text_DE_Clear, text_FR_Clear, text_IT_Clear, text_ES_Clear}}, | |
| 2314 {(uint8_t)TXT2BYTE_Reset, {text_EN_Reset, text_DE_Reset, text_FR_Reset, text_IT_Reset, text_ES_Reset}}, | |
|
805
dd7ce655db26
Adds a simple countdown timer, available as a custom view in surface and dive mode.
heinrichsweikamp
parents:
789
diff
changeset
|
2315 |
| 845 | 2316 {(uint8_t)TXT2BYTE_CounterLung, {text_EN_CounterLung, text_DE_CounterLung, text_FR_CounterLung, text_IT_CounterLung, text_ES_CounterLung}}, |
| 944 | 2317 {(uint8_t)TXT2BYTE_Pressure, {text_EN_Pressure, text_DE_Pressure, text_FR_Pressure, text_IT_Pressure, text_ES_Pressure}}, |
| 845 | 2318 |
| 944 | 2319 {(uint8_t)TXT2BYTE_Timer, {text_EN_Timer, text_DE_Timer, text_FR_Timer, text_IT_Timer, text_ES_Timer}}, |
| 2320 {(uint8_t)TXT2BYTE_Starting, {text_EN_Starting, text_DE_Starting, text_FR_Starting, text_IT_Starting, text_ES_Starting}}, | |
| 2321 {(uint8_t)TXT2BYTE_Finished, {text_EN_Finished, text_DE_Finished, text_FR_Finished, text_IT_Finished, text_ES_Finished}}, | |
| 2322 | |
| 2323 {(uint8_t)TXT2BYTE_Position, {text_EN_Position, text_DE_Position, text_FR_Position, text_IT_Position, text_ES_Position}}, | |
| 2324 {(uint8_t)TXT2BYTE_VpmTable, {text_EN_VpmTable, text_DE_VpmTable, text_FR_VpmTable, text_IT_VpmTable, text_ES_VpmTable}}, | |
|
865
cb386cccc7c5
When opening the logbook, or scrolling inside a logbook page,
heinrichsweikamp
parents:
805
diff
changeset
|
2325 |
| 944 | 2326 {(uint8_t)TXT2BYTE_Page, {text_EN_Page, text_DE_Page, text_FR_Page, text_IT_Page, text_ES_Page}}, |
|
899
2225c467f1e9
Added data path and visualization for position data:
Ideenmodellierer
parents:
882
diff
changeset
|
2327 |
| 944 | 2328 {(uint8_t)TXT2BYTE_Current, {text_EN_Current, text_DE_Current, text_FR_Current, text_IT_Current, text_ES_Current}}, |
| 2329 {(uint8_t)TXT2BYTE_Log, {text_EN_Log, text_DE_Log, text_FR_Log, text_IT_Log, text_ES_Log}}, | |
| 2330 {(uint8_t)TXT2BYTE_DDMMYY, {text_EN_DDMMYY, text_DE_DDMMYY, text_FR_DDMMYY, text_IT_DDMMYY, text_ES_DDMMYY}}, | |
| 2331 {(uint8_t)TXT2BYTE_MMDDYY, {text_EN_MMDDYY, text_DE_MMDDYY, text_FR_MMDDYY, text_IT_MMDDYY, text_ES_MMDDYY}}, | |
| 2332 {(uint8_t)TXT2BYTE_YYMMDD, {text_EN_YYMMDD, text_DE_YYMMDD, text_FR_YYMMDD, text_IT_YYMMDD, text_ES_YYMMDD}}, | |
| 949 | 2333 {(uint8_t)TXT2BYTE_TIMEZONE, {text_EN_TIMEZONE, text_DE_TIMEZONE, text_FR_TIMEZONE, text_IT_TIMEZONE, text_ES_TIMEZONE}}, |
|
929
63c340abd70e
Add a line to the compass heading dive menu that shows the currently set heading to enable the
heinrichsweikamp
parents:
902
diff
changeset
|
2334 |
|
967
9b418e63dbc2
Add a 'Reverse' action to the compass heading dive menu.
heinrichsweikamp
parents:
958
diff
changeset
|
2335 {(uint8_t)TXT2BYTE_BUZZER, {text_EN_BUZZER, text_DE_BUZZER, text_FR_BUZZER, text_IT_BUZZER, text_ES_BUZZER}}, |
|
9b418e63dbc2
Add a 'Reverse' action to the compass heading dive menu.
heinrichsweikamp
parents:
958
diff
changeset
|
2336 |
|
9b418e63dbc2
Add a 'Reverse' action to the compass heading dive menu.
heinrichsweikamp
parents:
958
diff
changeset
|
2337 {(uint8_t)TXT2BYTE_Current, {text_EN_Current, text_DE_Current, text_FR_Current, text_IT_Current, text_ES_Current}}, |
|
9b418e63dbc2
Add a 'Reverse' action to the compass heading dive menu.
heinrichsweikamp
parents:
958
diff
changeset
|
2338 {(uint8_t)TXT2BYTE_Log, {text_EN_Log, text_DE_Log, text_FR_Log, text_IT_Log, text_ES_Log}}, |
|
9b418e63dbc2
Add a 'Reverse' action to the compass heading dive menu.
heinrichsweikamp
parents:
958
diff
changeset
|
2339 {(uint8_t)TXT2BYTE_Reverse, {text_EN_Reverse, text_DE_Reverse, text_FR_Reverse, text_IT_Reverse, text_ES_Reverse}}, |
|
9b418e63dbc2
Add a 'Reverse' action to the compass heading dive menu.
heinrichsweikamp
parents:
958
diff
changeset
|
2340 |
| 1032 | 2341 {(uint8_t)TXT2BYTE_Pulse, {text_EN_Pulse, text_DE_Pulse, text_FR_Pulse, text_IT_Pulse, text_ES_Pulse}}, |
| 1035 | 2342 {(uint8_t)TXT2BYTE_Logger, {text_EN_Logger, text_DE_Logger, text_FR_Logger, text_IT_Logger, text_ES_Logger}}, |
| 944 | 2343 |
| 2344 | |
| 38 | 2345 }; |
