summaryrefslogtreecommitdiff
path: root/i18n.c
blob: 8991526447d10a5090a6c68414cf051e126eb714 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
/*
 * i18n.c: Internationalization
 *
 * See the main source file 'vdr.c' for copyright information and
 * how to reach the author.
 *
 * $Id: i18n.c 1.13 2001/02/18 13:14:00 kls Exp $
 *
 * Slovenian translations provided by Miha Setina <mihasetina@softhome.net>
 * Italian   translations provided by Alberto Carraro <bertocar@tin.it>
 *
 */

/*
 * How to add a new language:
 *
 * 1. Announce your translation action on the Linux-DVB mailing
 *    list to avoid duplicate work.
 * 2. Increase the value of 'NumLanguages'.
 * 3. Insert a new line in every member of the 'Phrases[]' array,
 *    containing the translated text for the new language.
 *    For example, assuming you want to add the Italian language,
 *
 *       { "English",
 *         "Deutsch",
 *       },
 *
 *    would become
 *
 *       { "English",
 *         "Deutsch",
 *         "Italiano",
 *       },
 *
 *    and so on. Append your language after the last existing language
 *    and write the name of your language in your language (not in English,
 *    which means that it should be 'Italiano', not 'Italian').
 *    Note that only the characters defined in 'fontosd.c' will
 *    be available!
 * 4. Compile VDR and test the new language by switching to it
 *    in the "Setup" menu.
 * 5. Send the modified 'i18n.c' file to <kls@cadsoft.de> to have
 *    it included in the next version of VDR.
 */

#include "i18n.h"
#include <stdio.h>
#include "config.h"
#include "tools.h"

const int NumLanguages = 4;

typedef const char *tPhrase[NumLanguages];

