Subversion Repositories Projects

Rev

Rev 1517 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1517 Rev 1524
1
/****************************************************************************************
1
/****************************************************************************************
2
 *   Copyright (C) 2011 Christian "Cebra" Brandtner, brandtner@brandtner.net            *
2
 *   Copyright (C) 2011 Christian "Cebra" Brandtner, brandtner@brandtner.net            *
3
 *                                                                                      *
3
 *                                                                                      *
4
 *   This program is free software; you can redistribute it and/or modify               *
4
 *   This program is free software; you can redistribute it and/or modify               *
5
 *   it under the terms of the GNU General Public License as published by               *
5
 *   it under the terms of the GNU General Public License as published by               *
6
 *   the Free Software Foundation; either version 2 of the License.                     *
6
 *   the Free Software Foundation; either version 2 of the License.                     *
7
 *                                                                                      *
7
 *                                                                                      *
8
 *   This program is distributed in the hope that it will be useful,                    *
8
 *   This program is distributed in the hope that it will be useful,                    *
9
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of                     *
9
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of                     *
10
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                      *
10
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                      *
11
 *   GNU General Public License for more details.                                       *
11
 *   GNU General Public License for more details.                                       *
12
 *                                                                                      *
12
 *                                                                                      *
13
 *   You should have received a copy of the GNU General Public License                  *
13
 *   You should have received a copy of the GNU General Public License                  *
14
 *   along with this program; if not, write to the                                      *
14
 *   along with this program; if not, write to the                                      *
15
 *   Free Software Foundation, Inc.,                                                    *
15
 *   Free Software Foundation, Inc.,                                                    *
16
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.                          *
16
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.                          *
17
 *                                                                                      *
17
 *                                                                                      *
18
 *                                                                                      *
18
 *                                                                                      *
19
 *   Languagesupport:                                                                   *
19
 *   Languagesupport:                                                                   *
20
 *   http://www.netrino.com/Embedded-Systems/How-To/Firmware-Internationalization       *
20
 *   http://www.netrino.com/Embedded-Systems/How-To/Firmware-Internationalization       *
21
 *   Nigel Jones                                                                        *
21
 *   Nigel Jones                                                                        *
22
 ****************************************************************************************/
22
 ****************************************************************************************/
23
 
23
 
24
 
24
 
25
#include "cpu.h"
25
#include "cpu.h"
26
#include <avr/io.h>
26
#include <avr/io.h>
27
#include <inttypes.h>
27
#include <inttypes.h>
28
#include <stdlib.h>
28
#include <stdlib.h>
29
#include <avr/pgmspace.h>
29
#include <avr/pgmspace.h>
30
#include <avr/wdt.h>
30
#include <avr/wdt.h>
31
#include <util/delay.h>
31
#include <util/delay.h>
32
#include "lcd.h"
32
#include "lcd.h"
33
#include "timer.h"
33
#include "timer.h"
34
#include "eeprom.h"
34
#include "eeprom.h"
35
#include "messages.h"
35
#include "messages.h"
36
 
36
 
37
 
37
 
38
 
38
 
39
 
39
 
40
typedef enum
40
typedef enum
41
    { GERMAN,ENGLISH, FRENCH, NETHERLAND, LAST_LANGUAGE }
41
    { GERMAN,ENGLISH, FRENCH, NETHERLAND, LAST_LANGUAGE }
42
    LANGUAGE;
42
    LANGUAGE;
43
 
43
 
44
 
44
 
45
 
45
 
46
typedef struct
46
typedef struct
47
{
47
{
48
    /*
48
    /*
49
     * Maximum length
49
     * Maximum length
50
     */
50
     */
51
    int const len;
51
    int const len;
52
 
52
 
53
    /*
53
    /*
54
     * Array of pointers to language-specific string
54
     * Array of pointers to language-specific string
55
     */
55
     */
56
    char const * const text[LAST_LANGUAGE];
56
    char const * const text[LAST_LANGUAGE];
57
 
57
 
58
} STRING;
58
} STRING;
59
 
59
 
60
 
60
 
61
//--------------------------------------------------------------------------------------------------------------------
61
//--------------------------------------------------------------------------------------------------------------------
62
// Typdefinitionen für alle verwendeten Strings, LAST_STR muss am Ende stehen bleiben
62
// Typdefinitionen für alle verwendeten Strings, LAST_STR muss am Ende stehen bleiben
63
//typedef enum
63
//typedef enum
64
//{
64
//{
65
//     BOOT1,BOOT2,BOOT_WI1,BOOT_WI2,BOOT_SV,START_MSG1,START_MSG2,GNU_GPL,ATMEGA644,ATMEGA644P,ATMEGA1284P,HW12,HW12W,HW13,HW13W,HW39,START_LASTPOS,START_LASTPOS1,START_LASTPOS2,START_LASTPOSDEL,
65
//     BOOT1,BOOT2,BOOT_WI1,BOOT_WI2,BOOT_SV,START_MSG1,START_MSG2,GNU_GPL,ATMEGA644,ATMEGA644P,ATMEGA1284P,HW12,HW12W,HW13,HW13W,HW39,START_LASTPOS,START_LASTPOS1,START_LASTPOS2,START_LASTPOSDEL,
66
//     START_SEARCHFC,ENDE,START_FCNOTFOUND,START_FCFOUND,START_FCFOUND1,START_FCFOUND2,START_FCFOUND3,START_VERSIONCHECK,START_VERSIONCHECK1,
66
//     START_SEARCHFC,ENDE,START_FCNOTFOUND,START_FCFOUND,START_FCFOUND1,START_FCFOUND2,START_FCFOUND3,START_VERSIONCHECK,START_VERSIONCHECK1,
67
//     START_VERSIONCHECK2,START_VERSIONCHECK3,START_VERSIONCHECK4,START_VERSIONCHECK5,LAST_STR
67
//     START_VERSIONCHECK2,START_VERSIONCHECK3,START_VERSIONCHECK4,START_VERSIONCHECK5,LAST_STR
68
//} STR;
68
//} STR;
69
 
69
 
70
 
70
 
71
 
71
 
