annotate code_part1/OSTC_code_asm_part1/german_text.asm @ 312:b7e4e74c0e17 @5 variant

New @5 variant: compute TTS if staying some extra time (CF58) at current depth. * Added extra deco_status, and sim_extra_time() in p2_deco.c * Launched by setting char_O_deco_state to 6, result in int_O_extra_ascenttime * Added 8th divemode customview * Auto stole every other cycles * CF58 menu updated (EN,FR,DE,SP)
author JeanDo
date Tue, 03 May 2011 00:52:42 +0200
parents eac799f69360
children c61d94186f8f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
177
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
1 ;=============================================================================
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
2 ; OSTC - diving computer code
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
3 ; Copyright (C) 2008 HeinrichsWeikamp GbR
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
4 ;
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
5 ; This program is free software: you can redistribute it and/or modify
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
6 ; it under the terms of the GNU General Public License as published by
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
7 ; the Free Software Foundation, either version 3 of the License, or
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
8 ; (at your option) any later version.
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
9 ;
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
10 ; This program is distributed in the hope that it will be useful,
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
11 ; but WITHOUT ANY WARRANTY; without even the implied warranty of
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
12 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
13 ; GNU General Public License for more details.
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
14 ;
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
15 ; You should have received a copy of the GNU General Public License
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
16 ; along with this program. If not, see <http://www.gnu.org/licenses/>.
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
17 ;
177
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
18 ; Hold texts and screen position to display the texts.
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
19 ; History:
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
20 ; 2007/10/13 : Initial version by Matthias Heinrichs, info@heinrichsweikamp.com
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
21 ; 2008/05/24 : MW.
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
22 ; 2011/02/02 : Jean-Do Gascuel : split into different files for multi-lingual support
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
23 ; 2011/03/29 : Oliver J. Albrecht: German translation.
177
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
24 ;
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
25 ; known bugs:
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
26 ; ToDo:
177
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
27 ;=============================================================================
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
28 ;
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
29 ; Instructions for translating:
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
30 ;
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
31 ; * Strings are accessed according to the order in the file.
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
32 ; So don't change ordering !
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
33 ;
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
34 ; * Keep the english original version on the right column. So translations
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
35 ; can be reviewed and maintened.
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
36 ;
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
37 ; * One of the main constraint is to keep texts short, to avoid clobering
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
38 ; the OSTC screen. Of course, the technical, precise terms should be used.
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
39 ; Generally, there is no hard constraint: you can be one or two chars
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
40 ; shorter or longer.
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
41 ;
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
42 ; * Beware that some strings do have a fixed length. You should then use
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
43 ; exactly the same size.
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
44 ;
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
45 ; * Beware that some strings have ponctuation, or trailling space(s). In that
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
46 ; case, you should keep EXACTLY the same ponctuation AND TRAILING SPACES.
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
47 ;
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
48 ; * Ascii chars: we can support a few specific chars. öäüß for German.
187
3b5f81c06db8 French Version Primer.
JeanDo
parents: 178
diff changeset
49 ; éèêç for French. áíóúñ¡¿ for Spanish.
3b5f81c06db8 French Version Primer.
JeanDo
parents: 178
diff changeset
50 ; If you really, absolutly, need more: ask...
177
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
51 ;
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
52 ; * Do not translate comments (everithing after the ;), because they are
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
53 ; used for maintenance.
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
54 ;
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
55 ; * The X column is position on screen. Some texts are centered, left
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
56 ; padded or right padded. In that case, if you changed the text size,
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
57 ; you will have to adjust position. A char is 7 pixels wide.
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
58 ;
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
59 ;=============================================================================
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
60 ; macro X Y "translation" ; English original
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
61 TCODE .0, .0, "Erstelle MD2 Hash" ;001 Building MD2 Hash
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
62 TCODE .0, .25, "Bitte warten..." ;002 Please Wait...
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
63 TCODE .0, .2, "HeinrichsWeikamp OSTC2" ;003 HeinrichsWeikamp OSTC2
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
64 TCODE .65, .2, "Menü?" ;004 Menu?
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
65 TCODE .65, .2, "Menü:" ;005 Menu:
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
66 TCODE .20, .35, "Logbuch" ;006 Logbook
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
67 TCODE .20, .65, "Gas-Einstellungen" ;007 Gas Setup
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
68 TCODE .20, .35, "Uhrzeit einstellen" ;008 Set Time
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
69 TCODE .20, .95, "Daten Zurücksetzen" ;009 Reset Menu
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
70 TCODE .20, .125, "Einstellungen" ;010 Setup
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
71 TCODE .20, .185, "Ende" ;011 Exit
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
72 TCODE .97, .2, "Warten..." ;012 Wait...
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
73 TCODE .0, .24, "MD2 Hash:" ;013 MD2 Hash:
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
74 TCODE .0, .0, "Entsä" ;014 Desat (Desaturation count-down)
187
3b5f81c06db8 French Version Primer.
JeanDo
parents: 178
diff changeset
75 TCODE .50, .2, "Interface" ;015 Interface (Connected to USB)
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
76 TCODE .10, .30, "Start" ;016 Start
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
77 TCODE .10, .55, "Daten" ;017 Data
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
78 TCODE .10, .80, "Kopfzeile" ;018 Header
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
79 TCODE .10, .105, "Profil" ;019 Profile
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
80 TCODE .10, .130, "Fertig." ;020 Done.
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
81 TCODE .20, .35, "Zurücksetzen abbr." ;021 Cancel Reset
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
82 TCODE .32, .65, "Uhrzeit:" ;022 Time:
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
83 TCODE .32, .95, "Datum:" ;023 Date:
255
1efd59d689f8 small change in the set time menu, default setpoints set to 0.8, 1.0 and 1.2Bar
heinrichsweikamp
parents: 246
diff changeset
84 TCODE .0, .215, "Einst.Stunden" ;024 Set Hours
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
85 TCODE .6, .0, "Zurücksetzen..." ;025 Reset...
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
86 TCODE .55, .2, "Logbuch" ;026 Logbook
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
87 TCODE .14, .2, "Custom Funktionen I" ;027 Custom Functions I
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
88 TCODE .14, .2, "Daten Zurücksetzen" ;028 Reset Menu
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
89 TCODE .14, .2, "Uhrzeit einstellen:" ;029 Set Time:
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
90 TCODE .100, .50, "Markern" ;030 SetMarker (Add a mark in logbook profile)
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
91 TCODE .100, .25, "Dekoplan" ;031 Decoplan
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
92 TCODE .100, .0, "Gasliste" ;032 Gaslist
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
93 TCODE .100, .50, "DTiefeLö" ;033 ResetAvr (Reset average depth)
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
94 TCODE .100, .100, "Ende" ;034 Exit (Exit current menu)
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
95 TCODE .0, .0, "Flugv" ;035 NoFly (No-flight count-down)
177
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
96 ;
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
97 ; 32 custom function descriptors I (FIXED LENGTH = 15 chars).
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
98 TCODE .40, .35, "TG Start [m]" ;036 Start Dive [m] (depth to switch to dive mode)
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
99 TCODE .40, .35, "TG Ende [m]" ;037 End Dive [m] (depth to switch back to surface mode)
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
100 TCODE .40, .35, "TGNachlauf[min]" ;038 End Delay [min] (duration dive screen stays after end of dive)
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
101 TCODE .40, .35, "Standby [min]" ;039 Power Off [min]
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
102 TCODE .40, .35, "Pre-Menü [min]" ;040 Pre-menu [min] (Delais to keep surface-mode menus displayed)
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
103 TCODE .40, .35, "Geschw. [m/min]" ;041 velocity[m/min]
299
eac799f69360 some cleanup, french and german texts updated
heinrichsweikamp
parents: 297
diff changeset
104 TCODE .40, .35, "Aufwachen[mbar]" ;042 Wake-up [mbar]
eac799f69360 some cleanup, french and german texts updated
heinrichsweikamp
parents: 297
diff changeset
105 TCODE .40, .35, "max.Ober.[mbar]" ;043 max.Surf.[mbar]
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
106 TCODE .40, .35, "GF Anzeige [%]" ;044 GF display [%]
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
107 TCODE .40, .35, "min. O2 Dis.[%]" ;045 min. O2 Dis.[%]
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
108 TCODE .40, .35, "TG Menüs [min]" ;046 Dive menus[min]
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
109 TCODE .40, .35, "Sättigung x [%]" ;047 Saturate x [%]
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
110 TCODE .40, .35, "Entsätt. x [%]" ;048 Desaturate x[%]
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
111 TCODE .40, .35, "Flugv.Ratio [%]" ;049 NoFly Ratio [%] (Grandient factor tolerance for no-flight countdown).
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
112 TCODE .40, .35, "GF Alarm 1 [%]" ;050 GF alarm 1 [%]
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
113 TCODE .40, .35, "CNSAnzOberf.[%]" ;051 CNSshow surf[%]
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
114 TCODE .40, .35, "Deko Versatz[m]" ;052 Deco Offset [m]
299
eac799f69360 some cleanup, french and german texts updated
heinrichsweikamp
parents: 297
diff changeset
115 TCODE .40, .35, "ppO2 min. [bar]" ;053 ppO2 low [bar]
eac799f69360 some cleanup, french and german texts updated
heinrichsweikamp
parents: 297
diff changeset
116 TCODE .40, .35, "ppO2 max. [bar]" ;054 ppO2 high [bar]
eac799f69360 some cleanup, french and german texts updated
heinrichsweikamp
parents: 297
diff changeset
117 TCODE .40, .35, "ppO2 anz. [bar]" ;055 ppO2 show [bar]
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
118 TCODE .40, .35, "Abtastrate " ;056 sampling rate
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
119 TCODE .40, .35, "Divisor Temp " ;057 Divisor Temp
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
120 TCODE .40, .35, "Divisor Dekodat" ;058 Divisor Decodat
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
121 TCODE .40, .35, "Divisor frei1 " ;059 Divisor NotUse1
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
122 TCODE .40, .35, "Divisor ppO2 " ;060 Divisor ppO2
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
123 TCODE .40, .35, "Divisor Debug " ;061 Divisor Debug
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
124 TCODE .40, .35, "Divisor frei2 " ;062 Divisor NotUse2
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
125 TCODE .40, .35, "CNS-Anz. TG [%]" ;063 CNSshow dive[%]
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
126 TCODE .40, .35, "Logbuch Versatz" ;064 Logbook offset
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
127 TCODE .40, .35, "Letzte Deko [m]" ;065 Last Deco at[m]
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
128 TCODE .40, .35, "Apnoe Ende [h]" ;066 End Apnoe [h]
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
129 TCODE .40, .35, "Zeige Batt.Volt" ;067 Show Batt.Volts
177
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
130 ; End of function descriptor I
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
131 ;
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
132 ;licence:
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
133 TCODE .0, .35, "Dieses Programm wird in" ;068 This program is
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
134 TCODE .0, .65, "der Hoffnung bereit-" ;069 distributed in the
267
814ac3af3052 1.85beta release, 1.86beta start, german texts updated
heinrichsweikamp
parents: 255
diff changeset
135 TCODE .0, .95, "gestellt, dass es nütz-" ;070 hope that it will be
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
136 TCODE .0, .125, "lich ist, aber OHNE" ;071 useful, but WITHOUT
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
137 TCODE .0, .155, "JEDE GEWAEHRLEISTUNG," ;072 ANY WARRANTY
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
138 TCODE .0, .185, "auch keine implizierte" ;073 even the implied
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
139 TCODE .0, .215, "Gebrauchstauglichkeit" ;074 warranty of
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
140 TCODE .0, .35, "oder Eignung für einen" ;075 MERCHANTABILITY or
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
141 TCODE .0, .65, "bestimmten Zweck." ;076 FITNESS FOR A
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
142 TCODE .0, .95, "Weitere Informationen" ;077 PARTICULAR PURPOSE.
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
143 TCODE .0, .125, "finden Sie in der GNU" ;078 See the GNU General
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
144 TCODE .0, .155, "General Public License " ;079 Public License for
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
145 TCODE .0, .185, "unter:" ;080 more details:
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
146 TCODE .0, .215, "www.heinrichsweikamp.de" ;081 www.heinrichsweikamp.de
177
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
147 ; end of licence
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
148 ;
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
149 TCODE .93, .54, "Dekostopp" ;082 Decostop
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
150 TCODE .0, .0, "m/min" ;083 m/min
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
151 TCODE .100, .113, "Nullzeit" ;084 No Stop
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
152 TCODE .135, .113, "TTS" ;085 TTS
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
153 TCODE .93, .0, "Tauchzeit" ;086 Divetime
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
154 TCODE .0, .0, "Tiefe" ;087 Depth
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
155 TCODE .0, .0, "Erstes Gas?" ;088 First Gas?
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
156 TCODE .0, .0, "Standard:" ;089 Default:
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
157 TCODE .0, .0, "Minuten" ;090 Minutes
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
158 TCODE .0, .0, "Monat " ;091 Month
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
159 TCODE .0, .0, "Tag " ;092 Day
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
160 TCODE .0, .0, "Jahr " ;093 Year
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
161 TCODE .0, .0, "Einst." ;094 Set
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
162 TCODE .0, .0, "Gas# " ;095 Gas#
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
163 TCODE .0, .0, "Ja" ;096 Yes
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
164 TCODE .0, .0, "Aktuell: " ;097 Current:
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
165 TCODE .14, .2, "Einstellungs-Menü:" ;098 Setup Menu:
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
166 TCODE .20, .35, "Custom FunktionenI" ;099 Custom FunctionsI
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
167 TCODE .20, .125, "Dekomod.:" ;100 Decotype:
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
168 TCODE .85, .125, "ZH-L16 OC" ;101 ZH-L16 OC
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
169 TCODE .85, .125, "Tiefenme." ;102 Gauge
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
170 TCODE .85, .125, "Tiefenme." ;103 Gauge
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
171 TCODE .85, .125, "ZH-L16 CC" ;104 ZH-L16 CC
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
172 TCODE .0, .0, "Aktives Gas? " ;105 Active Gas?
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
173 TCODE .10, .2, "Gas-Einst. - Gasliste" ;106 Gas Setup - Gaslist
299
eac799f69360 some cleanup, french and german texts updated
heinrichsweikamp
parents: 297
diff changeset
174 TCODE .20, .95, "Tiefe +/-:" ;107 Depth +/-:
eac799f69360 some cleanup, french and german texts updated
heinrichsweikamp
parents: 297
diff changeset
175 TCODE .20, .125, "Wechsel:" ;108 Change:
eac799f69360 some cleanup, french and german texts updated
heinrichsweikamp
parents: 297
diff changeset
176 TCODE .20, .155, "Standard:" ;109 Default:
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
177 TCODE .20, .65, "CCR SetPoint Menü" ;110 CCR SetPoint Menu
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
178 TCODE .20, .2, "CCR SetPoint Menü" ;111 CCR SetPoint Menu
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
179 TCODE .0, .0, "SP#" ;112 SP#
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
180 TCODE .20, .95, "Batterie Info" ;113 Battery Info
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
181 TCODE .10, .2, "Batterie Information" ;114 Battery Information
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
182 TCODE .0, .9, "Zyklen:" ;115 Cycles:
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
183 TCODE .85, .125, "Apnoe" ;116 Apnoe
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
184 TCODE .0, .18, "Zuletzt voll:" ;117 Last Complete:
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
185 TCODE .0, .27, "Tiefste Vbatt:" ;118 Lowest Vbatt:
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
186 TCODE .0, .36, "Datum tief:" ;119 Lowest at:
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
187 TCODE .0, .45, "Tmin:" ;120 Tmin:
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
188 TCODE .0, .54, "Tmax:" ;121 Tmax:
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
189 TCODE .100, .125, "Mehr" ;122 More (Gaslist)
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
190 TCODE .100, .25, "O2 +" ;123 O2 +
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
191 TCODE .100, .50, "O2 -" ;124 O2 -
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
192 TCODE .100, .75, "He +" ;125 He +
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
193 TCODE .100, .100, "He -" ;126 He -
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
194 TCODE .100, .0, "Ende" ;127 Exit
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
195 TCODE .100, .25, "Löschen" ;128 Delete
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
196 TCODE .20, .65, "Debug:" ;129 Debug:
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
197 TCODE .65, .65, "AN " ;130 ON
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
198 TCODE .65, .65, "AUS" ;131 OFF
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
199 TCODE .100, .50, "alle löschen" ;132 Del. all
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
200 TCODE .10, .0, "Unerwarteter Reset des" ;133 Unexpected reset from
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
201 TCODE .10, .25, "TG-Modus! Bitte melden" ;134 Divemode! Please help
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
202 TCODE .10, .50, "Sie die u.a. Debug " ;135 and report the Debug
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
203 TCODE .10, .75, "Informationen!" ;136 Information below!
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
204 TCODE .100, .75, "Bailout" ;137 Bailout
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
205 TCODE .85, .125, "Apnoe " ;138 Apnoe
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
206 TCODE .105, .120, "Abstieg" ;139 Descent
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
207 TCODE .105, .60, "Oberfl." ;140 Surface
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
208 TCODE .65, .2, "Beenden?" ;141 Quit?
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
209 TCODE .20, .155, "Mehr" ;142 More
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
210 TCODE .42, .72, "Sicher?" ;143 Confirm:
267
814ac3af3052 1.85beta release, 1.86beta start, german texts updated
heinrichsweikamp
parents: 255
diff changeset
211 TCODE .60, .2, "Menü 2:" ;144 Menu 2:
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
212 TCODE .52, .96, "Zurück" ;145 Cancel
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
213 TCODE .52, .120, "OK!" ;146 OK!
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
214 TCODE .20, .35, "Mehr" ;147 More
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
215 TCODE .0, .0, ":.........:" ;148 :.........:
299
eac799f69360 some cleanup, french and german texts updated
heinrichsweikamp
parents: 297
diff changeset
216 TCODE .0, .8, "ppO2" ;149 ppO2
eac799f69360 some cleanup, french and german texts updated
heinrichsweikamp
parents: 297
diff changeset
217 TCODE .2, .39, "bar " ;150 bar
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
218 TCODE .108, .216, "Marker?" ;151 Marker?
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
219 TCODE .85, .125, "L16-GF OC" ;152 L16-GF OC
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
220 TCODE .20, .65, "Custom FunktionenII" ;153 Custom FunctionsII
177
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
221 ;
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
222 ; 32 custom function descriptors II (FIXED LENGTH = 15 chars).
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
223 TCODE .40, .35, "GF Low [%]" ;154 GF Low [%]
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
224 TCODE .40, .35, "GF High [%]" ;155 GF High [%]
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
225 TCODE .40, .35, "Farbe# Batterie" ;156 Color# Battery
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
226 TCODE .40, .35, "Farbe# Standard" ;157 Color# Standard
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
227 TCODE .40, .35, "Farbe# Maske " ;158 Color# Divemask
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
228 TCODE .40, .35, "Farbe# Warnung " ;159 Color# Warnings
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
229 TCODE .40, .35, "Tauchmodus Sek." ;160 Divemode secs.
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
230 TCODE .40, .35, "Festen SP ände." ;161 Adjust fixed SP
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
231 TCODE .40, .35, "Warnung Ceiling" ;162 Warn Ceiling
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
232 TCODE .40, .35, "Gas Mix Symbole" ;163 Mix type icons
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
233 TCODE .40, .35, "BesseresGasAnz " ;164 Blink BetterGas (Remainder in divemode to switch to a better decompression gas).
299
eac799f69360 some cleanup, french and german texts updated
heinrichsweikamp
parents: 297
diff changeset
234 TCODE .40, .35, "TiefeWarn[mbar]" ;165 DepthWarn[mbar]
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
235 TCODE .40, .35, "CNS Warnung [%]" ;166 CNS warning [%]
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
236 TCODE .40, .35, "GF Warnung [%]" ;167 GF warning [%]
299
eac799f69360 some cleanup, french and german texts updated
heinrichsweikamp
parents: 297
diff changeset
237 TCODE .40, .35, "ppO2 Warn [bar]" ;168 ppO2 warn [bar]
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
238 TCODE .40, .35, "GescWarn[m/min]" ;169 Vel.warn[m/min]
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
239 TCODE .40, .35, "ZeitVersatz/Tag" ;170 Time offset/day
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
240 TCODE .40, .35, "Höhenmesser anz" ;171 Show altimeter
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
241 TCODE .40, .35, "Log-Marker anz." ;172 Show Log-Marker
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
242 TCODE .40, .35, "Stoppuhr anz. " ;173 Show Stopwatch
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
243 TCODE .40, .35, "Gewebegraph anz" ;174 ShowTissueGraph
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
244 TCODE .40, .35, "Leitgewebe anz " ;175 Show Lead.Tiss.
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
245 TCODE .40, .35, "Flach.StoppOben" ;176 Shallow stop 1st (Reverse order of deco plans)
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
246 TCODE .40, .35, "Gaswechsel[min]" ;177 Gas switch[min] (Additional delay in decoplan for gas switches).
312
b7e4e74c0e17 New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents: 299
diff changeset
247 TCODE .40, .35, "BottomGas[/min]" ;178 BottomGas[/min] (Bottom gas usage, for volume estimation).
b7e4e74c0e17 New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents: 299
diff changeset
248 TCODE .40, .35, "Sonst.Gas[/min]" ;179 AscentGas[/min] (Ascent+Deco gas usage)
b7e4e74c0e17 New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents: 299
diff changeset
249 TCODE .40, .35, "TTS @ zeit[min]" ;180 TTS @extra[min] (@5 variant: compute TTS for extra time at current depth)
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
250 TCODE .40, .35, "nicht verwendet" ;181 not used
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
251 TCODE .40, .35, "nicht verwendet" ;182 not used
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
252 TCODE .40, .35, "nicht verwendet" ;183 not used
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
253 TCODE .40, .35, "nicht verwendet" ;184 not used
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
254 TCODE .40, .35, "nicht verwendet" ;185 not used
312
b7e4e74c0e17 New @5 variant: compute TTS if staying some extra time (CF58) at current depth.
JeanDo
parents: 299
diff changeset
255 ; End of function descriptor II
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
256 ;
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
257 TCODE .13, .2, "Custom Funktionen II" ;186 Custom Functions II
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
258 TCODE .20, .95, "Lizenz anzeigen " ;187 Show License
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
259 TCODE .0, .2, "Sim. Daten:" ;188 Sim. Results:
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
260 TCODE .90, .25, "Oberfl." ;189 Surface
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
261 TCODE .0, .0, "ppO2 +" ;190 ppO2 +
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
262 TCODE .0, .0, "ppO2 -" ;191 ppO2 -
194
94c1eaa1e25b small typos fixed
heinrichsweikamp
parents: 189
diff changeset
263 TCODE .0, .0, "Dil." ;192 Dil. (Rebreather diluent)
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
264 ; ZH-L16 mode description
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
265 TCODE .0, .35, "Dekomodell: ZH-L16 OC" ;193 Decotype: ZH-L16 OC
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
266 TCODE .0, .65, "Für das Tauchen mit" ;194 For Open Circuit
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
267 TCODE .0, .95, "offenen Systemen. " ;195 Divers. Supports 5
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
268 TCODE .0, .125, "Bis zu 5 Trimix Gase." ;196 Trimix Gases.
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
269 TCODE .0, .155, "Hierzu das Menü Gas-" ;197 Configure your gas
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
270 TCODE .0, .185, "einstellung verwenden." ;198 in Gassetup menu.
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
271 TCODE .0, .215, "CF11 & CF12 prüfen!" ;199 Check CF11 & CF12 !
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
272 ; Gaugemode description
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
273 TCODE .0, .35, "Dekomodell:Tiefenmesser" ;200 Decotype: Gauge
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
274 TCODE .0, .65, "Die Tauchzeit wird in" ;201 Divetime will be in
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
275 TCODE .0, .95, "Minuten:Sekunden ange-" ;202 Minutes:Seconds.
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
276 TCODE .0, .125, "zeigt. Der OSTC2 be-" ;203 OSTC2 will not
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
277 TCODE .0, .155, "rechnet keine Daten für" ;204 compute Deco, NoFly
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
278 TCODE .0, .185, "Deko, Flugverbots- oder" ;205 time and Desat.
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
279 TCODE .0, .215, "Entsättigungszeiten!" ;206 time at all!
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
280 ; Const.ppO2 description
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
281 TCODE .0, .35, "Dekomodell: ZH-L16 CC" ;207 Decotype: ZH-L16 CC
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
282 TCODE .0, .65, "Für (halb-)geschlossene " ;208 For (Semi-)Closed
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
283 TCODE .0, .95, "Kreislaufsysteme." ;209 Circuit rebreathers
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
284 TCODE .0, .125, "Stelle die 3 Setpoints" ;210 Configure the 3
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
285 TCODE .0, .155, "im CCR Setpoint Menü" ;211 SetPoints in CCR -
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
286 TCODE .0, .185, "ein. Bis zu 5 Bailout" ;212 Setup menu. 5 bail-
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
287 TCODE .0, .215, "Gase sind verfügbar." ;213 outs are available.
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
288 ; Apnoemode description
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
289 TCODE .0, .35, "Dekomodell: Apnoe " ;214 Decotype: Apnoe
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
290 TCODE .0, .65, "Der OSTC2 zeigt jeden" ;215 OSTC2 will display
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
291 TCODE .0, .95, "Abstieg getrennt in" ;216 each descent separ-
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
292 TCODE .0, .125, "Min:Sek an. Die Abtast-" ;217 ately in Min:Sec.
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
293 TCODE .0, .155, "rate wird temporär auf" ;218 Will temporally set
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
294 TCODE .0, .185, "1 Sekunde eingestellt." ;219 samplerate to 1 sec
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
295 TCODE .0, .215, "Keine Deko Berechnung" ;220 No Deco calculation
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
296 ; Multi GF OC mode description
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
297 TCODE .0, .35, "Dekomodell: L16-GF OC" ;221 Decotype: L16-GF OC
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
298 TCODE .0, .65, "Berechnung der Deko" ;222 Decompression cal-
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
299 TCODE .0, .95, "mittels der GF-Methode" ;223 culations with the
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
300 TCODE .0, .125, "(GF_lo/GF_hi). " ;224 GF-Method (GF_lo/GF
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
301 TCODE .0, .155, "Prüfe die CF32 & CF33" ;225 _hi). Check CF32 &
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
302 TCODE .0, .185, "Werte! Für offene Sys-" ;226 CF33! Open Circuit
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
303 TCODE .0, .215, "teme mit Tiefenstopps." ;227 with Deep Stops.
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
304 ; Multi GF CC mode description
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
305 TCODE .0, .35, "Dekomodell: L16-GF CC" ;228 Decotype: L16-GF CC
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
306 TCODE .0, .65, "Berechnung der Deko" ;229 Decompression cal-
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
307 TCODE .0, .95, "mittels der GF-Methode" ;230 culations with the
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
308 TCODE .0, .125, "(GF_lo/GF_hi). Prüfe" ;231 GF-Method (GF_lo/GF
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
309 TCODE .0, .155, "die CF32 & CF33 Werte!" ;232 _hi). Check CF32 &
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
310 TCODE .0, .185, "Für geschlossene Sys-" ;233 CF33!Closed Circuit
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
311 TCODE .0, .215, "teme mit Tiefenstopps." ;234 with Deep Stops.
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
312 ;
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
313 TCODE .10, .2, "Dekomodell verändert!" ;235 Decomode changed!
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
314 TCODE .85, .125, "L16-GF CC" ;236 L16-GF CC
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
315 TCODE .2, .12, "Nicht gefunden" ;237 Not found
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
316 TCODE .100, .0, "SetPoint" ;238 SetPoint
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
317 TCODE .100, .0, "k. Deko" ;239 No Deco
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
318 TCODE .90, .50, "Intervall:" ;240 Interval:
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
319 TCODE .100, .75, "Anzeige" ;241 Display
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
320 TCODE .100, .0, "Keine Deko" ;242 No deco
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
321 TCODE .132, .0, "beta" ;243 beta
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
322 TCODE .100, .100, "frei" ;244 unuse
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
323 TCODE .20, .65, "CF,Gas&Deko zurücks." ;245 Reset CF,Gas & Deco
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
324 TCODE .50, .145, "Battery schwach!" ;246 LowBatt!
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
325 TCODE .20, .125, "Simulator" ;247 Simulator
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
326 TCODE .30, .2, "OSTC Simulator" ;248 OSTC Simulator
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
327 TCODE .20, .35, "TG beginnen" ;249 Start Dive
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
328 TCODE .100, .25, "+ 1m" ;250 + 1m
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
329 TCODE .100, .50, "- 1m" ;251 - 1m
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
330 TCODE .100, .75, "+10m" ;252 +10m
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
331 TCODE .100, .100, "-10m" ;253 -10m
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
332 TCODE .100, .0, "Ende" ;254 Close
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
333 TCODE .128, .170, "Zeit" ;255 Time
177
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
334 ;
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
335 ; Text Bank2 (Texts 256-511)
177
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
336 ;
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
337 TCODE .0, .0, "x" ;256 x
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
338 TCODE .20, .35, "Datumsform.:" ;257 Date format:
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
339 TCODE .10, .2, "Einstellungs-Menü 2:" ;258 Setup Menu 2:
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
340 TCODE .105, .35, "MMDDYY" ;259 MMDDYY
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
341 TCODE .105, .35, "DDMMYY" ;260 DDMMYY
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
342 TCODE .105, .35, "YYMMDD" ;261 YYMMDD
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
343 TCODE .1, .1, "OSTC " ;262 OSTC
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
344 TCODE .65, .168, "Bail" ;263 Bail
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
345 TCODE .7, .48, "Luft " ;264 Air
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
346 TCODE .120, .135, "Luft " ;265 Air
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
347 TCODE .2, .39, "Kalibrieren" ;266 Calibrate
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
348 TCODE .0, .216, "Max." ;267 Max.
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
349 TCODE .10, .8, "nicht" ;268 not
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
350 TCODE .10, .16, "gefunden!" ;269 found!
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
351 TCODE .0, .0, "mV:" ;270 mV:
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
352 ; New CFs Warning
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
353 TCODE .10, .2, "Neue CF hinzugefügt!" ;271 New CF added!
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
354 TCODE .0, .35, "Neue Custom Funktionen" ;272 New CustomFunctions
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
355 TCODE .0, .65, "wurden hinzugefügt!" ;273 were added! Check
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
356 TCODE .0, .95, "Prüfe CFI und CF II" ;274 CF I and CF II Menu
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
357 TCODE .0, .125, "Menü für Details!" ;275 for Details!
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
358 TCODE .20, .95, "Salzgeh.: " ;276 Salinity:
177
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
359 ;
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
360 TCODE .20, .65, "Grundzeit:" ;277 Bottom Time:
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
361 TCODE .20, .95, "Max. Tiefe:" ;278 Max. Depth:
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
362 TCODE .20, .125, "Dekoplan berechn." ;279 Calculate Deco
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
363 TCODE .20, .155, "Dekoplan anzeigen." ;280 Show Decoplan
177
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
364 ;
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
365 TCODE .107, .170, "D-Tiefe" ;281 Avr.Depth
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
366 TCODE .90, .170, "Leitgewebe" ;282 Lead Tiss.
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
367 TCODE .100, .170, "Stoppuhr" ;283 Stopwatch
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
368 TCODE .20, .95, "Logbuch zurücks." ;284 Reset Logbook
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
369 TCODE .20, .125, "OSTC neu starten" ;285 Reboot OSTC
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
370 TCODE .20, .155, "Dekodaten zurücks." ;286 Reset Decodata
177
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
371 ; Altimeter extension
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
372 TCODE .20, .155, "Höhenmesser" ;287 Altimeter
267
814ac3af3052 1.85beta release, 1.86beta start, german texts updated
heinrichsweikamp
parents: 255
diff changeset
373 TCODE .18, .1, "Höhenmesser einst." ;288 Set Altimeter
814ac3af3052 1.85beta release, 1.86beta start, german texts updated
heinrichsweikamp
parents: 255
diff changeset
374 TCODE .20, .35, "Höhe NN: " ;289 Sea ref:
814ac3af3052 1.85beta release, 1.86beta start, german texts updated
heinrichsweikamp
parents: 255
diff changeset
375 TCODE .0, .0, "Aktiv: " ;290 Enabled:
814ac3af3052 1.85beta release, 1.86beta start, german texts updated
heinrichsweikamp
parents: 255
diff changeset
376 TCODE .20, .95, "Normal: 1013 mbar" ;291 Default: 1013 mbar
175
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
377 TCODE .20, .125, "+1 mbar" ;292 +1 mbar
e93d0edfc4c0 French and German translations
JeanDo
parents:
diff changeset
378 TCODE .20, .155, "-1 mbar" ;293 -1 mbar
267
814ac3af3052 1.85beta release, 1.86beta start, german texts updated
heinrichsweikamp
parents: 255
diff changeset
379 TCODE .85, .185, "Höhe " ;294 Alt:
189
b033b638c632 other languages updated
heinrichsweikamp
parents: 187
diff changeset
380 ;
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
381 TCODE .20, .125, "Rohdaten anzeigen" ;295 Show raw data
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
382 TCODE .50, .2, "Rohdaten:" ;296 Raw Data:
199
f5e9db793dd3 Minor missing translations
JeanDo
parents: 197
diff changeset
383 ; Gas-setup addons:
231
f9d42f8ff97b BUGFIX Don't show (nosense) gas consumption in CCR mode (bug BB20).
JeanDo
parents: 228
diff changeset
384 TCODE .0, .0, "MOD:" ;297 MOD: (max operating depth of a gas).
f9d42f8ff97b BUGFIX Don't show (nosense) gas consumption in CCR mode (bug BB20).
JeanDo
parents: 228
diff changeset
385 TCODE .0, .0, "END:" ;298 END: (equivalent nitrogen depth of a gas).
f9d42f8ff97b BUGFIX Don't show (nosense) gas consumption in CCR mode (bug BB20).
JeanDo
parents: 228
diff changeset
386 TCODE .0, .0, "EAD:" ;299 EAD: (equivalent air depth of a gas).
299
eac799f69360 some cleanup, french and german texts updated
heinrichsweikamp
parents: 297
diff changeset
387 TCODE .100, .125, "Aktiv?" ;300 Active? (Enable/Disable Gas underwater)
246
90af80e57b49 German texts added
heinrichsweikamp
parents: 231
diff changeset
388 TCODE .0, .2, "OCR Gasverbrauch:" ;301 OCR Gas Usage: (Planned gas consumtion by tank).
283
4ec488f046f4 Battery sign color coded, work on new uart-started 115200Baud bootloader (Do NOT use yet!)
heinrichsweikamp
parents: 267
diff changeset
389 TCODE .45, .100, "Bootloader" ;302 Bootloader
299
eac799f69360 some cleanup, french and german texts updated
heinrichsweikamp
parents: 297
diff changeset
390 TCODE .35, .130, "Bitte Warten!" ;303 Please wait!
eac799f69360 some cleanup, french and german texts updated
heinrichsweikamp
parents: 297
diff changeset
391 TCODE .40, .130, "Abgebrochen!" ;304 Aborted
177
d70dd3177d57 Add instructions to translators
JeanDo
parents: 175
diff changeset
392 ;=============================================================================