annotate Discovery/Src/text_multilanguage.c @ 646:0fc1b47d2482

Remove battery charge counter from information menu: Due to long timeouts during charging (e.g. temperature break) multiple charge cycles could be counted without removment of the charger. To avoid confusions the visualization of this parameter has been removed.
author Ideenmodellierer
date Tue, 13 Apr 2021 19:21:14 +0200
parents 3e1a0e267f38
children 5f0d3dce5ef4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
552
531e7818b737 Added menu structure to acces viewport calibration:
Ideenmodellierer
parents: 547
diff changeset
1 /// -*- coding: UTF-8 -*-
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
2 ///
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
3 /// \file Discovery/Src/text_multilanguage.c
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
4 /// \brief Date file of TXT Multilanguage Support
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
5 /// \author heinrichs weikamp gmbh
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
6 /// \date 20-April-2014
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
7 ///
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
8 /// \details
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
9 /// All displayed texts, in ENglish, DEutch, FRench, ITalian and ESpagnol.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
10 /// When a translation is left empty, the English one is used instead.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
11 /// Those texts are expanded from one-byte or two-bytes special code.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
12 ///
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
13 /// $Id$
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
14 ///////////////////////////////////////////////////////////////////////////////
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
15 /// \par Copyright (c) 2014-2018 Heinrichs Weikamp gmbh
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
16 ///
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
17 /// This program is free software: you can redistribute it and/or modify
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
18 /// it under the terms of the GNU General Public License as published by
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
19 /// the Free Software Foundation, either version 3 of the License, or
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
20 /// (at your option) any later version.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
21 ///
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
22 /// This program is distributed in the hope that it will be useful,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
23 /// but WITHOUT ANY WARRANTY; without even the implied warranty of
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
24 /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
25 /// GNU General Public License for more details.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
26 ///
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
27 /// You should have received a copy of the GNU General Public License
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
28 /// along with this program. If not, see <http://www.gnu.org/licenses/>.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
29 //////////////////////////////////////////////////////////////////////////////
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
30
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
31 /* Includes ------------------------------------------------------------------*/
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
32
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
33 #include <stdint.h>
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
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
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
36
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
37 /* Text ----------------------------------------------------------------------*/
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
39 // Menu
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
40 static uint8_t text_EN_Language[] = "Language";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
41 static uint8_t text_DE_Language[] = "Sprache";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
42 static uint8_t text_FR_Language[] = "Langue";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
43 static uint8_t text_IT_Language[] = "Lingua";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
44 static uint8_t text_ES_Language[] = "Idioma";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
45
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
46 // Menu
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
47 static uint8_t text_EN_LanguageName[] = "English";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
48 static uint8_t text_DE_LanguageName[] = "Deutsch";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
49 static uint8_t text_FR_LanguageName[] = "Français";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
50 static uint8_t text_IT_LanguageName[] = "Italiano";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
51 static uint8_t text_ES_LanguageName[] = "Spanish";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
52
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
53 // dive mode
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
54 static uint8_t text_EN_Depth[] = "Depth";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
55 static uint8_t text_DE_Depth[] = "Tiefe";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
56 static uint8_t text_FR_Depth[] = "Profondeur";
66
90ceb2402d94 language updates
heinrichsweikamp
parents: 65
diff changeset
57 static uint8_t text_IT_Depth[] = "Profondita";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
58 static uint8_t text_ES_Depth[] = "Profundidad";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
59
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
60 // dive mode
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
61 static uint8_t text_EN_Divetime[] = "Divetime";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
62 static uint8_t text_DE_Divetime[] = "Tauchzeit";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
63 static uint8_t text_FR_Divetime[] = "Durée";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
64 static uint8_t text_IT_Divetime[] = "Tempo";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
65 static uint8_t text_ES_Divetime[] = "Tiempo";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
66
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
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
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
70 static uint8_t text_FR_MaxDepth[] = "Prof. max"; // Profondeur
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
71 static uint8_t text_IT_MaxDepth[] = "Prof. max";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
72 static uint8_t text_ES_MaxDepth[] = "Prof. max";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
73
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
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
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
76 static uint8_t text_DE_AvgDepth[] = "(/) Tiefe";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
77 static uint8_t text_FR_AvgDepth[] = "Prof. moy";
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
78 static uint8_t text_IT_AvgDepth[] = "Prof. media";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
79 static uint8_t text_ES_AvgDepth[] = "Prof. media";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
80
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
81 // dive mode
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
82 static uint8_t text_EN_Decostop[] = "Decostop";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
83 static uint8_t text_DE_Decostop[] = "Dekostopp";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
84 static uint8_t text_FR_Decostop[] = "Palier"; // Déco
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
85 static uint8_t text_IT_Decostop[] = "Decostop";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
86 static uint8_t text_ES_Decostop[] = "Parada Deco";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
87
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
88 // dive mode
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
89 static uint8_t text_EN_Nullzeit[] = "NDL";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
90 static uint8_t text_DE_Nullzeit[] = "Nullzeit";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
91 static uint8_t text_FR_Nullzeit[] = "No Déco"; // Sans palier
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
92 static uint8_t text_IT_Nullzeit[] = "No Deco";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
93 static uint8_t text_ES_Nullzeit[] = "No Deco";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
94
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
95 // dive mode
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
96 static uint8_t text_EN_ppO2[] = "ppO2";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
97 static uint8_t text_DE_ppO2[] = "ppO2";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
98 static uint8_t text_FR_ppO2[] = "ppO2";
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
99 static uint8_t text_IT_ppO2[] = "ppO2";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
100 static uint8_t text_ES_ppO2[] = "ppO2";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
101
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
102 // dive mode
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
103 static uint8_t text_EN_TTS[] = "TTS";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
104 static uint8_t text_DE_TTS[] = "TTS";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
105 static uint8_t text_FR_TTS[] = "DTR";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
106 static uint8_t text_IT_TTS[] = "TTS";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
107 static uint8_t text_ES_TTS[] = "TTS";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
108
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
109 // dive mode
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
110 static uint8_t text_EN_CNSshort[] = "CNS";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
111 static uint8_t text_DE_CNSshort[] = "ZNS";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
112 static uint8_t text_FR_CNSshort[] = "SNC";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
113 static uint8_t text_IT_CNSshort[] = "CNS";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
114 static uint8_t text_ES_CNSshort[] = "CNS";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
115
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
116 // dive mode
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
117 static uint8_t text_EN_Temperature[] = "Temp.";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
118 static uint8_t text_DE_Temperature[] = "Temperatur";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
119 static uint8_t text_FR_Temperature[] = "Temp."; // Température (ist zu lang)
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
120 static uint8_t text_IT_Temperature[] = "Temp.";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
121 static uint8_t text_ES_Temperature[] = "Temp.";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
122
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
123 // dive mode
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
124 static uint8_t text_EN_FutureTTS[] = "FutureTTS";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
125 static uint8_t text_DE_FutureTTS[] = "FutureTTS";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
126 static uint8_t text_FR_FutureTTS[] = "FutureDTR";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
127 static uint8_t text_IT_FutureTTS[] = "TTS Futuro";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
128 static uint8_t text_ES_FutureTTS[] = "TTS Futuro";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
129
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
130 // Menu (as small text)
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
131 static uint8_t text_EN_Minutes[] = "Minutes";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
132 static uint8_t text_DE_Minutes[] = "Minuten";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
133 static uint8_t text_FR_Minutes[] = "Minutes";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
134 static uint8_t text_IT_Minutes[] = "Minuti";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
135 static uint8_t text_ES_Minutes[] = "Minutos";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
136
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
137 // Menu SYS2 sub (as small text in custom views)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
138 static uint8_t text_EN_Seconds[] = "Seconds";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
139 static uint8_t text_DE_Seconds[] = "Sekunden";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
140 static uint8_t text_FR_Seconds[] = "Secondes";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
141 static uint8_t text_IT_Seconds[] = "Secondi";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
142 static uint8_t text_ES_Seconds[] = "Segundos";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
143
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
144 // Menu OC sub and Menu CC sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
145 static uint8_t text_EN_Gas[] = "Gas";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
146 static uint8_t text_DE_Gas[] = "Gas";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
147 static uint8_t text_FR_Gas[] = "Gaz";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
148 static uint8_t text_IT_Gas[] = "Gas";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
149 static uint8_t text_ES_Gas[] = "Gas";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
150
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
151 // dive mode
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
152 static uint8_t text_EN_Ceiling[] = "Ceiling";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
153 static uint8_t text_DE_Ceiling[] = "Ceiling";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
154 static uint8_t text_FR_Ceiling[] = "Plafond";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
155 static uint8_t text_IT_Ceiling[] = "Ceiling";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
156 static uint8_t text_ES_Ceiling[] = "Techo";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
157
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
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";
247
3949781096d4 feature: Relative GF to Saturation renames
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
161 static uint8_t text_FR_ActualGradient[] = "";
3949781096d4 feature: Relative GF to Saturation renames
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
162 static uint8_t text_IT_ActualGradient[] = "";
3949781096d4 feature: Relative GF to Saturation renames
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
163 static uint8_t text_ES_ActualGradient[] = "";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
164
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
165 // dive mode
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
166 static uint8_t text_EN_Stopwatch[] = "Stopwatch";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
167 static uint8_t text_DE_Stopwatch[] = "Stoppuhr";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
168 static uint8_t text_FR_Stopwatch[] = "Chrono";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
169 static uint8_t text_IT_Stopwatch[] = "Stop Cronometro";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
170 static uint8_t text_ES_Stopwatch[] = "Parar Cronómetro";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
171
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
172 // Menu SYS1 sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
173 static uint8_t text_EN_CompassCalib[] = "Calibrate compass";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
174 static uint8_t text_DE_CompassCalib[] = "Kompass kalibrieren";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
175 static uint8_t text_FR_CompassCalib[] = "Calibration boussole";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
176 static uint8_t text_IT_CompassCalib[] = "Calibrazione bussola";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
177 static uint8_t text_ES_CompassCalib[] = "Calibrar brújula";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
178
539
d784f281833a Added inertia simulation for compass heading:
Ideenmodellierer
parents: 526
diff changeset
179 static uint8_t text_EN_CompassInertia[] = "Compass inertia level";
d784f281833a Added inertia simulation for compass heading:
Ideenmodellierer
parents: 526
diff changeset
180 static uint8_t text_DE_CompassInertia[] = "Kompass Trägheitsfaktor";
d784f281833a Added inertia simulation for compass heading:
Ideenmodellierer
parents: 526
diff changeset
181 static uint8_t text_FR_CompassInertia[] = "";
d784f281833a Added inertia simulation for compass heading:
Ideenmodellierer
parents: 526
diff changeset
182 static uint8_t text_IT_CompassInertia[] = "";
d784f281833a Added inertia simulation for compass heading:
Ideenmodellierer
parents: 526
diff changeset
183 static uint8_t text_ES_CompassInertia[] = "";
d784f281833a Added inertia simulation for compass heading:
Ideenmodellierer
parents: 526
diff changeset
184
d784f281833a Added inertia simulation for compass heading:
Ideenmodellierer
parents: 526
diff changeset
185
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
186 // Menu SYS1 and Customview header
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
187 static uint8_t text_EN_Compass[] = "Compass";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
188 static uint8_t text_DE_Compass[] = "Kompass";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
189 static uint8_t text_FR_Compass[] = "Boussole";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
190 static uint8_t text_IT_Compass[] = "Bussola";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
191 static uint8_t text_ES_Compass[] = "Brújula";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
192
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
193 // Menu SYS1
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
194 static uint8_t text_EN_o2Sensors[] = "Oxygen sensors";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
195 static uint8_t text_DE_o2Sensors[] = "O2-Sensoren";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
196 static uint8_t text_FR_o2Sensors[] = "Cellules O2";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
197 static uint8_t text_IT_o2Sensors[] = "Sensore O2";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
198 static uint8_t text_ES_o2Sensors[] = "Sensores de O2";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
199
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
200 // Menu SYS1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
201 static uint8_t text_EN_Brightness[] = "Brightness";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
202 static uint8_t text_DE_Brightness[] = "Display-Helligkeit";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
203 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
204 static uint8_t text_IT_Brightness[] = "Luminosite";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
205 static uint8_t text_ES_Brightness[] = "Brillo";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
206
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
207 // Menu SYS1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
208 static uint8_t text_EN_Cave[] = "Cave";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
209 static uint8_t text_DE_Cave[] = "Höhle";
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
210 static uint8_t text_FR_Cave[] = "Grotte";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
211 static uint8_t text_IT_Cave[] = "Grotta";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
212 static uint8_t text_ES_Cave[] = "Cueva";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
213
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
214 // Menu SYS1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
215 static uint8_t text_EN_Eco[] = "Eco";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
216 static uint8_t text_DE_Eco[] = "Eco";
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
217 static uint8_t text_FR_Eco[] = "Eco";
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
218 static uint8_t text_IT_Eco[] = "Eco";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
219 static uint8_t text_ES_Eco[] = "Eco";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
220
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
221 // Menu SYS1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
222 static uint8_t text_EN_Normal[] = "Medium";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
223 static uint8_t text_DE_Normal[] = "Standard";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
224 static uint8_t text_FR_Normal[] = "Moyenne";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
225 static uint8_t text_IT_Normal[] = "Medio";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
226 static uint8_t text_ES_Normal[] = "Medio";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
227
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
228 // Menu SYS1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
229 static uint8_t text_EN_Bright[] = "High";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
230 static uint8_t text_DE_Bright[] = "Hoch";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
231 static uint8_t text_FR_Bright[] = "Haute";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
232 static uint8_t text_IT_Bright[] = "Alto";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
233 static uint8_t text_ES_Bright[] = "Alto";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
234
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
235 // Menu SYS1
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
236 static uint8_t text_EN_Ultrabright[] = "Max";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
237 static uint8_t text_DE_Ultrabright[] = "Max";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
238 static uint8_t text_FR_Ultrabright[] = "Max";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
239 static uint8_t text_IT_Ultrabright[] = "Max";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
240 static uint8_t text_ES_Ultrabright[] = "Max";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
241
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
242 // Menu OC (Header)
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
243 static uint8_t text_EN_OC_Gas_Edit[] = "Open circuit";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
244 static uint8_t text_DE_OC_Gas_Edit[] = "Open circuit";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
245 static uint8_t text_FR_OC_Gas_Edit[] = "Circuit ouvert";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
246 static uint8_t text_IT_OC_Gas_Edit[] = "Circuito aperto";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
247 static uint8_t text_ES_OC_Gas_Edit[] = "Circuito Abierto";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
248
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
249 // Menu CC (Header)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
250 static uint8_t text_EN_Diluent_Gas_Edit[] = "Diluent";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
251 static uint8_t text_DE_Diluent_Gas_Edit[] = "Diluent";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
252 static uint8_t text_FR_Diluent_Gas_Edit[] = "Diluant";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
253 static uint8_t text_IT_Diluent_Gas_Edit[] = "Diluente";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
254 static uint8_t text_ES_Diluent_Gas_Edit[] = "Diluyente";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
255
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
256 // Menu Gas
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
257 static uint8_t text_EN_Mix[] = "Mix";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
258 static uint8_t text_DE_Mix[] = "Mix";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
259 static uint8_t text_FR_Mix[] = "Gaz"; // Or Mélange
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
260 static uint8_t text_IT_Mix[] = "Gas mix";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
261 static uint8_t text_ES_Mix[] = "Mezcla";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
262
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
263 // Menu Gas
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
264 static uint8_t text_EN_Active[] = "Active";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
265 static uint8_t text_DE_Active[] = "Aktiv";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
266 static uint8_t text_FR_Active[] = "Activé";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
267 static uint8_t text_IT_Active[] = "Attivo";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
268 static uint8_t text_ES_Active[] = "Activo";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
269
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
270 // Menu Gas
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
271 static uint8_t text_EN_First[] = "First";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
272 static uint8_t text_DE_First[] = "Start";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
273 static uint8_t text_FR_First[] = "Premier";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
274 static uint8_t text_IT_First[] = "Primo";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
275 static uint8_t text_ES_First[] = "Inicial";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
276
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
277 // Menu Gas
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
278 static uint8_t text_EN_Deco[] = "Deco";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
279 static uint8_t text_DE_Deco[] = "Deko";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
280 static uint8_t text_FR_Deco[] = "Déco";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
281 static uint8_t text_IT_Deco[] = "Deco";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
282 static uint8_t text_ES_Deco[] = "Deco";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
283
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
284 // Menu Gas
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
285 static uint8_t text_EN_Travel[] = "Travel";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
286 static uint8_t text_DE_Travel[] = "Reise";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
287 static uint8_t text_FR_Travel[] = "Travel";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
288 static uint8_t text_IT_Travel[] = "Viaggio";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
289 static uint8_t text_ES_Travel[] = "Viaje";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
290
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
291 // Menu Gas
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
292 static uint8_t text_EN_Inactive[] = "Inactive";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
293 static uint8_t text_DE_Inactive[] = "Deaktiviert";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
294 static uint8_t text_FR_Inactive[] = "Desactivé";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
295 static uint8_t text_IT_Inactive[] = "Disattivato";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
296 static uint8_t text_ES_Inactive[] = "Inactivo";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
297
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
298 // Menu Gas
526
88c626d01ee5 Added new option to gas configuration: "Off":
Ideenmodellierer
parents: 523
diff changeset
299 static uint8_t text_EN_Off[] = "Off";
88c626d01ee5 Added new option to gas configuration: "Off":
Ideenmodellierer
parents: 523
diff changeset
300 static uint8_t text_DE_Off[] = "Ausblenden";
88c626d01ee5 Added new option to gas configuration: "Off":
Ideenmodellierer
parents: 523
diff changeset
301 static uint8_t text_FR_Off[] = "";
88c626d01ee5 Added new option to gas configuration: "Off":
Ideenmodellierer
parents: 523
diff changeset
302 static uint8_t text_IT_Off[] = "";
88c626d01ee5 Added new option to gas configuration: "Off":
Ideenmodellierer
parents: 523
diff changeset
303 static uint8_t text_ES_Off[] = "";
88c626d01ee5 Added new option to gas configuration: "Off":
Ideenmodellierer
parents: 523
diff changeset
304
88c626d01ee5 Added new option to gas configuration: "Off":
Ideenmodellierer
parents: 523
diff changeset
305 // Menu Gas
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
306 static uint8_t text_EN_ChangeDepth[] = "Change depth";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
307 static uint8_t text_DE_ChangeDepth[] = "Wechseltiefe";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
308 static uint8_t text_FR_ChangeDepth[] = "Prof.Changmt";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
309 static uint8_t text_IT_ChangeDepth[] = "Cambio Prof.";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
310 static uint8_t text_ES_ChangeDepth[] = "Prof. cambio";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
311
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
312 // Menu Gas
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
313 static uint8_t text_EN_Type[] = "Type";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
314 static uint8_t text_DE_Type[] = "Typ";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
315 static uint8_t text_FR_Type[] = "Type";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
316 static uint8_t text_IT_Type[] = "Tipo";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
317 static uint8_t text_ES_Type[] = "Tipo";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
318
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
319 // Menu SP (Part of Header)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
320 static uint8_t text_EN_Setpoint_Edit[] = "Setup";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
321 static uint8_t text_DE_Setpoint_Edit[] = "Einstellung";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
322 static uint8_t text_FR_Setpoint_Edit[] = "Configuration";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
323 static uint8_t text_IT_Setpoint_Edit[] = "Configurazione";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
324 static uint8_t text_ES_Setpoint_Edit[] = "Configuración";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
325
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
326 // Menu SYS1 (O2 Sensors)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
327 static uint8_t text_EN_Fallback[] = "Fallback";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
328 static uint8_t text_DE_Fallback[] = "Fallback";
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
329 static uint8_t text_FR_Fallback[] = "Fallback";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
330 static uint8_t text_IT_Fallback[] = "Fallback";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
331 static uint8_t text_ES_Fallback[] = "Fallback";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
332
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
333 // Menu DECO2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
334 static uint8_t text_EN_Algorithm[] = "Algorithm";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
335 static uint8_t text_DE_Algorithm[] = "Rechenmodell";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
336 static uint8_t text_FR_Algorithm[] = "Algorithm";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
337 static uint8_t text_IT_Algorithm[] = "Algoritmo";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
338 static uint8_t text_ES_Algorithm[] = "Algoritmo";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
339
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
340 // Menu DECO1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
341 static uint8_t text_EN_SafetyStop[] = "Safety stop";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
342 static uint8_t text_DE_SafetyStop[] = "Sicherheitsstop";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
343 static uint8_t text_FR_SafetyStop[] = "Palier sécurité";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
344 static uint8_t text_IT_SafetyStop[] = "Sicurezza";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
345 static uint8_t text_ES_SafetyStop[] = "Parada de seguridad";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
346
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
347 // Menu DECO1 (CCR mode only)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
348 static uint8_t text_EN_CCRmode[] = "CCR mode";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
349 static uint8_t text_DE_CCRmode[] = "CCR-Modus";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
350 static uint8_t text_FR_CCRmode[] = "Mode CCR";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
351 static uint8_t text_IT_CCRmode[] = "CCR mode";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
352 static uint8_t text_ES_CCRmode[] = "Modo CCR";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
353
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
354 // Menu DECO1 (CCR mode only)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
355 static uint8_t text_EN_Sensor[] = "Sensor";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
356 static uint8_t text_DE_Sensor[] = "Sensor";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
357 static uint8_t text_FR_Sensor[] = "Cellule";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
358 static uint8_t text_IT_Sensor[] = "Sensore";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
359 static uint8_t text_ES_Sensor[] = "Sensor";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
360
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
361 // Menu DECO1 (CCR mode only)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
362 static uint8_t text_EN_FixedSP[] = "Fixed SP";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
363 static uint8_t text_DE_FixedSP[] = "Fester SP";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
364 static uint8_t text_FR_FixedSP[] = "SP fixe";
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
365 static uint8_t text_IT_FixedSP[] = "Setpoint fisso";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
366 static uint8_t text_ES_FixedSP[] = "SP fijo";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
367
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
368 // Menu DECO2 (VPM and Buehlmann Sub Menu)
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
369 static uint8_t text_EN_Decoparameters[] = "Deco parameters";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
370 static uint8_t text_DE_Decoparameters[] = "Deko-Parameter";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
371 static uint8_t text_FR_Decoparameters[] = "Paramètres déco";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
372 static uint8_t text_IT_Decoparameters[] = "Parametri deco";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
373 static uint8_t text_ES_Decoparameters[] = "Parámetros deco";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
374
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
375 // Menu DECO2
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
376 static uint8_t text_EN_LastDecostop[] = "Last deco";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
377 static uint8_t text_DE_LastDecostop[] = "Letzter Stopp";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
378 static uint8_t text_FR_LastDecostop[] = "Dern. palier";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
379 static uint8_t text_IT_LastDecostop[] = "Ultima deco";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
380 static uint8_t text_ES_LastDecostop[] = "Última parada";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
381
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
382 // Menu DECO2 and Dive Menu
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
383 static uint8_t text_EN_ZHL16GF[] = "ZH-L16+GF";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
384 static uint8_t text_DE_ZHL16GF[] = "ZH-L16+GF";
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
385 static uint8_t text_FR_ZHL16GF[] = "ZH-L16+GF";
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
386 static uint8_t text_IT_ZHL16GF[] = "ZH-L16+GF";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
387 static uint8_t text_ES_ZHL16GF[] = "ZH-L16+GF";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
388
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
389 // Menu DECO2 and Dive Menu
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
390 static uint8_t text_EN_aGF[] = "aGF";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
391 static uint8_t text_DE_aGF[] = "aGF";
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
392 static uint8_t text_FR_aGF[] = "aGF";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
393 static uint8_t text_IT_aGF[] = "aGF";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
394 static uint8_t text_ES_aGF[] = "aGF";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
395
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
396 // Menu DECO2 and Dive Menu
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
397 static uint8_t text_EN_VPM[] = "VPM";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
398 static uint8_t text_DE_VPM[] = "VPM";
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
399 static uint8_t text_FR_VPM[] = "VPM";
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
400 static uint8_t text_IT_VPM[] = "VPM";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
401 static uint8_t text_ES_VPM[] = "VPM";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
402
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
403 // Dive Menu
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
404 static uint8_t text_EN_LowHigh[] = "low high";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
405 static uint8_t text_DE_LowHigh[] = "low high";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
406 static uint8_t text_FR_LowHigh[] = "Bas Haut";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
407 static uint8_t text_IT_LowHigh[] = "Basso Alto";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
408 static uint8_t text_ES_LowHigh[] = "Bajo Alto";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
409
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
410 // Menu DECO1 Sub
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
411 static uint8_t text_EN_ppO2Name[] = "Partial pressure oxygen";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
412 static uint8_t text_DE_ppO2Name[] = "Sauerstoff-Partialdruck";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
413 static uint8_t text_FR_ppO2Name[] = "Pression partl. oxygène";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
414 static uint8_t text_IT_ppO2Name[] = "Pressione parziale ossigeno";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
415 static uint8_t text_ES_ppO2Name[] = "Presión parcial de O2";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
416
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
417 static uint8_t text_EN_Maximum[] = "Maximum";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
418 static uint8_t text_DE_Maximum[] = "Maximum";
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
419 static uint8_t text_FR_Maximum[] = "Maximum";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
420 static uint8_t text_IT_Maximum[] = "Massimo";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
421 static uint8_t text_ES_Maximum[] = "Max";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
422
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
423 static uint8_t text_EN_Minimum[] = "Minimum";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
424 static uint8_t text_DE_Minimum[] = "Minimum";
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
425 static uint8_t text_FR_Minimum[] = "Minimum";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
426 static uint8_t text_IT_Minimum[] = "Minimo";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
427 static uint8_t text_ES_Minimum[] = "Min";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
428
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
429 static uint8_t text_EN_Salinity[] = "Salinity";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
430 static uint8_t text_DE_Salinity[] = "Salzgehalt";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
431 static uint8_t text_FR_Salinity[] = "Salinité";
66
90ceb2402d94 language updates
heinrichsweikamp
parents: 65
diff changeset
432 static uint8_t text_IT_Salinity[] = "Salinita";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
433 static uint8_t text_ES_Salinity[] = "Salinidad";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
434
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
435 // Menu DECO1
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
436 static uint8_t text_EN_DiveMode[] = "Dive mode";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
437 static uint8_t text_DE_DiveMode[] = "Tauchmodus";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
438 static uint8_t text_FR_DiveMode[] = "Mode plongée";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
439 static uint8_t text_IT_DiveMode[] = "Dive mode";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
440 static uint8_t text_ES_DiveMode[] = "Modo buceo";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
441
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
442 // Menu DECO1
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
443 static uint8_t text_EN_OpenCircuit[] = "Open circuit";
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
444 static uint8_t text_DE_OpenCircuit[] = "Offener Kreislauf";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
445 static uint8_t text_FR_OpenCircuit[] = "Circuit ouvert";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
446 static uint8_t text_IT_OpenCircuit[] = "Circuito aperto";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
447 static uint8_t text_ES_OpenCircuit[] = "Circuito abierto";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
448
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
449 // Menu DECO1
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
450 static uint8_t text_EN_ClosedCircuit[] = "Closed circuit";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
451 static uint8_t text_DE_ClosedCircuit[] = "Geschlossen/CCR";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
452 static uint8_t text_FR_ClosedCircuit[] = "Recycleur";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
453 static uint8_t text_IT_ClosedCircuit[] = "Ciurcuito chiuso";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
454 static uint8_t text_ES_ClosedCircuit[] = "Circuito cerrado";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
455
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
456 static uint8_t text_EN_Time[] = "Time";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
457 static uint8_t text_DE_Time[] = "Uhrzeit";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
458 static uint8_t text_FR_Time[] = "Heure";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
459 static uint8_t text_IT_Time[] = "Ora";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
460 static uint8_t text_ES_Time[] = "Hora";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
461
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
462 static uint8_t text_EN_Date[] = "Date";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
463 static uint8_t text_DE_Date[] = "Datum";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
464 static uint8_t text_FR_Date[] = "Date";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
465 static uint8_t text_IT_Date[] = "Data";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
466 static uint8_t text_ES_Date[] = "Fecha";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
467
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
468 static uint8_t text_EN_Format[] = "Format";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
469 static uint8_t text_DE_Format[] = "Format";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
470 static uint8_t text_FR_Format[] = "Format";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
471 static uint8_t text_IT_Format[] = "Formato";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
472 static uint8_t text_ES_Format[] = "Formato";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
473
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
474 // Menu SYS2 sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
475 static uint8_t text_EN_DateTime[] = "Date and time";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
476 static uint8_t text_DE_DateTime[] = "Datum und Uhrzeit";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
477 static uint8_t text_FR_DateTime[] = "Date et heure";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
478 static uint8_t text_IT_DateTime[] = "Data e ora";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
479 static uint8_t text_ES_DateTime[] = "Fecha y hora";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
480
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
481 static uint8_t text_EN_DayMonthYear[] = "Date";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
482 static uint8_t text_DE_DayMonthYear[] = "Datum";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
483 static uint8_t text_FR_DayMonthYear[] = "Date";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
484 static uint8_t text_IT_DayMonthYear[] = "Data";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
485 static uint8_t text_ES_DayMonthYear[] = "Fecha";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
486
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
487 static uint8_t text_EN_StundeMinute[] = "Time";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
488 static uint8_t text_DE_StundeMinute[] = "Uhrzeit";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
489 static uint8_t text_FR_StundeMinute[] = "Heure";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
490 static uint8_t text_IT_StundeMinute[] = "Ora";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
491 static uint8_t text_ES_StundeMinute[] = "Hora";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
492
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
493 // Logbook
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
494 static uint8_t text_EN_Logbook[] = "Logbook";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
495 static uint8_t text_DE_Logbook[] = "Logbuch";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
496 static uint8_t text_FR_Logbook[] = "Carnet";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
497 static uint8_t text_IT_Logbook[] = "Logbook";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
498 static uint8_t text_ES_Logbook[] = "Diario";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
499
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
500 // Logbook
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
501 static uint8_t text_EN_LogbookEmpty[] = "Logbook empty.";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
502 static uint8_t text_DE_LogbookEmpty[] = "Logbuch leer.";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
503 static uint8_t text_FR_LogbookEmpty[] = "Carnet vide";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
504 static uint8_t text_IT_LogbookEmpty[] = "Logbook vuoto";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
505 static uint8_t text_ES_LogbookEmpty[] = "Diario sin entradas";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
506
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
507 // Menu SIM
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
508 static uint8_t text_EN_Start_Calculation[] = "Start calculation";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
509 static uint8_t text_DE_Start_Calculation[] = "Berechnung starten";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
510 static uint8_t text_FR_Start_Calculation[] = "Calculer";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
511 static uint8_t text_IT_Start_Calculation[] = "Calcola";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
512 static uint8_t text_ES_Start_Calculation[] = "Calcular";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
513
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
514 // Menu SYS2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
515 static uint8_t text_EN_Design[] = "Layout";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
516 static uint8_t text_DE_Design[] = "Design";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
517 static uint8_t text_FR_Design[] = "Affichage";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
518 static uint8_t text_IT_Design[] = "Layout";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
519 static uint8_t text_ES_Design[] = "Apariencia";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
520
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
521 // Menu SYS2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
522 static uint8_t text_EN_Farbschema[] = "Color scheme";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
523 static uint8_t text_DE_Farbschema[] = "Farbschema";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
524 static uint8_t text_FR_Farbschema[] = "Jeu de couleurs";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
525 static uint8_t text_IT_Farbschema[] = "Colore schermo";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
526 static uint8_t text_ES_Farbschema[] = "Colores";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
527
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
528 // Menu SYS2
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
529 static uint8_t text_EN_Customviews[] = "Custom views";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
530 static uint8_t text_DE_Customviews[] = "Variable Anzeigen";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
531 static uint8_t text_FR_Customviews[] = "Affichage personnel";//"Affich. perso.";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
532 static uint8_t text_IT_Customviews[] = "Personalizza schermo";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
533 static uint8_t text_ES_Customviews[] = "Vista personalizada";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
534
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
535 // Menu SYS2 sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
536 static uint8_t text_EN_CViewTimeout[] = "Center auto return after";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
537 static uint8_t text_DE_CViewTimeout[] = "Mitte automat. zurück";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
538 static uint8_t text_FR_CViewTimeout[] = "Retour affich. central";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
539 static uint8_t text_IT_CViewTimeout[] = "Centro auto ritorno";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
540 static uint8_t text_ES_CViewTimeout[] = "Campo central auto-retorno";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
541
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
542 // Menu SYS2 sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
543 static uint8_t text_EN_CViewStandard[] = "Center primary";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
544 static uint8_t text_DE_CViewStandard[] = "Mitte primär";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
545 static uint8_t text_FR_CViewStandard[] = "Affichage central";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
546 static uint8_t text_IT_CViewStandard[] = "Display centrale";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
547 static uint8_t text_ES_CViewStandard[] = "Campo central";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
548
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
549 // Menu SYS2 sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
550 static uint8_t text_EN_CornerTimeout[] = "Field auto return after";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
551 static uint8_t text_DE_CornerTimeout[] = "Feld automat. zurück";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
552 static uint8_t text_FR_CornerTimeout[] = "Retour affich. gauche"; // This is the LEFT corner.
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
553 static uint8_t text_IT_CornerTimeout[] = "Campo auto ritorno";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
554 static uint8_t text_ES_CornerTimeout[] = "Campo Izquierdo auto-retorno";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
555
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
556 // Menu SYS2 sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
557 static uint8_t text_EN_CornerStandard[] = "Field primary";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
558 static uint8_t text_DE_CornerStandard[] = "Feld primär";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
559 static uint8_t text_FR_CornerStandard[] = "Affichage gauche";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
560 static uint8_t text_IT_CornerStandard[] = "Campo primario";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
561 static uint8_t text_ES_CornerStandard[] = "Campo izquierdo inicial";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
562
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
563 // Menu GAS sub
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
564 static uint8_t text_EN_SetToMOD[] = "Set change depth to MOD";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
565 static uint8_t text_DE_SetToMOD[] = "Setze Wechseltiefe auf MOD";
66
90ceb2402d94 language updates
heinrichsweikamp
parents: 65
diff changeset
566 static uint8_t text_FR_SetToMOD[] = "Régler prof. chgmt. a PMU";
90ceb2402d94 language updates
heinrichsweikamp
parents: 65
diff changeset
567 static uint8_t text_IT_SetToMOD[] = "Cambia profondita MOD";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
568 static uint8_t text_ES_SetToMOD[] = "Cambiar profundidad a MOD";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
569
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
570 // Menu SYS2 sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
571 static uint8_t text_EN_Units[] = "Units";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
572 static uint8_t text_DE_Units[] = "Einheit";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
573 static uint8_t text_FR_Units[] = "Unités";
66
90ceb2402d94 language updates
heinrichsweikamp
parents: 65
diff changeset
574 static uint8_t text_IT_Units[] = "Unita";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
575 static uint8_t text_ES_Units[] = "Unidades";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
576
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
577 // Menu SYS2 sub
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
578 static uint8_t text_EN_Design_t7_feet[] = "Feet/Fahrenheit";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
579 static uint8_t text_DE_Design_t7_feet[] = "Fuss/Fahrenheit";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
580 static uint8_t text_FR_Design_t7_feet[] = "Pied/Fahrenheit";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
581 static uint8_t text_IT_Design_t7_feet[] = "Piedi/Fahrenheit";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
582 static uint8_t text_ES_Design_t7_feet[] = "Pies/Fahrenheit";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
583
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
584 // Menu SYS2 sub
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
585 static uint8_t text_EN_Design_t7_metric[] = "Meter/Celsius";
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
586 static uint8_t text_DE_Design_t7_metric[] = "Meter/Celsius";
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
587 static uint8_t text_FR_Design_t7_metric[] = "Mètre/Celsius";
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
588 static uint8_t text_IT_Design_t7_metric[] = "Metro/Celsius";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
589 static uint8_t text_ES_Design_t7_metric[] = "Metro/Celsius";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
590
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
591 // Menu SYS2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
592 static uint8_t text_EN_Information[] = "Information";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
593 static uint8_t text_DE_Information[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
594 static uint8_t text_FR_Information[] = ""; // Information
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
595 static uint8_t text_IT_Information[] = "Info";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
596 static uint8_t text_ES_Information[] = "Información";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
597
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
598 // Menu SYS2
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
599 static uint8_t text_EN_ResetMenu[] = "Reset menu";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
600 static uint8_t text_DE_ResetMenu[] = "Reset-Menü";
66
90ceb2402d94 language updates
heinrichsweikamp
parents: 65
diff changeset
601 static uint8_t text_FR_ResetMenu[] = "Menu RaZ"; // RaZ
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
602 static uint8_t text_IT_ResetMenu[] = "Reset";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
603 static uint8_t text_ES_ResetMenu[] = "Restaurar";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
604
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
605 // Menu SYS2 sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
606 static uint8_t text_EN_LogbookOffset[] = "Logbook offset";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
607 static uint8_t text_DE_LogbookOffset[] = "Logbuch-Versatz";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
608 static uint8_t text_FR_LogbookOffset[] = "Num. 1er plongée";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
609 static uint8_t text_IT_LogbookOffset[] = "Logbook offset";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
610 static uint8_t text_ES_LogbookOffset[] = "Diario: iniciar numeración en";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
611
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
612
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
613 // Menu SYS2 sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
614 static uint8_t text_EN_Maintenance[] = "Maintenance";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
615 static uint8_t text_DE_Maintenance[] = "Wartung";
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
616 static uint8_t text_FR_Maintenance[] = "Maintenance";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
617 static uint8_t text_IT_Maintenance[] = "Manutenzione";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
618 static uint8_t text_ES_Maintenance[] = "Mantenimiento";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
619
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
620 // Menu SYS2 sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
621 static uint8_t text_EN_SetBatteryCharge[] = "Restore Battery Charge";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
622 static uint8_t text_DE_SetBatteryCharge[] = "Batterie zurücksetzen";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
623 static uint8_t text_FR_SetBatteryCharge[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
624 static uint8_t text_IT_SetBatteryCharge[] = "Ricaricare batteria";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
625 static uint8_t text_ES_SetBatteryCharge[] = "Recalibrar nivel carga";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
626
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
627 // Menu SYS2 sub
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
628 static uint8_t text_EN_SetFactoryDefaults[] = "Store button factory defaults";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
629 static uint8_t text_DE_SetFactoryDefaults[] = "Taster zurücksetzen";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
630 static uint8_t text_FR_SetFactoryDefaults[] = "";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
631 static uint8_t text_IT_SetFactoryDefaults[] = "Impostazioni pulsante";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
632 static uint8_t text_ES_SetFactoryDefaults[] = "Restablecer ajustes de fábrica";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
633
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
634 // Menu SYS2 sub
424
2b31cf1ebbcc Added (optional) menu item to analyse log sample buffer:
ideenmodellierer
parents: 382
diff changeset
635 static uint8_t text_EN_SetSampleIndex[] = "Analyse log memory";
2b31cf1ebbcc Added (optional) menu item to analyse log sample buffer:
ideenmodellierer
parents: 382
diff changeset
636 static uint8_t text_DE_SetSampleIndex[] = "Prüfe Logbuchspeicher";
2b31cf1ebbcc Added (optional) menu item to analyse log sample buffer:
ideenmodellierer
parents: 382
diff changeset
637 static uint8_t text_FR_SetSampleIndex[] = "Maintain log memory";
2b31cf1ebbcc Added (optional) menu item to analyse log sample buffer:
ideenmodellierer
parents: 382
diff changeset
638 static uint8_t text_IT_SetSampleIndex[] = "Maintain log memory";
2b31cf1ebbcc Added (optional) menu item to analyse log sample buffer:
ideenmodellierer
parents: 382
diff changeset
639 static uint8_t text_ES_SetSampleIndex[] = "Maintain log memory";
2b31cf1ebbcc Added (optional) menu item to analyse log sample buffer:
ideenmodellierer
parents: 382
diff changeset
640
2b31cf1ebbcc Added (optional) menu item to analyse log sample buffer:
ideenmodellierer
parents: 382
diff changeset
641
2b31cf1ebbcc Added (optional) menu item to analyse log sample buffer:
ideenmodellierer
parents: 382
diff changeset
642 // Menu SYS2 sub
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
643 static uint8_t text_EN_Reboot[] = "Reboot";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
644 static uint8_t text_DE_Reboot[] = "Neustart";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
645 static uint8_t text_FR_Reboot[] = "Redémarrage";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
646 static uint8_t text_IT_Reboot[] = "Riavvio";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
647 static uint8_t text_ES_Reboot[] = "Reiniciar";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
648
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
649 // Menu SYS2 sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
650 static uint8_t text_EN__RebootRTE[] = "Reboot RTE";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
651 static uint8_t text_DE__RebootRTE[] = "RTE neu starten";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
652 static uint8_t text_FR__RebootRTE[] = "Redémarrage RTE";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
653 static uint8_t text_IT__RebootRTE[] = "Riavvio RTE";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
654 static uint8_t text_ES__RebootRTE[] = "Reiniciar RTE";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
655
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
656 // Menu SYS2 sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
657 static uint8_t text_EN_AreYouSure[] = "Are you sure?";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
658 static uint8_t text_DE_AreYouSure[] = "Sind Sie sicher?";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
659 static uint8_t text_FR_AreYouSure[] = "Confirmer?";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
660 static uint8_t text_IT_AreYouSure[] = "Sei sicuro?";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
661 static uint8_t text_ES_AreYouSure[] = "Estás seguro?";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
662
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
663 // Menu SYS2 sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
664 static uint8_t text_EN_Abort[] = "Abort";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
665 static uint8_t text_DE_Abort[] = "Abbrechen";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
666 static uint8_t text_FR_Abort[] = "Quitter";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
667 static uint8_t text_IT_Abort[] = "Uscita";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
668 static uint8_t text_ES_Abort[] = "Cancelar";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
669
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
670 // Menu SYS2 sub
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
671 static uint8_t text_EN_ResetAll[] = "Reset settings";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
672 static uint8_t text_DE_ResetAll[] = "Einstellung zurücksetzen";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
673 static uint8_t text_FR_ResetAll[] = "RaZ paramètres";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
674 static uint8_t text_IT_ResetAll[] = "Ripristina impostazioni";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
675 static uint8_t text_ES_ResetAll[] = "Restaurar parámetros";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
676
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
677 // Menu SYS2 sub
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
678 static uint8_t text_EN_ResetDeco[] = "Reset deco";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
679 static uint8_t text_DE_ResetDeco[] = "Deko zurücksetzen";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
680 static uint8_t text_FR_ResetDeco[] = "RaZ deco";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
681 static uint8_t text_IT_ResetDeco[] = "Ripristina deco";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
682 static uint8_t text_ES_ResetDeco[] = "Restaurar Deco";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
683
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
684 // Menu SYS2 sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
685 static uint8_t text_EN_Exit[] = "Exit";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
686 static uint8_t text_DE_Exit[] = "Ende";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
687 static uint8_t text_FR_Exit[] = "Sortir";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
688 static uint8_t text_IT_Exit[] = "Esci";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
689 static uint8_t text_ES_Exit[] = "Salir";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
690
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
691 // Menu SYS2 sub
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
692 static uint8_t text_EN_StartBootloader[] = "Reboot firmware";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
693 static uint8_t text_DE_StartBootloader[] = "Neustart Firmware";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
694 static uint8_t text_FR_StartBootloader[] = "Redémarrer";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
695 static uint8_t text_IT_StartBootloader[] = "Ripristina firmware";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
696 static uint8_t text_ES_StartBootloader[] = "Reiniciar firmware";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
697
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
698 // Menu SYS2 sub
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
699 static uint8_t text_EN_ResetLogbook[] = "Reset logbook";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
700 static uint8_t text_DE_ResetLogbook[] = "Logbuch zurücksetzen";
66
90ceb2402d94 language updates
heinrichsweikamp
parents: 65
diff changeset
701 static uint8_t text_FR_ResetLogbook[] = "RaZ carnet"; // RaZ
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
702 static uint8_t text_IT_ResetLogbook[] = "Ripristina logbook";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
703 static uint8_t text_ES_ResetLogbook[] = "Borrar diario";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
704
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
705 // Surface warning
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
706 static uint8_t text_EN_PleaseUpdate[] = "Please update";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
707 static uint8_t text_DE_PleaseUpdate[] = "Bitte updaten:";
66
90ceb2402d94 language updates
heinrichsweikamp
parents: 65
diff changeset
708 static uint8_t text_FR_PleaseUpdate[] = "Mettre a jours svp.";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
709 static uint8_t text_IT_PleaseUpdate[] = "Aggiornamento";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
710 static uint8_t text_ES_PleaseUpdate[] = "Por favor, actualice";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
711
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
712 // Surface warning
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
713 static uint8_t text_EN_RTE[] = "RTE";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
714 static uint8_t text_DE_RTE[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
715 static uint8_t text_FR_RTE[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
716 static uint8_t text_IT_RTE[] = "RTE";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
717 static uint8_t text_ES_RTE[] = "RTE";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
718
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
719 // Surface warning
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
720 static uint8_t text_EN_Fonts[] = "fonts"; // Character fonts!!
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
721 static uint8_t text_DE_Fonts[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
722 static uint8_t text_FR_Fonts[] = "polices";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
723 static uint8_t text_IT_Fonts[] = "Carattere";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
724 static uint8_t text_ES_Fonts[] = "Tipos de letra";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
725
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
726 // Dive Menu
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
727 static uint8_t text_EN_ResetStopwatch[] = "Reset stopwatch";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
728 static uint8_t text_DE_ResetStopwatch[] = "Stoppuhr zurückstellen";
66
90ceb2402d94 language updates
heinrichsweikamp
parents: 65
diff changeset
729 static uint8_t text_FR_ResetStopwatch[] = "RaZ chrono"; // RaZ
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
730 static uint8_t text_IT_ResetStopwatch[] = "Riavvia cronometro";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
731 static uint8_t text_ES_ResetStopwatch[] = "Reiniciar cronómetro";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
732
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
733 // Dive Menu
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
734 static uint8_t text_EN_SetMarker[] = "Set marker";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
735 static uint8_t text_DE_SetMarker[] = "Markierung";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
736 static uint8_t text_FR_SetMarker[] = "Repère";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
737 static uint8_t text_IT_SetMarker[] = "Marcatura";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
738 static uint8_t text_ES_SetMarker[] = "Poner Marcador";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
739
619
8fa2de4414a8 Added t3 quick menu for marker synchronisation:
Ideenmodellierer
parents: 613
diff changeset
740 static uint8_t text_EN_SetMarkerShort[] = "Set mark";
8fa2de4414a8 Added t3 quick menu for marker synchronisation:
Ideenmodellierer
parents: 613
diff changeset
741 static uint8_t text_DE_SetMarkerShort[] = "Marker";
613
beeb23d18443 Added "Set Marker" to T3 quick menu:
Ideenmodellierer
parents: 584
diff changeset
742 static uint8_t text_FR_SetMarkerShort[] = "Repère";
beeb23d18443 Added "Set Marker" to T3 quick menu:
Ideenmodellierer
parents: 584
diff changeset
743 static uint8_t text_IT_SetMarkerShort[] = "Marcatura";
beeb23d18443 Added "Set Marker" to T3 quick menu:
Ideenmodellierer
parents: 584
diff changeset
744 static uint8_t text_ES_SetMarkerShort[] = "Marcador";
beeb23d18443 Added "Set Marker" to T3 quick menu:
Ideenmodellierer
parents: 584
diff changeset
745
619
8fa2de4414a8 Added t3 quick menu for marker synchronisation:
Ideenmodellierer
parents: 613
diff changeset
746 static uint8_t text_EN_CheckMarker[] = "Check";
8fa2de4414a8 Added t3 quick menu for marker synchronisation:
Ideenmodellierer
parents: 613
diff changeset
747 static uint8_t text_DE_CheckMarker[] = "Passiert";
8fa2de4414a8 Added t3 quick menu for marker synchronisation:
Ideenmodellierer
parents: 613
diff changeset
748 static uint8_t text_FR_CheckMarker[] = "";
8fa2de4414a8 Added t3 quick menu for marker synchronisation:
Ideenmodellierer
parents: 613
diff changeset
749 static uint8_t text_IT_CheckMarker[] = "";
8fa2de4414a8 Added t3 quick menu for marker synchronisation:
Ideenmodellierer
parents: 613
diff changeset
750 static uint8_t text_ES_CheckMarker[] = "";
8fa2de4414a8 Added t3 quick menu for marker synchronisation:
Ideenmodellierer
parents: 613
diff changeset
751
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
752 // Dive Menu
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
753 static uint8_t text_EN_CompassHeading[] = "Compass heading";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
754 static uint8_t text_DE_CompassHeading[] = "Kompasskurs";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
755 static uint8_t text_FR_CompassHeading[] = "Cap";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
756 static uint8_t text_IT_CompassHeading[] = "Direzione bussola";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
757 static uint8_t text_ES_CompassHeading[] = "Rumbo brújula";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
758
347
77de014928d6 Added option to manually leave dive mode to system menu
ideenmodellierer
parents: 286
diff changeset
759 // Dive Menu
547
12f8745c8a94 Added viewport calibration to dive menu:
Ideenmodellierer
parents: 543
diff changeset
760 static uint8_t text_EN_CalibView[] = "Calibrate View";
573
f9c6ef098275 Update String "Blickwinkel":
Ideenmodellierer
parents: 562
diff changeset
761 static uint8_t text_DE_CalibView[] = "Kalibriere Blickwinkel";
547
12f8745c8a94 Added viewport calibration to dive menu:
Ideenmodellierer
parents: 543
diff changeset
762 static uint8_t text_FR_CalibView[] = "Calibrate View";
12f8745c8a94 Added viewport calibration to dive menu:
Ideenmodellierer
parents: 543
diff changeset
763 static uint8_t text_IT_CalibView[] = "Calibrate View";
12f8745c8a94 Added viewport calibration to dive menu:
Ideenmodellierer
parents: 543
diff changeset
764 static uint8_t text_ES_CalibView[] = "Calibrate View";
12f8745c8a94 Added viewport calibration to dive menu:
Ideenmodellierer
parents: 543
diff changeset
765
12f8745c8a94 Added viewport calibration to dive menu:
Ideenmodellierer
parents: 543
diff changeset
766 // Dive Menu
347
77de014928d6 Added option to manually leave dive mode to system menu
ideenmodellierer
parents: 286
diff changeset
767 static uint8_t text_EN_EndDiveMode[] = "End dive";
77de014928d6 Added option to manually leave dive mode to system menu
ideenmodellierer
parents: 286
diff changeset
768 static uint8_t text_DE_EndDiveMode[] = "Tauchgang beenden";
77de014928d6 Added option to manually leave dive mode to system menu
ideenmodellierer
parents: 286
diff changeset
769 static uint8_t text_FR_EndDiveMode[] = "End dive";
77de014928d6 Added option to manually leave dive mode to system menu
ideenmodellierer
parents: 286
diff changeset
770 static uint8_t text_IT_EndDiveMode[] = "End dive";
77de014928d6 Added option to manually leave dive mode to system menu
ideenmodellierer
parents: 286
diff changeset
771 static uint8_t text_ES_EndDiveMode[] = "End dive";
77de014928d6 Added option to manually leave dive mode to system menu
ideenmodellierer
parents: 286
diff changeset
772
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
773 // Menu SIM
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
774 static uint8_t text_EN_Simulator[] = "Simulator";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
775 static uint8_t text_DE_Simulator[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
776 static uint8_t text_FR_Simulator[] = "Simulateur";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
777 static uint8_t text_IT_Simulator[] = "Simulazione";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
778 static uint8_t text_ES_Simulator[] = "Simulador";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
779
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
780 // Menu SIM
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
781 static uint8_t text_EN_StartSimulator[] = "Start simulator";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
782 static uint8_t text_DE_StartSimulator[] = "Simulator starten";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
783 static uint8_t text_FR_StartSimulator[] = "Démarrage simulateur";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
784 static uint8_t text_IT_StartSimulator[] = "Inizia simulazione";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
785 static uint8_t text_ES_StartSimulator[] = "Iniciar simulador";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
786
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
787 // Menu SIM
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
788 static uint8_t text_EN_Intervall[] = "Interval";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
789 static uint8_t text_DE_Intervall[] = "Intervall";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
790 static uint8_t text_FR_Intervall[] = "Intervalle";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
791 static uint8_t text_IT_Intervall[] = "Intervallo";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
792 static uint8_t text_ES_Intervall[] = "Intervalo";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
793
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
794 // Menu SIM
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
795 static uint8_t text_EN_SimDiveTime[] = "Dive time";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
796 static uint8_t text_DE_SimDiveTime[] = "Tauchzeit";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
797 static uint8_t text_FR_SimDiveTime[] = "Temps fond";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
798 static uint8_t text_IT_SimDiveTime[] = "Tempo";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
799 static uint8_t text_ES_SimDiveTime[] = "Tiempo";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
800
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
801 // Menu SIM
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
802 static uint8_t text_EN_SimMaxDepth[] = "Max. depth";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
803 static uint8_t text_DE_SimMaxDepth[] = "Max. Tiefe";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
804 static uint8_t text_FR_SimMaxDepth[] = "Prof. max";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
805 static uint8_t text_IT_SimMaxDepth[] = "Profondita max.";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
806 static uint8_t text_ES_SimMaxDepth[] = "Prof. max.";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
807
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
808 // Menu SIM sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
809 static uint8_t text_EN_SimConsumption[] = "Gas consumption";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
810 static uint8_t text_DE_SimConsumption[] = "Gas-Verbrauch";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
811 static uint8_t text_FR_SimConsumption[] = "Conso gaz";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
812 static uint8_t text_IT_SimConsumption[] = "Consumo gas";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
813 static uint8_t text_ES_SimConsumption[] = "Consumo de gas";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
814
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
815 // Menu SIM sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
816 static uint8_t text_EN_SimSummary[] = "Summary";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
817 static uint8_t text_DE_SimSummary[] = "Zusammenfassung";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
818 static uint8_t text_FR_SimSummary[] = "Résumé";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
819 static uint8_t text_IT_SimSummary[] = "Leggenda";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
820 static uint8_t text_ES_SimSummary[] = "Resumen";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
821
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
822 // Menu SIM sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
823 static uint8_t text_EN_SimDecTo[] = "Dec to";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
824 static uint8_t text_DE_SimDecTo[] = "Abst.";
66
90ceb2402d94 language updates
heinrichsweikamp
parents: 65
diff changeset
825 static uint8_t text_FR_SimDecTo[] = "Desc a";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
826 static uint8_t text_IT_SimDecTo[] = "";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
827 static uint8_t text_ES_SimDecTo[] = "Desc a";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
828
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
829 // Menu SIM sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
830 static uint8_t text_EN_SimLevel[] = "Level";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
831 static uint8_t text_DE_SimLevel[] = "Tiefe";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
832 static uint8_t text_FR_SimLevel[] = "Niveau";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
833 static uint8_t text_IT_SimLevel[] = "Livello";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
834 static uint8_t text_ES_SimLevel[] = "Nivel";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
835
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
836 // Menu SIM sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
837 static uint8_t text_EN_SimAscTo[] = "Asc to";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
838 static uint8_t text_DE_SimAscTo[] = "Aufst.";
66
90ceb2402d94 language updates
heinrichsweikamp
parents: 65
diff changeset
839 static uint8_t text_FR_SimAscTo[] = "Rem. a";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
840 static uint8_t text_IT_SimAscTo[] = "";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
841 static uint8_t text_ES_SimAscTo[] = "Asc a";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
842
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
843 // Menu SIM sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
844 static uint8_t text_EN_SimSurface[] = "Surface";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
845 static uint8_t text_DE_SimSurface[] = "Oberfl.";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
846 static uint8_t text_FR_SimSurface[] = ""; // Surface
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
847 static uint8_t text_IT_SimSurface[] = "Superficie";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
848 static uint8_t text_ES_SimSurface[] = "Superficie";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
849
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
850 // Menu SIM sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
851 static uint8_t text_EN_Calculating[] = "Calculating ...";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
852 static uint8_t text_DE_Calculating[] = "Auswertung ...";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
853 static uint8_t text_FR_Calculating[] = "Calcul...";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
854 static uint8_t text_IT_Calculating[] = "Elaborazione...";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
855 static uint8_t text_ES_Calculating[] = "Calculando...";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
856
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
857 // Menu SIM sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
858 static uint8_t text_EN_PleaseWait[] = "Please wait!";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
859 static uint8_t text_DE_PleaseWait[] = "Bitte warten!";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
860 static uint8_t text_FR_PleaseWait[] = "Attendre svp.";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
861 static uint8_t text_IT_PleaseWait[] = "Attendere...";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
862 static uint8_t text_ES_PleaseWait[] = "Por favor, espere";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
863
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
864 // Menu SIM
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
865 static uint8_t text_EN_CalculateDeco[] = "Calculate deco";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
866 static uint8_t text_DE_CalculateDeco[] = "Deko berechnen";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
867 static uint8_t text_FR_CalculateDeco[] = "Calcul déco";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
868 static uint8_t text_IT_CalculateDeco[] = "Calcolo deco";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
869 static uint8_t text_ES_CalculateDeco[] = "Calcular deco";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
870
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
871 // Menu SIM sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
872 static uint8_t text_EN_Decolist[] = "Decoplan";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
873 static uint8_t text_DE_Decolist[] = "Dekoplan";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
874 static uint8_t text_FR_Decolist[] = "Plan déco";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
875 static uint8_t text_IT_Decolist[] = "Pianifica deco";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
876 static uint8_t text_ES_Decolist[] = "Plan deco";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
877
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
878 // Menu SYS1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
879 static uint8_t text_EN_ButtonSensitivity[] = "Button sensitivity";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
880 static uint8_t text_DE_ButtonSensitivity[] = "Taster ansprechen";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
881 static uint8_t text_FR_ButtonSensitivity[] = "Bouton sensibilité";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
882 static uint8_t text_IT_ButtonSensitivity[] = "Pulsante";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
883 static uint8_t text_ES_ButtonSensitivity[] = "Sensiblidad botones";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
884
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
885 //
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
886 static uint8_t text_EN_SpecialDiveGas[] = "Free configurable";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
887 static uint8_t text_DE_SpecialDiveGas[] = "Frei einstellbar";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
888 static uint8_t text_FR_SpecialDiveGas[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
889 static uint8_t text_IT_SpecialDiveGas[] = "Configurazione libera";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
890 static uint8_t text_ES_SpecialDiveGas[] = "Configuración libre";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
891
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
892 // Dive Menu
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
893 static uint8_t text_EN_SpecialDiveGasMenu[] = "Lost gas and extra gas";
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
894 static uint8_t text_DE_SpecialDiveGasMenu[] = "Verlorene Gase und Extra-Gas";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
895 static uint8_t text_FR_SpecialDiveGasMenu[] = "";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
896 static uint8_t text_IT_SpecialDiveGasMenu[] = "Gas perso e extra gas";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
897 static uint8_t text_ES_SpecialDiveGasMenu[] = "Gas perdido y gas extra";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
898
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
899 // Dive Menu (CCR mode)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
900 static uint8_t text_EN_SpecialDiveGasMenuCCR[] = "Lost Gas";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
901 static uint8_t text_DE_SpecialDiveGasMenuCCR[] = "Verlorene Gase";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
902 static uint8_t text_FR_SpecialDiveGasMenuCCR[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
903 static uint8_t text_IT_SpecialDiveGasMenuCCR[] = "Gas perso";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
904 static uint8_t text_ES_SpecialDiveGasMenuCCR[] = "Gas perdido";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
905
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
906 // Dive Menu (CCR mode)
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
907 static uint8_t text_EN_UseSensor[] = "Use sensor";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
908 static uint8_t text_DE_UseSensor[] = "Benutze Sensor";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
909 static uint8_t text_FR_UseSensor[] = "Cellules";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
910 static uint8_t text_IT_UseSensor[] = "Sensore";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
911 static uint8_t text_ES_UseSensor[] = "Usar sensor";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
912
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
913 // Warning
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
914 static uint8_t text_EN_WarnDecoMissed[] = "Deco stop";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
915 static uint8_t text_DE_WarnDecoMissed[] = "Deco Stopp";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
916 static uint8_t text_FR_WarnDecoMissed[] = "";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
917 static uint8_t text_IT_WarnDecoMissed[] = "Deco stop";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
918 static uint8_t text_ES_WarnDecoMissed[] = "Deco stop";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
919
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
920 // Warning
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
921 static uint8_t text_EN_WarnFallback[] = "Fallback";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
922 static uint8_t text_DE_WarnFallback[] = "";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
923 static uint8_t text_FR_WarnFallback[] = "Fallback"; // NEED to more specific here I guess...
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
924 static uint8_t text_IT_WarnFallback[] = "Fallback";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
925 static uint8_t text_ES_WarnFallback[] = "Fallback";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
926
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
927 // Warning
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
928 static uint8_t text_EN_WarnPPO2Low[] = "ppO2 low";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
929 static uint8_t text_DE_WarnPPO2Low[] = "ppO2 niedrig";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
930 static uint8_t text_FR_WarnPPO2Low[] = "ppO2 basse";
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
931 static uint8_t text_IT_WarnPPO2Low[] = "ppO2 basso";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
932 static uint8_t text_ES_WarnPPO2Low[] = "ppO2 bajo";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
933
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
934 // Warning
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
935 static uint8_t text_EN_WarnPPO2High[] = "ppO2 high";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
936 static uint8_t text_DE_WarnPPO2High[] = "ppO2 hoch";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
937 static uint8_t text_FR_WarnPPO2High[] = "ppO2 haut";
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
938 static uint8_t text_IT_WarnPPO2High[] = "ppO2 alto";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
939 static uint8_t text_ES_WarnPPO2High[] = "ppO2 alto";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
940
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
941 // Warning
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
942 static uint8_t text_EN_WarnBatteryLow[] = "Battery";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
943 static uint8_t text_DE_WarnBatteryLow[] = "Batterie";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
944 static uint8_t text_FR_WarnBatteryLow[] = "Batterie";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
945 static uint8_t text_IT_WarnBatteryLow[] = "Batteria";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
946 static uint8_t text_ES_WarnBatteryLow[] = "Carga baja";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
947
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
948 // Warning
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
949 static uint8_t text_EN_WarnSensorLinkLost[] = "Sensors";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
950 static uint8_t text_DE_WarnSensorLinkLost[] = "Sensoren";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
951 static uint8_t text_FR_WarnSensorLinkLost[] = "Cellules";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
952 static uint8_t text_IT_WarnSensorLinkLost[] = "Sensori";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
953 static uint8_t text_ES_WarnSensorLinkLost[] = "Sensores";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
954
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
955 // Warning
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
956 static uint8_t text_EN_WarnCnsHigh[] = "CNS high";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
957 static uint8_t text_DE_WarnCnsHigh[] = "CNS hoch";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
958 static uint8_t text_FR_WarnCnsHigh[] = "SNC haut";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
959 static uint8_t text_IT_WarnCnsHigh[] = "CNS alto";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
960 static uint8_t text_ES_WarnCnsHigh[] = "CNS alto";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
961
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
962 // Tissue Graph
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
963 static uint8_t text_EN_Nitrogen[] = "Nitrogen";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
964 static uint8_t text_DE_Nitrogen[] = "Stickstoff";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
965 static uint8_t text_FR_Nitrogen[] = "Azote";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
966 static uint8_t text_IT_Nitrogen[] = "Azoto";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
967 static uint8_t text_ES_Nitrogen[] = "Nitrógeno";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
968
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
969 // Tissue Graph
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
970 static uint8_t text_EN_Helium[] = "Helium";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
971 static uint8_t text_DE_Helium[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
972 static uint8_t text_FR_Helium[] = "Hélium";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
973 static uint8_t text_IT_Helium[] = "Helio";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
974 static uint8_t text_ES_Helium[] = "Helio";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
975
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
976 // Tissue Graph
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
977 static uint8_t text_EN_CNS[] = "Oxygen";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
978 static uint8_t text_DE_CNS[] = "Sauerstoff";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
979 static uint8_t text_FR_CNS[] = "Oxygène";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
980 static uint8_t text_IT_CNS[] = "Ossigeno";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
981 static uint8_t text_ES_CNS[] = "O2";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
982
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
983 // Profile Graph
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
984 static uint8_t text_EN_Profile[] = "Profile";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
985 static uint8_t text_DE_Profile[] = "Profil";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
986 static uint8_t text_FR_Profile[] = "Profil";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
987 static uint8_t text_IT_Profile[] = "Profilo";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
988 static uint8_t text_ES_Profile[] = "Perfil";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
989
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
990 // Dive mode (header @ deco stop place)
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
991 static uint8_t text_EN_SafetyStop2[] = "Safety stop";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
992 static uint8_t text_DE_SafetyStop2[] = "Sicherheit";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
993 static uint8_t text_FR_SafetyStop2[] = "Palier sécurité";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
994 static uint8_t text_IT_SafetyStop2[] = "Sicurezza";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
995 static uint8_t text_ES_SafetyStop2[] = "Parada de seguridad";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
996
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
997 // Surface mode
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
998 static uint8_t text_EN_noFly[] = "noFly";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
999 static uint8_t text_DE_noFly[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1000 static uint8_t text_FR_noFly[] = ""; // Or Avion
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
1001 static uint8_t text_IT_noFly[] = "No volo";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1002 static uint8_t text_ES_noFly[] = "No volar";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1003
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1004 // Surface mode
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1005 static uint8_t text_EN_Desaturation[] = "Desaturation";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1006 static uint8_t text_DE_Desaturation[] = "Entsättigung";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1007 static uint8_t text_FR_Desaturation[] = "Désaturation";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1008 static uint8_t text_IT_Desaturation[] = "Desaturazione";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1009 static uint8_t text_ES_Desaturation[] = "Desaturación";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1010
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1011 // Surface mode
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1012 static uint8_t text_EN_TimeSinceLastDive[] = "Last dive";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1013 static uint8_t text_DE_TimeSinceLastDive[] = "Tauchpause";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1014 static uint8_t text_FR_TimeSinceLastDive[] = "Intervalle";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1015 static uint8_t text_IT_TimeSinceLastDive[] = "Ultima immersione";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1016 static uint8_t text_ES_TimeSinceLastDive[] = "Última inmersión";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1017
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1018 // Button label (tiny line)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1019 static uint8_t text_EN_ButtonLogbook[] = "Logbook";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1020 static uint8_t text_DE_ButtonLogbook[] = "Logbuch";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1021 static uint8_t text_FR_ButtonLogbook[] = "Carnet";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1022 static uint8_t text_IT_ButtonLogbook[] = "Loogbook";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1023 static uint8_t text_ES_ButtonLogbook[] = "Diario";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1024
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1025 // Button label (tiny line)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1026 static uint8_t text_EN_ButtonView[] = "View";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1027 static uint8_t text_DE_ButtonView[] = "Ansicht";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1028 static uint8_t text_FR_ButtonView[] = "Vue";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1029 static uint8_t text_IT_ButtonView[] = "Visuale";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1030 static uint8_t text_ES_ButtonView[] = "Vista";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1031
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1032 // Button label (tiny line)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1033 static uint8_t text_EN_ButtonMenu[] = "Menu";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1034 static uint8_t text_DE_ButtonMenu[] = "Menü";
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
1035 static uint8_t text_FR_ButtonMenu[] = "Menu";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1036 static uint8_t text_IT_ButtonMenu[] = "Menu";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1037 static uint8_t text_ES_ButtonMenu[] = "Menú";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1038
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1039 // Button label (tiny line)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1040 static uint8_t text_EN_ButtonBack[] = "Back";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1041 static uint8_t text_DE_ButtonBack[] = "Zurück";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1042 static uint8_t text_FR_ButtonBack[] = "Retour";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1043 static uint8_t text_IT_ButtonBack[] = "Indietro";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1044 static uint8_t text_ES_ButtonBack[] = "Atrás";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1045
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1046 // Button label (tiny line)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1047 static uint8_t text_EN_ButtonEnter[] = "Enter";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1048 static uint8_t text_DE_ButtonEnter[] = "Bestätigen";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1049 static uint8_t text_FR_ButtonEnter[] = "Entrer";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1050 static uint8_t text_IT_ButtonEnter[] = "Conferma";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1051 static uint8_t text_ES_ButtonEnter[] = "Entrar";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1052
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1053 // Button label (tiny line)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1054 static uint8_t text_EN_ButtonNext[] = "Next";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1055 static uint8_t text_DE_ButtonNext[] = "Weiter";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1056 static uint8_t text_FR_ButtonNext[] = "Suivant"; //"Suiv.";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1057 static uint8_t text_IT_ButtonNext[] = "Prossimo";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1058 static uint8_t text_ES_ButtonNext[] = "Siguiente";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1059
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1060 // Button label (tiny line)
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
1061 static uint8_t text_EN_ButtonMinus[] = "-";
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
1062 static uint8_t text_DE_ButtonMinus[] = "-";
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
1063 static uint8_t text_FR_ButtonMinus[] = "-";
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
1064 static uint8_t text_IT_ButtonMinus[] = "-";
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
1065 static uint8_t text_ES_ButtonMinus[] = "-";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1066
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1067 // Button label (tiny line)
59
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
1068 static uint8_t text_EN_ButtonPlus[] = "+";
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
1069 static uint8_t text_DE_ButtonPlus[] = "+";
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
1070 static uint8_t text_FR_ButtonPlus[] = "+";
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
1071 static uint8_t text_IT_ButtonPlus[] = "+";
00e70b60c69f language updates
heinrichsweikamp
parents: 56
diff changeset
1072 static uint8_t text_ES_ButtonPlus[] = "+";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1073
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1074 // Dive menu
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1075 static uint8_t text_EN_SimFollowDecoStops[] = "Ascent follows decostops";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1076 static uint8_t text_DE_SimFollowDecoStops[] = "Sim-Aufstieg folgt Stopps";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1077 static uint8_t text_FR_SimFollowDecoStops[] = "Remonté selon paliers";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1078 static uint8_t text_IT_SimFollowDecoStops[] = "";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1079 static uint8_t text_ES_SimFollowDecoStops[] = "Ascenso según paradas deco";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1080
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1081 // Menu SYS1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1082 static uint8_t text_EN_Bluetooth[] = "Bluetooth";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1083 static uint8_t text_DE_Bluetooth[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1084 static uint8_t text_FR_Bluetooth[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1085 static uint8_t text_IT_Bluetooth[] = "";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1086 static uint8_t text_ES_Bluetooth[] = "Bluetooth";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1087
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1088 // Customview Header
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1089 static uint8_t text_EN_Tissues[] = "Tissue load";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1090 static uint8_t text_DE_Tissues[] = "Sättigung";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1091 static uint8_t text_FR_Tissues[] = "Saturation";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
1092 static uint8_t text_IT_Tissues[] = "Saturazione";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1093 static uint8_t text_ES_Tissues[] = "Saturación tejidos";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1094
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1095 // Customview Header
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1096 static uint8_t text_EN_O2monitor[] = "O2 monitor";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1097 static uint8_t text_DE_O2monitor[] = "O2-Monitor";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1098 static uint8_t text_FR_O2monitor[] = "Moniteur O2"; // "O2 (bar)" ?
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1099 static uint8_t text_IT_O2monitor[] = "Monitor O2";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1100 static uint8_t text_ES_O2monitor[] = "Monitor O2";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1101
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1102 // Customview Header
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1103 static uint8_t text_EN_O2voltage[] = "O2 voltage";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1104 static uint8_t text_DE_O2voltage[] = "O2 voltage";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1105 static uint8_t text_FR_O2voltage[] = "Voltage O2";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1106 static uint8_t text_IT_O2voltage[] = "Voltaggio O2";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1107 static uint8_t text_ES_O2voltage[] = "Voltaje O2";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1108
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1109 // Customview Header
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1110 static uint8_t text_EN_Gaslist[] = "Gaslist OC";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1111 static uint8_t text_DE_Gaslist[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1112 static uint8_t text_FR_Gaslist[] = "Liste gaz OC";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
1113 static uint8_t text_IT_Gaslist[] = "Lista gas OC";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1114 static uint8_t text_ES_Gaslist[] = "lista de gases OC";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1115
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1116 // Customview Header
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1117 static uint8_t text_EN_Info[] = "Info";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1118 static uint8_t text_DE_Info[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1119 static uint8_t text_FR_Info[] = ""; // Info
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1120 static uint8_t text_IT_Info[] = "Info";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1121 static uint8_t text_ES_Info[] = "Info";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1122
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1123 // Customview Header
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1124 static uint8_t text_EN_Warning[] = "Warning";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1125 static uint8_t text_DE_Warning[] = "Warnung";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1126 static uint8_t text_FR_Warning[] = "Alerte";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1127 static uint8_t text_IT_Warning[] = "Pericolo";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1128 static uint8_t text_ES_Warning[] = "Peligro";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1129
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1130 // Menu SYS2 sub Information
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1131 static uint8_t text_EN_Usage_Battery[] = "Battery life";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1132 static uint8_t text_DE_Usage_Battery[] = "Batterie-Nutzung";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1133 static uint8_t text_FR_Usage_Battery[] = "Durée batterie";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
1134 static uint8_t text_IT_Usage_Battery[] = "Durata batteria";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1135 static uint8_t text_ES_Usage_Battery[] = "Duración carga";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1136
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1137 // Menu SYS2 sub Information
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
1138 static uint8_t text_EN_Usage_Dives[] = "Dive records";
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
1139 static uint8_t text_DE_Usage_Dives[] = "Tauch-Historie";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1140 static uint8_t text_FR_Usage_Dives[] = "Historique plongées";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1141 static uint8_t text_IT_Usage_Dives[] = "Totale immersioni";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1142 static uint8_t text_ES_Usage_Dives[] = "Registro de inmersiones";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1143
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1144 // Menu SYS2 sub Information
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1145 static uint8_t text_EN_Usage_Environment[] = "Environmental conditions";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1146 static uint8_t text_DE_Usage_Environment[] = "Umgebungsbedingungen";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1147 static uint8_t text_FR_Usage_Environment[] = "Conditions environ.";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1148 static uint8_t text_IT_Usage_Environment[] = "Condizioni ambientali";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1149 static uint8_t text_ES_Usage_Environment[] = "Condiciones ambientales";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1150
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1151 // Menu SYS2 sub Information
646
0fc1b47d2482 Remove battery charge counter from information menu:
Ideenmodellierer
parents: 626
diff changeset
1152 static uint8_t text_EN_ChargeCycles[] = "Last charging cycle (complete)";
0fc1b47d2482 Remove battery charge counter from information menu:
Ideenmodellierer
parents: 626
diff changeset
1153 static uint8_t text_DE_ChargeCycles[] = "Letzter Ladezyklus (vollständig)";
0fc1b47d2482 Remove battery charge counter from information menu:
Ideenmodellierer
parents: 626
diff changeset
1154 static uint8_t text_FR_ChargeCycles[] = "Dernier cycles de charge (complets)";
0fc1b47d2482 Remove battery charge counter from information menu:
Ideenmodellierer
parents: 626
diff changeset
1155 static uint8_t text_IT_ChargeCycles[] = "Ultimo ciclo di ricarica (completata)";
0fc1b47d2482 Remove battery charge counter from information menu:
Ideenmodellierer
parents: 626
diff changeset
1156 static uint8_t text_ES_ChargeCycles[] = "Ultimo ciclo de carga (completada)";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1157
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1158 // Menu SYS2 sub Information
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
1159 static uint8_t text_EN_LowestVoltage[] = "Lowest battery voltage";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1160 static uint8_t text_DE_LowestVoltage[] = "Niedrigste Batteriespannung";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1161 static uint8_t text_FR_LowestVoltage[] = "Voltage min batterie";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1162 static uint8_t text_IT_LowestVoltage[] = "Batteria scarica";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1163 static uint8_t text_ES_LowestVoltage[] = "Carga muy baja ";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1164
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1165 // Menu SYS2 sub Information
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
1166 static uint8_t text_EN_HoursOfOperation[] = "Hours of operation";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1167 static uint8_t text_DE_HoursOfOperation[] = "Betriebsstunden";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1168 static uint8_t text_FR_HoursOfOperation[] = "Heures d'utilisations";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1169 static uint8_t text_IT_HoursOfOperation[] = "Ore di utilizzo";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1170 static uint8_t text_ES_HoursOfOperation[] = "Horas de uso";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1171
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1172 // Menu SYS2 sub Information
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
1173 static uint8_t text_EN_NumberOfDives[] = "Total number of dives (max. depth)";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1174 static uint8_t text_DE_NumberOfDives[] = "Anzahl Tauchgänge (max. Tiefe)";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1175 static uint8_t text_FR_NumberOfDives[] = "Nombre total de plongées (prof. max)";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
1176 static uint8_t text_IT_NumberOfDives[] = "Numero totale di immersioni (prof. max)";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1177 static uint8_t text_ES_NumberOfDives[] = "Número total de inmersiones (prof. max)";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1178
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1179 // Menu SYS2 sub Information
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
1180 static uint8_t text_EN_AmbientTemperature[] = "Ambient temperature range";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1181 static uint8_t text_DE_AmbientTemperature[] = "Umgebungstemperaturbereich";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1182 static uint8_t text_FR_AmbientTemperature[] = "Temperature ambiante"; // Range --> Temperatures ?
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1183 static uint8_t text_IT_AmbientTemperature[] = "Temperatura ambiente";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1184 static uint8_t text_ES_AmbientTemperature[] = "Temperatura ambiente";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1185
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1186 // Menu SYS2 sub Information
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1187 static uint8_t text_EN_Korrekturwerte[] = "Correction values";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1188 static uint8_t text_DE_Korrekturwerte[] = "Korrekturwerte";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1189 static uint8_t text_FR_Korrekturwerte[] = "Corrections";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1190 static uint8_t text_IT_Korrekturwerte[] = "Correzione valore";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1191 static uint8_t text_ES_Korrekturwerte[] = "Corregir valores";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1192
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1193 // Customview Content
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1194 static uint8_t text_EN_Clock[] = "Clock";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1195 static uint8_t text_DE_Clock[] = "Uhr";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1196 static uint8_t text_FR_Clock[] = "Heure";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1197 static uint8_t text_IT_Clock[] = "Orologio";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1198 static uint8_t text_ES_Clock[] = "Reloj";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1199
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1200 // Surface mode (all weekdays)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1201 static uint8_t text_EN_Sunday[] = "Sunday";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1202 static uint8_t text_DE_Sunday[] = "Sonntag";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1203 static uint8_t text_FR_Sunday[] = "Dimanche";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1204 static uint8_t text_IT_Sunday[] = "Domenica";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1205 static uint8_t text_ES_Sunday[] = "Domingo";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1206
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1207 static uint8_t text_EN_Monday[] = "Monday";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1208 static uint8_t text_DE_Monday[] = "Montag";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1209 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
1210 static uint8_t text_IT_Monday[] = "Lunedi";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1211 static uint8_t text_ES_Monday[] = "Lunes";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1212
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1213 static uint8_t text_EN_Tuesday[] = "Tuesday";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1214 static uint8_t text_DE_Tuesday[] = "Dienstag";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1215 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
1216 static uint8_t text_IT_Tuesday[] = "Martedi";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1217 static uint8_t text_ES_Tuesday[] = "Martes";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1218
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1219 static uint8_t text_EN_Wednesday[] = "Wednesday";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1220 static uint8_t text_DE_Wednesday[] = "Mittwoch";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1221 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
1222 static uint8_t text_IT_Wednesday[] = "Mercoledi";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1223 static uint8_t text_ES_Wednesday[] = "Miércoles";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1224
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1225 static uint8_t text_EN_Thursday[] = "Thursday";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1226 static uint8_t text_DE_Thursday[] = "Donnerstag";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1227 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
1228 static uint8_t text_IT_Thursday[] = "Giovedi";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1229 static uint8_t text_ES_Thursday[] = "Jueves";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1230
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1231 static uint8_t text_EN_Friday[] = "Friday";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1232 static uint8_t text_DE_Friday[] = "Freitag";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1233 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
1234 static uint8_t text_IT_Friday[] = "Venerdi";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1235 static uint8_t text_ES_Friday[] = "Viernes";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1236
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1237 static uint8_t text_EN_Saturday[] = "Saturday";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1238 static uint8_t text_DE_Saturday[] = "Samstag";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1239 static uint8_t text_FR_Saturday[] = "Samedi";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1240 static uint8_t text_IT_Saturday[] = "Sabato";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1241 static uint8_t text_ES_Saturday[] = "Sábado";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1242
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1243 // Menu SYS1 sub (Sensors)
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1244 static uint8_t text_EN_HUDBattery[] = "HUD battery";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1245 static uint8_t text_DE_HUDBattery[] = "HUD-Batterie";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1246 static uint8_t text_FR_HUDBattery[] = "Batterie HUD";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1247 static uint8_t text_IT_HUDBattery[] = "Batteria HUD";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1248 static uint8_t text_ES_HUDBattery[] = "Carga del HUD";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1249
584
830de438e0b0 Added option for 100% o2 calibration:
Ideenmodellierer
parents: 573
diff changeset
1250 static uint8_t text_EN_O2Calib[] = "Calibrate";
830de438e0b0 Added option for 100% o2 calibration:
Ideenmodellierer
parents: 573
diff changeset
1251 static uint8_t text_DE_O2Calib[] = "Kalibrierung";
830de438e0b0 Added option for 100% o2 calibration:
Ideenmodellierer
parents: 573
diff changeset
1252 static uint8_t text_FR_O2Calib[] = "";
830de438e0b0 Added option for 100% o2 calibration:
Ideenmodellierer
parents: 573
diff changeset
1253 static uint8_t text_IT_O2Calib[] = "";
830de438e0b0 Added option for 100% o2 calibration:
Ideenmodellierer
parents: 573
diff changeset
1254 static uint8_t text_ES_O2Calib[] = "";
562
ec76fa85009e Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents: 552
diff changeset
1255
ec76fa85009e Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents: 552
diff changeset
1256 static uint8_t text_EN_O2Interface[] = "O2 Interface";
ec76fa85009e Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents: 552
diff changeset
1257 static uint8_t text_DE_O2Interface[] = "O2 Interface";
ec76fa85009e Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents: 552
diff changeset
1258 static uint8_t text_FR_O2Interface[] = "";
ec76fa85009e Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents: 552
diff changeset
1259 static uint8_t text_IT_O2Interface[] = "";
ec76fa85009e Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents: 552
diff changeset
1260 static uint8_t text_ES_O2Interface[] = "";
ec76fa85009e Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents: 552
diff changeset
1261
ec76fa85009e Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents: 552
diff changeset
1262 static uint8_t text_EN_O2IFOptic[] = "optical";
ec76fa85009e Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents: 552
diff changeset
1263 static uint8_t text_DE_O2IFOptic[] = "optisch";
ec76fa85009e Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents: 552
diff changeset
1264 static uint8_t text_FR_O2IFOptic[] = "";
ec76fa85009e Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents: 552
diff changeset
1265 static uint8_t text_IT_O2IFOptic[] = "";
ec76fa85009e Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents: 552
diff changeset
1266 static uint8_t text_ES_O2IFOptic[] = "";
ec76fa85009e Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents: 552
diff changeset
1267
ec76fa85009e Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents: 552
diff changeset
1268 static uint8_t text_EN_O2IFAnalog[] = "analog";
ec76fa85009e Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents: 552
diff changeset
1269 static uint8_t text_DE_O2IFAnalog[] = "analog";
ec76fa85009e Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents: 552
diff changeset
1270 static uint8_t text_FR_O2IFAnalog[] = "";
ec76fa85009e Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents: 552
diff changeset
1271 static uint8_t text_IT_O2IFAnalog[] = "";
ec76fa85009e Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents: 552
diff changeset
1272 static uint8_t text_ES_O2IFAnalog[] = "";
ec76fa85009e Added ADC sensor interface to O2 sensore menu structure:
Ideenmodellierer
parents: 552
diff changeset
1273
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1274 // Menu SYS1 sub (buttons)
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1275 static uint8_t text_EN_LowerIsLess[] = "Lower is less sensitive";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1276 static uint8_t text_DE_LowerIsLess[] = "Niedriger ist schwergängiger";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1277 static uint8_t text_FR_LowerIsLess[] = "Diminuer moins sensible";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1278 static uint8_t text_IT_LowerIsLess[] = "Più basso è più rigido";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1279 static uint8_t text_ES_LowerIsLess[] = "A menor valor, menos sensibilidad";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1280
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1281 // Dive Mode YELLOW TEXT under Customview
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1282 static uint8_t text_EN_DiveMenuQ[] = " Menu? ";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1283 static uint8_t text_DE_DiveMenuQ[] = " Menü? ";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1284 static uint8_t text_FR_DiveMenuQ[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1285 static uint8_t text_IT_DiveMenuQ[] = "Menu?";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1286 static uint8_t text_ES_DiveMenuQ[] = "Menú";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1287
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1288 // Dive Mode YELLOW TEXT under Customview
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1289 static uint8_t text_EN_DiveQuitQ[] = " Quit? ";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1290 static uint8_t text_DE_DiveQuitQ[] = " Ende? ";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1291 static uint8_t text_FR_DiveQuitQ[] = "Quitter";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1292 static uint8_t text_IT_DiveQuitQ[] = "Uscita?";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1293 static uint8_t text_ES_DiveQuitQ[] = "¿Salir?";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1294
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1295 // Dive Mode YELLOW TEXT under Customview
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1296 static uint8_t text_EN_DiveBearingQ[] = "Bearing";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1297 static uint8_t text_DE_DiveBearingQ[] = "Peilung";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1298 static uint8_t text_FR_DiveBearingQ[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1299 static uint8_t text_IT_DiveBearingQ[] = "";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1300 static uint8_t text_ES_DiveBearingQ[] = "Rumbo";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1301
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1302 // Dive Mode YELLOW TEXT under Customview
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1303 static uint8_t text_EN_DiveResetAvgQ[] = "ResetAvr.";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1304 static uint8_t text_DE_DiveResetAvgQ[] = "Stoppuhr";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1305 static uint8_t text_FR_DiveResetAvgQ[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1306 static uint8_t text_IT_DiveResetAvgQ[] = "Reset AVR";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1307 static uint8_t text_ES_DiveResetAvgQ[] = "Reiniciar AVR";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1308
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1309 // Menu SYS2
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1310 static uint8_t text_EN_ExtraDisplay[] = "Big font";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1311 static uint8_t text_DE_ExtraDisplay[] = "Grosse Schrift";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1312 static uint8_t text_FR_ExtraDisplay[] = "Grand police";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1313 static uint8_t text_IT_ExtraDisplay[] = "Caratteri grandi";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1314 static uint8_t text_ES_ExtraDisplay[] = "Letras grandes";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1315
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1316 // Menu SYS2
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1317 static uint8_t text_EN_ExtraBigFont[] = "yes";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1318 static uint8_t text_DE_ExtraBigFont[] = "ja";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1319 static uint8_t text_FR_ExtraBigFont[] = "si";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1320 static uint8_t text_IT_ExtraBigFont[] = "si";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1321 static uint8_t text_ES_ExtraBigFont[] = "si";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1322
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1323 // Menu SYS2 (future feature)
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1324 static uint8_t text_EN_ExtraDecoGame[] = "Deco game";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1325 static uint8_t text_DE_ExtraDecoGame[] = "Deko-Spiel";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1326 static uint8_t text_FR_ExtraDecoGame[] = "Jeu déco";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1327 static uint8_t text_IT_ExtraDecoGame[] = "Giochi deco";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1328 static uint8_t text_ES_ExtraDecoGame[] = "Juego deco";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1329
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1330 // Menu SYS2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1331 static uint8_t text_EN_ExtraNone[] = "none";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1332 static uint8_t text_DE_ExtraNone[] = "nein";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1333 static uint8_t text_FR_ExtraNone[] = "non";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1334 static uint8_t text_IT_ExtraNone[] = "no";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1335 static uint8_t text_ES_ExtraNone[] = "ninguno";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1336
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
1337 /* 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
1338 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
1339 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
1340 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
1341 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
1342 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
1343
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
1344 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
1345 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
1346 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
1347 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
1348 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
1349
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
1350 static uint8_t text_EN_MoCtrlPitch[] = "Pitch move";
626
3e1a0e267f38 Added option to select sensitivity of focus detection:
Ideenmodellierer
parents: 619
diff changeset
1351 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
1352 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
1353 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
1354 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
1355
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
1356 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
1357 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
1358 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
1359 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
1360 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
1361
373
7b981f8bdd41 Add scroll event by pitch angle detection:
ideenmodellierer
parents: 368
diff changeset
1362 static uint8_t text_EN_MoCtrlScroll[] = "Scroll";
7b981f8bdd41 Add scroll event by pitch angle detection:
ideenmodellierer
parents: 368
diff changeset
1363 static uint8_t text_DE_MoCtrlScroll[] = "Karussell";
7b981f8bdd41 Add scroll event by pitch angle detection:
ideenmodellierer
parents: 368
diff changeset
1364 static uint8_t text_FR_MoCtrlScroll[] = "Scroll";
7b981f8bdd41 Add scroll event by pitch angle detection:
ideenmodellierer
parents: 368
diff changeset
1365 static uint8_t text_IT_MoCtrlScroll[] = "Scroll";
7b981f8bdd41 Add scroll event by pitch angle detection:
ideenmodellierer
parents: 368
diff changeset
1366 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
1367
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1368 // Menu SYS2 Reset RTE and Firmware Update During Bluetooth Connection
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1369 static uint8_t text_EN_DecoDataLost[] = "Decompression data will be lost";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1370 static uint8_t text_DE_DecoDataLost[] = "Dekompressionsdaten verloren!";
66
90ceb2402d94 language updates
heinrichsweikamp
parents: 65
diff changeset
1371 static uint8_t text_FR_DecoDataLost[] = "RaZ de la décompression"; // RaZ
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1372 static uint8_t text_IT_DecoDataLost[] = "";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1373 static uint8_t text_ES_DecoDataLost[] = "Se perderá la información de descompresión";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1374
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1375 // Menu SYS1 sub and Dive Menu
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1376 static uint8_t text_EN_SetBearing[] = "Set bearing";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1377 static uint8_t text_DE_SetBearing[] = "Kurs setzen";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1378 static uint8_t text_FR_SetBearing[] = "Réglage cap";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1379 static uint8_t text_IT_SetBearing[] = "Direzione bussola";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1380 static uint8_t text_ES_SetBearing[] = "Ajustar rumbo";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1381
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1382 static uint8_t text_EN_ResetBearing[] = "Clear bearing";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1383 static uint8_t text_DE_ResetBearing[] = "Kurs löschen";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1384 static uint8_t text_FR_ResetBearing[] = "Annulation cap";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1385 static uint8_t text_IT_ResetBearing[] = "Cancellare rotta";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1386 static uint8_t text_ES_ResetBearing[] = "Borrar rumbo";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1387
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1388 // Menu SYS1, sub
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1389 static uint8_t text_EN_SensorList[] = "Sensor";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1390 static uint8_t text_DE_SensorList[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1391 static uint8_t text_FR_SensorList[] = "Cellule";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1392 static uint8_t text_IT_SensorList[] = "";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1393 static uint8_t text_ES_SensorList[] = "Sensor";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1394
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1395 // Menu SYS1, sub
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1396 static uint8_t text_EN_ButtonLeft[] = "Left";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1397 static uint8_t text_DE_ButtonLeft[] = "Links";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1398 static uint8_t text_FR_ButtonLeft[] = "Gauche";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1399 static uint8_t text_IT_ButtonLeft[] = "Sinistra";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1400 static uint8_t text_ES_ButtonLeft[] = "Izquierda";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1401
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1402 static uint8_t text_EN_ButtonMitte[] = "Center";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1403 static uint8_t text_DE_ButtonMitte[] = "Mitte";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1404 static uint8_t text_FR_ButtonMitte[] = "Centre";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1405 static uint8_t text_IT_ButtonMitte[] = "Centro";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1406 static uint8_t text_ES_ButtonMitte[] = "Centro";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1407
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1408 static uint8_t text_EN_ButtonRight[] = "Right";
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1409 static uint8_t text_DE_ButtonRight[] = "Rechts";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1410 static uint8_t text_FR_ButtonRight[] = "Droite";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1411 static uint8_t text_IT_ButtonRight[] = "Destra";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1412 static uint8_t text_ES_ButtonRight[] = "Derecha";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1413
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1414 // Customview in Divemode
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1415 static uint8_t text_EN_Summary[] = "Overview";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1416 static uint8_t text_DE_Summary[] = "Uebersicht"; // T42 hat keine großen Umlaute hw 170103
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1417 static uint8_t text_FR_Summary[] = "Exposé";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1418 static uint8_t text_IT_Summary[] = "Tutto schermo";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1419 static uint8_t text_ES_Summary[] = "Visión general";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1420
376
a90100959871 Added string for Empty/ Debug custom view selection
ideenmodellierer
parents: 373
diff changeset
1421 static uint8_t text_EN_DispNoneDbg[] = "Debug/None";
a90100959871 Added string for Empty/ Debug custom view selection
ideenmodellierer
parents: 373
diff changeset
1422 static uint8_t text_DE_DispNoneDbg[] = "Debug/Leer";
a90100959871 Added string for Empty/ Debug custom view selection
ideenmodellierer
parents: 373
diff changeset
1423 static uint8_t text_FR_DispNoneDbg[] = "Debug/None";
a90100959871 Added string for Empty/ Debug custom view selection
ideenmodellierer
parents: 373
diff changeset
1424 static uint8_t text_IT_DispNoneDbg[] = "Debug/None";
a90100959871 Added string for Empty/ Debug custom view selection
ideenmodellierer
parents: 373
diff changeset
1425 static uint8_t text_ES_DispNoneDbg[] = "Debug/None";
a90100959871 Added string for Empty/ Debug custom view selection
ideenmodellierer
parents: 373
diff changeset
1426
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1427 static uint8_t text_EN_ApneaTotal[] = "total";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1428 static uint8_t text_DE_ApneaTotal[] = "gesamt";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1429 static uint8_t text_FR_ApneaTotal[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1430 static uint8_t text_IT_ApneaTotal[] = "Completo";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1431 static uint8_t text_ES_ApneaTotal[] = "Total";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1432
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1433 static uint8_t text_EN_ApneaLast[] = "last";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1434 static uint8_t text_DE_ApneaLast[] = "letzter";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1435 static uint8_t text_FR_ApneaLast[] = "dernier";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1436 static uint8_t text_IT_ApneaLast[] = "";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1437 static uint8_t text_ES_ApneaLast[] = "último";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1438
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1439 static uint8_t text_EN_ApneaSurface[] = "Surface time";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1440 static uint8_t text_DE_ApneaSurface[] = "Oberflächenzeit";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1441 static uint8_t text_FR_ApneaSurface[] = "Tps.surface";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1442 static uint8_t text_IT_ApneaSurface[] = "Tempo di superficie";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1443 static uint8_t text_ES_ApneaSurface[] = "Tiempo de superficie";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1444
552
531e7818b737 Added menu structure to acces viewport calibration:
Ideenmodellierer
parents: 547
diff changeset
1445 static uint8_t text_EN_IndicateFrame[] = "Change frame color";
531e7818b737 Added menu structure to acces viewport calibration:
Ideenmodellierer
parents: 547
diff changeset
1446 static uint8_t text_DE_IndicateFrame[] = "Farbwechsel Rahmen";
531e7818b737 Added menu structure to acces viewport calibration:
Ideenmodellierer
parents: 547
diff changeset
1447 static uint8_t text_FR_IndicateFrame[] = "";
531e7818b737 Added menu structure to acces viewport calibration:
Ideenmodellierer
parents: 547
diff changeset
1448 static uint8_t text_IT_IndicateFrame[] = "";
531e7818b737 Added menu structure to acces viewport calibration:
Ideenmodellierer
parents: 547
diff changeset
1449 static uint8_t text_ES_IndicateFrame[] = "";
531e7818b737 Added menu structure to acces viewport calibration:
Ideenmodellierer
parents: 547
diff changeset
1450
531e7818b737 Added menu structure to acces viewport calibration:
Ideenmodellierer
parents: 547
diff changeset
1451 static uint8_t text_EN_BoostBacklight[] = "Boost Backlight:";
626
3e1a0e267f38 Added option to select sensitivity of focus detection:
Ideenmodellierer
parents: 619
diff changeset
1452 static uint8_t text_DE_BoostBacklight[] = "Helligkeit +:";
552
531e7818b737 Added menu structure to acces viewport calibration:
Ideenmodellierer
parents: 547
diff changeset
1453 static uint8_t text_FR_BoostBacklight[] = "";
531e7818b737 Added menu structure to acces viewport calibration:
Ideenmodellierer
parents: 547
diff changeset
1454 static uint8_t text_IT_BoostBacklight[] = "";
531e7818b737 Added menu structure to acces viewport calibration:
Ideenmodellierer
parents: 547
diff changeset
1455 static uint8_t text_ES_BoostBacklight[] = "";
531e7818b737 Added menu structure to acces viewport calibration:
Ideenmodellierer
parents: 547
diff changeset
1456
626
3e1a0e267f38 Added option to select sensitivity of focus detection:
Ideenmodellierer
parents: 619
diff changeset
1457 static uint8_t text_EN_FocusSpotSize[] = "Focus detection:";
3e1a0e267f38 Added option to select sensitivity of focus detection:
Ideenmodellierer
parents: 619
diff changeset
1458 static uint8_t text_DE_FocusSpotSize[] = "Fokus Reaktion:";
3e1a0e267f38 Added option to select sensitivity of focus detection:
Ideenmodellierer
parents: 619
diff changeset
1459 static uint8_t text_FR_FocusSpotSize[] = "";
3e1a0e267f38 Added option to select sensitivity of focus detection:
Ideenmodellierer
parents: 619
diff changeset
1460 static uint8_t text_IT_FocusSpotSize[] = "";
3e1a0e267f38 Added option to select sensitivity of focus detection:
Ideenmodellierer
parents: 619
diff changeset
1461 static uint8_t text_ES_FocusSpotSize[] = "";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1462 /*
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1463 static uint8_t text_EN_ApneaCount[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1464 static uint8_t text_DE_ApneaCount[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1465 static uint8_t text_FR_ApneaCount[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1466 static uint8_t text_IT_ApneaCount[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1467 static uint8_t text_ES_ApneaCount[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1468 */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1469
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1470 // -----------------------------------
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1471 // not used
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1472 // -----------------------------------
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1473
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1474
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1475 // Menu DECO1 (future)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1476 static uint8_t text_EN_Apnoe[] = "Apnea";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1477 static uint8_t text_DE_Apnoe[] = "Apnoe";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1478 static uint8_t text_FR_Apnoe[] = "Apnée";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
1479 static uint8_t text_IT_Apnoe[] = "Apnea";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1480 static uint8_t text_ES_Apnoe[] = "Apnea";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1481
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1482 // Menu DECO1 (future)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1483 static uint8_t text_EN_Gauge[] = "Gauge";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1484 static uint8_t text_DE_Gauge[] = "Tiefenmesser";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1485 static uint8_t text_FR_Gauge[] = "Profondimétre";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1486 static uint8_t text_IT_Gauge[] = "Profondimetro";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1487 static uint8_t text_ES_Gauge[] = "Profundimetro";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1488
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1489
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1490 static uint8_t text_EN_Default[] = "Default";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1491 static uint8_t text_DE_Default[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1492 static uint8_t text_FR_Default[] = "Défaut";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1493 static uint8_t text_IT_Default[] = "Standard";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1494 static uint8_t text_ES_Default[] = "Por defecto";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1495
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
1496 static uint8_t text_EN_LiterproMinute[] = "Liter/Minute";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1497 static uint8_t text_DE_LiterproMinute[] = "Liter/Minute";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1498 static uint8_t text_FR_LiterproMinute[] = "Litre/minute";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
1499 static uint8_t text_IT_LiterproMinute[] = "Litri/Minuti";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1500 static uint8_t text_ES_LiterproMinute[] = "Litros/Minuto";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1501
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1502 static uint8_t text_EN_Reserve[] = "Reserve";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1503 static uint8_t text_DE_Reserve[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1504 static uint8_t text_FR_Reserve[] = "Réserve";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1505 static uint8_t text_IT_Reserve[] = "Riserva";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1506 static uint8_t text_ES_Reserve[] = "Reserva";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1507
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1508 static uint8_t text_EN_Daylightsaving[] = "Daylight sav.";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1509 static uint8_t text_DE_Daylightsaving[] = "Sommerzeit";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1510 static uint8_t text_FR_Daylightsaving[] = "Heure d'été";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1511 static uint8_t text_IT_Daylightsaving[] = "";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1512 static uint8_t text_ES_Daylightsaving[] = "Horario de verano";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1513
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1514 static uint8_t text_EN_ShowDebug[] = "Debug info";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1515 static uint8_t text_DE_ShowDebug[] = "Fehlersuche";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1516 static uint8_t text_FR_ShowDebug[] = "Info de déboguage";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1517 static uint8_t text_IT_ShowDebug[] = "Informazioni Debug";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1518 static uint8_t text_ES_ShowDebug[] = "Información de depuración";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1519
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1520 static uint8_t text_EN_SimTravelGas[] = "Travel Gas";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1521 static uint8_t text_DE_SimTravelGas[] = "Reise Gas";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1522 static uint8_t text_FR_SimTravelGas[] = "Gaz Travel";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1523 static uint8_t text_IT_SimTravelGas[] = "Gas da viaggio";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1524 static uint8_t text_ES_SimTravelGas[] = "Gas de viaje";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1525
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1526 static uint8_t text_EN_SimDecoGas[] = "Deco Gas";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1527 static uint8_t text_DE_SimDecoGas[] = "Deko Gas";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1528 static uint8_t text_FR_SimDecoGas[] = "Gaz déco";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1529 static uint8_t text_IT_SimDecoGas[] = "Gas decompressivo";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1530 static uint8_t text_ES_SimDecoGas[] = "Gas deco";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1531
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1532 static uint8_t text_EN_OTU[] = "OTU";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1533 static uint8_t text_DE_OTU[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1534 static uint8_t text_FR_OTU[] = ""; // UTO ?? I think we do use OTU too.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1535 static uint8_t text_IT_OTU[] = "OTU";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1536 static uint8_t text_ES_OTU[] = "OTUs";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1537
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1538 /*
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1539 static uint8_t text_EN_Button1[] = "Button 1";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1540 static uint8_t text_DE_Button1[] = "Taster 1";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1541 static uint8_t text_FR_Button1[] = "Bouton 1";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
1542 static uint8_t text_IT_Button1[] = "Pulsante1";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1543 static uint8_t text_ES_Button1[] = "Botón 1";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1544
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1545 static uint8_t text_EN_Button2[] = "Button 2";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1546 static uint8_t text_DE_Button2[] = "Taster 2";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1547 static uint8_t text_FR_Button2[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1548 static uint8_t text_IT_Button2[] = "Pulsante2";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1549 static uint8_t text_ES_Button2[] = "Botón 2";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1550
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1551 static uint8_t text_EN_Button3[] = "Button 3";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1552 static uint8_t text_DE_Button3[] = "Taster 3";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1553 static uint8_t text_FR_Button3[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1554 static uint8_t text_IT_Button3[] = "Pulsante3";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1555 static uint8_t text_ES_Button3[] = "Botón 3";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1556
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1557 static uint8_t text_EN_Button4[] = "Button 4";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1558 static uint8_t text_DE_Button4[] = "Taster 4";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1559 static uint8_t text_FR_Button4[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1560 static uint8_t text_IT_Button4[] = "Pulsante4";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1561 static uint8_t text_ES_Button4[] = "Botón 4";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1562
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1563 static uint8_t text_EN_Yes[] = "Yes";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1564 static uint8_t text_DE_Yes[] = "Ja";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1565 static uint8_t text_FR_Yes[] = "Oui";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
1566 static uint8_t text_IT_Yes[] = "Si";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1567 static uint8_t text_ES_Yes[] = "Si";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1568
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1569 static uint8_t text_EN_No[] = "No";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1570 static uint8_t text_DE_No[] = "Nein";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1571 static uint8_t text_FR_No[] = "Non";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
1572 static uint8_t text_IT_No[] = "No";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1573 static uint8_t text_ES_No[] = "No";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1574
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1575 static uint8_t text_EN_Conservatism[] = "Conservatism";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1576 static uint8_t text_DE_Conservatism[] = "Konservatismus";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1577 static uint8_t text_FR_Conservatism[] = "Conservatisme";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1578 static uint8_t text_IT_Conservatism[] = "Conservativismo";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1579 static uint8_t text_ES_Conservatism[] = "Conservadurismo";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1580
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1581 static uint8_t text_EN_Conservatism[] = "Setting"; // was Dive Menu
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1582 static uint8_t text_DE_Conservatism[] = "Level";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1583 static uint8_t text_FR_Conservatism[] = "Conservatisme"; // Or "Durcis."
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1584 static uint8_t text_IT_Conservatism[] = "Livello conservativismo";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1585 static uint8_t text_ES_Conservatism[] = "Grado de conservadurismo";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1586
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1587 static uint8_t text_EN_FirmwareUpdate[] = "Firmware update";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1588 static uint8_t text_DE_FirmwareUpdate[] = "Firmware aktualisieren";
65
feaee3f4696e language updates
heinrichsweikamp
parents: 60
diff changeset
1589 static uint8_t text_FR_FirmwareUpdate[] = "";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1590 static uint8_t text_IT_FirmwareUpdate[] = "Firmware";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1591 static uint8_t text_ES_FirmwareUpdate[] = "Actualizar firmware";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1592
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1593 static uint8_t text_EN_ppo2_setting[] = "ppO2 bar";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1594 static uint8_t text_DE_ppo2_setting[] = "";
56
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
1595 static uint8_t text_FR_ppo2_setting[] = "ppO2 bar";
bab006305b58 language updates
heinrichsweikamp
parents: 55
diff changeset
1596 static uint8_t text_IT_ppo2_setting[] = "ppO2 Bar";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1597 static uint8_t text_ES_ppo2_setting[] = "ppO2 Bar";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1598
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1599 static uint8_t text_EN_down[] = "Down";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1600 static uint8_t text_DE_down[] = "Hinunter";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1601 static uint8_t text_FR_down[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1602 static uint8_t text_IT_down[] = "Sotto";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1603 static uint8_t text_ES_down[] = "Abajo";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1604
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1605 static uint8_t text_EN_enter[] = "Enter";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1606 static uint8_t text_DE_enter[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1607 static uint8_t text_FR_enter[] = "Entrer";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1608 static uint8_t text_IT_enter[] = "Conferma";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1609 static uint8_t text_ES_enter[] = "Entrar";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1610
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1611 static uint8_t text_EN_Change[] = "Change";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1612 static uint8_t text_DE_Change[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1613 static uint8_t text_FR_Change[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1614 static uint8_t text_IT_Change[] = "Cambio";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1615 static uint8_t text_ES_Change[] = "Cambiar";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1616 */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1617
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1618
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1619 // not installed 2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1620
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1621 static uint8_t text_EN_Bottle[] = "tank size";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1622 static uint8_t text_DE_Bottle[] = "Flasche";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1623 static uint8_t text_FR_Bottle[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1624 static uint8_t text_IT_Bottle[] = "Litraggio bombola";
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1625 static uint8_t text_ES_Bottle[] = "Volumen botella";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1626
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1627
80
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1628 static uint8_t text_EN_GasVorrat[] = "Pressure Budget";
cc2bb7bb8456 Added Spanish language
heinrichsweikamp
parents: 66
diff changeset
1629 static uint8_t text_DE_GasVorrat[] = "Gasvorrat";
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1630 static uint8_t text_FR_GasVorrat[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1631 static uint8_t text_IT_GasVorrat[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1632 static uint8_t text_ES_GasVorrat[] = "";
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1633
107
926098fb116a Next text ID for display flip
Ideenmodellierer
parents: 66
diff changeset
1634 static uint8_t text_EN_FlipDisplay[] = "Flip display";
926098fb116a Next text ID for display flip
Ideenmodellierer
parents: 66
diff changeset
1635 static uint8_t text_DE_FlipDisplay[] = "Anzeige spiegeln";
926098fb116a Next text ID for display flip
Ideenmodellierer
parents: 66
diff changeset
1636 static uint8_t text_FR_FlipDisplay[] = "";
926098fb116a Next text ID for display flip
Ideenmodellierer
parents: 66
diff changeset
1637 static uint8_t text_IT_FlipDisplay[] = "";
926098fb116a Next text ID for display flip
Ideenmodellierer
parents: 66
diff changeset
1638 static uint8_t text_ES_FlipDisplay[] = "";
926098fb116a Next text ID for display flip
Ideenmodellierer
parents: 66
diff changeset
1639
523
0a407cd48912 Changed string for data view selections:
Ideenmodellierer
parents: 506
diff changeset
1640 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
1641 static uint8_t text_DE_SelectCustom[] = "Auswahl Datenanzeige";
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1642 static uint8_t text_FR_SelectCustom[] = "";
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1643 static uint8_t text_IT_SelectCustom[] = "";
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1644 static uint8_t text_ES_SelectCustom[] = "";
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1645
539
d784f281833a Added inertia simulation for compass heading:
Ideenmodellierer
parents: 526
diff changeset
1646 static uint8_t text_EN_SelectBigFont[] = "Select big font data views";
523
0a407cd48912 Changed string for data view selections:
Ideenmodellierer
parents: 506
diff changeset
1647 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
1648 static uint8_t text_FR_SelectBigFont[] = "";
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1649 static uint8_t text_IT_SelectBigFont[] = "";
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1650 static uint8_t text_ES_SelectBigFont[] = "";
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1651
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1652 static uint8_t text_EN_ppo2Air[] = "PPO2 and active gas";
543
bce852cc3b91 Shortend t3 view names:
Ideenmodellierer
parents: 542
diff changeset
1653 static uint8_t text_DE_ppo2Air[] = "PPO2/Atemgas";
506
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1654 static uint8_t text_FR_ppo2Air[] = "";
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1655 static uint8_t text_IT_ppo2Air[] = "";
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1656 static uint8_t text_ES_ppo2Air[] = "";
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1657
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1658 static uint8_t text_EN_Navigation[] = "Compass and stop watch";
543
bce852cc3b91 Shortend t3 view names:
Ideenmodellierer
parents: 542
diff changeset
1659 static uint8_t text_DE_Navigation[] = "Kompass/Stoppuhr";
506
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1660 static uint8_t text_FR_Navigation[] = "";
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1661 static uint8_t text_IT_Navigation[] = "";
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1662 static uint8_t text_ES_Navigation[] = "";
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1663
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1664 static uint8_t text_EN_DepthData[] = "Average and max depth";
543
bce852cc3b91 Shortend t3 view names:
Ideenmodellierer
parents: 542
diff changeset
1665 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
1666 static uint8_t text_FR_DepthData[] = "";
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1667 static uint8_t text_IT_DepthData[] = "";
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1668 static uint8_t text_ES_DepthData[] = "";
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1669
542
6960df7ddb09 Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents: 539
diff changeset
1670 static uint8_t text_EN_DecoTTS[] = "Deco and TTS";
543
bce852cc3b91 Shortend t3 view names:
Ideenmodellierer
parents: 542
diff changeset
1671 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
1672 static uint8_t text_FR_DecoTTS[] = "";
6960df7ddb09 Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents: 539
diff changeset
1673 static uint8_t text_IT_DecoTTS[] = "";
6960df7ddb09 Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents: 539
diff changeset
1674 static uint8_t text_ES_DecoTTS[] = "";
6960df7ddb09 Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents: 539
diff changeset
1675
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1676 /* Lookup Table -------------------------------------------------------------*/
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1677
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1678 const tText text_array[] =
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1679 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1680 {(uint8_t)TXT_Language, {text_EN_Language, text_DE_Language, text_FR_Language, text_IT_Language, text_ES_Language}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1681 {(uint8_t)TXT_LanguageName, {text_EN_LanguageName, text_DE_LanguageName, text_FR_LanguageName, text_IT_LanguageName, text_ES_LanguageName}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1682 {(uint8_t)TXT_Depth, {text_EN_Depth, text_DE_Depth, text_FR_Depth, text_IT_Depth, text_ES_Depth}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1683 {(uint8_t)TXT_Divetime, {text_EN_Divetime, text_DE_Divetime, text_FR_Divetime, text_IT_Divetime, text_ES_Divetime}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1684 {(uint8_t)TXT_MaxDepth, {text_EN_MaxDepth, text_DE_MaxDepth, text_FR_MaxDepth, text_IT_MaxDepth, text_ES_MaxDepth}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1685 {(uint8_t)TXT_Decostop, {text_EN_Decostop, text_DE_Decostop, text_FR_Decostop, text_IT_Decostop, text_ES_Decostop}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1686 {(uint8_t)TXT_Nullzeit, {text_EN_Nullzeit, text_DE_Nullzeit, text_FR_Nullzeit, text_IT_Nullzeit, text_ES_Nullzeit}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1687 {(uint8_t)TXT_ppO2, {text_EN_ppO2, text_DE_ppO2, text_FR_ppO2, text_IT_ppO2, text_ES_ppO2}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1688 {(uint8_t)TXT_TTS, {text_EN_TTS, text_DE_TTS, text_FR_TTS, text_IT_TTS, text_ES_TTS}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1689 {(uint8_t)TXT_CNS, {text_EN_CNSshort, text_DE_CNSshort, text_FR_CNSshort, text_IT_CNSshort, text_ES_CNSshort}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1690 {(uint8_t)TXT_Temperature, {text_EN_Temperature, text_DE_Temperature, text_FR_Temperature, text_IT_Temperature, text_ES_Temperature}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1691 {(uint8_t)TXT_FutureTTS, {text_EN_FutureTTS, text_DE_FutureTTS, text_FR_FutureTTS, text_IT_FutureTTS, text_ES_FutureTTS}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1692 {(uint8_t)TXT_AvgDepth, {text_EN_AvgDepth, text_DE_AvgDepth, text_FR_AvgDepth, text_IT_AvgDepth, text_ES_AvgDepth}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1693 {(uint8_t)TXT_Ceiling, {text_EN_Ceiling, text_DE_Ceiling, text_FR_Ceiling, text_IT_Ceiling, text_ES_Ceiling}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1694 {(uint8_t)TXT_ActualGradient, {text_EN_ActualGradient, text_DE_ActualGradient, text_FR_ActualGradient, text_IT_ActualGradient, text_ES_ActualGradient}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1695 {(uint8_t)TXT_Stopwatch, {text_EN_Stopwatch, text_DE_Stopwatch, text_FR_Stopwatch, text_IT_Stopwatch, text_ES_Stopwatch}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1696 {(uint8_t)TXT_Gas, {text_EN_Gas, text_DE_Gas, text_FR_Gas, text_IT_Gas, text_ES_Gas}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1697 {(uint8_t)TXT_Time, {text_EN_Time, text_DE_Time, text_FR_Time, text_IT_Time, text_ES_Time}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1698 {(uint8_t)TXT_Date, {text_EN_Date, text_DE_Date, text_FR_Date, text_IT_Date, text_ES_Date}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1699 {(uint8_t)TXT_Format, {text_EN_Format, text_DE_Format, text_FR_Format, text_IT_Format, text_ES_Format}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1700 {(uint8_t)TXT_Warning, {text_EN_Warning, text_DE_Warning, text_FR_Warning, text_IT_Warning, text_ES_Warning}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1701 {(uint8_t)TXT_o2Sensors, {text_EN_o2Sensors, text_DE_o2Sensors, text_FR_o2Sensors, text_IT_o2Sensors, text_ES_o2Sensors}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1702 {(uint8_t)TXT_Brightness, {text_EN_Brightness, text_DE_Brightness, text_FR_Brightness, text_IT_Brightness, text_ES_Brightness}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1703 {(uint8_t)TXT_Cave, {text_EN_Cave, text_DE_Cave, text_FR_Cave, text_IT_Cave, text_ES_Cave}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1704 {(uint8_t)TXT_Eco, {text_EN_Eco, text_DE_Eco, text_FR_Eco, text_IT_Eco, text_ES_Eco}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1705 {(uint8_t)TXT_Normal, {text_EN_Normal, text_DE_Normal, text_FR_Normal, text_IT_Normal, text_ES_Normal}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1706 {(uint8_t)TXT_Bright, {text_EN_Bright, text_DE_Bright, text_FR_Bright, text_IT_Bright, text_ES_Bright}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1707 {(uint8_t)TXT_Ultrabright, {text_EN_Ultrabright, text_DE_Ultrabright, text_FR_Ultrabright, text_IT_Ultrabright, text_ES_Ultrabright}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1708 {(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}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1709 {(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}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1710 {(uint8_t)TXT_Mix, {text_EN_Mix, text_DE_Mix, text_FR_Mix, text_IT_Mix, text_ES_Mix}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1711 {(uint8_t)TXT_First, {text_EN_First, text_DE_First, text_FR_First, text_IT_First, text_ES_First}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1712 {(uint8_t)TXT_Deco, {text_EN_Deco, text_DE_Deco, text_FR_Deco, text_IT_Deco, text_ES_Deco}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1713 {(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
1714 {(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
1715 {(uint8_t)TXT_Off, {text_EN_Off, text_DE_Off, text_FR_Off, text_IT_Off, text_ES_Off}},
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1716 {(uint8_t)TXT_ChangeDepth, {text_EN_ChangeDepth, text_DE_ChangeDepth, text_FR_ChangeDepth, text_IT_ChangeDepth, text_ES_ChangeDepth}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1717 {(uint8_t)TXT_Active, {text_EN_Active, text_DE_Active, text_FR_Active, text_IT_Active, text_ES_Active}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1718 {(uint8_t)TXT_Default, {text_EN_Default, text_DE_Default, text_FR_Default, text_IT_Default, text_ES_Default}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1719 {(uint8_t)TXT_Type, {text_EN_Type, text_DE_Type, text_FR_Type, text_IT_Type, text_ES_Type}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1720 {(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}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1721 {(uint8_t)TXT_DecoAlgorithm, {text_EN_Algorithm, text_DE_Algorithm, text_FR_Algorithm, text_IT_Algorithm, text_ES_Algorithm}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1722 {(uint8_t)TXT_ZHL16GF, {text_EN_ZHL16GF, text_DE_ZHL16GF, text_FR_ZHL16GF, text_IT_ZHL16GF, text_ES_ZHL16GF}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1723 {(uint8_t)TXT_aGF, {text_EN_aGF, text_DE_aGF, text_FR_aGF, text_IT_aGF, text_ES_aGF}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1724 {(uint8_t)TXT_VPM, {text_EN_VPM, text_DE_VPM, text_FR_VPM, text_IT_VPM, text_ES_VPM}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1725 {(uint8_t)TXT_SafetyStop, {text_EN_SafetyStop, text_DE_SafetyStop, text_FR_SafetyStop, text_IT_SafetyStop, text_ES_SafetyStop}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1726 {(uint8_t)TXT_low_high, {text_EN_LowHigh, text_DE_LowHigh, text_FR_LowHigh, text_IT_LowHigh, text_ES_LowHigh}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1727 {(uint8_t)TXT_ppO2Name, {text_EN_ppO2Name, text_DE_ppO2Name, text_FR_ppO2Name, text_IT_ppO2Name, text_ES_ppO2Name}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1728 {(uint8_t)TXT_Maximum, {text_EN_Maximum, text_DE_Maximum, text_FR_Maximum, text_IT_Maximum, text_ES_Maximum}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1729 {(uint8_t)TXT_Minimum, {text_EN_Minimum, text_DE_Minimum, text_FR_Minimum, text_IT_Minimum, text_ES_Minimum}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1730 {(uint8_t)TXT_Minutes, {text_EN_Minutes, text_DE_Minutes, text_FR_Minutes, text_IT_Minutes, text_ES_Minutes}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1731 {(uint8_t)TXT_Seconds, {text_EN_Seconds, text_DE_Seconds, text_FR_Seconds, text_IT_Seconds, text_ES_Seconds}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1732 {(uint8_t)TXT_CCRmode, {text_EN_CCRmode, text_DE_CCRmode, text_FR_CCRmode, text_IT_CCRmode, text_ES_CCRmode}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1733 {(uint8_t)TXT_AtemGasVorrat, {text_EN_GasVorrat, text_DE_GasVorrat, text_FR_GasVorrat, text_IT_GasVorrat, text_ES_GasVorrat}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1734 {(uint8_t)TXT_LiterproMinute, {text_EN_LiterproMinute, text_DE_LiterproMinute, text_FR_LiterproMinute, text_IT_LiterproMinute, text_ES_LiterproMinute}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1735 {(uint8_t)TXT_Reserve, {text_EN_Reserve, text_DE_Reserve, text_FR_Reserve, text_IT_Reserve, text_ES_Reserve}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1736 {(uint8_t)TXT_Salinity, {text_EN_Salinity, text_DE_Salinity, text_FR_Salinity, text_IT_Salinity, text_ES_Salinity}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1737 {(uint8_t)TXT_DiveMode, {text_EN_DiveMode, text_DE_DiveMode, text_FR_DiveMode, text_IT_DiveMode, text_ES_DiveMode}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1738 {(uint8_t)TXT_OpenCircuit, {text_EN_OpenCircuit, text_DE_OpenCircuit, text_FR_OpenCircuit, text_IT_OpenCircuit, text_ES_OpenCircuit}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1739 {(uint8_t)TXT_ClosedCircuit, {text_EN_ClosedCircuit, text_DE_ClosedCircuit, text_FR_ClosedCircuit, text_IT_ClosedCircuit, text_ES_ClosedCircuit}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1740 {(uint8_t)TXT_Apnoe, {text_EN_Apnoe, text_DE_Apnoe, text_FR_Apnoe, text_IT_Apnoe, text_ES_Apnoe}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1741 {(uint8_t)TXT_Gauge, {text_EN_Gauge, text_DE_Gauge, text_FR_Gauge, text_IT_Gauge, text_ES_Gauge}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1742 {(uint8_t)TXT_Sensor, {text_EN_Sensor, text_DE_Sensor, text_FR_Sensor, text_IT_Sensor, text_ES_Sensor}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1743 {(uint8_t)TXT_FixedSP, {text_EN_FixedSP, text_DE_FixedSP, text_FR_FixedSP, text_IT_FixedSP, text_ES_FixedSP}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1744 {(uint8_t)TXT_Decoparameters, {text_EN_Decoparameters, text_DE_Decoparameters, text_FR_Decoparameters, text_IT_Decoparameters, text_ES_Decoparameters}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1745 {(uint8_t)TXT_LastDecostop, {text_EN_LastDecostop, text_DE_LastDecostop, text_FR_LastDecostop, text_IT_LastDecostop, text_ES_LastDecostop}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1746 {(uint8_t)TXT_Fallback, {text_EN_Fallback, text_DE_Fallback, text_FR_Fallback, text_IT_Fallback, text_ES_Fallback}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1747 {(uint8_t)TXT_DateAndTime, {text_EN_DateTime, text_DE_DateTime, text_FR_DateTime, text_IT_DateTime, text_ES_DateTime}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1748 {(uint8_t)TXT_DateConfig, {text_EN_DayMonthYear, text_DE_DayMonthYear, text_FR_DayMonthYear, text_IT_DayMonthYear, text_ES_DayMonthYear}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1749 {(uint8_t)TXT_TimeConfig, {text_EN_StundeMinute, text_DE_StundeMinute, text_FR_StundeMinute, text_IT_StundeMinute, text_ES_StundeMinute}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1750 {(uint8_t)TXT_Daylightsaving, {text_EN_Daylightsaving, text_DE_Daylightsaving, text_FR_Daylightsaving, text_IT_Daylightsaving, text_ES_Daylightsaving}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1751 {(uint8_t)TXT_Logbook, {text_EN_Logbook, text_DE_Logbook, text_FR_Logbook, text_IT_Logbook, text_ES_Logbook}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1752 {(uint8_t)TXT_LogbookEmpty, {text_EN_LogbookEmpty, text_DE_LogbookEmpty, text_FR_LogbookEmpty, text_IT_LogbookEmpty, text_ES_LogbookEmpty}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1753 {(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}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1754 {(uint8_t)TXT_Information, {text_EN_Information, text_DE_Information, text_FR_Information, text_IT_Information, text_ES_Information}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1755 };
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1756
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1757 const tText text_array2[] =
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1758 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1759 {(uint8_t)TXT2BYTE_ResetMenu, {text_EN_ResetMenu, text_DE_ResetMenu, text_FR_ResetMenu, text_IT_ResetMenu, text_ES_ResetMenu}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1760 {(uint8_t)TXT2BYTE_LogbookOffset, {text_EN_LogbookOffset, text_DE_LogbookOffset, text_FR_LogbookOffset, text_IT_LogbookOffset, text_ES_LogbookOffset}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1761 {(uint8_t)TXT2BYTE_AreYouSure, {text_EN_AreYouSure, text_DE_AreYouSure, text_FR_AreYouSure, text_IT_AreYouSure, text_ES_AreYouSure}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1762 {(uint8_t)TXT2BYTE_Abort, {text_EN_Abort, text_DE_Abort, text_FR_Abort, text_IT_Abort, text_ES_Abort}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1763 {(uint8_t)TXT2BYTE_RebootRTE, {text_EN__RebootRTE, text_DE__RebootRTE, text_FR__RebootRTE, text_IT__RebootRTE, text_ES__RebootRTE}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1764 {(uint8_t)TXT2BYTE_ResetAll, {text_EN_ResetAll, text_DE_ResetAll, text_FR_ResetAll, text_IT_ResetAll, text_ES_ResetAll}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1765 {(uint8_t)TXT2BYTE_ResetDeco, {text_EN_ResetDeco, text_DE_ResetDeco, text_FR_ResetDeco, text_IT_ResetDeco, text_ES_ResetDeco}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1766 {(uint8_t)TXT2BYTE_ResetLogbook, {text_EN_ResetLogbook, text_DE_ResetLogbook, text_FR_ResetLogbook, text_IT_ResetLogbook, text_ES_ResetLogbook}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1767 {(uint8_t)TXT2BYTE_RebootMainCPU, {text_EN_StartBootloader, text_DE_StartBootloader, text_FR_StartBootloader, text_IT_StartBootloader, text_ES_StartBootloader}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1768 {(uint8_t)TXT2BYTE_Exit, {text_EN_Exit, text_DE_Exit, text_FR_Exit, text_IT_Exit, text_ES_Exit}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1769 {(uint8_t)TXT2BYTE_ShowDebug, {text_EN_ShowDebug, text_DE_ShowDebug, text_FR_ShowDebug, text_IT_ShowDebug, text_ES_ShowDebug}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1770 {(uint8_t)TXT2BYTE_PleaseUpdate, {text_EN_PleaseUpdate, text_DE_PleaseUpdate, text_FR_PleaseUpdate, text_IT_PleaseUpdate, text_ES_PleaseUpdate}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1771 {(uint8_t)TXT2BYTE_RTE, {text_EN_RTE, text_DE_RTE, text_FR_RTE, text_IT_RTE, text_ES_RTE}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1772 {(uint8_t)TXT2BYTE_Fonts, {text_EN_Fonts, text_DE_Fonts, text_FR_Fonts, text_IT_Fonts, text_ES_Fonts}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1773 {(uint8_t)TXT2BYTE_ResetStopwatch, {text_EN_ResetStopwatch, text_DE_ResetStopwatch, text_FR_ResetStopwatch, text_IT_ResetStopwatch, text_ES_ResetStopwatch}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1774 {(uint8_t)TXT2BYTE_SetMarker, {text_EN_SetMarker, text_DE_SetMarker, text_FR_SetMarker, text_IT_SetMarker, text_ES_SetMarker}},
613
beeb23d18443 Added "Set Marker" to T3 quick menu:
Ideenmodellierer
parents: 584
diff changeset
1775 {(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
1776 {(uint8_t)TXT2BYTE_CheckMarker, {text_EN_CheckMarker, text_DE_CheckMarker, text_FR_CheckMarker, text_IT_CheckMarker, text_ES_CheckMarker}},
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1777 {(uint8_t)TXT2BYTE_CompassHeading, {text_EN_CompassHeading, text_DE_CompassHeading, text_FR_CompassHeading, text_IT_CompassHeading, text_ES_CompassHeading}},
547
12f8745c8a94 Added viewport calibration to dive menu:
Ideenmodellierer
parents: 543
diff changeset
1778 {(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
1779 {(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
1780 {(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
1781 {(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
1782 {(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
1783 {(uint8_t)TXT2BYTE_Simulator, {text_EN_Simulator, text_DE_Simulator, text_FR_Simulator, text_IT_Simulator, text_ES_Simulator}},
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1784 {(uint8_t)TXT2BYTE_StartSimulator, {text_EN_StartSimulator, text_DE_StartSimulator, text_FR_StartSimulator, text_IT_StartSimulator, text_ES_StartSimulator}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1785 {(uint8_t)TXT2BYTE_Intervall, {text_EN_Intervall, text_DE_Intervall, text_FR_Intervall, text_IT_Intervall, text_ES_Intervall}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1786 {(uint8_t)TXT2BYTE_SimDiveTime, {text_EN_SimDiveTime, text_DE_SimDiveTime, text_FR_SimDiveTime, text_IT_SimDiveTime, text_ES_SimDiveTime}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1787 {(uint8_t)TXT2BYTE_SimMaxDepth, {text_EN_SimMaxDepth, text_DE_SimMaxDepth, text_FR_SimMaxDepth, text_IT_SimMaxDepth, text_ES_SimMaxDepth}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1788 {(uint8_t)TXT2BYTE_SimTravelGas, {text_EN_SimTravelGas, text_DE_SimTravelGas, text_FR_SimTravelGas, text_IT_SimTravelGas, text_ES_SimTravelGas}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1789 {(uint8_t)TXT2BYTE_SimDecoGas, {text_EN_SimDecoGas, text_DE_SimDecoGas, text_FR_SimDecoGas, text_IT_SimDecoGas, text_ES_SimDecoGas}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1790 {(uint8_t)TXT2BYTE_SimConsumption, {text_EN_SimConsumption, text_DE_SimConsumption, text_FR_SimConsumption, text_IT_SimConsumption, text_ES_SimConsumption}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1791 {(uint8_t)TXT2BYTE_SimSummary, {text_EN_SimSummary, text_DE_SimSummary, text_FR_SimSummary, text_IT_SimSummary, text_ES_SimSummary}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1792 {(uint8_t)TXT2BYTE_SimDecTo, {text_EN_SimDecTo, text_DE_SimDecTo, text_FR_SimDecTo, text_IT_SimDecTo, text_ES_SimDecTo}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1793 {(uint8_t)TXT2BYTE_SimLevel, {text_EN_SimLevel, text_DE_SimLevel, text_FR_SimLevel, text_IT_SimLevel, text_ES_SimLevel}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1794 {(uint8_t)TXT2BYTE_SimAscTo, {text_EN_SimAscTo, text_DE_SimAscTo, text_FR_SimAscTo, text_IT_SimAscTo, text_ES_SimAscTo}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1795 {(uint8_t)TXT2BYTE_SimSurface, {text_EN_SimSurface, text_DE_SimSurface, text_FR_SimSurface, text_IT_SimSurface, text_ES_SimSurface}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1796 {(uint8_t)TXT2BYTE_CalculateDeco, {text_EN_CalculateDeco, text_DE_CalculateDeco, text_FR_CalculateDeco, text_IT_CalculateDeco, text_ES_CalculateDeco}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1797 {(uint8_t)TXT2BYTE_Calculating, {text_EN_Calculating, text_DE_Calculating, text_FR_Calculating, text_IT_Calculating, text_ES_Calculating}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1798 {(uint8_t)TXT2BYTE_PleaseWait, {text_EN_PleaseWait, text_DE_PleaseWait, text_FR_PleaseWait, text_IT_PleaseWait, text_ES_PleaseWait}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1799 {(uint8_t)TXT2BYTE_Decolist, {text_EN_Decolist, text_DE_Decolist, text_FR_Decolist, text_IT_Decolist, text_ES_Decolist}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1800 {(uint8_t)TXT2BYTE_ButtonSensitivity,{text_EN_ButtonSensitivity, text_DE_ButtonSensitivity, text_FR_ButtonSensitivity, text_IT_ButtonSensitivity, text_ES_ButtonSensitivity}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1801 {(uint8_t)TXT2BYTE_SpecialDiveGas, {text_EN_SpecialDiveGas, text_DE_SpecialDiveGas, text_FR_SpecialDiveGas, text_IT_SpecialDiveGas, text_ES_SpecialDiveGas}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1802 {(uint8_t)TXT2BYTE_SpecialDiveGasMenu,{text_EN_SpecialDiveGasMenu, text_DE_SpecialDiveGasMenu, text_FR_SpecialDiveGasMenu, text_IT_SpecialDiveGasMenu, text_ES_SpecialDiveGasMenu}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1803 {(uint8_t)TXT2BYTE_SpecialDiveGasMenuCCR,{text_EN_SpecialDiveGasMenuCCR, text_DE_SpecialDiveGasMenuCCR, text_FR_SpecialDiveGasMenuCCR, text_IT_SpecialDiveGasMenuCCR, text_ES_SpecialDiveGasMenuCCR}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1804 {(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
1805 {(uint8_t)TXT2BYTE_CompassInertia, {text_EN_CompassInertia, text_DE_CompassInertia, text_FR_CompassInertia, text_IT_CompassInertia, text_ES_CompassInertia}},
d784f281833a Added inertia simulation for compass heading:
Ideenmodellierer
parents: 526
diff changeset
1806 {(uint8_t)TXT2BYTE_UseSensor, {text_EN_UseSensor, text_DE_UseSensor, text_FR_UseSensor, text_IT_UseSensor, text_ES_UseSensor}},
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1807 {(uint8_t)TXT2BYTE_WarnDecoMissed, {text_EN_WarnDecoMissed, text_DE_WarnDecoMissed, text_FR_WarnDecoMissed, text_IT_WarnDecoMissed, text_ES_WarnDecoMissed}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1808 {(uint8_t)TXT2BYTE_WarnPPO2Low, {text_EN_WarnPPO2Low, text_DE_WarnPPO2Low, text_FR_WarnPPO2Low, text_IT_WarnPPO2Low, text_ES_WarnPPO2Low}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1809 {(uint8_t)TXT2BYTE_WarnPPO2High, {text_EN_WarnPPO2High, text_DE_WarnPPO2High, text_FR_WarnPPO2High, text_IT_WarnPPO2High, text_ES_WarnPPO2High}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1810 {(uint8_t)TXT2BYTE_WarnBatteryLow, {text_EN_WarnBatteryLow, text_DE_WarnBatteryLow, text_FR_WarnBatteryLow, text_IT_WarnBatteryLow, text_ES_WarnBatteryLow}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1811 {(uint8_t)TXT2BYTE_WarnSensorLinkLost,{text_EN_WarnSensorLinkLost, text_DE_WarnSensorLinkLost, text_FR_WarnSensorLinkLost, text_IT_WarnSensorLinkLost, text_ES_WarnSensorLinkLost}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1812 {(uint8_t)TXT2BYTE_WarnFallback, {text_EN_WarnFallback, text_DE_WarnFallback, text_FR_WarnFallback, text_IT_WarnFallback, text_ES_WarnFallback}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1813 {(uint8_t)TXT2BYTE_WarnCnsHigh, {text_EN_WarnCnsHigh, text_DE_WarnCnsHigh, text_FR_WarnCnsHigh, text_IT_WarnCnsHigh, text_ES_WarnCnsHigh}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1814 {(uint8_t)TXT2BYTE_O2monitor, {text_EN_O2monitor, text_DE_O2monitor, text_FR_O2monitor, text_IT_O2monitor, text_ES_O2monitor}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1815 {(uint8_t)TXT2BYTE_O2voltage, {text_EN_O2voltage, text_DE_O2voltage, text_FR_O2voltage, text_IT_O2voltage, text_ES_O2voltage}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1816 {(uint8_t)TXT2BYTE_Tissues, {text_EN_Tissues, text_DE_Tissues, text_FR_Tissues, text_IT_Tissues, text_ES_Tissues}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1817 {(uint8_t)TXT2BYTE_Nitrogen, {text_EN_Nitrogen, text_DE_Nitrogen, text_FR_Nitrogen, text_IT_Nitrogen, text_ES_Nitrogen}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1818 {(uint8_t)TXT2BYTE_Helium, {text_EN_Helium, text_DE_Helium, text_FR_Helium, text_IT_Helium, text_ES_Helium}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1819 {(uint8_t)TXT2BYTE_CNS, {text_EN_CNS, text_DE_CNS, text_FR_CNS, text_IT_CNS, text_ES_CNS}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1820 {(uint8_t)TXT2BYTE_OTU, {text_EN_OTU, text_DE_OTU, text_FR_OTU, text_IT_OTU, text_ES_OTU}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1821 {(uint8_t)TXT2BYTE_Profile, {text_EN_Profile, text_DE_Profile, text_FR_Profile, text_IT_Profile, text_ES_Profile}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1822 {(uint8_t)TXT2BYTE_Compass, {text_EN_Compass, text_DE_Compass, text_FR_Compass, text_IT_Compass, text_ES_Compass}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1823 {(uint8_t)TXT2BYTE_SafetyStop2, {text_EN_SafetyStop2, text_DE_SafetyStop2, text_FR_SafetyStop2, text_IT_SafetyStop2, text_ES_SafetyStop2}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1824 {(uint8_t)TXT2BYTE_noFly, {text_EN_noFly, text_DE_noFly, text_FR_noFly, text_IT_noFly, text_ES_noFly}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1825 {(uint8_t)TXT2BYTE_Desaturation, {text_EN_Desaturation, text_DE_Desaturation, text_FR_Desaturation, text_IT_Desaturation, text_ES_Desaturation}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1826 {(uint8_t)TXT2BYTE_TimeSinceLastDive,{text_EN_TimeSinceLastDive, text_DE_TimeSinceLastDive, text_FR_TimeSinceLastDive, text_IT_TimeSinceLastDive, text_ES_TimeSinceLastDive}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1827 {(uint8_t)TXT2BYTE_ButtonLogbook, {text_EN_ButtonLogbook, text_DE_ButtonLogbook, text_FR_ButtonLogbook, text_IT_ButtonLogbook, text_ES_ButtonLogbook}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1828 {(uint8_t)TXT2BYTE_ButtonMenu, {text_EN_ButtonMenu, text_DE_ButtonMenu, text_FR_ButtonMenu, text_IT_ButtonMenu, text_ES_ButtonMenu}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1829 {(uint8_t)TXT2BYTE_ButtonView, {text_EN_ButtonView, text_DE_ButtonView, text_FR_ButtonView, text_IT_ButtonView, text_ES_ButtonView}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1830 {(uint8_t)TXT2BYTE_ButtonBack, {text_EN_ButtonBack, text_DE_ButtonBack, text_FR_ButtonBack, text_IT_ButtonBack, text_ES_ButtonBack}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1831 {(uint8_t)TXT2BYTE_ButtonEnter, {text_EN_ButtonEnter, text_DE_ButtonEnter, text_FR_ButtonEnter, text_IT_ButtonEnter, text_ES_ButtonEnter}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1832 {(uint8_t)TXT2BYTE_ButtonNext, {text_EN_ButtonNext, text_DE_ButtonNext, text_FR_ButtonNext, text_IT_ButtonNext, text_ES_ButtonNext}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1833 {(uint8_t)TXT2BYTE_ButtonMinus, {text_EN_ButtonMinus, text_DE_ButtonMinus, text_FR_ButtonMinus, text_IT_ButtonMinus, text_ES_ButtonMinus}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1834 {(uint8_t)TXT2BYTE_ButtonPlus, {text_EN_ButtonPlus, text_DE_ButtonPlus, text_FR_ButtonPlus, text_IT_ButtonPlus, text_ES_ButtonPlus}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1835 {(uint8_t)TXT2BYTE_SimFollowDecoStops,{text_EN_SimFollowDecoStops, text_DE_SimFollowDecoStops, text_FR_SimFollowDecoStops, text_IT_SimFollowDecoStops, text_ES_SimFollowDecoStops}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1836 {(uint8_t)TXT2BYTE_Bluetooth, {text_EN_Bluetooth, text_DE_Bluetooth, text_FR_Bluetooth, text_IT_Bluetooth, text_ES_Bluetooth}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1837 {(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}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1838 {(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}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1839 {(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}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1840 {(uint8_t)TXT2BYTE_ChargeCycles, {text_EN_ChargeCycles, text_DE_ChargeCycles, text_FR_ChargeCycles, text_IT_ChargeCycles, text_ES_ChargeCycles}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1841 {(uint8_t)TXT2BYTE_LowestVoltage, {text_EN_LowestVoltage, text_DE_LowestVoltage, text_FR_LowestVoltage, text_IT_LowestVoltage, text_ES_LowestVoltage}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1842 {(uint8_t)TXT2BYTE_HoursOfOperation,{text_EN_HoursOfOperation, text_DE_HoursOfOperation, text_FR_HoursOfOperation, text_IT_HoursOfOperation, text_ES_HoursOfOperation}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1843 {(uint8_t)TXT2BYTE_NumberOfDives, {text_EN_NumberOfDives, text_DE_NumberOfDives, text_FR_NumberOfDives, text_IT_NumberOfDives, text_ES_NumberOfDives}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1844 {(uint8_t)TXT2BYTE_AmbientTemperature,{text_EN_AmbientTemperature, text_DE_AmbientTemperature, text_FR_AmbientTemperature, text_IT_AmbientTemperature, text_ES_AmbientTemperature}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1845 {(uint8_t)TXT2BYTE_Bottle, {text_EN_Bottle, text_DE_Bottle, text_FR_Bottle, text_IT_Bottle, text_ES_Bottle}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1846 {(uint8_t)TXT2BYTE_Gaslist, {text_EN_Gaslist, text_DE_Gaslist, text_FR_Gaslist, text_IT_Gaslist, text_ES_Gaslist}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1847 {(uint8_t)TXT2BYTE_Clock, {text_EN_Clock, text_DE_Clock, text_FR_Clock, text_IT_Clock, text_ES_Clock}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1848 {(uint8_t)TXT2BYTE_Sunday, {text_EN_Sunday, text_DE_Sunday, text_FR_Sunday, text_IT_Sunday, text_ES_Sunday}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1849 {(uint8_t)TXT2BYTE_Monday, {text_EN_Monday, text_DE_Monday, text_FR_Monday, text_IT_Monday, text_ES_Monday}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1850 {(uint8_t)TXT2BYTE_Tuesday, {text_EN_Tuesday, text_DE_Tuesday, text_FR_Tuesday, text_IT_Tuesday, text_ES_Tuesday}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1851 {(uint8_t)TXT2BYTE_Wednesday, {text_EN_Wednesday, text_DE_Wednesday, text_FR_Wednesday, text_IT_Wednesday, text_ES_Wednesday}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1852 {(uint8_t)TXT2BYTE_Thursday, {text_EN_Thursday, text_DE_Thursday, text_FR_Thursday, text_IT_Thursday, text_ES_Thursday}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1853 {(uint8_t)TXT2BYTE_Friday, {text_EN_Friday, text_DE_Friday, text_FR_Friday, text_IT_Friday, text_ES_Friday}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1854 {(uint8_t)TXT2BYTE_Saturday, {text_EN_Saturday, text_DE_Saturday, text_FR_Saturday, text_IT_Saturday, text_ES_Saturday}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1855 {(uint8_t)TXT2BYTE_Layout, {text_EN_Design, text_DE_Design, text_FR_Design, text_IT_Design, text_ES_Design}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1856 {(uint8_t)TXT2BYTE_Units, {text_EN_Units, text_DE_Units, text_FR_Units, text_IT_Units, text_ES_Units}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1857 {(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}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1858 {(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}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1859 {(uint8_t)TXT2BYTE_Farbschema, {text_EN_Farbschema, text_DE_Farbschema, text_FR_Farbschema, text_IT_Farbschema, text_ES_Farbschema}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1860 {(uint8_t)TXT2BYTE_Customviews, {text_EN_Customviews, text_DE_Customviews, text_FR_Customviews, text_IT_Customviews, text_ES_Customviews}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1861 {(uint8_t)TXT2BYTE_CViewTimeout, {text_EN_CViewTimeout, text_DE_CViewTimeout, text_FR_CViewTimeout, text_IT_CViewTimeout, text_ES_CViewTimeout}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1862 {(uint8_t)TXT2BYTE_CViewStandard, {text_EN_CViewStandard, text_DE_CViewStandard, text_FR_CViewStandard, text_IT_CViewStandard, text_ES_CViewStandard}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1863 {(uint8_t)TXT2BYTE_CornerTimeout, {text_EN_CornerTimeout, text_DE_CornerTimeout, text_FR_CornerTimeout, text_IT_CornerTimeout, text_ES_CornerTimeout}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1864 {(uint8_t)TXT2BYTE_CornerStandard, {text_EN_CornerStandard, text_DE_CornerStandard, text_FR_CornerStandard, text_IT_CornerStandard, text_ES_CornerStandard}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1865 {(uint8_t)TXT2BYTE_SetToMOD, {text_EN_SetToMOD, text_DE_SetToMOD, text_FR_SetToMOD, text_IT_SetToMOD, text_ES_SetToMOD}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1866 {(uint8_t)TXT2BYTE_HUDbattery, {text_EN_HUDBattery, text_DE_HUDBattery, text_FR_HUDBattery, text_IT_HUDBattery, text_ES_HUDBattery}},
584
830de438e0b0 Added option for 100% o2 calibration:
Ideenmodellierer
parents: 573
diff changeset
1867 {(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
1868 {(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
1869 {(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
1870 {(uint8_t)TXT2BYTE_O2IFAnalog, {text_EN_O2IFAnalog, text_DE_O2IFAnalog, text_FR_O2IFAnalog, text_IT_O2IFAnalog, text_ES_O2IFAnalog}},
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1871 {(uint8_t)TXT2BYTE_LowerIsLess, {text_EN_LowerIsLess, text_DE_LowerIsLess, text_FR_LowerIsLess, text_IT_LowerIsLess, text_ES_LowerIsLess}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1872 {(uint8_t)TXT2BYTE_DiveMenuQ, {text_EN_DiveMenuQ, text_DE_DiveMenuQ, text_FR_DiveMenuQ, text_IT_DiveMenuQ, text_ES_DiveMenuQ}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1873 {(uint8_t)TXT2BYTE_DiveQuitQ, {text_EN_DiveQuitQ, text_DE_DiveQuitQ, text_FR_DiveQuitQ, text_IT_DiveQuitQ, text_ES_DiveQuitQ}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1874 {(uint8_t)TXT2BYTE_DiveBearingQ, {text_EN_DiveBearingQ, text_DE_DiveBearingQ, text_FR_DiveBearingQ, text_IT_DiveBearingQ, text_ES_DiveBearingQ}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1875 {(uint8_t)TXT2BYTE_DiveResetAvgQ, {text_EN_DiveResetAvgQ, text_DE_DiveResetAvgQ, text_FR_DiveResetAvgQ, text_IT_DiveResetAvgQ, text_ES_DiveResetAvgQ}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1876 {(uint8_t)TXT2BYTE_ExtraDisplay, {text_EN_ExtraDisplay, text_DE_ExtraDisplay, text_FR_ExtraDisplay, text_IT_ExtraDisplay, text_ES_ExtraDisplay}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1877 {(uint8_t)TXT2BYTE_ExtraBigFont, {text_EN_ExtraBigFont, text_DE_ExtraBigFont, text_FR_ExtraBigFont, text_IT_ExtraBigFont, text_ES_ExtraBigFont}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1878 {(uint8_t)TXT2BYTE_ExtraDecoGame, {text_EN_ExtraDecoGame, text_DE_ExtraDecoGame, text_FR_ExtraDecoGame, text_IT_ExtraDecoGame, text_ES_ExtraDecoGame}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1879 {(uint8_t)TXT2BYTE_ExtraNone, {text_EN_ExtraNone, text_DE_ExtraNone, text_FR_ExtraNone, text_IT_ExtraNone, text_ES_ExtraNone}},
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
1880 {(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
1881 {(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
1882 {(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
1883 {(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
1884 {(uint8_t)TXT2BYTE_MoCtrlScroll, {text_EN_MoCtrlScroll, text_DE_MoCtrlScroll, text_FR_MoCtrlScroll, text_IT_MoCtrlScroll, text_ES_MoCtrlScroll}},
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1885 {(uint8_t)TXT2BYTE_DecoDataLost, {text_EN_DecoDataLost, text_DE_DecoDataLost, text_FR_DecoDataLost, text_IT_DecoDataLost, text_ES_DecoDataLost}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1886 {(uint8_t)TXT2BYTE_Info, {text_EN_Info, text_DE_Info, text_FR_Info, text_IT_Info, text_ES_Info}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1887 {(uint8_t)TXT2BYTE_Korrekturwerte, {text_EN_Korrekturwerte, text_DE_Korrekturwerte, text_FR_Korrekturwerte, text_IT_Korrekturwerte, text_ES_Korrekturwerte}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1888 {(uint8_t)TXT2BYTE_SetBearing, {text_EN_SetBearing, text_DE_SetBearing, text_FR_SetBearing, text_IT_SetBearing, text_ES_SetBearing}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1889 {(uint8_t)TXT2BYTE_ResetBearing, {text_EN_ResetBearing, text_DE_ResetBearing, text_FR_ResetBearing, text_IT_ResetBearing, text_ES_ResetBearing}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1890 {(uint8_t)TXT2BYTE_Sensor, {text_EN_SensorList, text_DE_SensorList, text_FR_SensorList, text_IT_SensorList, text_ES_SensorList}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1891 {(uint8_t)TXT2BYTE_Maintenance, {text_EN_Maintenance, text_DE_Maintenance, text_FR_Maintenance, text_IT_Maintenance, text_ES_Maintenance}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1892 {(uint8_t)TXT2BYTE_SetBatteryCharge,{text_EN_SetBatteryCharge, text_DE_SetBatteryCharge, text_FR_SetBatteryCharge, text_IT_SetBatteryCharge, text_ES_SetBatteryCharge}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1893 {(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
1894 {(uint8_t)TXT2BYTE_SetSampleIndex, {text_EN_SetSampleIndex, text_DE_SetSampleIndex, text_FR_SetSampleIndex, text_IT_SetSampleIndex, text_ES_SetSampleIndex}},
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1895
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1896 {(uint8_t)TXT2BYTE_Reboot, {text_EN_Reboot, text_DE_Reboot, text_FR_Reboot, text_IT_Reboot, text_ES_Reboot}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1897 {(uint8_t)TXT2BYTE_ButtonLeft, {text_EN_ButtonLeft, text_DE_ButtonLeft, text_FR_ButtonLeft, text_IT_ButtonLeft, text_ES_ButtonLeft}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1898 {(uint8_t)TXT2BYTE_ButtonMitte, {text_EN_ButtonMitte, text_DE_ButtonMitte, text_FR_ButtonMitte, text_IT_ButtonMitte, text_ES_ButtonMitte}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1899 {(uint8_t)TXT2BYTE_ButtonRight, {text_EN_ButtonRight, text_DE_ButtonRight, text_FR_ButtonRight, text_IT_ButtonRight, text_ES_ButtonRight}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1900 {(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
1901 {(uint8_t)TXT2BYTE_DispNoneDbg, {text_EN_DispNoneDbg, text_DE_DispNoneDbg, text_FR_DispNoneDbg, text_IT_DispNoneDbg, text_ES_DispNoneDbg}},
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1902 {(uint8_t)TXT2BYTE_ApneaLast, {text_EN_ApneaLast, text_DE_ApneaLast, text_FR_ApneaLast, text_IT_ApneaLast, text_ES_ApneaLast}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1903 {(uint8_t)TXT2BYTE_ApneaTotal, {text_EN_ApneaTotal, text_DE_ApneaTotal, text_FR_ApneaTotal, text_IT_ApneaTotal, text_ES_ApneaTotal}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1904 {(uint8_t)TXT2BYTE_ApneaSurface, {text_EN_ApneaSurface, text_DE_ApneaSurface, text_FR_ApneaSurface, text_IT_ApneaSurface, text_ES_ApneaSurface}},
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1905
107
926098fb116a Next text ID for display flip
Ideenmodellierer
parents: 66
diff changeset
1906 {(uint8_t)TXT2BYTE_FLIPDISPLAY, {text_EN_FlipDisplay, text_DE_FlipDisplay, text_FR_FlipDisplay, text_IT_FlipDisplay, text_ES_FlipDisplay}},
926098fb116a Next text ID for display flip
Ideenmodellierer
parents: 66
diff changeset
1907
506
998529b3e142 Added new top level menu for customization of views
Ideenmodellierer
parents: 493
diff changeset
1908 {(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
1909 {(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
1910 {(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
1911 {(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
1912 {(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
1913 {(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
1914 {(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
1915 {(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
1916 {(uint8_t)TXT2BYTE_DecoTTS, {text_EN_DecoTTS, text_DE_DecoTTS, text_FR_DecoTTS, text_IT_DecoTTS, text_ES_DecoTTS}},
626
3e1a0e267f38 Added option to select sensitivity of focus detection:
Ideenmodellierer
parents: 619
diff changeset
1917
3e1a0e267f38 Added option to select sensitivity of focus detection:
Ideenmodellierer
parents: 619
diff changeset
1918 {(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
1919 {(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
1920 {(uint8_t)TXT2BYTE_Maximum, {text_EN_Maximum, text_DE_Maximum, text_FR_Maximum, text_IT_Maximum, text_ES_Maximum}},
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1921 };