vdr/i18n.c

621 lines
12 KiB
C
Raw Normal View History

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