const tPhrase Phrases[] = {
  // The name of the language (this MUST be the first phrase!):
  { "English",
    "Deutsch",
    "Slovenski",
    "Italiano",
  },
  // Menu titles:
  { "Main",
    "Hauptmenü",
    "Glavni meni",
    "Principale",
  },
  { "Schedule",
    "Programm",
    "Urnik",
    "Programmi",
  },
  { "Channels",
    "Kanäle",
    "Kanali",
    "Canali",
  },
  { "Timers",
    "Timer",
    "Termini",
    "Timer",
  },
  { "Recordings",
    "Aufzeichnungen",
    "Posnetki",
    "Registrazioni",
  },
  { "Setup",
    "Einstellungen",
    "Nastavitve",
    "Opzioni",
  },
  { "Commands",
    "Befehle",
    "Ukazi",
    "Comandi",
  },
  { "Edit Channel",
    "Kanal Editieren",
    "Uredi kanal",
    "Modifica canale",
  },
  { "Edit Timer",
    "Timer Editieren",
    "Uredi termin",
    "Modifica Timer",
  },
  { "Event",
    "Sendung",
    "Oddaja",
    "Eventi",
  },
  { "Summary",
    "Inhalt",
    "Vsebina",
    "Sommario",
  },
  { "Schedule - %s",
    "Programm - %s",
    "Urnik - %s",
    "Programma - %s",
  },
  { "What's on now?",
    "Was läuft jetzt?",
    "Kaj je na sporedu?",
    "In programmazione",
  },
  { "What's on next?",
    "Was läuft als nächstes?",
    "Kaj sledi?",
    "Prossimi programmi",
  },
  // Button texts (must not be more than 10 characters!):
  { "Edit",
    "Editieren",
    "Uredi",
    "Modifica",
  },
  { "New",
    "Neu",
    "Novo",
    "Nuovo",
  },
  { "Delete",
    "Löschen",
    "Odstrani",
    "Cancella",
  },
  { "Mark",
    "Markieren",
    "Oznaci",
    "Marca",
  },
  { "Record",
    "Aufnehmen",
    "Posnemi",
    "Registra",
  },
  { "Play",
    "Wiedergabe",
    "Predavajaj",
    "Riproduci",
  },
  { "Rewind",
    "Anfang",
    "Zacetek",
    "Da inizio",
  },
  { "Resume",
    "Weiter",
    "Nadaljuj",
    "Riprendi",
  },
  { "Summary",
    "Inhalt",
    "Vsebina",
    "Sommario",
  },
  { "Switch",
    "Umschalten",
    "Preklopi",
    "Cambia",
  },
  { "Now",
    "Jetzt",
    "Sedaj",
    "Adesso",
  },
  { "Next",
    "Nächste",
    "Naslednji",
    "Prossimo",
  },
  { "Schedule",
    "Programm",
    "Urnik",
    "Programma",
  },
  // Confirmations:
  { "Delete channel?",
    "Kanal löschen?",
    "Odstrani kanal?",
    "Cancello il canale?",
  },
  { "Delete timer?",
    "Timer löschen?",
    "Odstani termin?",
    "Cancello il timer?",
  },
  { "Delete recording?",
    "Aufzeichnung löschen?",
    "Odstrani posnetek?",
    "Cancello la registrazione?",
  },
  { "Stop recording?",
    "Aufzeichnung beenden?",
    "Koncaj snemanje?",
    "Fermo la registrazione?",
  },
  { "Cancel editing?",
    "Schneiden abbrechen?",
    "Zelite prekiniti urejanje?",
    "Annullo la modifica?",
  },
  // Channel parameters:
  { "Name",
    "Name",
    "Naziv",
    "Nome",
  },
  { "Frequency",
    "Frequenz",
    "Frekvenca",
    "Frequenza",
  },
  { "Polarization",
    "Polarisation",
    "Polarizacija",
    "Polarizzazione",
  },
  { "Diseqc",
    "Diseqc",
    "Diseqc",
    "Diseqc",
  },
  { "Srate",
    "Srate",
    "Srate",
    "Srate",
  },
  { "Vpid",
    "Vpid",
    "Vpid",
    "Vpid",
  },
  { "Apid",
    "Apid",
    "Apid",
    "Apid",
  },
  { "Tpid",
    "Tpid",
    "Tpid",
    "Tpid",
  },
  { "CA",
    "CA",
    "CA",
    "CA",
  },
  { "Pnr",
    "Pnr",
    "Pnr",
    "Pnr",
  },
  // Timer parameters:
  { "Active",
    "Aktiv",
    "Aktivno",
    "Attivo",
  },
  { "Channel",
    "Kanal",
    "Kanal",
    "Canale",
  },
  { "Day",
    "Tag",
    "Dan",
    "Giorno",
  },
  { "Start",
    "Anfang",
    "Zacetek",
    "Inizio",
  },
  { "Stop",
    "Ende",
    "Konec",
    "Fine",
  },
  { "Priority",
    "Priorität",
    "Prioriteta",
    "Priorita",
  },
  { "Lifetime",
    "Lebensdauer",
    "Veljavnost",
    "Durata",
  },
  { "File",
    "Datei",
    "Datoteka",
    "Nome",
  },
  // Error messages:
  { "Channel is being used by a timer!",
    "Kanal wird von einem Timer benutzt!",
    "Urnik zaseda kanal!",
    "Canale occupato da un timer!",
  },
  { "Can't switch channel!",
    "Kanal kann nicht umgeschaltet werden!",
    "Ne morem preklopiti kanala!",
    "Impossibile cambiare canale!",
  },
  { "Timer is recording!",
    "Timer zeichnet gerade auf!",
    "Snemanje po urniku!",
    "Registrazione di un timer in corso!",
  },
  { "Error while deleting recording!",
    "Fehler beim Löschen der Aufzeichnung!",
    "Napaka pri odstranjevanju posnetka!",
    "Errore durante la canc del filmato!",
  },
  { "*** Invalid Channel ***",
    "*** Ungültiger Kanal ***",
    "*** Neznan kanal ***",
    "*** CANALE INVALIDO ***",
  },
  { "No free DVB device to record!",
    "Keine freie DVB-Karte zum Aufnehmen!",
    "Ni proste DVB naprave za snemanje!",
    "Nessuna card DVB disp per registrare!",
  },
  { "Channel locked (recording)!",
    "Kanal blockiert (zeichnet auf)!",
    "Zaklenjen kanal (snemanje)!",
    "Canale bloccato (in registrazione)!",
  },
  { "Can't start editing process!",
    "Schnitt kann nicht gestartet werden!",
    "Ne morem zaceti urejanja!",
    "Imposs iniziare processo di modifica",
  },
  { "Editing process already active!",
    "Schnitt bereits aktiv!",
    "Urejanje je ze aktivno!",
    "Processo di modifica gia` attivo",
  },
  // Setup parameters:
  { "OSD-Language",
    "OSD-Sprache",
    "OSD-jezik",
    "Linguaggio OSD",
  },
  { "PrimaryDVB",
    "Primäres Interface",
    "Primarna naprava",
    "Scheda DVB primaria",
  },
  { "ShowInfoOnChSwitch",
    "Info zeigen",
    "Pokazi naziv kanala",
    "Vis info nel cambio canale",
  },
  { "MenuScrollPage",
    "Seitenweise scrollen",
    "Drsni meni",
    "Scrolla pagina nel menu",
  },
  { "MarkInstantRecord",
    "Direktaufz. markieren",
    "Oznaci direktno snemanje",
    "Marca la registrazione",
  },
  { "LnbFrequLo",
    "Untere LNB-Frequenz",
    "Spodnja LNB-frek.",
    "Freq LO LNB",
  },
  { "LnbFrequHi",
    "Obere LNB-Frequenz",
    "Zgornja LNB-frek.",
    "Freq HI LNB",
  },
  { "SetSystemTime",
    "Systemzeit stellen",
    "Sistemski cas",
    "Setta orario auto",
  },
  { "MarginStart",
    "Zeitpuffer bei Anfang",
    "Premor pred zacetkom",
    "Min margine inizio",
  },
  { "MarginStop",
    "Zeitpuffer bei Ende",
    "Premor za koncem",
    "Min margine fine",
  },
  { "EPGScanTimeout",
    "Zeit bis EPG Scan",
    "Cas do EPG pregleda",
    "Timeout EPG",
  },
  { "SVDRPTimeout",
    "SVDRP Timeout",
    "", // TODO
    "Timeout SVDRP",
  },
  // The days of the week:
  { "MTWTFSS",
    "MDMDFSS",
    "PTSCPSN",
    "DLMMGVS",
  },
  // Learning keys:
  { "Learning Remote Control Keys",
    "Fernbedienungs-Codes lernen",
    "Ucim se kod upravljalca",
    "Apprendimento tasti unita` remota",
  },
  { "Phase 1: Detecting RC code type",
    "Phase 1: FB Code feststellen",
    "Faza 1: Sprejemanje IR kode",
    "Fase 1: tipo ricevitore RC",
  },
  { "Press any key on the RC unit",
    "Eine Taste auf der FB drücken",
    "Pritisnite tipko na upravljalcu",
    "Premere un tasto nell'unita` RC",
  },
  { "RC code detected!",
    "FB Code erkannt!",
    "IR koda sprejeta!",
    "Codice RC rilevato!",
  },
  { "Do not press any key...",
    "Keine Taste drücken...",
    "Ne pritiskajte tipk...",
    "Non premere alcun tasto...",
  },
  { "Phase 2: Learning specific key codes",
    "Phase 2: Einzelne Tastencodes lernen",
    "Faza 2: Ucenje posebnih kod",
    "Fase 2: Codici specifici dei tasti",
  },
  { "Press key for '%s'",
    "Taste für '%s' drücken",
    "Pritisnite tipko za '%s'",
    "Premere il tasto per '%s'",
  },
  { "Press 'Up' to confirm",
    "'Auf' drücken zum Bestätigen",
    "Pritisnite tipko 'Gor' za potrditev",
    "Premere 'Su' per confermare",
  },
  { "Press 'Down' to continue",
    "'Ab' drücken zum Weitermachen",
    "Pritisnite tipko 'Dol' za nadaljevanje",
    "Premere 'Giu' per confermare",
  },
  { "(press 'Up' to go back)",
    "('Auf' drücken um zurückzugehen)",
    "(pritisnite 'Gor' za nazaj)",
    "(premere 'Su' per tornare indietro)",
  },
  { "(press 'Down' to end key definition)",
    "('Ab' drücken zum Beenden",
    "(pritisnite 'Dol' za konec)",
    "('Giu' per finire la definiz tasti)",
  },
  { "Phase 3: Saving key codes",
    "Phase 3: Codes abspeichern",
    "Faza 3: Shranjujem kodo",
    "Fase 3: Salvataggio key codes",
  },
  { "Press 'Up' to save, 'Down' to cancel",
    "'Auf' speichert, 'Ab' bricht ab",
    "'Gor' za potrditev, 'Dol' za prekinitev",
    "'Su' per salvare, 'Giu' per annullare",
  },
  // Key names:
  { "Up",
    "Auf",
    "Gor",
    "Su",
  },
  { "Down",
    "Ab",
    "Dol",
    "Giu",
  },
  { "Menu",
    "Menü",
    "Meni",
    "Menu",
  },
  { "Ok",
    "Ok",
    "Ok",
    "Ok",
  },
  { "Back",
    "Zurück",
    "Nazaj",
    "Indietro",
  },
  { "Left",
    "Links",
    "Levo",
    "Sinistra",
  },
  { "Right",
    "Rechts",
    "Desno",
    "Destra",
  },
  { "Red",
    "Rot",
    "Rdeca",
    "Rosso",
  },
  { "Green",
    "Grün",
    "Zelena",
    "Verde",
  },
  { "Yellow",
    "Gelb",
    "Rumena",
    "Giallo",
  },
  { "Blue",
    "Blau",
    "Modra",
    "Blu",
  },
  // Miscellaneous:
  { "yes",
    "ja",
    "da",
    "si",
  },
  { "no",
    "nein",
    "ne",
    "no",
  },
  { "Stop replaying",
    "Wiedergabe beenden",
    "Prekini ponavljanje",
    "Interrompi riproduzione",
  },
  { "Stop recording ", // note the trailing blank!
    "Aufzeichnung beenden ",
    "Prekini shranjevanje ",
    "Interrompi registrazione ",
  },
  { "Cancel editing",
    "Schneiden abbrechen",
    "Prekini urejanje",
    "Annulla modifiche",
  },
  { "Switching primary DVB...",
    "Primäres Interface wird umgeschaltet...",
    "Preklapljanje primarne naprave...",
    "Cambio su card DVB primaria...",
  },
  { "Up/Dn for new location - OK to move",
    "Auf/Ab für neue Position - dann OK",
    "Gor/Dol za novo poz. - Ok za premik",
    "Su/Giu per nuova posizione - OK per muovere",
  },
  { "Editing process started",
    "Schnitt gestartet",
    "Urejanje se je zacelo",
    "Processo di modifica iniziato",
  },
  { NULL }
  };

const char *tr(const char *s)
{
  if (Setup.OSDLanguage) {
     for (const tPhrase *p = Phrases; **p; p++) {
         if (strcmp(s, **p) == 0) {
            const char *t = (*p)[Setup.OSDLanguage];
            if (t && *t)
               return t;
            }
         }
     esyslog(LOG_ERR, "no translation found for '%s' in language %d (%s)\n", s, Setup.OSDLanguage, Phrases[0][Setup.OSDLanguage]);
     }
  return s;
}

const char * const * Languages(void)
{
  return &Phrases[0][0];
}