72
static const STRING strings[LAST_STR] =
72
static const STRING strings[LAST_STR] =
73
{
73
{
74
    { /*KEYLINE1*/
74
    { /*KEYLINE1*/
75
         21,
75
         21,
76
         {
76
         {
77
             " \x1a     \x1b    Ende   OK",    /* German */
77
             " \x1a     \x1b    Ende   OK",    /* German */
78
             " \x1a     \x1b    end    OK",    /* English*/
78
             " \x1a     \x1b    end    OK",    /* English*/
79
             " \x1a     \x1b    fin    OK",    /* French */
79
             " \x1a     \x1b    fin    OK",    /* French */
80
             " \x1a     \x1b    Einde  OK",    /* Dutch  */
80
             " \x1a     \x1b    Einde  OK",    /* Dutch  */
81
 
81
 
82
         }
82
         }
83
     },
83
     },
84
     { /*KEYLINE2*/
84
     { /*KEYLINE2*/
85
          21,
85
          21,
86
          {
86
          {
87
              " \x18     \x19    Ende   OK",    /* German */
87
              " \x18     \x19    Ende   OK",    /* German */
88
              " \x18     \x19    end    OK",    /* English*/
88
              " \x18     \x19    end    OK",    /* English*/
89
              " \x18     \x19    fin    OK",    /* French */
89
              " \x18     \x19    fin    OK",    /* French */
90
              " \x18     \x19    Einde  OK",    /* Dutch  */
90
              " \x18     \x19    Einde  OK",    /* Dutch  */
91
 
91
 
92
          }
92
          }
93
      },
93
      },
94
      { /*KEYLINE3*/
94
      { /*KEYLINE3*/
95
           21,
95
           21,
96
           {
96
           {
97
               " \x18     \x19    Ende ",    /* German */
97
               " \x18     \x19    Ende ",    /* German */
98
               " \x18     \x19    end  ",    /* English*/
98
               " \x18     \x19    end  ",    /* English*/
99
               " \x18     \x19    fin  ",    /* French */
99
               " \x18     \x19    fin  ",    /* French */
100
               " \x18     \x19    Einde",   /* Dutch  */
100
               " \x18     \x19    Einde",   /* Dutch  */
101
 
101
 
102
           }
102
           }
103
       },
103
       },
104
       { /*KEYLINE4*/
104
       { /*KEYLINE4*/
105
            21,
105
            21,
106
            {
106
            {
107
                "Ende   OK",    /* German */
107
                "Ende   OK",    /* German */
108
                "end    OK",    /* English*/
108
                "end    OK",    /* English*/
109
                "fin    OK",    /* French */
109
                "fin    OK",    /* French */
110
                "Einde  OK",    /* Dutch  */
110
                "Einde  OK",    /* Dutch  */
111
 
111
 
112
            }
112
            }
113
        },
113
        },
114
 
114
 
115
 
115
 
116
 
116
 
117
    { /*BOOT1*/
117
    { /*BOOT1*/
118
         21,
118
         21,
119
         {
119
         {
120
             "Taste 1 Sekunde",    /* German */
120
             "Taste 1 Sekunde",    /* German */
121
             "Keep the button",    /* English*/
121
             "Keep the button",    /* English*/
122
             "Maintenez le bouton",    /* French */
122
             "Maintenez le bouton",    /* French */
123
             "Houd de knop   ",    /* Dutch  */
123
             "Houd de knop   ",    /* Dutch  */
124
 
124
 
125
         }
125
         }
126
     },
126
     },
127
     { /* BOOT2*/
127
     { /* BOOT2*/
128
         21,
128
         21,
129
         {
129
         {
130
             "lang festhalten.",        /* German */
130
             "lang festhalten.",        /* German */
131
             "pressed for 1 second",    /* English*/
131
             "pressed for 1 second",    /* English*/
132
             "enfoncée pend. 1 sec",    /* French */
132
             "enfoncee pend. 1 sec",    /* French */
133
             "1 seconde ingedrukt.",    /* Dutch  */
133
             "1 seconde ingedrukt.",    /* Dutch  */
134
         }
134
         }
135
     },
135
     },
136
     { /*BOOT_WI1*/
136
     { /*BOOT_WI1*/
137
        21,
137
        21,
138
        {
138
        {
139
            "Verbindung zum MK ist",   /* German */
139
            "Verbindung zum MK ist",   /* German */
140
            "Connection to MK is",     /* English*/
140
            "Connection to MK is",     /* English*/
141
            "Connexion à MK est",     /* French */
141
            "Connexion à MK est",     /* French */
142
            "Verbinding met MK is",    /* Dutch  */
142
            "Verbinding met MK is",    /* Dutch  */
143
 
143
 
144
        }
144
        }
145
    },
145
    },
146
    { /* BOOT_WI2*/
146
    { /* BOOT_WI2*/
147
        21,
147
        21,
148
        {
148
        {
149
            "auf Wi232 eingestellt",    /* German */
149
            "auf Wi232 eingestellt",    /* German */
150
            "set to Wi232",             /* English*/
150
            "set to Wi232",             /* English*/
151
            "mis à Wi232",             /* French */
151
            "mis a Wi232",             /* French */
152
            "ingesteld op Wi232",       /* Dutch  */
152
            "ingesteld op Wi232",       /* Dutch  */
153
        }
153
        }
154
    },
154
    },
155
    { /*BOOTSV1*/
155
    { /*BOOTSV1*/
156
         21,
156
         21,
157
         {
157
         {
158
             "auf Kabel eingestellt",  /* German */
158
             "auf Kabel eingestellt",  /* German */
159
             "set to kabel on SV2",    /* English*/
159
             "set to kabel on SV2",    /* English*/
160
             "mis à kabel sur SV2",    /* French */
160
             "mis a kabel sur SV2",    /* French */
161
             "via kabelverbinding",    /* Dutch  */
161
             "via kabelverbinding",    /* Dutch  */
162
 
162
 
163
         }
163
         }
164
     },
164
     },
165
    { /**/
165
    { /**/
166
        21,
166
        21,
167
        {
167
        {
168
            "Portables Kopter Tool",    /* German */
168
            "Portables Kopter Tool",    /* German */
169
            "Portable Kopter Tool ",    /* English*/
169
            "Portable Kopter Tool ",    /* English*/
170
            "Portable Kopter Tool ",    /* French */
170
            "Portable Kopter Tool ",    /* French */
171
            "Portable Kopter Tool ",    /* Dutch  */
171
            "Portable Kopter Tool ",    /* Dutch  */
172
 
172
 
173
        }
173
        }
174
    },
174
    },
175
    { /*START_MSG2 */
175
    { /*START_MSG2 */
176
        21,
176
        21,
177
        {
177
        {
178
            "für FC Ver "FC_Version,    /* German */
178
            "für FC Ver "FC_Version,    /* German */
179
            "for FC Ver "FC_Version,    /* English*/
179
            "for FC Ver "FC_Version,    /* English*/
180
            "pour FC Ver "FC_Version,    /* French */
180
            "pour FC Ver "FC_Version,    /* French */
181
            "Voor FC Ver "FC_Version,   /* Dutch  */
181
            "Voor FC Ver "FC_Version,   /* Dutch  */
182
        }
182
        }
183
    },
183
    },
184
    { /* GNU/GPL */
184
    { /* GNU/GPL */
185
        21,
185
        21,
186
        {
186
        {
187
            "GNU GPL License",          /* German */
187
            "GNU GPL License",          /* German */
188
            "GNU GPL License",          /* English*/
188
            "GNU GPL License",          /* English*/
189
            "GNU GPL License",          /* French */
189
            "GNU GPL License",          /* French */
190
            "GNU GPL License",          /* Dutch  */
190
            "GNU GPL License",          /* Dutch  */
191
        }
191
        }
192
    },
192
    },
193
    { /**/
193
    { /**/
194
        21,
194
        21,
195
        {
195
        {
196
            "ATmega 644",          /* German */
196
            "ATmega 644",          /* German */
197
            "ATmega 644",          /* English*/
197
            "ATmega 644",          /* English*/
198
            "ATmega 644",          /* French */
198
            "ATmega 644",          /* French */
199
            "ATmega 644",          /* Dutch  */
199
            "ATmega 644",          /* Dutch  */
200
        }
200
        }
201
    },
201
    },
202
    { /**/
202
    { /**/
203
        21,
203
        21,
204
        {
204
        {
205
            "ATmega 644P",          /* German */
205
            "ATmega 644P",          /* German */
206
            "ATmega 644P",          /* English*/
206
            "ATmega 644P",          /* English*/
207
            "ATmega 644P",          /* French */
207
            "ATmega 644P",          /* French */
208
            "ATmega 644P",          /* Dutch  */
208
            "ATmega 644P",          /* Dutch  */
209
        }
209
        }
210
    },
210
    },
211
    { /**/
211
    { /**/
212
        21,
212
        21,
213
        {
213
        {
214
            "ATmega 1284P",          /* German */
214
            "ATmega 1284P",          /* German */
215
            "ATmega 1284P",          /* English*/
215
            "ATmega 1284P",          /* English*/
216
            "ATmega 1284P",          /* French */
216
            "ATmega 1284P",          /* French */
217
            "ATmega 1284P",          /* Dutch  */
217
            "ATmega 1284P",          /* Dutch  */
218
        }
218
        }
219
    },
219
    },
220
 
220
 
221
    { /**/
221
    { /**/
222
        21,
222
        21,
223
        {
223
        {
224
            "Hardware 1.2",          /* German */
224
            "Hardware 1.2",          /* German */
225
            "Hardware 1.2",          /* English*/
225
            "Hardware 1.2",          /* English*/
226
            "Hardware 1.2",          /* French */
226
            "Hardware 1.2",          /* French */
227
            "Hardware 1.2",          /* Dutch  */
227
            "Hardware 1.2",          /* Dutch  */
228
        }
228
        }
229
    },
229
    },
230
    { /**/
230
    { /**/
231
        21,
231
        21,
232
        {
232
        {
233
            "Hardware 1.2W",          /* German */
233
            "Hardware 1.2W",          /* German */
234
            "Hardware 1.2W",          /* English*/
234
            "Hardware 1.2W",          /* English*/
235
            "Hardware 1.2W",          /* French */
235
            "Hardware 1.2W",          /* French */
236
            "Hardware 1.2W",          /* Dutch  */
236
            "Hardware 1.2W",          /* Dutch  */
237
        }
237
        }
238
    },
238
    },
239
    { /**/
239
    { /**/
240
        21,
240
        21,
241
        {
241
        {
242
            "Hardware 1.3",          /* German */
242
            "Hardware 1.3",          /* German */
243
            "Hardware 1.3",          /* English*/
243
            "Hardware 1.3",          /* English*/
244
            "Hardware 1.3",          /* French */
244
            "Hardware 1.3",          /* French */
245
            "Hardware 1.3",          /* Dutch  */
245
            "Hardware 1.3",          /* Dutch  */
246
        }
246
        }
247
    },
247
    },
248
    { /**/
248
    { /**/
249
        21,
249
        21,
250
        {
250
        {
251
            "Hardware 1.3W",          /* German */
251
            "Hardware 1.3W",          /* German */
252
            "Hardware 1.3W",          /* English*/
252
            "Hardware 1.3W",          /* English*/
253
            "Hardware 1.3W",          /* French */
253
            "Hardware 1.3W",          /* French */
254
            "Hardware 1.3W",          /* Dutch  */
254
            "Hardware 1.3W",          /* Dutch  */
255
        }
255
        }
256
    },
256
    },
257
    { /**/
257
    { /**/
258
        21,
258
        21,
259
        {
259
        {
260
            "Hardware 3.9",          /* German */
260
            "Hardware 3.9",          /* German */
261
            "Hardware 3.9",          /* English*/
261
            "Hardware 3.9",          /* English*/
262
            "Hardware 3.9",          /* French */
262
            "Hardware 3.9",          /* French */
263
            "Hardware 3.9",          /* Dutch  */
263
            "Hardware 3.9",          /* Dutch  */
264
        }
264
        }
265
    },
265
    },
266
    { /*START_LASTPOS*/
266
    { /*START_LASTPOS*/
267
        21,
267
        21,
268
        {
268
        {
269
            "   Letzte Position   ",    /* German */
269
            "   Letzte Position   ",    /* German */
270
            "   last   position   ",    /* English*/
270
            "   last   position   ",    /* English*/
271
            "   dernière position ",    /* French */
271
            "   derniere position ",    /* French */
272
            "   Laatste positie   ",    /* Dutch  */
272
            "   Laatste positie   ",    /* Dutch  */
273
        }
273
        }
274
    },
274
    },
275
    { /*START_LASTPOS1*/
275
    { /*START_LASTPOS1*/
276
        21,
276
        21,
277
        {
277
        {
278
            " Breitengr  Längengr ",          /* German */
278
            " Breitengr  Längengr ",          /* German */
279
            " latitude  longitude ",          /* English*/
279
            " latitude  longitude ",          /* English*/
280
            " latitude  longitude ",          /* French */
280
            " latitude  longitude ",          /* French */
281
            "breedtegr. lengtegr. ",          /* Dutch  */
281
            "breedtegr. lengtegr. ",          /* Dutch  */
282
        }
282
        }
283
    },
283
    },
284
 
284
 
285
    { /*START_LASTPOS2*/
285
    { /*START_LASTPOS2*/
286
         21,
286
         21,
287
         {
287
         {
288
             "löschen        weiter",          /* German */
288
             "löschen        weiter",          /* German */
289
             "delete          exit ",          /* English*/
289
             "delete          exit ",          /* English*/
290
             "supprimer       plus ",          /* French */
290
             "supprimer       plus ",          /* French */
291
             "wissen         verder",          /* Dutch  */
291
             "wissen         verder",          /* Dutch  */
292
         }
292
         }
293
     },
293
     },
294
     { /*START_LASTPOS3*/
294
     { /*START_LASTPOS3*/
295
          21,
295
          21,
296
          {
296
          {
297
              "    Google Eingabe   ",          /* German */
297
              "    Google Eingabe   ",          /* German */
298
              "    Google Input     ",          /* English*/
298
              "    Google Input     ",          /* English*/
299
              "    Google Input     ",          /* French */
299
              "    Google Input     ",          /* French */
300
              "    Google Input     ",          /* Dutch  */
300
              "    Google Input     ",          /* Dutch  */
301
          }
301
          }
302
      },
302
      },
303
     { /*START_LASTPOSDEL*/
303
     { /*START_LASTPOSDEL*/
304
          21,
304
          21,
305
          {
305
          {
306
              "      gelöscht       ",          /* German */
306
              "      gelöscht       ",          /* German */
307
              "      deleted        ",          /* English*/
307
              "      deleted        ",          /* English*/
308
              "     supprimé        ",          /* French */
308
              "     supprime        ",          /* French */
309
              "      gewist         ",          /* Dutch  */
309
              "      gewist         ",          /* Dutch  */
310
          }
310
          }
311
      },
311
      },
312
     { /*START_SEARCHFC*/
312
     { /*START_SEARCHFC*/
313
          21,
313
          21,
314
          {
314
          {
315
              "Suche FC...",        /* German */
315
              "Suche FC...",        /* German */
316
              "searching FC...",    /* English*/
316
              "searching FC...",    /* English*/
317
              "cherchant FC...",    /* French */
317
              "cherchant FC...",    /* French */
318
              "zoek FC...",         /* Dutch  */
318
              "zoek FC...",         /* Dutch  */
319
          }
319
          }
320
      },
320
      },
321
 
321
 
322
      { /*ENDE*/
322
      { /*ENDE*/
323
          21,
323
          21,
324
          {
324
          {
325
              "Ende ",          /* German */
325
              "Ende ",          /* German */
326
              "end  ",          /* English*/
326
              "end  ",          /* English*/
327
              "fin  ",          /* French */
327
              "fin  ",          /* French */
328
              "Einde",         /* Dutch  */
328
              "Einde",         /* Dutch  */
329
          }
329
          }
330
      },
330
      },
331
      { /*OK*/
331
      { /*OK*/
332
          21,
332
          21,
333
          {
333
          {
334
              "Ok",          /* German */
334
              "Ok",          /* German */
335
              "ok",          /* English*/
335
              "ok",          /* English*/
336
              "ok",          /* French */
336
              "ok",          /* French */
337
              "gued",         /* Dutch  */
337
              "gued",         /* Dutch  */
338
          }
338
          }
339
      },
339
      },
340
      { /*FEHLER*/
340
      { /*FEHLER*/
341
          21,
341
          21,
342
          {
342
          {
343
              "Fehler",          /* German */
343
              "Fehler",          /* German */
344
              "error",          /* English*/
344
              "error",          /* English*/
345
              "d'erreur",          /* French */
345
              "d'erreur",          /* French */
346
              "fout",         /* Dutch  */
346
              "fout",         /* Dutch  */
347
          }
347
          }
348
      },
348
      },
349
      { /*AKTIV*/
349
      { /*AKTIV*/
350
          21,
350
          21,
351
          {
351
          {
352
              "aktiv",          /* German */
352
              "aktiv",          /* German */
353
              "activ",          /* English*/
353
              "activ",          /* English*/
354
              "actifs",          /* French */
354
              "actifs",          /* French */
355
              "actief",         /* Dutch  */
355
              "actief",         /* Dutch  */
356
          }
356
          }
357
      },
357
      },
358
 
358
 
359
 
359
 
360
      { /*START_FCNOTFOUND*/
360
      { /*START_FCNOTFOUND*/
361
          21,
361
          21,
362
          {
362
          {
363
              "FC nicht gefunden!",       /* German */
363
              "FC nicht gefunden!",       /* German */
364
              "FC not found!",            /* English*/
364
              "FC not found!",            /* English*/
365
              "FC pas trouvé!",            /* French */
365
              "FC pas trouve!",            /* French */
366
              "FC niet gevonden!",        /* Dutch  */
366
              "FC niet gevonden!",        /* Dutch  */
367
          }
367
          }
368
      },
368
      },
369
      { /*START_FCFOUND*/
369
      { /*START_FCFOUND*/
370
          21,
370
          21,
371
          {
371
          {
372
              "PKT-Tool GNU GPL",          /* German */
372
              "PKT-Tool GNU GPL",          /* German */
373
              "PKT-Tool GNU GPL",          /* English*/
373
              "PKT-Tool GNU GPL",          /* English*/
374
              "PKT-Tool GNU GPL",          /* French */
374
              "PKT-Tool GNU GPL",          /* French */
375
              "PKT-Tool GNU GPL",          /* Dutch  */
375
              "PKT-Tool GNU GPL",          /* Dutch  */
376
          }
376
          }
377
      },
377
      },
378
      { /*START_FCFOUND1*/
378
      { /*START_FCFOUND1*/
379
          21,
379
          21,
380
          {
380
          {
381
              "gefunden: ",           /* German */
381
              "gefunden: ",           /* German */
382
              "found: ",              /* English*/
382
              "found: ",              /* English*/
383
              "trouvés: ",              /* French */
383
              "trouvés: ",              /* French */
384
              "gevonden: ",           /* Dutch  */
384
              "gevonden: ",           /* Dutch  */
385
          }
385
          }
386
      },
386
      },
387
      { /*START_FCFOUND2*/
387
      { /*START_FCFOUND2*/
388
          21,
388
          21,
389
          {
389
          {
390
              "Flight-Ctrl",          /* German */
390
              "Flight-Ctrl",          /* German */
391
              "Flight-Ctrl",          /* English*/
391
              "Flight-Ctrl",          /* English*/
392
              "Flight-Ctrl",          /* French */
392
              "Flight-Ctrl",          /* French */
393
              "Flight-Ctrl",          /* Dutch  */
393
              "Flight-Ctrl",          /* Dutch  */
394
          }
394
          }
395
      },
395
      },
396
      { /*START_FCFOUND3*/
396
      { /*START_FCFOUND3*/
397
          21,
397
          21,
398
          {
398
          {
399
              "Navi-Ctrl",          /* German */
399
              "Navi-Ctrl",          /* German */
400
              "Navi-Ctrl",          /* English*/
400
              "Navi-Ctrl",          /* English*/
401
              "Navi-Ctrl",          /* French */
401
              "Navi-Ctrl",          /* French */
402
              "Navi-Ctrl",          /* Dutch  */
402
              "Navi-Ctrl",          /* Dutch  */
403
          }
403
          }
404
      },
404
      },
405
      { /*START_VERSIONCHECK*/
405
      { /*START_VERSIONCHECK*/
406
          21,
406
          21,
407
          {
407
          {
408
              "Version: ",          /* German */
408
              "Version: ",          /* German */
409
              "Version: ",          /* English*/
409
              "Version: ",          /* English*/
410
              "Version: ",          /* French */
410
              "Version: ",          /* French */
411
              "Versie:  ",          /* Dutch  */
411
              "Versie:  ",          /* Dutch  */
412
          }
412
          }
413
      },
413
      },
414
      { /*START_VERSIONCHECK1*/
414
      { /*START_VERSIONCHECK1*/
415
          21,
415
          21,
416
          {
416
          {
417
              " erwartet",          /* German */
417
              " erwartet",          /* German */
418
              " expected",          /* English*/
418
              " expected",          /* English*/
419
              " attendus",          /* French */
419
              " attendus",          /* French */
420
              " verwacht",          /* Dutch  */
420
              " verwacht",          /* Dutch  */
421
          }
421
          }
422
      },
422
      },
423
      { /*START_VERSIONCHECK2*/
423
      { /*START_VERSIONCHECK2*/
424
          21,
424
          21,
425
          {
425
          {
426
              " gefunden",              /* German */
426
              " gefunden",              /* German */
427
              " found",                 /* English*/
427
              " found",                 /* English*/
428
              " trouvés",                 /* French */
428
              " trouves",                 /* French */
429
              " gevonden",              /* Dutch  */
429
              " gevonden",              /* Dutch  */
430
          }
430
          }
431
      },
431
      },
432
      { /*START_VERSIONCHECK3*/
432
      { /*START_VERSIONCHECK3*/
433
          21,
433
          21,
434
          {
434
          {
435
              "PKT-Tool nur mit",          /* German */
435
              "PKT-Tool nur mit",          /* German */
436
              "PKT-Tool only with",        /* English*/
436
              "PKT-Tool only with",        /* English*/
437
              "PKT uniquement avec",        /* French */
437
              "PKT uniquement avec",        /* French */
438
              "PKT-Tool alleen met",       /* Dutch  */
438
              "PKT-Tool alleen met",       /* Dutch  */
439
          }
439
          }
440
      },
440
      },
441
 
441
 
442
      { /*START_VERSIONCHECK4*/
442
      { /*START_VERSIONCHECK4*/
443
          21,
443
          21,
444
          {
444
          {
445
              "FC Software ",          /* German */
445
              "FC Software ",          /* German */
446
              "FC Software ",          /* English*/
446
              "FC Software ",          /* English*/
447
              "FC Software ",          /* French */
447
              "FC Software ",          /* French */
448
              "FC Software ",          /* Dutch  */
448
              "FC Software ",          /* Dutch  */
449
          }
449
          }
450
      },
450
      },
451
 
451
 
452
      { /*START_VERSIONCHECK5*/
452
      { /*START_VERSIONCHECK5*/
453
          21,
453
          21,
454
          {
454
          {
455
              "kompatibel",         /* German */
455
              "kompatibel",         /* German */
456
              "compatible",         /* English*/
456
              "compatible",         /* English*/
457
              "compatibles",         /* French */
457
              "compatibles",         /* French */
458
              "compatibel",         /* Dutch  */
458
              "compatibel",         /* Dutch  */
459
          }
459
          }
460
      },
460
      },
461
      { /*ON*/
461
      { /*ON*/
462
          21,
462
          21,
463
          {
463
          {
464
              "Ein  ",          /* German */
464
              "Ein  ",          /* German */
465
              "On   ",          /* English*/
465
              "On   ",          /* English*/
466
              "Un   ",          /* French */
466
              "Un   ",          /* French */
467
              "Aan  ",         /* Dutch  */
467
              "Aan  ",         /* Dutch  */
468
          }
468
          }
469
      },
469
      },
470
      { /*AUS*/
470
      { /*AUS*/
471
          21,
471
          21,
472
          {
472
          {
473
              "Aus  ",          /* German */
473
              "Aus  ",          /* German */
474
              "Off  ",          /* English*/
474
              "Off  ",          /* English*/
475
              "Du   ",          /* French */
475
              "Du   ",          /* French */
476
              "Uit  ",          /* Dutch  */
476
              "Uit  ",          /* Dutch  */
477
          }
477
          }
478
      },
478
      },
479
      { /*ESC*/
479
      { /*ESC*/
480
           21,
480
           21,
481
           {
481
           {
482
               "ESC",          /* German */
482
               "ESC",          /* German */
483
               "ESC",          /* English*/
483
               "ESC",          /* English*/
484
               "ESC",          /* French */
484
               "ESC",          /* French */
485
               "ESC",          /* Dutch  */
485
               "ESC",          /* Dutch  */
486
           }
486
           }
487
       },
487
       },
488
      { /*SHUTDOWN*/
488
      { /*SHUTDOWN*/
489
          21,
489
          21,
490
          {
490
          {
491
              "  PKT ausschalten?",        /* German */
491
              "  PKT ausschalten?",        /* German */
492
              "  shutdown PKT ?",          /* English*/
492
              "  shutdown PKT ?",          /* English*/
493
              "  désactiver PKT ?",          /* French */
493
              "  desactiver PKT ?",          /* French */
494
              "  PKT uitschakelen ?",      /* Dutch  */
494
              "  PKT uitschakelen ?",      /* Dutch  */
495
          }
495
          }
496
      },
496
      },
497
      { /*YES NO*/
497
      { /*YES NO*/
498
          21,
498
          21,
499
          {
499
          {
500
              "Nein   Ja",          /* German */
500
              "Nein   Ja",          /* German */
501
              "no    yes",          /* English*/
501
              "no    yes",          /* English*/
502
              "non   oui",          /* French */
502
              "non   oui",          /* French */
503
              "Nee    Ja",          /* Dutch  */
503
              "Nee    Ja",          /* Dutch  */
504
          }
504
          }
505
      },
505
      },
506
      { /*UPDATE1*/
506
      { /*UPDATE1*/
507
          21,
507
          21,
508
          {
508
          {
509
              "Verbinde PC mit PKT  ",          /* German */
509
              "Verbinde PC mit PKT  ",          /* German */
510
              "Connect PC to PKT-USB",          /* English*/
510
              "Connect PC to PKT-USB",          /* English*/
511
              "associer PC a PKT-USB",          /* French */
511
              "associer PC a PKT-USB",          /* French */
512
              "Verbind PC met PKT   ",          /* Dutch  */
512
              "Verbind PC met PKT   ",          /* Dutch  */
513
          }
513
          }
514
      },
514
      },
515
      { /*UPDATE2*/
515
      { /*UPDATE2*/
516
          21,
516
          21,
517
          {
517
          {
518
              "Drücke 'Start' am PKT",          /* German */
518
              "Drücke 'Start' am PKT",          /* German */
519
              "Press 'Start' on PKT ",          /* English*/
519
              "Press 'Start' on PKT ",          /* English*/
520
              "presse 'lancer' a PKT",          /* French */
520
              "presse 'lancer' a PKT",          /* French */
521
              "Druk 'Start' op PKT  ",          /* Dutch  */
521
              "Druk 'Start' op PKT  ",          /* Dutch  */
522
          }
522
          }
523
      },
523
      },
524
      { /*ENDSTART*/
524
      { /*ENDSTART*/
525
          21,
525
          21,
526
          {
526
          {
527
              "           Ende Start",          /* German */
527
              "           Ende Start",          /* German */
528
              "           End  Start",          /* English*/
528
              "           End  Start",          /* English*/
529
              "          fin  lancer",          /* French */
529
              "          fin  lancer",          /* French */
530
              "          Einde Start",          /* Dutch  */
530
              "          Einde Start",          /* Dutch  */
531
          }
531
          }
532
      },
532
      },
533
      { /*TOOLS1*/
533
      { /*TOOLS1*/
534
          21,
534
          21,
535
          {
535
          {
536
              " PC-Quick-Verbindung ",          /* German */
536
              " PC-Quick-Verbindung ",          /* German */
537
              " PC-Quick-Connection ",          /* English*/
537
              " PC-Quick-Connection ",          /* English*/
538
              " PC-connexion rapide ",          /* French */
538
              " PC-connexion rapide ",          /* French */
539
              " Snelle PC-verbinding",          /* Dutch  */
539
              " Snelle PC-verbinding",          /* Dutch  */
540
          }
540
          }
541
      },
541
      },
542
      { /*CONNECT1,*/
542
      { /*CONNECT1,*/
543
          21,
543
          21,
544
          {
544
          {
545
              "Verbinde das PKT mit",         /* German */
545
              "Verbinde das PKT mit",         /* German */
546
              "Connect PKT with MK",          /* English*/
546
              "Connect PKT with MK",          /* English*/
547
              "connectez PKT a  MK",          /* French */
547
              "connectez PKT a  MK",          /* French */
548
              "Verbind PKT  ",         /* Dutch  */
548
              "Verbind PKT  ",         /* Dutch  */
549
          }
549
          }
550
      },
550
      },
551
      { /*CONNECT2*/
551
      { /*CONNECT2*/
552
          21,
552
          21,
553
          {
553
          {
554
              "dem MK über:",        /* German */
554
              "dem MK über:",        /* German */
555
              "   over    :",                /* English*/
555
              "   over    :",                /* English*/
556
              "  a propos :",                /* French */
556
              "  a propos :",                /* French */
557
              "   met     :",   /* Dutch  */
557
              "   met     :",   /* Dutch  */
558
          }
558
          }
559
      },
559
      },
560
 
560
 
561
      { /*CONNECT4,*/
561
      { /*CONNECT4,*/
562
          21,
562
          21,
563
          {
563
          {
564
              "dem MK über:  Kabel, ",         /* German */
564
              "dem MK über:  Kabel, ",         /* German */
565
              "over: Kabel",                   /* English*/
565
              "over: Kabel",                   /* English*/
566
              "a propos: Cable",                   /* French */
566
              "a propos: Cable",                   /* French */
567
              "MK via: kabel        ",         /* Dutch  */
567
              "MK via: kabel        ",         /* Dutch  */
568
          }
568
          }
569
      },
569
      },
570
      { /*CONNECT5*/
570
      { /*CONNECT5*/
571
          21,
571
          21,
572
          {
572
          {
573
              "es ist kein Wi.232",         /* German */
573
              "es ist kein Wi.232",         /* German */
574
              "there is no Wi.232",          /* English*/
574
              "there is no Wi.232",          /* English*/
575
              "l n'ya pas de ",        /* French */
575
              "l n'ya pas de ",        /* French */
576
              "er is geen wi.232 ",         /* Dutch  */
576
              "er is geen wi.232 ",         /* Dutch  */
577
          }
577
          }
578
      },
578
      },
579
      { /*CONNECT6*/
579
      { /*CONNECT6*/
580
          21,
580
          21,
581
          {
581
          {
582
              "Modul eingebaut.",          /* German */
582
              "Modul eingebaut.",          /* German */
583
              "built in.",                 /* English*/
583
              "built in.",                 /* English*/
584
              "module intégré Wi232",                 /* French */
584
              "module integre Wi232",                 /* French */
585
              "module ingebouwd.",         /* Dutch  */
585
              "module ingebouwd.",         /* Dutch  */
586
          }
586
          }
587
      },
587
      },
588
      { /*CONNECT7,*/
588
      { /*CONNECT7,*/
589
          21,
589
          21,
590
          {
590
          {
591
              "Wenn doch, dann bitte",       /* German */
591
              "Wenn doch, dann bitte",       /* German */
592
              "if yes, then first",          /* English*/
592
              "if yes, then first",          /* English*/
593
              "Si vous le faites",          /* French */
593
              "Si vous le faites",          /* French */
594
              "zo ja, dan aub eerst",        /* Dutch  */
594
              "zo ja, dan aub eerst",        /* Dutch  */
595
          }
595
          }
596
      },
596
      },
597
      { /*CONNECT8*/
597
      { /*CONNECT8*/
598
          21,
598
          21,
599
          {
599
          {
600
              "das Modul zuerst im  ",      /* German */
600
              "das Modul zuerst im  ",      /* German */
601
              "activate modul in",          /* English*/
601
              "activate modul in",          /* English*/
602
              "activer le module",          /* French */
602
              "activer le module",          /* French */
603
              "de module aktiveren",        /* Dutch  */
603
              "de module aktiveren",        /* Dutch  */
604
          }
604
          }
605
      },
605
      },
606
      { /*CONNECT9*/
606
      { /*CONNECT9*/
607
          21,
607
          21,
608
          {
608
          {
609
              "Setupmenü aktivieren.",     /* German */
609
              "Setupmenü aktivieren.",     /* German */
610
              "Setupmenu",                 /* English*/
610
              "Setupmenu",                 /* English*/
611
              "dans menu de config.",                 /* French */
611
              "dans menu de config.",                 /* French */
612
              "in het Setupmenu.",         /* Dutch  */
612
              "in het Setupmenu.",         /* Dutch  */
613
          }
613
          }
614
      },
614
      },
615
      { /*CONNECT10*/
615
      { /*CONNECT10*/
616
          21,
616
          21,
617
          {
617
          {
618
              "Sie müssen das PKT",   /* German */
618
              "Sie müssen das PKT",   /* German */
619
              "You have to",          /* English*/
619
              "You have to",          /* English*/
620
              "Vous devez",          /* French */
620
              "Vous devez",          /* French */
621
              "U moet de PKT",        /* Dutch  */
621
              "U moet de PKT",        /* Dutch  */
622
          }
622
          }
623
      },
623
      },
624
      { /*CONNECT11*/
624
      { /*CONNECT11*/
625
          21,
625
          21,
626
          {
626
          {
627
              "jetzt neu starten!",   /* German */
627
              "jetzt neu starten!",   /* German */
628
              "restart PKT",          /* English*/
628
              "restart PKT",          /* English*/
629
              "redémarrer PKT",          /* French */
629
              "redemarrer PKT",          /* French */
630
              "nu opnieuw starten!",  /* Dutch  */
630
              "nu opnieuw starten!",  /* Dutch  */
631
          }
631
          }
632
      },
632
      },
633
      { /*CONNECT12*/
633
      { /*CONNECT12*/
634
          21,
634
          21,
635
          {
635
          {
636
              "Es ist kein BTM-222",          /* German */
636
              "Es ist kein BTM-222",          /* German */
637
              "There is no BTM-222",          /* English*/
637
              "There is no BTM-222",          /* English*/
638
              "l n'ya pas de ",          /* French */
638
              "l n'ya pas de ",          /* French */
639
              "Er is geen BTM-222",           /* Dutch  */
639
              "Er is geen BTM-222",           /* Dutch  */
640
          }
640
          }
641
      },
641
      },
642
      { /*CONNECT13*/
642
      { /*CONNECT13*/
643
          21,
643
          21,
644
          {
644
          {
645
              "Modul eingebaut",         /* German */
645
              "Modul eingebaut",         /* German */
646
              "Modul built in",          /* English*/
646
              "Modul built in",          /* English*/
647
              "module intégré BTM222",          /* French */
647
              "module integre BTM222",          /* French */
648
              "module ingebouwd.",       /* Dutch  */
648
              "module ingebouwd.",       /* Dutch  */
649
          }
649
          }
650
      },
650
      },
651
      { /*CONNECT14*/
651
      { /*CONNECT14*/
652
          21,
652
          21,
653
          {
653
          {
654
              " MK-USB Funktion     ",          /* German */
654
              " MK-USB Funktion ",          /* German */
655
              " MK-USB Function     ",          /* English*/
655
              " MK-USB Function ",          /* English*/
656
              " MK-USB fonction     ",          /* French */
656
              " MK-USB fonction ",          /* French */
657
              " MK-USB Functie      ",          /* Dutch  */
657
              " MK-USB Functie  ",          /* Dutch  */
658
          }
658
          }
659
      },
659
      },
660
      { /*CONNECT15*/
660
      { /*CONNECT15*/
661
          21,
661
          21,
662
          {
662
          {
663
              " BT --> Kabel an FC  ",          /* German */
663
              " BT --> Kabel an FC  ",          /* German */
664
              " BT --> Kabel to FC  ",          /* English*/
664
              " BT --> Kabel to FC  ",          /* English*/
665
              " BT --> Cable a  FC  ",          /* French */
665
              " BT --> Cable a  FC  ",          /* French */
666
              " BT --> kabel naar FC",          /* Dutch  */
666
              " BT --> kabel naar FC",          /* Dutch  */
667
          }
667
          }
668
      },
668
      },
669
      { /*CONNECT16*/
669
      { /*CONNECT16*/
670
          21,
670
          21,
671
          {
671
          {
672
              "PC mit BT verb.",          /* German */
672
              "PC mit BT verb.",          /* German */
673
              "connect PC with BT",       /* English*/
673
              "connect PC with BT",       /* English*/
674
              "associer PC a BT",       /* French */
674
              "associer PC a BT",       /* French */
675
              "PC via BT verbonden.",     /* Dutch  */
675
              "PC via BT verbonden.",     /* Dutch  */
676
          }
676
          }
677
      },
677
      },
678
      { /*CONNECT17*/
678
      { /*CONNECT17*/
679
          21,
679
          21,
680
          {
680
          {
681
              "PKT-Kabel an FC",          /* German */
681
              "PKT-Kabel an FC",          /* German */
682
              "PKT-Kabel to FC",          /* English*/
682
              "PKT-Kabel to FC",          /* English*/
683
              "PKT-Cable a FC",          /* French */
683
              "PKT-Cable a FC",          /* French */
684
              "PKT-kabel naar FC",        /* Dutch  */
684
              "PKT-kabel naar FC",        /* Dutch  */
685
          }
685
          }
686
      },
686
      },
687
      { /*CONNECT18*/
687
      { /*CONNECT18*/
688
          21,
688
          21,
689
          {
689
          {
690
              " BT --> Wi.232       ",          /* German */
690
              " BT --> Wi.232       ",          /* German */
691
              " BT --> Wi.232       ",          /* English*/
691
              " BT --> Wi.232       ",          /* English*/
692
              " BT --> Wi.232       ",          /* French */
692
              " BT --> Wi.232       ",          /* French */
693
              " BT --> Wi.232       ",          /* Dutch  */
693
              " BT --> Wi.232       ",          /* Dutch  */
694
          }
694
          }
695
      },
695
      },
696
      { /*CONNECT19*/
696
      { /*CONNECT19*/
697
          21,
697
          21,
698
          {
698
          {
699
              "Wi.232 an FC         ",          /* German */
699
              "Wi.232 an FC         ",          /* German */
700
              "Wi.232 to FC         ",          /* English*/
700
              "Wi.232 to FC         ",          /* English*/
701
              "Wi.232 a FC          ",          /* French */
701
              "Wi.232 a FC          ",          /* French */
702
              "Wi.232 naar FC       ",          /* Dutch  */
702
              "Wi.232 naar FC       ",          /* Dutch  */
703
          }
703
          }
704
      },
704
      },
705
 
705
 
706
      { /*CONNECT20*/
706
      { /*CONNECT20*/
707
          21,
707
          21,
708
          {
708
          {
709
              " USB --> Kabel an FC ",          /* German */
709
              " USB --> Kabel an FC ",          /* German */
710
              " USB --> cable to FC ",          /* English*/
710
              " USB --> cable to FC ",          /* English*/
711
              " USB --> cable a FC  ",          /* French */
711
              " USB --> cable a FC  ",          /* French */
712
              "USB --> kabel naar FC",          /* Dutch  */
712
              "USB --> kabel naar FC",          /* Dutch  */
713
          }
713
          }
714
      },
714
      },
715
      { /*CONNECT21*/
715
      { /*CONNECT21*/
716
          21,
716
          21,
717
          {
717
          {
718
              "PC mit USB verbinden ",          /* German */
718
              "PC mit USB verbinden ",          /* German */
719
              "connect PC with USB  ",          /* English*/
719
              "connect PC with USB  ",          /* English*/
720
              "associer PC a USB    ",          /* French */
720
              "associer PC a USB    ",          /* French */
721
              "Verbind PC met USB   ",          /* Dutch  */
721
              "Verbind PC met USB   ",          /* Dutch  */
722
          }
722
          }
723
      },
723
      },
724
      { /*CONNECT22*/
724
      { /*CONNECT22*/
725
          21,
725
          21,
726
          {
726
          {
727
              " USB --> Wi.232      ",          /* German */
727
              " USB --> Wi.232      ",          /* German */
728
              " USB --> Wi.232      ",          /* English*/
728
              " USB --> Wi.232      ",          /* English*/
729
              " USB --> Wi.232      ",          /* French */
729
              " USB --> Wi.232      ",          /* French */
730
              " USB --> Wi.232      ",          /* Dutch  */
730
              " USB --> Wi.232      ",          /* Dutch  */
731
          }
731
          }
732
      },
732
      },
733
      { /*CONNECT23*/
733
      { /*CONNECT23*/
734
          21,
734
          21,
735
          {
735
          {
736
              "MK-Tool starten",        /* German */
736
              "MK-Tool starten",        /* German */
737
              "start MK-Tool",          /* English*/
737
              "start MK-Tool",          /* English*/
738
              "démarrage MK-Tool",          /* French */
738
              "demarrage MK-Tool",          /* French */
739
              "start MK-Tool",          /* Dutch  */
739
              "start MK-Tool",          /* Dutch  */
740
          }
740
          }
741
      },
741
      },
742
      { /*CONNECT24*/
742
      { /*CONNECT24*/
743
          21,
743
          21,
744
          {
744
          {
745
              " Wi.232 Konfigurieren",          /* German */
745
              " Wi.232 Konfigurieren",          /* German */
746
              " Wi.232 Configuration",          /* English*/
746
              " Wi.232 Configuration",          /* English*/
747
              " Wi.232 configurer   ",          /* French */
747
              " Wi.232 configurer   ",          /* French */
748
              " Wi.232 Configuratie ",          /* Dutch  */
748
              " Wi.232 Configuratie ",          /* Dutch  */
749
          }
749
          }
750
      },
750
      },
751
      { /*CONNECT25*/
751
      { /*CONNECT25*/
752
          21,
752
          21,
753
          {
753
          {
754
              "Programm starten.    ",   /* German */
754
              "Programm starten.    ",   /* German */
755
              "start program ",          /* English*/
755
              "start program ",          /* English*/
756
              "Démarrer le programme",          /* French */
756
              "Démarrer le programme",          /* French */
757
              "start programma.",        /* Dutch  */
757
              "start programma.",        /* Dutch  */
758
          }
758
          }
759
      },
759
      },
760
 
760
 
761
      { /*CONNECT26*/
761
      { /*CONNECT26*/
762
          21,
762
          21,
763
          {
763
          {
764
              "BTM-222 Konfigurieren",          /* German */
764
              "BTM-222 Konfigurieren",          /* German */
765
              "BTM-222 configuration",          /* English*/
765
              "BTM-222 configuration",          /* English*/
766
              "BTM-222 de configura.",          /* French */
766
              "BTM-222 de configura.",          /* French */
767
              "BTM-222 configuratie",           /* Dutch  */
767
              "BTM-222 configuratie",           /* Dutch  */
768
          }
768
          }
769
      },
769
      },
770
      { /*CONNECT27*/
770
      { /*CONNECT27*/
771
          21,
771
          21,
772
          {
772
          {
773
              "FC > MK-USB > BTM-222",          /* German */
773
              "FC > MK-USB > BTM-222",          /* German */
774
              "FC > MK-USB > BTM-222",          /* English*/
774
              "FC > MK-USB > BTM-222",          /* English*/
775
              "FC > MK-USB > BTM-222",          /* French */
775
              "FC > MK-USB > BTM-222",          /* French */
776
              "FC > MK-USB > BTM-222",          /* Dutch  */
776
              "FC > MK-USB > BTM-222",          /* Dutch  */
777
          }
777
          }
778
      },
778
      },
779
      { /*CONNECT28*/
779
      { /*CONNECT28*/
780
          21,
780
          21,
781
          {
781
          {
782
              "MK-USB an PC anschl. ",          /* German */
782
              "MK-USB an PC anschl. ",          /* German */
783
              "connect PC to MK-USB ",          /* English*/
783
              "connect PC to MK-USB ",          /* English*/
784
              "associer PC a MK-USB ",          /* French */
784
              "associer PC a MK-USB ",          /* French */
785
              "Verbind PC met MK-USB",          /* Dutch  */
785
              "Verbind PC met MK-USB",          /* Dutch  */
786
          }
786
          }
787
      },
787
      },
788
      { /*CONNECT29*/
788
      { /*CONNECT29*/
789
          21,
789
          21,
790
          {
790
          {
791
              "Zwischen MK-USB und  ",          /* German */
791
              "Zwischen MK-USB und  ",          /* German */
792
              "connect crossed cable",          /* English*/
792
              "connect crossed cable",          /* English*/
793
              "la connexion entre PC",          /* French */
793
              "la connexion entre PC",          /* French */
794
              "Tussen MK-USB en PKT ",         /* Dutch  */
794
              "Tussen MK-USB en PKT ",         /* Dutch  */
795
          }
795
          }
796
      },
796
      },
797
      { /*CONNECT30*/
797
      { /*CONNECT30*/
798
          21,
798
          21,
799
          {
799
          {
800
              "PKT ein gekreuztes   ",          /* German */
800
              "PKT ein gekreuztes   ",          /* German */
801
              "between MK-USB and   ",          /* English*/
801
              "between MK-USB and   ",          /* English*/
802
              "et FC un câble croisé",          /* French */
802
              "et FC un cable croise",          /* French */
803
              "een gekruiste kabel  ",         /* Dutch  */
803
              "een gekruiste kabel  ",         /* Dutch  */
804
          }
804
          }
805
      },
805
      },
806
      { /*CONNECT31*/
806
      { /*CONNECT31*/
807
          21,
807
          21,
808
          {
808
          {
809
              "Kabel anschliessen.  ",        /* German */
809
              "Kabel anschliessen.  ",        /* German */
810
              "PKT SV2",                      /* English*/
810
              "PKT SV2",                      /* English*/
811
              " ",                      /* French */
811
              " ",                      /* French */
812
              "aansluiten.",                  /* Dutch  */
812
              "aansluiten.",                  /* Dutch  */
813
          }
813
          }
814
      },
814
      },
815
 
815
 
816
 
816
 
817
 
817
 
818
 
818
 
819
 
819
 
820
      { /*Kabel*/
820
      { /*Kabel*/
821
          21,
821
          21,
822
          {
822
          {
823
              "Kabel",           /* German */
823
              "Kabel",           /* German */
824
              "cable",           /* English*/
824
              "cable",           /* English*/
825
              "cable",           /* French */
825
              "cable",           /* French */
826
              "Kabel",           /* Dutch  */
826
              "Kabel",           /* Dutch  */
827
          }
827
          }
828
      },
828
      },
829
      { /*SLAVE*/
829
      { /*SLAVE*/
830
          21,
830
          21,
831
          {
831
          {
832
              "Slave ",          /* German */
832
              "Slave ",          /* German */
833
              "Slave ",          /* English*/
833
              "Slave ",          /* English*/
834
              "esclaves",          /* French */
834
              "esclaves",          /* French */
835
              "Slave ",         /* Dutch  */
835
              "Slave ",         /* Dutch  */
836
          }
836
          }
837
      },
837
      },
838
      { /*NORMAL*/
838
      { /*NORMAL*/
839
          21,
839
          21,
840
          {
840
          {
841
              "Normal",          /* German */
841
              "Normal",          /* German */
842
              "Normal",          /* English*/
842
              "Normal",          /* English*/
843
              "normal",          /* French */
843
              "normal",          /* French */
844
              "Norm. ",         /* Dutch  */
844
              "Norm. ",         /* Dutch  */
845
          }
845
          }
846
      },
846
      },
847
      { /*Reverse*/
847
      { /*Reverse*/
848
          21,
848
          21,
849
          {
849
          {
850
              "Reverse",          /* German */
850
              "Reverse",          /* German */
851
              "inverse",          /* English*/
851
              "inverse",          /* English*/
852
              "inverse",          /* French */
852
              "inverse",          /* French */
853
              "geinver",          /* Dutch  */
853
              "geinver",          /* Dutch  */
854
          }
854
          }
855
      },
855
      },
856
      { /*ENDOK*/
856
      { /*ENDOK*/
857
          21,
857
          21,
858
          {
858
          {
859
              "Ende   OK",           /* German */
859
              "Ende   OK",           /* German */
860
              "End    OK",           /* English*/
860
              "End    OK",           /* English*/
861
              "Fin    OK",           /* French */
861
              "Fin    OK",           /* French */
862
              "Eind   OK",           /* Dutch  */
862
              "Eind   OK",           /* Dutch  */
863
          }
863
          }
864
      },
864
      },
865
      { /*EEPROM1*/
865
      { /*EEPROM1*/
866
           21,
866
           21,
867
           {
867
           {
868
               " EEProm wirklich",       /* German */
868
               " EEProm wirklich",       /* German */
869
               " Realy delete",          /* English*/
869
               " Realy delete",          /* English*/
870
               " eeprom supprimer?",          /* French */
870
               " eeprom supprimer?",          /* French */
871
               " Eeprom werkelijk",      /* Dutch  */
871
               " Eeprom werkelijk",      /* Dutch  */
872
           }
872
           }
873
       },
873
       },
874
       { /*EEPROM2*/
874
       { /*EEPROM2*/
875
           21,
875
           21,
876
           {
876
           {
877
               " löschen?",          /* German */
877
               " löschen?",          /* German */
878
               " EEprom?",           /* English*/
878
               " EEprom?",           /* English*/
879
               "    ",           /* French */
879
               "    ",           /* French */
880
               " wissen?",           /* Dutch  */
880
               " wissen?",           /* Dutch  */
881
           }
881
           }
882
       },
882
       },
883
       { /*DEUTSCH*/
883
       { /*DEUTSCH*/
884
           21,
884
           21,
885
           {
885
           {
886
               "deutsch    ",           /* German */
886
               "deutsch    ",           /* German */
887
               "german     ",           /* English*/
887
               "german     ",           /* English*/
888
               "allemande  ",           /* French */
888
               "allemande  ",           /* French */
889
               "duits      ",           /* Dutch  */
889
               "duits      ",           /* Dutch  */
890
           }
890
           }
891
       },
891
       },
892
       { /*ENGLISCH*/
892
       { /*ENGLISCH*/
893
           21,
893
           21,
894
           {
894
           {
895
               "englisch   ",           /* German */
895
               "englisch   ",           /* German */
896
               "english    ",           /* English*/
896
               "english    ",           /* English*/
897
               "anglaise   ",           /* French */
897
               "anglaise   ",           /* French */
898
               "engels     ",           /* Dutch  */
898
               "engels     ",           /* Dutch  */
899
           }
899
           }
900
       },
900
       },
901
       { /*FRANCE*/
901
       { /*FRANCE*/
902
           21,
902
           21,
903
           {
903
           {
904
               "französisch",           /* German */
904
               "französisch",           /* German */
905
               "french     "  ,           /* English*/
905
               "french     "  ,           /* English*/
906
               "française  ",           /* French */
906
               "française  ",           /* French */
907
               "frans      ",        /* Dutch  */
907
               "frans      ",        /* Dutch  */
908
           }
908
           }
909
       },
909
       },
910
       { /*NETHERL*/
910
       { /*NETHERL*/
911
           21,
911
           21,
912
           {
912
           {
913
               "holländisch",           /* German */
913
               "holländisch",           /* German */
914
               "dutch      ",           /* English*/
914
               "dutch      ",           /* English*/
915
               "hollandaise",           /* French */
915
               "hollandaise",           /* French */
916
               "nederlands ",        /* Dutch  */
916
               "nederlands ",        /* Dutch  */
917
           }
917
           }
918
       },
918
       },
919
       { /*DISPLAY1*/
919
       { /*DISPLAY1*/
920
           21,
920
           21,
921
           {
921
           {
922
               "Anzeige Einstellungen",           /* German */
922
               "Anzeige Einstellungen",           /* German */
923
               " Display Setup       ",           /* English*/
923
               " Display Setup       ",           /* English*/
924
               " d'affichage config. ",           /* French */
924
               " d'affichage config. ",           /* French */
925
               "Display instellingen ",           /* Dutch  */
925
               "Display instellingen ",           /* Dutch  */
926
           }
926
           }
927
       },
927
       },
928
       { /*DISPLAY2*/
928
       { /*DISPLAY2*/
929
           21,
929
           21,
930
           {
930
           {
931
               "Infos bei Start:",           /* German */
931
               "Infos bei Start:",           /* German */
932
               "Info at startup ",           /* English*/
932
               "Info at startup ",           /* English*/
933
               "Inf.au demarrage",           /* French */
933
               "Inf.au demarrage",           /* French */
934
               "Info bij opstart",           /* Dutch  */
934
               "Info bij opstart",           /* Dutch  */
935
           }
935
           }
936
       },
936
       },
937
       { /*DISPLAY3*/
937
       { /*DISPLAY3*/
938
           21,
938
           21,
939
           {
939
           {
940
               "Sprache : ",           /* German */
940
               "Sprache : ",           /* German */
941
               "Language: ",           /* English*/
941
               "Language: ",           /* English*/
942
               "la langue: ",           /* French */
942
               "la langue: ",           /* French */
943
               "Taal: ",               /* Dutch  */
943
               "Taal: ",               /* Dutch  */
944
           }
944
           }
945
       },
945
       },
946
       { /*DISPLAY4*/
946
       { /*DISPLAY4*/
947
            21,
947
            21,
948
            {
948
            {
949
                "Licht aus nach:",          /* German */
949
                "Licht aus nach:",          /* German */
950
                "Light off after:",         /* English*/
950
                "Light off after:",         /* English*/
951
                "Exti.feux p.les:",         /* French */
951
                "Exti.feux p.les:",         /* French */
952
                "Licht uit na:  ",          /* Dutch  */
952
                "Licht uit na:  ",          /* Dutch  */
953
            }
953
            }
954
        },
954
        },
955
        { /*DISPLAY5*/
955
        { /*DISPLAY5*/
956
            21,
956
            21,
957
            {
957
            {
958
                "LCD Helligk.:",          /* German */
958
                "LCD Helligk.:",          /* German */
959
                " Brightness :",          /* English*/
959
                " Brightness :",          /* English*/
960
                " luminosite :",          /* French */
960
                " luminosite :",          /* French */
961
                " intensiteit:",          /* Dutch  */
961
                " intensiteit:",          /* Dutch  */
962
            }
962
            }
963
        },
963
        },
964
        { /*DISPLAY6*/
964
        { /*DISPLAY6*/
965
            21,
965
            21,
966
            {
966
            {
967
                "LCD Kontrast:",           /* German */
967
                "LCD Kontrast:",           /* German */
968
                "LCD contrast:",           /* English*/
968
                "LCD contrast:",           /* English*/
969
                "LCD contrast:",           /* French */
969
                "LCD contrast:",           /* French */
970
                "LCD contrast:",           /* Dutch  */
970
                "LCD contrast:",           /* Dutch  */
971
            }
971
            }
972
        },
972
        },
973
        { /*DISPLAY7*/
973
        { /*DISPLAY7*/
974
            21,
974
            21,
975
            {
975
            {
976
                "LCD Norm/Inv: ",          /* German */
976
                "LCD Norm/Inv: ",          /* German */
977
                "LCD Norm/Inv: ",          /* English*/
977
                "LCD Norm/Inv: ",          /* English*/
978
                "LCD Norm/Inv: ",          /* French */
978
                "LCD Norm/Inv: ",          /* French */
979
                "LCD Norm/Inv: ",          /* Dutch  */
979
                "LCD Norm/Inv: ",          /* Dutch  */
980
            }
980
            }
981
        },
981
        },
982
        { /*DISPLAY8*/
982
        { /*DISPLAY8*/
983
            21,
983
            21,
984
            {
984
            {
985
                "LCD Orient.: ",          /* German */
985
                "LCD Orient.: ",          /* German */
986
                "LCD Orient.: ",          /* English*/
986
                "LCD Orient.: ",          /* English*/
987
                "LCD Orient.: ",           /* French */
987
                "LCD Orient.: ",           /* French */
988
                "LCD Orient.: ",          /* Dutch  */
988
                "LCD Orient.: ",          /* Dutch  */
989
            }
989
            }
990
        },
990
        },
991
 
991
 
992
        { /*DEBUGPKT*/
992
        { /*DEBUGPKT*/
993
            21,
993
            21,
994
            {
994
            {
995
                "Debug PKT",          /* German */
995
                "Debug PKT",          /* German */
996
                "Debug PKT",          /* English*/
996
                "Debug PKT",          /* English*/
997
                "Debug PKT",           /* French */
997
                "Debug PKT",           /* French */
998
                "Debug PKT",          /* Dutch  */
998
                "Debug PKT",          /* Dutch  */
999
            }
999
            }
1000
        },
1000
        },
1001
 
1001
 
1002
        { /*WITXRX*/
1002
        { /*WITXRX*/
1003
            21,
1003
            21,
1004
            {
1004
            {
1005
                "Wi TX/RX Chan:",          /* German */
1005
                "Wi TX/RX Chan:",          /* German */
1006
                "Wi TX/RX Chan:",          /* English*/
1006
                "Wi TX/RX Chan:",          /* English*/
1007
                "Wi TX/RX Chan:",           /* French */
1007
                "Wi TX/RX Chan:",           /* French */
1008
                "Wi TX/RX Chan:",          /* Dutch  */
1008
                "Wi TX/RX Chan:",          /* Dutch  */
1009
            }
1009
            }
1010
        },
1010
        },
1011
        { /*WINETG*/
1011
        { /*WINETG*/
1012
            21,
1012
            21,
1013
            {
1013
            {
1014
                "Wi NetW. Grp.:",          /* German */
1014
                "Wi NetW. Grp.:",          /* German */
1015
                "Wi NetW. Grp.:",          /* English*/
1015
                "Wi NetW. Grp.:",          /* English*/
1016
                "Wi NetW. Grp.:",           /* French */
1016
                "Wi NetW. Grp.:",           /* French */
1017
                "Wi NetW. Grp.:",          /* Dutch  */
1017
                "Wi NetW. Grp.:",          /* Dutch  */
1018
            }
1018
            }
1019
        },
1019
        },
1020
        { /*WINETM*/
1020
        { /*WINETM*/
1021
            21,
1021
            21,
1022
            {
1022
            {
1023
                "Wi NetW. Mode:",          /* German */
1023
                "Wi NetW. Mode:",          /* German */
1024
                "Wi NetW. Mode:",          /* English*/
1024
                "Wi NetW. Mode:",          /* English*/
1025
                "Wi NetW. Mode:",          /* French */
1025
                "Wi NetW. Mode:",          /* French */
1026
                "Wi NetW. Mode:",          /* Dutch  */
1026
                "Wi NetW. Mode:",          /* Dutch  */
1027
            }
1027
            }
1028
        },
1028
        },
1029
 
1029
 
1030
 
1030
 
1031
        { /*WITIMEOUT*/
1031
        { /*WITIMEOUT*/
1032
            21,
1032
            21,
1033
            {
1033
            {
1034
                "Wi TX Timeout:",          /* German */
1034
                "Wi TX Timeout:",          /* German */
1035
                "Wi TX Timeout:",          /* English*/
1035
                "Wi TX Timeout:",          /* English*/
1036
                "Wi TX Timeout:",          /* French */
1036
                "Wi TX Timeout:",          /* French */
1037
                "Wi TX Timeout:",          /* Dutch  */
1037
                "Wi TX Timeout:",          /* Dutch  */
1038
            }
1038
            }
1039
        },
1039
        },
1040
 
1040
 
1041
        { /*WIUART*/
1041
        { /*WIUART*/
1042
            21,
1042
            21,
1043
            {
1043
            {
1044
                "Wi UART MTU   :",          /* German */
1044
                "Wi UART MTU   :",          /* German */
1045
                "Wi UART MTU   :",          /* English*/
1045
                "Wi UART MTU   :",          /* English*/
1046
                "Wi UART MTU   :",          /* French */
1046
                "Wi UART MTU   :",          /* French */
1047
                "Wi UART MTU   :",          /* Dutch  */
1047
                "Wi UART MTU   :",          /* Dutch  */
1048
            }
1048
            }
1049
        },
1049
        },
1050
        { /*WI2321*/
1050
        { /*WI2321*/
1051
            21,
1051
            21,
1052
            {
1052
            {
1053
                "Wi.232 eingebaut:",          /* German */
1053
                "Wi.232 eingebaut:",          /* German */
1054
                "Wi.232 built in :",          /* English*/
1054
                "Wi.232 built in :",          /* English*/
1055
                "Wi.232 intégré  :",          /* French */
1055
                "Wi.232 integre  :",          /* French */
1056
                "Wi.232 ingebouwd:",          /* Dutch  */
1056
                "Wi.232 ingebouwd:",          /* Dutch  */
1057
            }
1057
            }
1058
        },
1058
        },
1059
        { /*WI2322*/
1059
        { /*WI2322*/
1060
            21,
1060
            21,
1061
            {
1061
            {
1062
                "Ist ein Wi.232-Modul ",   /* German */
1062
                "Ist ein Wi.232-Modul ",   /* German */
1063
                "Is Wi232 modul",          /* English*/
1063
                "Is Wi232 modul",          /* English*/
1064
                "est un module ",          /* French */
1064
                "est un module ",          /* French */
1065
                "Is er een Wi.232",        /* Dutch  */
1065
                "Is er een Wi.232",        /* Dutch  */
1066
            }
1066
            }
1067
        },
1067
        },
1068
        { /*WI2323*/
1068
        { /*WI2323*/
1069
            21,
1069
            21,
1070
            {
1070
            {
1071
                "eingebaut?",          /* German */
1071
                "eingebaut?",          /* German */
1072
                "built in?",           /* English*/
1072
                "built in?",           /* English*/
1073
                "integre Wi232?",           /* French */
1073
                "integre Wi232?",           /* French */
1074
                "module ingebouwd?",   /* Dutch  */
1074
                "module ingebouwd?",   /* Dutch  */
1075
            }
1075
            }
1076
        },
1076
        },
1077
        { /*YES*/
1077
        { /*YES*/
1078
            21,
1078
            21,
1079
            {
1079
            {
1080
                "Ja  ",          /* German */
1080
                "Ja  ",          /* German */
1081
                "yes ",          /* English*/
1081
                "yes ",          /* English*/
1082
                "oui ",          /* French */
1082
                "oui ",          /* French */
1083
                "Ja  ",          /* Dutch  */
1083
                "Ja  ",          /* Dutch  */
1084
            }
1084
            }
1085
        },
1085
        },
1086
        { /*NO*/
1086
        { /*NO*/
1087
            21,
1087
            21,
1088
            {
1088
            {
1089
                "Nein",          /* German */
1089
                "Nein",          /* German */
1090
                "no  ",          /* English*/
1090
                "no  ",          /* English*/
1091
                "non ",          /* French */
1091
                "non ",          /* French */
1092
                "Nee ",          /* Dutch  */
1092
                "Nee ",          /* Dutch  */
1093
            }
1093
            }
1094
        },
1094
        },
1095
        { /*BT1*/
1095
        { /*BT1*/
1096
            21,
1096
            21,
1097
            {
1097
            {
1098
                "BTM222 eingebaut:",          /* German */
1098
                "BTM222 eingebaut:",          /* German */
1099
                "BTM222 built in :",          /* English*/
1099
                "BTM222 built in :",          /* English*/
1100
                "BTM222 integre  :",          /* French */
1100
                "BTM222 integre  :",          /* French */
1101
                "BTM222 ingebouwd:",          /* Dutch  */
1101
                "BTM222 ingebouwd:",          /* Dutch  */
1102
            }
1102
            }
1103
        },
1103
        },
1104
        { /*BT2*/
1104
        { /*BT2*/
1105
            21,
1105
            21,
1106
            {
1106
            {
1107
                "Ist ein BTM-222-Modul",      /* German */
1107
                "Ist ein BTM-222-Modul",      /* German */
1108
                "Is BTM-222 Modul",           /* English*/
1108
                "Is BTM-222 Modul",           /* English*/
1109
                "est un module ",           /* French */
1109
                "est un module ",           /* French */
1110
                "Is er een BTM-222",          /* Dutch  */
1110
                "Is er een BTM-222",          /* Dutch  */
1111
            }
1111
            }
1112
        },
1112
        },
1113
        { /*BT3*/
1113
        { /*BT3*/
1114
            21,
1114
            21,
1115
            {
1115
            {
1116
                "eingebaut?",          /* German */
1116
                "eingebaut?",          /* German */
1117
                "built in?",           /* English*/
1117
                "built in?",           /* English*/
1118
                "integre BTM222?",           /* French */
1118
                "integre BTM222?",           /* French */
1119
                "module ingebouwd?",   /* Dutch  */
1119
                "module ingebouwd?",   /* Dutch  */
1120
            }
1120
            }
1121
        },
1121
        },
1122
 
1122
 
1123
        { /*LIPO1*/
1123
        { /*LIPO1*/
1124
            21,
1124
            21,
1125
            {
1125
            {
1126
                " PKT Akku Einstellung",          /* German */
1126
                " PKT Akku Einstellung",          /* German */
1127
                " PKT Accu Setup      ",          /* English*/
1127
                " PKT Accu Setup      ",          /* English*/
1128
                " PKT Accu Setup      ",          /* French */
1128
                " PKT Accu Setup      ",          /* French */
1129
                " PKT Accu Setup      ",          /* Dutch  */
1129
                " PKT Accu Setup      ",          /* Dutch  */
1130
            }
1130
            }
1131
        },
1131
        },
1132
        { /*LIPO2*/
1132
        { /*LIPO2*/
1133
            21,
1133
            21,
1134
            {
1134
            {
1135
                "PKT Akkutyp: ",           /* German */
1135
                "PKT Akkutyp: ",           /* German */
1136
                "PKT Accutyp: ",           /* English*/
1136
                "PKT Accutyp: ",           /* English*/
1137
                "PKT Accutyp: ",           /* French */
1137
                "PKT Accutyp: ",           /* French */
1138
                "PKT Accutype: ",          /* Dutch  */
1138
                "PKT Accutype: ",          /* Dutch  */
1139
            }
1139
            }
1140
        },
1140
        },
1141
        { /*LIPO3*/
1141
        { /*LIPO3*/
1142
            21,
1142
            21,
1143
            {
1143
            {
1144
                "Akku U Offset: ",           /* German */
1144
                "Akku U Offset: ",           /* German */
1145
                "Accu U Offset: ",           /* English*/
1145
                "Accu U Offset: ",           /* English*/
1146
                "Accu U Offset: ",           /* French */
1146
                "Accu U Offset: ",           /* French */
1147
                "Accu U Offset: ",           /* Dutch  */
1147
                "Accu U Offset: ",           /* Dutch  */
1148
            }
1148
            }
1149
        },
1149
        },
1150
        { /*LIPO4*/
1150
        { /*LIPO4*/
1151
            21,
1151
            21,
1152
            {
1152
            {
1153
                "PKT Akkutyp: ",           /* German */
1153
                "PKT Akkutyp: ",           /* German */
1154
                "PKT Accutyp: ",           /* English*/
1154
                "PKT Accutyp: ",           /* English*/
1155
                "PKT Accutyp: ",           /* French */
1155
                "PKT Accutyp: ",           /* French */
1156
                "PKT Accutype: ",          /* Dutch  */
1156
                "PKT Accutype: ",          /* Dutch  */
1157
            }
1157
            }
1158
        },
1158
        },
1159
        { /*LIPO5*/
1159
        { /*LIPO5*/
1160
            21,
1160
            21,
1161
            {
1161
            {
1162
                "Offset verstellen bis",         /* German */
1162
                "Offset verstellen bis",         /* German */
1163
                "adjust offset until",           /* English*/
1163
                "adjust offset until",           /* English*/
1164
                "Decalage l'ajuster ",           /* French */
1164
                "Decalage l'ajuster ",           /* French */
1165
                "Offset afregelen tot",          /* Dutch  */
1165
                "Offset afregelen tot",          /* Dutch  */
1166
            }
1166
            }
1167
        },
1167
        },
1168
        { /*LIPO6*/
1168
        { /*LIPO6*/
1169
            21,
1169
            21,
1170
            {
1170
            {
1171
                "die Spannung passt",     /* German */
1171
                "die Spannung passt",     /* German */
1172
                "voltage fits",           /* English*/
1172
                "voltage fits",           /* English*/
1173
                "a la tension",           /* French */
1173
                "a la tension",           /* French */
1174
                "de spanning juist is.",  /* Dutch  */
1174
                "de spanning juist is.",  /* Dutch  */
1175
            }
1175
            }
1176
        },
1176
        },
1177
        { /*LOWBAT*/
1177
        { /*LOWBAT*/
1178
            21,
1178
            21,
1179
            {
1179
            {
1180
                "LowBat Warn V:",          /* German */
1180
                "LowBat Warn V:",          /* German */
1181
                "LowBat Warn V:",          /* English*/
1181
                "LowBat Warn V:",          /* English*/
1182
                "LowBat Warn V:",          /* French */
1182
                "LowBat Warn V:",          /* French */
1183
                "LowBat alarm :",      /* Dutch  */
1183
                "LowBat alarm :",      /* Dutch  */
1184
            }
1184
            }
1185
        },
1185
        },
1186
        { /*OSD_V, vorne*/
1186
        { /*OSD_V, vorne*/
1187
            21,
1187
            21,
1188
            {
1188
            {
1189
                "V",          /* German */
1189
                "V",          /* German */
1190
                "F",          /* English*/
1190
                "F",          /* English*/
1191
                "L",          /* French */
1191
                "L",          /* French */
1192
                "F",      /* Dutch  */
1192
                "F",      /* Dutch  */
1193
            }
1193
            }
1194
        },
1194
        },
1195
 
1195
 
1196
        { /*OSD_H, hinten*/
1196
        { /*OSD_H, hinten*/
1197
            21,
1197
            21,
1198
            {
1198
            {
1199
                "H",          /* German */
1199
                "H",          /* German */
1200
                "B",          /* English*/
1200
                "B",          /* English*/
1201
                "D",          /* French */
1201
                "D",          /* French */
1202
                "A",      /* Dutch  */
1202
                "A",      /* Dutch  */
1203
            }
1203
            }
1204
        },
1204
        },
1205
        { /*OSD_L, links*/
1205
        { /*OSD_L, links*/
1206
            21,
1206
            21,
1207
            {
1207
            {
1208
                "L",          /* German */
1208
                "L",          /* German */
1209
                "L",          /* English*/
1209
                "L",          /* English*/
1210
                "G",          /* French */
1210
                "G",          /* French */
1211
                "L",      /* Dutch  */
1211
                "L",      /* Dutch  */
1212
            }
1212
            }
1213
        },
1213
        },
1214
 
1214
 
1215
        { /*OSD_R, rechts*/
1215
        { /*OSD_R, rechts*/
1216
            21,
1216
            21,
1217
            {
1217
            {
1218
                "R",          /* German */
1218
                "R",          /* German */
1219
                "R",          /* English*/
1219
                "R",          /* English*/
1220
                "D",          /* French */
1220
                "D",          /* French */
1221
                "R",      /* Dutch  */
1221
                "R",      /* Dutch  */
1222
            }
1222
            }
1223
        },
1223
        },
1224
 
1224
 
1225
        { /*OSD_ERROR*/
1225
        { /*OSD_ERROR*/
1226
            21,
1226
            21,
1227
            {
1227
            {
1228
                "FEHLER: Datenverlust ",          /* German */
1228
                "FEHLER: Datenverlust ",          /* German */
1229
                "ERROR: Data lost",          /* English*/
1229
                "ERROR: Data lost",          /* English*/
1230
                "perte de données",          /* French */
1230
                "perte de donnees",          /* French */
1231
                "verlies van gegevens ",      /* Dutch  */
1231
                "verbinding verbroken ",      /* Dutch  */
1232
            }
1232
            }
1233
        },
1233
        },
1234
        { /*OSD_POS1*/
1234
        { /*OSD_POS1*/
1235
            21,
1235
            21,
1236
            {
1236
            {
1237
                "Letzte bekannte",          /* German */
1237
                "Letzte bekannte",          /* German */
1238
                "Last known ",          /* English*/
1238
                "Last known ",          /* English*/
1239
                "Dernière position",          /* French */
1239
                "Derniere position",          /* French */
1240
                "Laatst bekende",      /* Dutch  */
1240
                "Laatst bekende",      /* Dutch  */
1241
            }
1241
            }
1242
        },
1242
        },
1243
 
1243
 
1244
        { /*OSD_POS2*/
1244
        { /*OSD_POS2*/
1245
            21,
1245
            21,
1246
            {
1246
            {
1247
                "Position gespeichert",          /* German */
1247
                "Position ",          /* German */
1248
                "position saved",          /* English*/
1248
                "position ",          /* English*/
1249
                "connue sauvé",          /* French */
1249
                "",          /* French */
1250
                "positie gered",      /* Dutch  */
1250
                "positie ",      /* Dutch  */
1251
            }
1251
            }
1252
        },
1252
        },
1253
        { /*PARA_SETTINGS*/
1253
        { /*PARA_SETTINGS*/
1254
            21,
1254
            21,
1255
            {
1255
            {
1256
                " Einstellungen x     ",          /* German */
1256
                " Einstellungen x     ",          /* German */
1257
                " Setting x           ",          /* English*/
1257
                " Setting x           ",          /* English*/
1258
                " Paramètres x        ",          /* French */
1258
                " Parametres x        ",          /* French */
1259
                " Instellingen x      ",      /* Dutch  */
1259
                " Instellingen x      ",      /* Dutch  */
1260
            }
1260
            }
1261
        },
1261
        },
1262
        { /*PARA_CHANGE*/
1262
        { /*PARA_CHANGE*/
1263
            21,
1263
            21,
1264
            {
1264
            {
1265
                "ändern",          /* German */
1265
                "ändern",          /* German */
1266
                "change",          /* English*/
1266
                "change",          /* English*/
1267
                "le changement",          /* French */
1267
                "le changement",          /* French */
1268
                "verandering",      /* Dutch  */
1268
                "verandering",      /* Dutch  */
1269
            }
1269
            }
1270
        },
1270
        },
1271
 
1271
 
1272
        { /*PARA_AKTIVI*/
1272
        { /*PARA_AKTIVI*/
1273
            21,
1273
            21,
1274
            {
1274
            {
1275
                "aktivieren",          /* German */
1275
                "aktivieren",          /* German */
1276
                "activate",          /* English*/
1276
                "activate",          /* English*/
1277
                "activer",          /* French */
1277
                "activer",          /* French */
1278
                "activeren",      /* Dutch  */
1278
                "activeren",      /* Dutch  */
1279
            }
1279
            }
1280
        },
1280
        },
1281
 
1281
 
1282
        { /*PARA_AKTIV*/
1282
        { /*PARA_AKTIV*/
1283
            21,
1283
            21,
1284
            {
1284
            {
1285
                "aktiviert",          /* German */
1285
                "aktiviert",          /* German */
1286
                "activated",          /* English*/
1286
                "activated",          /* English*/
1287
                "activée",          /* French */
1287
                "activee",          /* French */
1288
                "geactiveerd",      /* Dutch  */
1288
                "geactiveerd",      /* Dutch  */
1289
            }
1289
            }
1290
        },
1290
        },
1291
        { /*PARA_SAVESETT*/
1291
        { /*PARA_SAVESETT*/
1292
            21,
1292
            21,
1293
            {
1293
            {
1294
                " Setting x speichern?",          /* German */
1294
                " Setting x speichern?",          /* German */
1295
                " store setting?",          /* English*/
1295
                " store setting?",          /* English*/
1296
                " Réglage magasin?",          /* French */
1296
                " Reglage magasin?",          /* French */
1297
                " instell.op te slaan?",      /* Dutch  */
1297
                " instell.op te slaan?",      /* Dutch  */
1298
            }
1298
            }
1299
        },
1299
        },
1300
 
1300
 
1301
        { /*PARA_SETTSAVED*/
1301
        { /*PARA_SETTSAVED*/
1302
            21,
1302
            21,
1303
            {
1303
            {
1304
                "Gespeichert und",          /* German */
1304
                "Gespeichert und",          /* German */
1305
                "stored and",          /* English*/
1305
                "stored and",          /* English*/
1306
                "stockés et",          /* French */
1306
                "stockes et",          /* French */
1307
                "opgeslagen en",      /* Dutch  */
1307
                "opgeslagen en",      /* Dutch  */
1308
            }
1308
            }
1309
        },
1309
        },
1310
        { /*PARA_COPY*/
1310
        { /*PARA_COPY*/
1311
            21,
1311
            21,
1312
            {
1312
            {
1313
                "Kopiere Setting",          /* German */
1313
                "Kopiere Setting",          /* German */
1314
                "copy settings",          /* English*/
1314
                "copy settings",          /* English*/
1315
                "paramètres de copie",          /* French */
1315
                "parametres de copie",          /* French */
1316
                "kopieer instel.",      /* Dutch  */
1316
                "kopieer instel.",      /* Dutch  */
1317
            }
1317
            }
1318
        },
1318
        },
1319
        { /*PARA_FROMTO*/
1319
        { /*PARA_FROMTO*/
1320
            21,
1320
            21,
1321
            {
1321
            {
1322
                " von  x  nach  y",          /* German */
1322
                " von  x  nach  y",          /* German */
1323
                " from x to y",          /* English*/
1323
                " from x to y",          /* English*/
1324
                " des x après y",          /* French */
1324
                " des x apres y",          /* French */
1325
                " van x na y",      /* Dutch  */
1325
                " van x na y",      /* Dutch  */
1326
            }
1326
            }
1327
        },
1327
        },
1328
 
1328
 
1329
        { /*PARA_ENDE*/
1329
        { /*PARA_ENDE*/
1330
            21,
1330
            21,
1331
            {
1331
            {
1332
                "von   nach  Ende   OK",          /* German */
1332
                "von   nach  Ende   OK",          /* German */
1333
                "from  to    end    OK",          /* English*/
1333
                "from  to    end    OK",          /* English*/
1334
                "des   après fin    OK",          /* French */
1334
                "des   apres fin    OK",          /* French */
1335
                "van   na    einde  OK",      /* Dutch  */
1335
                "van   na    einde  OK",      /* Dutch  */
1336
            }
1336
            }
1337
        },
1337
        },
1338
        { /*PARA_COPYQ*/
1338
        { /*PARA_COPYQ*/
1339
             21,
1339
             21,
1340
             {
1340
             {
1341
                 "Wirklich kopieren?",          /* German */
1341
                 "Wirklich kopieren?",          /* German */
1342
                 "really copy?",          /* English*/
1342
                 "really copy?",          /* English*/
1343
                 "vraiment copie?",          /* French */
1343
                 "vraiment copie?",          /* French */
1344
                 "echt kopie?",      /* Dutch  */
1344
                 "echt kopie?",      /* Dutch  */
1345
             }
1345
             }
1346
         },
1346
         },
1347
 
1347
 
1348
         { /*PARA_COPYACTIV*/
1348
         { /*PARA_COPYACTIV*/
1349
              21,
1349
              21,
1350
              {
1350
              {
1351
                  "Kopiert und aktiviert",          /* German */
1351
                  "Kopiert und aktiviert",          /* German */
1352
                  "copied and activated ",          /* English*/
1352
                  "copied and activated ",          /* English*/
1353
                  "copies et actifs",          /* French */
1353
                  "copies et actifs",          /* French */
1354
                  "Kopieën en actief",      /* Dutch  */
1354
                  "Kopieën en actief",      /* Dutch  */
1355
              }
1355
              }
1356
          },
1356
          },
1357
 
1357
 
1358
          { /*PARA_CHANGESETT*/
1358
          { /*PARA_CHANGESETT*/
1359
               21,
1359
               21,
1360
               {
1360
               {
1361
                   "Ändere Einstellungen ",          /* German */
1361
                   "Ändere Einstellungen ",          /* German */
1362
                   "   change settings   ",          /* English*/
1362
                   "   change settings   ",          /* English*/
1363
                   "modifier les réglages",          /* French */
1363
                   "modifier les reglages",          /* French */
1364
                   "instellingen wijzigen",      /* Dutch  */
1364
                   "instellingen wijzigen",      /* Dutch  */
1365
               }
1365
               }
1366
           },
1366
           },
1367
 
1367
 
1368
           { /*PARA_SELECT*/
1368
           { /*PARA_SELECT*/
1369
                21,
1369
                21,
1370
                {
1370
                {
1371
                    " Wähle Parameter     ",          /* German */
1371
                    " Wähle Parameter     ",          /* German */
1372
                    " select parameters   ",          /* English*/
1372
                    " select parameters   ",          /* English*/
1373
                    "sélectionnez Paramèt.",          /* French */
1373
                    "selectionnez Paramet.",          /* French */
1374
                    "Selecteer Parameters ",      /* Dutch  */
1374
                    "Selecteer Parameters ",      /* Dutch  */
1375
                }
1375
                }
1376
            },
1376
            },
1377
            { /*PARA_SEITE*/
1377
            { /*PARA_SEITE*/
1378
                 21,
1378
                 21,
1379
                 {
1379
                 {
1380
                     " Wähle Seite         ",          /* German */
1380
                     " Wähle Seite         ",          /* German */
1381
                     "     select page     ",          /* English*/
1381
                     "     select page     ",          /* English*/
1382
                     "Sélectionnez la page ",          /* French */
1382
                     "Selectionnez la page ",          /* French */
1383
                     "  Selecteer pagina   ",      /* Dutch  */
1383
                     "  Selecteer pagina   ",      /* Dutch  */
1384
                 }
1384
                 }
1385
             },
1385
             },
1386
             { /*PARA_SELSETT*/
1386
             { /*PARA_SELSETT*/
1387
                  21,
1387
                  21,
1388
                  {
1388
                  {
1389
                      " Wähle Setting:      ",          /* German */
1389
                      " Wähle Setting:      ",          /* German */
1390
                      "  select setting     ",          /* English*/
1390
                      "  select setting     ",          /* English*/
1391
                      "Sélectionnez setting ",          /* French */
1391
                      "Selectionnez setting ",          /* French */
1392
                      "  Selecteer setting  ",      /* Dutch  */
1392
                      "  Selecteer setting  ",      /* Dutch  */
1393
                  }
1393
                  }
1394
              },
1394
              },
1395
 
1395
 
1396
 
1396
 
1397
 
1397
 
1398
 
1398
 
1399
 
1399
 
1400
//---------, ,
1400
//---------, ,
1401
//-----------------
1401
//-----------------
1402
};
1402
};
1403
 
1403
 
1404
char const * strGet(int str_no)
1404
char const * strGet(int str_no)
1405
{
1405
{
1406
    return strings[str_no].text[DisplayLanguage];
1406
    return strings[str_no].text[DisplayLanguage];
1407
}
1407
}
1408
 
1408
 
1409
 
1409
 
1410
 
1410
 
1411
 
1411
 
1412
void Test_Language (void)   // bleibt für Tests
1412
void Test_Language (void)   // bleibt für Tests
1413
{
1413
{
1414
        lcd_cls();
1414
        lcd_cls();
1415
        lcd_printp_at(12, 7, PSTR("Ende"), 0);
1415
        lcd_printp_at(12, 7, PSTR("Ende"), 0);
1416
 
1416
 
1417
 
1417
 
1418
        do
1418
        do
1419
        {
1419
        {
1420
            lcd_puts_at(1, 2, strGet(BOOT_WI1), 0);
1420
            lcd_puts_at(1, 2, strGet(BOOT_WI1), 0);
1421
//            lcd_printp_at(1, 2, strGet(BOOT_WI1), 0);
1421
//            lcd_printp_at(1, 2, strGet(BOOT_WI1), 0);
1422
 
1422
 
1423
        }
1423
        }
1424
        while(!get_key_press (1 << KEY_ESC));
1424
        while(!get_key_press (1 << KEY_ESC));
1425
        get_key_press(KEY_ALL);
1425
        get_key_press(KEY_ALL);
1426
        return;
1426
        return;
1427
}
1427
}
1428
 
1428
 
1429
 
1429
 
1430
 
1430
 
1431
 
1431
 
1432
 
1432
 
1433
 
1433
 
1434
 
1434
 
1435
 
1435
 
1436
 
1436
 
1437
 
1437
 
1438
 
1438
 
1439
 
1439
 
1440
 
1440
 
1441
 
1441
 
1442
 
1442
 
1443
 
1443
 
1444
 
1444
 
1445
 
1445
 
1446
 
1446
 
1447
 
1447
 
1448
 
1448
 
1449
 
1449
 
1450
 
1450
 
1451
 
1451
 
1452
 
1452