vdr/i18n.c

3827 lines
87 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.
*
2003-09-11 13:51:56 +02:00
* $Id: i18n.c 1.134 2003/09/11 13:51:56 kls Exp $
2000-11-19 09:27:15 +01:00
*
2002-05-09 16:26:56 +02:00
* Translations provided by:
*
* Slovenian Miha Setina <mihasetina@softhome.net> and Matjaz Thaler <matjaz.thaler@guest.arnes.si>
2003-05-27 15:38:42 +02:00
* Italian Alberto Carraro <bertocar@tin.it> and Antonio Ospite <ospite@studenti.unina.it>
2003-09-11 13:51:56 +02:00
* Dutch Arnold Niessen <niessen@iae.nl> <arnold.niessen@philips.com> and Hans Dingemans <hans.dingemans@tacticalops.nl>
2002-05-09 16:26:56 +02:00
* Portuguese Paulo Lopes <pmml@netvita.pt>
2003-05-24 10:26:36 +02:00
* French Jean-Claude Repetto <jc@repetto.org>, Olivier Jacques <jacquesolivier@hotmail.com> and Gregoire Favre <greg@magma.unil.ch>
2002-05-09 16:26:56 +02:00
* Norwegian J<EFBFBD>rgen Tvedt <pjtvedt@online.no> and Truls Slevigen <truls@slevigen.no>
2003-05-24 11:00:26 +02:00
* Finnish Hannu Savolainen <hannu@opensound.com>, Jaakko Hyv<EFBFBD>tti <jaakko@hyvatti.iki.fi>, Niko Tarnanen <niko.tarnanen@hut.fi> and Rolf Ahrenberg <rahrenbe@cc.hut.fi>
2002-05-09 16:26:56 +02:00
* Polish Michael Rakowski <mrak@gmx.de>
* Spanish Ruben Nunez Francisco <ruben.nunez@tang-it.com>
* Greek Dimitrios Dimitrakos <mail@dimitrios.de>
2003-01-26 11:48:30 +01:00
* Swedish Tomas Prybil <tomas@prybil.se> and Jan Ekholm <chakie@infa.abo.fi>
2002-06-10 16:18:50 +02:00
* Romanian Paul Lacatus <paul@campina.iiruc.ro>
2002-06-22 09:30:06 +02:00
* Hungarian Istvan Koenigsberger <istvnko@hotmail.com> and Guido Josten <guido.josten@t-online.de>
* Catalanian Marc Rovira Vall <tm05462@salleURL.edu>, Ramon Roca <ramon.roca@xcombo.com> and Jordi Vil<EFBFBD> <jvila@tinet.org>
2000-11-19 09:27:15 +01:00
*
2000-11-11 10:39:27 +01:00
*/
/*
* How to add a new language:
*
2002-05-09 16:26:56 +02:00
* 1. Announce your translation action on the VDR mailing
2000-11-11 10:39:27 +01:00
* list to avoid duplicate work.
2002-05-09 16:26:56 +02:00
* 2. Increase the value of 'I18nNumLanguages' in 'i18n.h'.
* 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
2002-05-09 16:26:56 +02:00
* in the "Setup/OSD" menu.
2000-11-11 10:39:27 +01:00
* 5. Send the modified 'i18n.c' file to <kls@cadsoft.de> to have
* it included in the next version of VDR.
*
* In case an English phrase is used in more than one context (and might need
* different translations in other languages) it can be preceeded with an
* arbitrary string to describe its context, separated from the actual phrase
* by a '$' character (see for instance "Button$Stop" vs. "Stop").
* Of course this means that no English phrase may contain the '$' character!
* If this should ever become necessary, the existing '$' would have to be
* replaced with something different...
2000-11-11 10:39:27 +01:00
*/
#include "i18n.h"
#include "config.h"
#include "tools.h"
2002-05-09 16:26:56 +02:00
const tI18nPhrase Phrases[] = {
2000-11-11 10:39:27 +01:00
// 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",
2001-03-31 09:58:14 +02:00
"Nederlands",
2002-03-22 14:30:41 +01:00
"Portugu<EFBFBD>s",
2001-07-22 09:36:49 +02:00
"Fran<EFBFBD>ais",
2001-07-24 16:00:54 +02:00
"Norsk",
2003-08-26 15:23:38 +02:00
"suomi", // this is not a typo - it's really lowercase!
2002-04-01 11:38:27 +02:00
"Polski",
2002-04-06 09:51:08 +02:00
"Espa<EFBFBD>ol",
2002-05-01 10:35:01 +02:00
"Ellinika",
2002-05-26 09:43:17 +02:00
"Svenska",
2002-06-10 16:18:50 +02:00
"Romaneste",
2002-06-22 09:30:06 +02:00
"Magyar",
2003-05-16 13:04:52 +02:00
"Catal<EFBFBD>",
2000-11-11 10:39:27 +01:00
},
// Menu titles:
{ "VDR",
"VDR",
"VDR",
"VDR",
"VDR",
"VDR",
"VDR",
"VDR",
"VDR",
2002-04-01 11:38:27 +02:00
"VDR",
2002-04-06 09:51:08 +02:00
"VDR",
2002-05-01 10:35:01 +02:00
"VDR",
2002-05-26 09:43:17 +02:00
"VDR",
2002-06-10 16:18:50 +02:00
"VDR",
2002-06-22 09:30:06 +02:00
"VDR",
2003-05-16 13:04:52 +02:00
"VDR",
2000-11-11 10:39:27 +01:00
},
{ "Schedule",
"Programm",
2003-05-25 09:51:59 +02:00
"Program",
2001-01-06 16:17:39 +01:00
"Programmi",
2001-03-31 09:58:14 +02:00
"Gids",
2002-03-22 14:30:41 +01:00
"Programa<EFBFBD><EFBFBD>o",
2001-07-22 09:36:49 +02:00
"Programmes",
2001-07-24 16:00:54 +02:00
"Programmer",
2003-05-24 11:00:26 +02:00
"Ohjelmisto",
2002-04-01 11:38:27 +02:00
"Program",
2003-05-16 13:04:52 +02:00
"Gu<EFBFBD>a de Programaci<63>n",
2002-05-01 10:35:01 +02:00
"Programma",
2002-05-26 09:43:17 +02:00
"Program",
2002-06-10 16:18:50 +02:00
"Program",
2002-06-22 09:30:06 +02:00
"Program",
2003-05-16 13:04:52 +02:00
"Guia de Programaci<63>",
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",
2001-03-31 09:58:14 +02:00
"Kanalen",
2002-03-22 14:30:41 +01:00
"Canais",
2001-07-22 09:36:49 +02:00
"Cha<EFBFBD>nes",
2001-07-24 16:00:54 +02:00
"Kanaler",
2002-02-09 17:20:19 +01:00
"Kanavat",
2002-04-01 11:38:27 +02:00
"Kanaly",
2002-04-06 09:51:08 +02:00
"Canales",
2002-05-01 10:35:01 +02:00
"Kanalia",
2002-05-26 09:43:17 +02:00
"Kanaler",
2002-06-10 16:18:50 +02:00
"Canale",
2002-06-22 09:30:06 +02:00
"Csatorn<EFBFBD>k",
2003-05-16 13:04:52 +02:00
"Canals",
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",
2001-03-31 09:58:14 +02:00
"Timers",
2002-03-22 14:30:41 +01:00
"Timers",
2001-07-22 09:36:49 +02:00
"Programmation",
2002-03-31 16:32:04 +02:00
"Timere",
2002-02-09 17:20:19 +01:00
"Ajastin",
2002-04-01 11:38:27 +02:00
"Timery",
2002-04-06 09:51:08 +02:00
"Timer",
2002-05-01 10:35:01 +02:00
"Programmatismos",
2002-05-26 09:43:17 +02:00
"Timers",
2002-06-10 16:18:50 +02:00
"Timere",
2002-06-22 09:30:06 +02:00
"Felv<EFBFBD>tel beprogramoz<6F>sa",
2003-05-16 13:04:52 +02:00
"Temporitzadors",
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",
2001-03-31 09:58:14 +02:00
"Opnames",
2002-03-22 14:30:41 +01:00
"Grava<EFBFBD><EFBFBD>es",
2001-07-22 09:36:49 +02:00
"Enregistrements",
2001-07-24 16:00:54 +02:00
"Opptak",
2003-05-24 11:00:26 +02:00
"Tallenteet",
2002-04-01 11:38:27 +02:00
"Nagrania",
2002-04-06 09:51:08 +02:00
"Grabaciones",
2002-05-01 10:35:01 +02:00
"Egrafes",
2002-05-26 09:43:17 +02:00
"Inspelningar",
2002-06-10 16:18:50 +02:00
"Inregistrari",
2002-06-22 09:30:06 +02:00
"Felvett ad<61>sok",
2003-05-16 13:04:52 +02:00
"Veure programes gravats",
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",
2001-03-31 09:58:14 +02:00
"Instellingen",
2001-06-22 15:19:57 +02:00
"Configurar",
2001-07-22 09:36:49 +02:00
"Configuration",
2001-07-24 16:00:54 +02:00
"Konfigurasjon",
2002-02-09 17:20:19 +01:00
"Asetukset",
2002-04-01 11:38:27 +02:00
"Nastawy",
2002-04-06 09:51:08 +02:00
"Configuraci<EFBFBD>n",
2002-05-01 10:35:01 +02:00
"Rithmisis",
2002-05-26 09:43:17 +02:00
"Inst<EFBFBD>llningar",
2002-06-10 16:18:50 +02:00
"Setari",
2002-06-22 09:30:06 +02:00
"Be<EFBFBD>ll<EFBFBD>t<EFBFBD>sok",
2003-05-16 13:04:52 +02:00
"Configuraci<EFBFBD>",
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",
2001-03-31 09:58:14 +02:00
"Commando's",
2001-06-22 15:19:57 +02:00
"Comandos",
2001-07-22 09:36:49 +02:00
"Commandes",
2001-07-24 16:00:54 +02:00
"Kommandoer",
2002-02-09 17:20:19 +01:00
"Komennot",
2002-04-01 11:38:27 +02:00
"Rozkazy",
2002-04-06 09:51:08 +02:00
"<EFBFBD>rdenes",
2002-05-01 10:35:01 +02:00
"Entoles",
2002-05-26 09:43:17 +02:00
"Kommandon",
2002-06-10 16:18:50 +02:00
"Comenzi",
2002-06-22 09:30:06 +02:00
"Parancsok",
2003-05-16 13:04:52 +02:00
"Ordres",
2000-11-11 16:38:41 +01:00
},
2002-10-13 12:14:49 +02:00
{ "Recording commands",
"Befehle f<>r Aufzeichnungen",
2003-05-25 09:51:59 +02:00
"Ukazi za snemanje",
2003-05-27 15:38:42 +02:00
"Comandi di Registrazione",
2003-09-11 13:51:56 +02:00
"Opname commando's",
2002-10-13 12:14:49 +02:00
"",// TODO
2003-05-24 10:26:36 +02:00
"Commandes d'enregistrement",
2002-10-13 12:14:49 +02:00
"",// TODO
2003-05-24 11:00:26 +02:00
"Tallennuskomennot",
2003-05-31 09:35:45 +02:00
"Rozkazy Nagran",
2003-05-16 13:04:52 +02:00
"<EFBFBD>rdenes de grabaci<63>n",
2003-05-31 09:09:45 +02:00
"Entoles gia egrafes",
2003-01-26 11:48:30 +01:00
"Inspelningskommandon",
2002-10-13 12:14:49 +02:00
"",// TODO
2003-06-06 15:43:49 +02:00
"Parancsok a felvett filmekhez",
2003-05-16 13:04:52 +02:00
"Ordres de gravaci<63>",
2002-10-13 12:14:49 +02:00
},
2002-04-06 09:51:08 +02: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",
2001-03-31 09:58:14 +02:00
"Kanaal aanpassen",
2002-04-06 09:51:08 +02:00
"Modificar canal",
2001-07-22 09:36:49 +02:00
"Modifier une cha<68>ne",
2002-04-06 09:51:08 +02:00
"Editer kanal",
2002-02-09 17:20:19 +01:00
"Muokkaa kanavaa",
2002-04-06 09:51:08 +02:00
"Ustawienie kanalu",
"Modificar canal",
2003-03-30 10:06:20 +02:00
"Prosarmogi kanaliou",
2002-05-26 09:43:17 +02:00
"<EFBFBD>ndra kanal",
2002-06-10 16:18:50 +02:00
"Editare canale",
2002-06-22 09:30:06 +02:00
"Csatorn<EFBFBD>k be<62>ll<6C>t<EFBFBD>sa",
2003-05-16 13:04:52 +02:00
"Editar canal",
2000-11-11 10:39:27 +01:00
},
2002-04-06 09:51:08 +02:00
{ "Edit timer",
"Timer editieren",
2000-11-19 09:27:15 +01:00
"Uredi termin",
2002-04-06 09:51:08 +02:00
"Modifica timer",
2001-03-31 09:58:14 +02:00
"Timer veranderen",
2002-04-06 09:51:08 +02:00
"Modificar timer",
2001-07-22 09:36:49 +02:00
"Changer la programmation",
2002-04-06 09:51:08 +02:00
"Editer timer",
2003-05-24 11:00:26 +02:00
"Muokkaa ajastinta",
2002-04-06 09:51:08 +02:00
"Ustawienie timerow",
"Modificar timer",
2003-03-30 10:06:20 +02:00
"Prosarmogi Programmatismou",
2002-05-26 09:43:17 +02:00
"<EFBFBD>ndra timer",
2002-06-10 16:18:50 +02:00
"Editare timere",
2002-06-22 09:30:06 +02:00
"Felv<EFBFBD>tel beprogramoz<6F>s<EFBFBD>nak megv<67>ltoztat<61>sa",
2003-05-16 13:04:52 +02:00
"Editar temporitzador",
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",
2001-03-31 09:58:14 +02:00
"Uitzending",
2001-06-22 15:19:57 +02:00
"Evento",
2001-08-08 16:43:43 +02:00
"Ev<EFBFBD>nement",
2002-02-09 17:20:19 +01:00
"Hendelse",
"Tapahtuma",
2002-04-01 11:38:27 +02:00
"Audycja",
2002-04-06 09:51:08 +02:00
"Evento",
2002-05-01 10:35:01 +02:00
"Ekpompi",
2002-05-26 09:43:17 +02:00
"S<EFBFBD>ndning",
2002-06-10 16:18:50 +02:00
"Evenimente",
2002-06-22 09:30:06 +02:00
"Ad<EFBFBD>s",
"Esdeveniment",
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",
2001-03-31 09:58:14 +02:00
"Inhoud",
2001-06-22 15:19:57 +02:00
"Resumo",
2001-07-22 09:36:49 +02:00
"R<EFBFBD>sum<EFBFBD>",
2001-07-24 16:00:54 +02:00
"Sammendrag",
"Tiedot",
2002-04-01 11:38:27 +02:00
"Zawartosc",
2002-04-06 09:51:08 +02:00
"Res<EFBFBD>men",
2002-05-01 10:35:01 +02:00
"Periexomeno",
2003-05-24 14:04:45 +02:00
"Sammanfattning",
2002-06-10 16:18:50 +02:00
"Cuprins",
2002-06-22 09:30:06 +02:00
"Tartalom",
2003-05-16 13:04:52 +02:00
"Sinopsi",
2000-11-11 10:39:27 +01:00
},
{ "Schedule - %s",
"Programm - %s",
2003-05-25 09:51:59 +02:00
"Program - %s",
2001-01-06 16:17:39 +01:00
"Programma - %s",
2001-03-31 09:58:14 +02:00
"Programma - %s",
2001-06-22 15:19:57 +02:00
"Programa - %s",
2001-07-22 09:36:49 +02:00
"Programmes - %s",
2001-07-24 16:00:54 +02:00
"Program Guide - %s",
2003-05-24 11:00:26 +02:00
"Ohjelmisto - %s",
2002-04-01 11:38:27 +02:00
"Program - %s",
2002-04-06 09:51:08 +02:00
"Programa - %s",
2002-05-04 14:44:32 +02:00
"Programma - %s",
2002-05-26 09:43:17 +02:00
"Program - %s",
2002-06-10 16:18:50 +02:00
"Program - %s",
2002-06-22 09:30:06 +02:00
"Program - %s",
2003-05-16 13:04:52 +02:00
"Guia de Programaci<63> - %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",
2001-03-31 09:58:14 +02:00
"Wat is er nu?",
2002-03-22 14:30:41 +01:00
"Programa actual?",
2001-07-22 09:36:49 +02:00
"Programmes en cours",
2001-07-24 16:00:54 +02:00
"Hvilket program sendes n<>?",
2003-05-24 11:00:26 +02:00
"Menossa nyt",
2002-04-01 11:38:27 +02:00
"Program biezacy",
2002-04-06 09:51:08 +02:00
"<EFBFBD>Qu<EFBFBD> hay ahora?",
2003-03-30 10:06:20 +02:00
"Trexon Programma",
2002-05-26 09:43:17 +02:00
"Vilket program s<>nds nu?",
2002-06-10 16:18:50 +02:00
"Programul actual?",
2002-06-22 09:30:06 +02:00
"Mi megy most?",
"Qu<EFBFBD> fan ara?",
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",
2001-03-31 09:58:14 +02:00
"Wat komt er hierna?",
2002-03-22 14:30:41 +01:00
"Pr<EFBFBD>ximo Programa?",
2001-07-22 09:36:49 +02:00
"Prochains programmes",
2001-07-24 16:00:54 +02:00
"Hvilket program er neste?",
2003-05-24 11:00:26 +02:00
"Tulossa seuraavaksi",
2002-04-01 11:38:27 +02:00
"Program nastepny",
2002-04-06 09:51:08 +02:00
"<EFBFBD>Qu<EFBFBD> hay proximo?",
2003-03-30 10:06:20 +02:00
"Epomeno Programma",
2002-05-26 09:43:17 +02:00
"Vilket <20>r n<>sta program?",
2002-06-10 16:18:50 +02:00
"Programul urmator?",
2002-06-22 09:30:06 +02:00
"Mi k<>vetkezik?",
"Qu<EFBFBD> fan despr<70>s?",
2000-11-11 10:39:27 +01:00
},
2001-08-03 14:18:08 +02:00
// Button texts (should not be more than 10 characters!):
2000-11-11 10:39:27 +01:00
{ "Edit",
"Editieren",
2000-11-19 09:27:15 +01:00
"Uredi",
2001-01-06 16:17:39 +01:00
"Modifica",
2001-03-31 09:58:14 +02:00
"Verander",
2001-06-22 15:19:57 +02:00
"Modificar",
2001-07-22 09:36:49 +02:00
"Modifier",
2001-07-24 16:00:54 +02:00
"Editer",
2003-05-24 11:00:26 +02:00
"Muokkaa",
2002-04-01 11:38:27 +02:00
"Edycja",
2002-04-06 09:51:08 +02:00
"Modificar",
2002-05-04 14:44:32 +02:00
"Prosarmogi",
2002-05-26 09:43:17 +02:00
"<EFBFBD>ndra",
2002-06-10 16:18:50 +02:00
"Modificare",
2002-06-22 09:30:06 +02:00
"Be<EFBFBD>ll<EFBFBD>tani",
2003-05-16 13:04:52 +02:00
"Editar",
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",
2001-03-31 09:58:14 +02:00
"Nieuw",
2001-06-22 15:19:57 +02:00
"Novo",
2001-07-22 09:36:49 +02:00
"Nouveau",
2001-07-24 16:00:54 +02:00
"Ny",
2002-02-09 17:20:19 +01:00
"Uusi",
2002-04-01 11:38:27 +02:00
"Nowy",
2002-04-06 09:51:08 +02:00
"Nuevo",
2002-05-01 10:35:01 +02:00
"Neo",
2002-05-26 09:43:17 +02:00
"Ny",
2002-06-10 16:18:50 +02:00
"Nou",
2002-06-22 09:30:06 +02:00
"<EFBFBD>j",
2003-05-16 13:04:52 +02:00
"Nou",
2000-11-11 10:39:27 +01:00
},
{ "Delete",
"L<EFBFBD>schen",
2003-05-25 09:51:59 +02:00
"Izbrisi",
2001-01-06 16:17:39 +01:00
"Cancella",
2001-03-31 09:58:14 +02:00
"Verwijder",
2001-06-22 15:19:57 +02:00
"Apagar",
2001-07-22 09:36:49 +02:00
"Supprimer",
2001-07-24 16:00:54 +02:00
"Slett",
2002-02-09 17:20:19 +01:00
"Poista",
2002-04-01 11:38:27 +02:00
"Usunac",
2002-04-06 09:51:08 +02:00
"Borrar",
2003-03-30 10:06:20 +02:00
"Diagrafi",
2002-05-26 09:43:17 +02:00
"Ta bort",
2002-06-10 16:18:50 +02:00
"Sterge",
2002-06-22 09:30:06 +02:00
"T<EFBFBD>r<EFBFBD>lni",
2003-05-16 13:04:52 +02:00
"Esborrar",
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",
2001-03-31 09:58:14 +02:00
"Verplaats",
2001-06-22 15:19:57 +02:00
"Marcar",
2001-07-22 09:36:49 +02:00
"Marquer",
2001-07-24 16:00:54 +02:00
"Marker",
"Siirr<EFBFBD>",
2002-04-01 11:38:27 +02:00
"Zaznaczyc",
2002-04-06 09:51:08 +02:00
"Marcar",
2003-03-30 10:06:20 +02:00
"Epilogi",
2002-05-26 09:43:17 +02:00
"M<EFBFBD>rk",
2002-06-10 16:18:50 +02:00
"Marcheaza",
2002-06-22 09:30:06 +02:00
"Megjel<EFBFBD>lni",
2003-05-16 13:04:52 +02:00
"Marcar",
2000-11-11 10:39:27 +01:00
},
{ "On/Off",
"Ein/Aus",
2002-03-31 15:55:29 +02:00
"Vklop/Izklop",
2002-03-29 16:20:39 +01:00
"On/Off",
2002-03-22 13:58:50 +01:00
"Aan/Uit",
2002-03-22 14:30:41 +01:00
"On/Off",
2002-03-03 16:39:54 +01:00
"Marche/Arr",
2002-03-31 16:32:04 +02:00
"Av/P<>",
2002-03-22 13:32:42 +01:00
"P<EFBFBD><EFBFBD>ll<EFBFBD>/Pois",
2002-04-01 11:38:27 +02:00
"Zal./ Wyl.",
2002-04-06 09:51:08 +02:00
"On/Off",
2003-03-30 10:06:20 +02:00
"Anoixto/Kleisto",
2002-05-26 09:43:17 +02:00
"P<EFBFBD>/Av",
2002-06-10 16:18:50 +02:00
"Pornit/Oprit",
2002-06-22 09:30:06 +02:00
"Be/Ki",
2003-05-16 13:04:52 +02:00
"On/Off",
},
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",
2001-03-31 09:58:14 +02:00
"Opnemen",
2001-06-22 15:19:57 +02:00
"Gravar",
2001-07-22 09:36:49 +02:00
"Enregistre",
2001-07-24 16:00:54 +02:00
"Ta opp",
2003-05-24 11:00:26 +02:00
"Tallenna",
2002-04-01 11:38:27 +02:00
"Nagrywac",
2002-04-06 09:51:08 +02:00
"Grabar",
2002-05-01 10:35:01 +02:00
"Egrafi",
2002-05-26 09:43:17 +02:00
"Inspelning",
2002-06-10 16:18:50 +02:00
"Inregistrare",
2002-06-22 09:30:06 +02:00
"Felvenni",
2003-05-16 13:04:52 +02:00
"Gravar",
2000-11-11 10:39:27 +01:00
},
{ "Play",
"Wiedergabe",
2003-05-25 09:51:59 +02:00
"Predvajaj",
2001-01-06 16:17:39 +01:00
"Riproduci",
2001-03-31 09:58:14 +02:00
"Afspelen",
2001-06-22 15:19:57 +02:00
"Play",
2001-07-22 09:36:49 +02:00
"Lire",
2001-07-24 16:00:54 +02:00
"Spill av",
2002-02-09 17:20:19 +01:00
"Toista",
2002-04-01 11:38:27 +02:00
"Odtwarzac",
2002-04-06 09:51:08 +02:00
"Play",
2003-03-30 10:06:20 +02:00
"Anaparagogi",
2002-05-26 09:43:17 +02:00
"Spela upp",
2002-06-10 16:18:50 +02:00
"Redare",
2002-06-22 09:30:06 +02:00
"Lej<EFBFBD>tszani",
2003-05-16 13:04:52 +02:00
"Reproduir",
2000-11-11 10:39:27 +01:00
},
{ "Rewind",
"Anfang",
2003-05-25 09:51:59 +02:00
"Na zacetek",
2001-02-13 17:11:44 +01:00
"Da inizio",
2002-03-22 13:58:50 +01:00
"Naar begin",
2001-06-22 15:19:57 +02:00
"Rebobinar",
2001-07-22 09:36:49 +02:00
"Retour",
2001-07-24 16:00:54 +02:00
"Spol tilbake",
2003-05-24 11:00:26 +02:00
"Alkuun",
2002-04-01 11:38:27 +02:00
"Poczatek",
2002-04-06 09:51:08 +02:00
"Rebobinar",
2002-05-01 10:35:01 +02:00
"Arxi",
2002-05-26 09:43:17 +02:00
"<EFBFBD>terspolning",
2002-06-10 16:18:50 +02:00
"Inapoi",
2002-06-22 09:30:06 +02:00
"Vissza az elej<65>re",
2003-05-16 13:04:52 +02:00
"Enrera",
},
{ "Button$Stop",
"Beenden",
2002-03-31 15:55:29 +02:00
"Ustavi",
2002-03-29 16:20:39 +01:00
"Stop",
2002-03-22 13:58:50 +01:00
"Eindigen",
2002-03-22 14:30:41 +01:00
"Parar",
2002-03-23 10:26:55 +01:00
"Arr<EFBFBD>t",
2002-03-31 16:32:04 +02:00
"Stopp",
"Lopeta",
2002-04-01 11:38:27 +02:00
"Zakonczyc",
2002-04-06 09:51:08 +02:00
"Parar",
2002-05-01 10:35:01 +02:00
"Terma",
2002-05-26 09:43:17 +02:00
"Stopp",
2002-06-10 16:18:50 +02:00
"Stop",
2002-06-22 09:30:06 +02:00
"Stop",
"Aturar",
},
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",
2001-03-31 09:58:14 +02:00
"Verder",
2001-06-22 15:19:57 +02:00
"Continuar",
2001-07-22 09:36:49 +02:00
"Reprendre",
2001-07-24 16:00:54 +02:00
"Fortsett",
2002-02-09 17:20:19 +01:00
"Jatka",
2002-04-01 11:38:27 +02:00
"Dalej",
2002-04-06 09:51:08 +02:00
"Continuar",
2002-05-01 10:35:01 +02:00
"Sinexia",
2002-05-26 09:43:17 +02:00
"Forts<EFBFBD>tt",
2002-06-10 16:18:50 +02:00
"Reia",
2002-06-22 09:30:06 +02:00
"Tov<EFBFBD>bb",
2003-05-16 13:04:52 +02:00
"Continuar",
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",
2001-03-31 09:58:14 +02:00
"Inhoud",
2001-06-22 15:19:57 +02:00
"Resumo",
2001-07-22 09:36:49 +02:00
"R<EFBFBD>sum<EFBFBD>",
2001-07-24 16:00:54 +02:00
"Sammendrag",
2002-02-09 17:20:19 +01:00
"Yhteenveto",
2002-04-01 11:38:27 +02:00
"Zawartosc",
2002-04-06 09:51:08 +02:00
"Resumen",
2002-05-01 10:35:01 +02:00
"Periexomeno",
2003-05-24 14:04:45 +02:00
"Sammanfattning",
2002-06-10 16:18:50 +02:00
"Cuprins",
2002-06-22 09:30:06 +02:00
"Tartalom",
2003-05-16 13:04:52 +02:00
"Resum",
2000-11-11 10:39:27 +01:00
},
{ "Open",
"<EFBFBD>ffnen",
2002-03-31 15:55:29 +02:00
"Odpri",
2002-03-29 16:20:39 +01:00
"Apri",
2002-03-22 13:58:50 +01:00
"Openen",
2002-03-22 14:30:41 +01:00
"Abrir",
2002-03-03 16:39:54 +01:00
"Ouvrir",
2002-03-31 16:32:04 +02:00
"<EFBFBD>pne",
2002-02-09 17:20:19 +01:00
"Avaa",
2002-04-01 11:38:27 +02:00
"Otworzyc",
2002-04-06 09:51:08 +02:00
"Abrir",
2002-05-01 10:35:01 +02:00
"Anigma",
2002-05-26 09:43:17 +02:00
"<EFBFBD>ppna",
2002-06-10 16:18:50 +02:00
"Deschide",
2002-06-22 09:30:06 +02:00
"Kinyitni",
2003-05-16 13:04:52 +02:00
"Obrir",
},
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",
2001-03-31 09:58:14 +02:00
"Selecteer",
2001-06-22 15:19:57 +02:00
"Seleccionar",
2001-07-22 09:36:49 +02:00
"Regarder",
2001-07-24 16:00:54 +02:00
"Skift til",
2002-02-09 17:20:19 +01:00
"Valitse",
2002-04-01 11:38:27 +02:00
"Przelaczyc",
2002-04-06 09:51:08 +02:00
"Cambiar",
2002-05-01 10:35:01 +02:00
"Alagi",
2002-05-26 09:43:17 +02:00
"Byt",
2002-06-10 16:18:50 +02:00
"Schimba",
2002-06-22 09:30:06 +02:00
"<EFBFBD>tkapcsolni",
2003-05-16 13:04:52 +02:00
"Canviar",
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",
2001-03-31 09:58:14 +02:00
"Nu",
2001-06-22 15:19:57 +02:00
"Agora",
2001-07-22 09:36:49 +02:00
"Maintenant",
2001-07-24 16:00:54 +02:00
"N<EFBFBD>",
2002-02-09 17:20:19 +01:00
"Nyt",
2002-04-01 11:38:27 +02:00
"Teraz",
2002-04-06 09:51:08 +02:00
"Ahora",
2002-05-01 10:35:01 +02:00
"Tora",
2002-05-26 09:43:17 +02:00
"Nu",
2002-06-10 16:18:50 +02:00
"Acum",
2002-06-22 09:30:06 +02:00
"Most",
2003-05-16 13:04:52 +02:00
"Ara",
2000-11-11 10:39:27 +01:00
},
{ "Next",
"N<EFBFBD>chste",
2003-05-25 09:51:59 +02:00
"Sledi",
2001-01-06 16:17:39 +01:00
"Prossimo",
2001-03-31 09:58:14 +02:00
"Hierna",
2001-06-22 15:19:57 +02:00
"Proximo",
2001-07-22 09:36:49 +02:00
"Apr<EFBFBD>s",
2001-07-24 16:00:54 +02:00
"Neste",
"Seuraavaksi",
2002-04-01 11:38:27 +02:00
"Nastepny",
2002-04-06 09:51:08 +02:00
"Siguiente",
2002-05-01 10:35:01 +02:00
"Epomeno",
2002-05-26 09:43:17 +02:00
"N<EFBFBD>sta",
2002-06-10 16:18:50 +02:00
"Urmator",
2002-06-22 09:30:06 +02:00
"K<EFBFBD>vetkez<EFBFBD>",
2003-05-16 13:04:52 +02:00
"Seg<EFBFBD>ent",
2000-11-11 10:39:27 +01:00
},
{ "Button$Schedule",
2000-11-11 10:39:27 +01:00
"Programm",
2003-05-25 09:51:59 +02:00
"Program",
2001-01-06 16:17:39 +01:00
"Programma",
2001-03-31 09:58:14 +02:00
"Programma",
2002-03-22 14:30:41 +01:00
"Programa<EFBFBD><EFBFBD>o",
2001-07-22 09:36:49 +02:00
"Programme",
2001-07-24 16:00:54 +02:00
"Programmer",
2002-02-09 17:20:19 +01:00
"Ohjelmisto",
2002-04-01 11:38:27 +02:00
"Program",
2002-04-06 09:51:08 +02:00
"Programa",
2002-05-01 10:35:01 +02:00
"Programma",
2002-05-26 09:43:17 +02:00
"Program",
2002-06-10 16:18:50 +02:00
"Program",
2002-06-22 09:30:06 +02:00
"Program",
2003-05-16 13:04:52 +02:00
"Programar",
2000-11-11 10:39:27 +01:00
},
2001-06-03 13:07:20 +02:00
{ "Language",
"Sprache",
"Jezik",
"Linguaggio",
"Taal",
2002-03-22 14:30:41 +01:00
"Linguagem",
2001-07-22 09:36:49 +02:00
"Langue",
2001-07-24 16:00:54 +02:00
"Spr<EFBFBD>k",
2002-02-09 17:20:19 +01:00
"Kieli",
2002-04-01 11:38:27 +02:00
"Jezyk",
2003-05-16 13:04:52 +02:00
"Idioma",
2002-05-01 10:35:01 +02:00
"Glosa",
2002-05-26 09:43:17 +02:00
"Spr<EFBFBD>k",
2002-06-10 16:18:50 +02:00
"Limba",
2002-06-22 09:30:06 +02:00
"Nyelv",
2003-05-16 13:04:52 +02:00
"Idioma",
2001-06-03 13:07:20 +02:00
},
{ "Eject",
"Auswerfen",
2002-03-31 15:55:29 +02:00
"Izvrzi",
2002-03-29 16:20:39 +01:00
"Eject",
2002-03-22 13:58:50 +01:00
"Eject",
2002-03-22 14:30:41 +01:00
"Ejectar",
"Ejection",
2002-03-31 16:32:04 +02:00
"Eject",
2002-02-09 17:20:19 +01:00
"Avaa",
2002-04-01 11:38:27 +02:00
"Wyrzucenie",
2003-05-16 13:04:52 +02:00
"Expulsar",
2003-03-30 10:06:20 +02:00
"Exsagogi",
2002-05-26 09:43:17 +02:00
"Mata ut",
2002-06-10 16:18:50 +02:00
"Ejecteaza",
2002-06-22 09:30:06 +02:00
"Kidobni",
2003-05-16 13:04:52 +02:00
"Expulsar",
2001-08-03 14:18:08 +02:00
},
2002-04-13 10:52:01 +02:00
{ "ABC/abc",
"ABC/abc",
"ABC/abc",
"ABC/abc",
"ABC/abc",
"ABC/abc",
"ABC/abc",
"ABC/abc",
"ABC/abc",
"ABC/abc",
"ABC/abc",
2002-05-01 10:35:01 +02:00
"ABC/abc",
2002-05-26 09:43:17 +02:00
"ABC/abc",
2002-06-10 16:18:50 +02:00
"ABC/abc",
2002-06-22 09:30:06 +02:00
"ABC/abc",
2003-05-16 13:04:52 +02:00
"ABC/abc",
2002-04-13 10:52:01 +02:00
},
{ "Insert",
"Einf<EFBFBD>gen",
2003-05-25 09:51:59 +02:00
"Vstavi",
2003-05-27 15:38:42 +02:00
"Inserisci",
2003-09-11 13:51:56 +02:00
"Invoegen",
2002-04-13 10:52:01 +02:00
"",// TODO
2003-05-24 10:26:36 +02:00
"Ins<EFBFBD>rt",
2002-04-13 10:52:01 +02:00
"",// TODO
2002-10-19 09:46:09 +02:00
"Lis<EFBFBD><EFBFBD>",
2003-05-31 09:35:45 +02:00
"Wstawiac",
2003-05-16 13:04:52 +02:00
"Insertar",
2002-05-01 10:35:01 +02:00
"Isodos",
2002-05-26 09:43:17 +02:00
"Infoga",
2002-06-10 16:18:50 +02:00
"Insereaza",
2002-06-22 09:30:06 +02:00
"Beilleszteni",
"Inserir",
2002-04-13 10:52:01 +02:00
},
{ "Overwrite",
"<EFBFBD>berschreiben",
2003-05-25 09:51:59 +02:00
"Prepisi",
2003-05-27 15:38:42 +02:00
"Sovrascrivi",
2003-09-11 13:51:56 +02:00
"Overschrijven",
2002-04-13 10:52:01 +02:00
"",// TODO
2003-05-24 10:26:36 +02:00
"<EFBFBD>craser",
2002-04-13 10:52:01 +02:00
"",// TODO
2002-10-19 09:46:09 +02:00
"Korvaa",
2003-05-31 09:35:45 +02:00
"Przepisac",
2003-05-16 13:04:52 +02:00
"Sobreescribir",
2002-05-01 10:35:01 +02:00
"Epanagrafi",
2002-05-26 09:43:17 +02:00
"Skriv <20>ver",
2002-06-10 16:18:50 +02:00
"Suprascrie",
2002-06-22 09:30:06 +02:00
"<EFBFBD>t<EFBFBD>rni",
2003-05-16 13:04:52 +02:00
"Sobrescriure",
2002-04-13 10:52:01 +02:00
},
{ "Menu",
"Men<EFBFBD>",
"Meni",
"Menu",
"Menu",
"Menu",
"Menu",
"Meny",
"Valikko",
"Menu",
2003-05-16 13:04:52 +02:00
"Men<EFBFBD>",
"Menou",
"Meny",
"Meniu",
"Men<EFBFBD>",
2003-05-16 13:04:52 +02:00
"Men<EFBFBD>",
},
{ "Reset",
"Reset",
2003-05-25 09:51:59 +02:00
"Reset",
2003-05-27 15:38:42 +02:00
"Reset",
2003-09-11 13:51:56 +02:00
"Herstart",
"",//TODO
2003-05-24 10:26:36 +02:00
"R<EFBFBD>initialisation",
"",//TODO
"Alusta",
2003-05-31 09:35:45 +02:00
"Reset",
2003-05-16 13:04:52 +02:00
"Reiniciar",
2003-03-30 10:06:20 +02:00
"Epanafora",
2003-05-24 14:04:45 +02:00
"<EFBFBD>terst<EFBFBD>ll",
"",//TODO
2003-06-06 15:43:49 +02:00
"Reset",
2003-05-16 13:04:52 +02:00
"Reiniciar",
},
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?",
2003-05-25 09:51:59 +02:00
"Izbrisi kanal?",
2001-01-06 16:17:39 +01:00
"Cancello il canale?",
2001-03-31 09:58:14 +02:00
"Kanaal verwijderen?",
2002-03-22 14:30:41 +01:00
"Apagar o canal?",
2001-07-24 16:00:54 +02:00
"Supprimer la cha<68>ne?",
"Slette kanal?",
"Poistetaanko kanava?",
2002-04-01 11:38:27 +02:00
"Usunac kanal?",
2002-04-06 09:51:08 +02:00
"<EFBFBD>Eliminar canal?",
2003-03-30 10:06:20 +02:00
"Diagrafi Kanaliou?",
2002-05-26 09:43:17 +02:00
"Ta bort kanalen?",
2002-06-10 16:18:50 +02:00
"Sterg canalul?",
2002-06-22 09:30:06 +02:00
"Csatorna t<>rl<72>se?",
2003-05-16 13:04:52 +02:00
"Esborrar el canal?",
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?",
2003-05-25 09:51:59 +02:00
"Izbrisi termin?",
2001-01-06 16:17:39 +01:00
"Cancello il timer?",
2001-03-31 09:58:14 +02:00
"Timer verwijderen?",
2002-03-22 14:30:41 +01:00
"Apagar o timer?",
2001-07-24 16:00:54 +02:00
"Supprimer la programmation?",
"Slette timer?",
"Poistetaanko ajastin?",
2002-04-01 11:38:27 +02:00
"Usunac timer?",
2002-04-06 09:51:08 +02:00
"<EFBFBD>Eliminar timer?",
2003-05-31 09:09:45 +02:00
"Diagrafi programmatismou?",
2002-05-26 09:43:17 +02:00
"Ta bort timern?",
2002-06-10 16:18:50 +02:00
"Sterg timer-ul?",
2002-06-22 09:30:06 +02:00
"Felv<EFBFBD>tel beprogramoz<6F>s<EFBFBD>nak t<>rl<72>se?",
2003-05-16 13:04:52 +02:00
"Esborrar el temporitzador?",
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?",
2003-05-25 09:51:59 +02:00
"Izbrisi posnetek?",
2001-01-06 16:17:39 +01:00
"Cancello la registrazione?",
2001-03-31 09:58:14 +02:00
"Opname verwijderen?",
2002-03-22 14:30:41 +01:00
"Apagar a grava<76><61>o?",
2001-07-22 09:36:49 +02:00
"Supprimer l'enregistrement?",
2001-07-24 16:00:54 +02:00
"Slette opptak?",
"Poistetaanko tallenne?",
2002-04-01 11:38:27 +02:00
"Usunac nagranie?",
2002-04-06 09:51:08 +02:00
"<EFBFBD>Eliminar grabacion?",
2003-03-30 10:06:20 +02:00
"Svisimo egrafis?",
2002-05-26 09:43:17 +02:00
"Ta bort inspelningen?",
2002-06-10 16:18:50 +02:00
"Sterg inregistrarea?",
2002-06-22 09:30:06 +02:00
"Felv<EFBFBD>tel t<>rl<72>se?",
2003-05-27 07:30:43 +02:00
"Esborrar gravaci<63>?",
2000-11-11 10:39:27 +01:00
},
{ "Timer still recording - really delete?",
"Timer zeichnet auf - trotzdem l<>schen?",
2003-05-25 09:51:59 +02:00
"Snemanje po terminu - zares izbrisi?",
2003-05-27 15:38:42 +02:00
"Timer in registrazione - cancello?",
2002-04-20 09:42:37 +02:00
"Timer neemt nog op - toch verwijderen?",
2002-03-22 14:30:41 +01:00
"Timer activo - t<>m a certeza que quer apagar?",
2002-03-03 16:39:54 +01:00
"Enregistrement en cours - confirmez la suppression",
2002-03-31 16:32:04 +02:00
"Timer gj<67>r opptak - vil du slette likevel?",
"Ajastettu tallennus k<>ynniss<73> - keskeytet<65><74>nk<6E>?",
2002-04-01 11:38:27 +02:00
"Nagrywanie w trakcie - napewno usunac?",
2002-04-06 09:51:08 +02:00
"<EFBFBD>Timer activo - de verdad eliminarlo?",
2003-03-30 10:06:20 +02:00
"Programmatismos se exselixsi - Diagrafi sigoura?",
2002-05-26 09:43:17 +02:00
"Timerstyrd inspelning p<>g<EFBFBD>r - Avbryta <20>nd<6E>?",
2002-06-10 16:18:50 +02:00
"Timer-ul in inregistrare - sterg?",
2002-06-22 09:30:06 +02:00
"Felv<EFBFBD>tel folyamatban van - m<>gis t<>r<EFBFBD>lni?",
2003-05-16 13:04:52 +02:00
"Temporitzador activat - Esborrar de totes maneres?",
},
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?",
2001-03-31 09:58:14 +02:00
"Opname stoppen?",
2002-03-22 14:30:41 +01:00
"Parar Grava<76><61>o?",
2001-07-22 09:36:49 +02:00
"Arr<EFBFBD>ter l'enregistrement?",
2001-07-24 16:00:54 +02:00
"Stoppe opptak?",
"Lopetetaanko tallennus?",
2002-04-01 11:38:27 +02:00
"Zakonczyc nagranie?",
2002-04-06 09:51:08 +02:00
"<EFBFBD>Parar grabaci<63>n?",
2002-05-01 10:35:01 +02:00
"Akirosi egrafis?",
2002-05-26 09:43:17 +02:00
"Stanna inspelning?",
2002-06-10 16:18:50 +02:00
"Opresc inregistrarea?",
2002-06-22 09:30:06 +02:00
"Felv<EFBFBD>tel befejezni?",
"Aturar la gravaci<63>?",
2000-11-11 10:39:27 +01:00
},
{ "on primary interface",
"auf dem prim<69>ren Interface",
2002-03-31 15:55:29 +02:00
"na primarni napravi",
2002-03-29 16:20:39 +01:00
"su interfaccia primaria",
2002-03-22 13:58:50 +01:00
"op eerste interface",
2002-03-22 14:30:41 +01:00
"no interface prim<69>rio",
2002-03-23 10:26:55 +01:00
"sur la carte primaire",
2002-03-31 16:32:04 +02:00
"p<EFBFBD> f<>rste enhet",
2002-02-09 17:20:19 +01:00
"p<EFBFBD><EFBFBD>vastaanottimella",
2002-04-01 11:38:27 +02:00
"na pierwszym interfejsie",
2002-04-06 09:51:08 +02:00
"en interface primario",
2002-05-04 14:44:32 +02:00
"stin protevon karta",
2003-05-24 14:04:45 +02:00
"fr<EFBFBD>n den f<>rsta enheten?",
2002-06-10 16:18:50 +02:00
"pe prima interfata",
2002-06-22 09:30:06 +02:00
"az els<6C> k<>rty<74>n",
2003-05-16 13:04:52 +02:00
"a la interf<72>cie prim<69>ria",
},
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?",
2001-03-31 09:58:14 +02:00
"Bewerken afbreken?",
2002-03-22 14:30:41 +01:00
"Cancelar Modifica<63><61>es?",
2001-07-22 09:36:49 +02:00
"Annuler les modifications?",
2002-02-09 17:20:19 +01:00
"Avbryte redigering?",
"Perutaanko muokkaus?",
2002-04-01 11:38:27 +02:00
"Zakonczyc montaz?",
2002-04-06 09:51:08 +02:00
"<EFBFBD>Cancelar modificaci<63>n?",
2003-05-31 09:09:45 +02:00
"Akirosi epexsergasias?",
2003-05-24 14:04:45 +02:00
"Avbryta redigeringen?",
2002-06-10 16:18:50 +02:00
"Opresc editarea?",
2002-06-22 09:30:06 +02:00
"V<EFBFBD>g<EFBFBD>st befejezni?",
"Cancel<EFBFBD>lar l'edici<63>?",
2000-12-28 12:57:16 +01:00
},
2002-03-17 12:04:35 +01:00
{ "Really restart?",
"Wirklich neu starten?",
2003-05-25 09:51:59 +02:00
"Zares ponoven zagon?",
2002-03-29 16:20:39 +01:00
"Eseguo un restart?",
2002-03-22 13:58:50 +01:00
"Werkelijk opnieuw starten?",
2002-03-22 14:30:41 +01:00
"Tem a certeza que quer reiniciar?",
2002-03-23 10:26:55 +01:00
"Red<EFBFBD>marrer?",
2002-03-31 16:32:04 +02:00
"Vil du virkelig starte p<> nytt?",
"K<EFBFBD>ynnistet<EFBFBD><EFBFBD>nk<EFBFBD> uudelleen?",
2002-04-01 11:38:27 +02:00
"Rzeczywiscie nowy start?",
2002-04-06 09:51:08 +02:00
"<EFBFBD>De verdad reiniciar?",
2002-05-01 10:35:01 +02:00
"Na gini sigoura epanekinisi?",
2002-05-26 09:43:17 +02:00
"Vill du verkligen starta om?",
2002-06-10 16:18:50 +02:00
"Esti sigur de repornire?",
2002-06-22 09:30:06 +02:00
"T<EFBFBD>nyleg <20>jraind<6E>tani?",
"Segur que voleu reiniciar?",
2002-03-17 12:04:35 +01:00
},
{ "Recording - restart anyway?",
"Aufnahme l<>uft - trotzdem neu starten?",
2003-05-25 09:51:59 +02:00
"Snemanje - zares ponoven zagon?",
2002-03-29 16:20:39 +01:00
"In registrazione - restart comunque?",
2002-03-22 13:58:50 +01:00
"Opname loopt - toch opnieuw starten?",
2002-03-22 14:30:41 +01:00
"Em grava<76><61>o - quer mesmo reiniciar?",
2002-03-23 10:26:55 +01:00
"Enregistrement en cours - red<65>marrer?",
2002-03-31 16:32:04 +02:00
"Gj<EFBFBD>r opptak - starte p<> nytt likevel?",
2003-05-24 11:00:26 +02:00
"Tallennus kesken - k<>ynnistet<65><74>nk<6E> uudelleen?",
2002-04-01 11:38:27 +02:00
"Nagrywanie w trakcie - rzeczywiscie nowy start?",
2003-05-16 13:04:52 +02:00
"Grabando - <20>reiniciar?",
2003-03-30 10:06:20 +02:00
"Ginete egrafi - Telika na ginei epanekinisi?",
2003-05-24 14:04:45 +02:00
"Inspelning p<>g<EFBFBD>r, vill du <20>nd<6E> starta om?",
2002-06-10 16:18:50 +02:00
"In inregistrare - repornesc?",
2002-06-22 09:30:06 +02:00
"Felv<EFBFBD>tel folyamatban van - m<>gis <20>jraind<6E>tani?",
"Gravant - Reiniciar de totes maneres?",
2002-03-17 12:04:35 +01:00
},
2001-09-01 11:44:08 +02:00
{ "Recording - shut down anyway?",
"Aufnahme l<>uft - trotzdem ausschalten?",
2002-03-31 15:55:29 +02:00
"Snemanje - zares izklopi?",
2002-03-29 16:20:39 +01:00
"In registrazione - spengo comunque?",
2002-03-22 13:58:50 +01:00
"Opname loopt - toch uitschakelen?",
2002-03-22 14:30:41 +01:00
"Em grava<76><61>o - quer mesmo desligar?",
2002-03-03 16:39:54 +01:00
"Enregistrement en cours - confirmez l'arr<72>t",
2002-03-31 16:32:04 +02:00
"Gj<EFBFBD>r opptak - sl<73> av likevel?",
2003-05-24 11:00:26 +02:00
"Tallennus kesken - sammutetaanko?",
2002-04-01 11:38:27 +02:00
"Nagrywanie w trakcie - mimo to wylaczyc?",
2003-05-16 13:04:52 +02:00
"Grabando - <20>apagar?",
2003-03-30 10:06:20 +02:00
"Ginete egrafi - Telika na ginei termatismos?",
2003-05-24 14:04:45 +02:00
"Inspelning p<>g<EFBFBD>r, vill du <20>nd<6E> avbryta?",
2002-06-10 16:18:50 +02:00
"In inregistrare - opresc?",
2002-06-22 09:30:06 +02:00
"Felv<EFBFBD>tel folyamatban van - m<>gis kikapcsolni?",
2003-05-16 13:04:52 +02:00
"Gravant - Apagar de totes maneres?",
2001-09-01 11:44:08 +02:00
},
{ "Recording in %d minutes, shut down anyway?",
"Aufnahme in %d Minuten - trotzdem ausschalten?",
2002-03-31 15:55:29 +02:00
"Snemanje cez %d minut, zares izklopi?",
2002-03-29 16:20:39 +01:00
"Registrazione fra %d minuti - spengo comunque?",
2002-03-22 13:58:50 +01:00
"Opname in %d minuten - toch uitschakelen?",
2002-03-22 14:30:41 +01:00
"Em grava<76><61>o dentro de %d minutos - quer mesmo desligar?",
2002-03-29 16:20:39 +01:00
"Enregistrement dans %d minutes - confirmez l'arr<72>t",
2002-03-31 16:32:04 +02:00
"Skal gj<67>re opptak om %d minutter - sl<73> av likevel?",
2003-05-24 11:00:26 +02:00
"Tallennus alkaa %d min kuluttua - sammutetaanko?",
2002-04-01 11:38:27 +02:00
"Nagrywanie za %d minut - mimo to wylaczyc?",
2003-05-16 13:04:52 +02:00
"Grabando en %d minutos, <20>de verdad apagar?",
2003-03-30 10:06:20 +02:00
"Anamenete egrafi se %d lepta - Telika na termatistei?",
2002-05-26 09:43:17 +02:00
"Inspelning startar om %d minuter, vill du avsluta?",
2002-06-10 16:18:50 +02:00
"Inregistrez in %d minute, opresc?",
2002-06-22 09:30:06 +02:00
"Felv<EFBFBD>tel %d perc mulva kezd<7A>dik - m<>gis kikapcsolni?",
2003-05-16 13:04:52 +02:00
"Hi ha una gravaci<63> en %d minuts - Apagar de totes maneres?",
},
2001-09-01 09:04:37 +02:00
{ "Press any key to cancel shutdown",
"Taste dr<64>cken um Shutdown abzubrechen",
2002-03-31 15:55:29 +02:00
"Pritisni katerikoli gumb za preklic izklopa",
2002-03-29 16:20:39 +01:00
"Un tasto per annullare lo spegnimento",
2002-03-22 13:58:50 +01:00
"Druk een toets om shutdown af te breken",
2002-03-22 14:30:41 +01:00
"Pressione qualquer tecla para cancelar",
2002-03-03 16:39:54 +01:00
"Appuyez sur une touche pour annuler l'arr<72>t",
2002-03-31 16:32:04 +02:00
"Trykk en tast for ikke <20> sl<73> av",
"Peru sammutus painamalla mit<69> tahansa n<>pp<70>int<6E>",
2002-04-01 11:38:27 +02:00
"Dowolny przycisk zatrzyma wylaczanie",
2003-05-16 13:04:52 +02:00
"Pulse una tecla para interrumpir apagar",
2003-03-30 10:06:20 +02:00
"Piese ena pliktro na akirothei o termatismos",
2003-05-24 14:04:45 +02:00
"Tryck valfri knapp f<>r att <20>terkalla avst<73>ngningen",
2002-06-10 16:18:50 +02:00
"Apasa orice tasta pentru a anula inchiderea",
2002-06-22 09:30:06 +02:00
"Nyomj egy gombot a le<6C>ll<6C>s meg<65>ll<6C>t<EFBFBD>s<EFBFBD>hoz",
"Prem qualsevol tecla per cancel<65>lar l'aturada",
2001-09-01 09:04:37 +02: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",
2001-03-31 09:58:14 +02:00
"Naam",
2001-06-22 15:19:57 +02:00
"Nome",
2001-07-22 09:36:49 +02:00
"Nom",
2001-07-24 16:00:54 +02:00
"Navn",
2002-02-09 17:20:19 +01:00
"Nimi",
2002-04-01 11:38:27 +02:00
"Nazwa",
2002-04-06 09:51:08 +02:00
"Nombre",
2002-05-01 10:35:01 +02:00
"Onoma",
2002-05-26 09:43:17 +02:00
"Namn",
2002-06-10 16:18:50 +02:00
"Nume",
2002-06-22 09:30:06 +02:00
"N<EFBFBD>v",
2003-05-16 13:04:52 +02:00
"Nom",
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",
2001-03-31 09:58:14 +02:00
"Frequentie",
2002-03-22 14:30:41 +01:00
"Frequ<EFBFBD>ncia",
2001-07-22 09:36:49 +02:00
"Fr<EFBFBD>quence",
2001-07-24 16:00:54 +02:00
"Frekvens",
2002-02-09 17:20:19 +01:00
"Taajuus",
2002-04-01 11:38:27 +02:00
"Czestotliwosc",
2002-04-06 09:51:08 +02:00
"Frecuencia",
2002-05-01 10:35:01 +02:00
"Sixnotita",
2002-05-26 09:43:17 +02:00
"Frekvens",
2002-06-10 16:18:50 +02:00
"Frecventa",
2002-06-22 09:30:06 +02:00
"Frekvencia",
2003-05-16 13:04:52 +02:00
"Freq<EFBFBD><EFBFBD>ncia",
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",
2001-03-31 09:58:14 +02:00
"Polarisatie",
2002-03-22 14:30:41 +01:00
"Polariza<EFBFBD><EFBFBD>o",
2001-07-22 09:36:49 +02:00
"Polarisation",
2002-03-31 16:32:04 +02:00
"Polarisasjon",
2002-02-09 17:20:19 +01:00
"Polarisaatio",
2002-04-01 11:38:27 +02:00
"Polaryzacja",
2002-04-06 09:51:08 +02:00
"Polarizaci<EFBFBD>n",
2002-05-01 10:35:01 +02:00
"Polosi",
2002-05-26 09:43:17 +02:00
"Polarisation",
2002-06-10 16:18:50 +02:00
"Polarizare",
2002-06-22 09:30:06 +02:00
"Polariz<EFBFBD>ci<EFBFBD>",
2003-05-16 13:04:52 +02:00
"Polaritzaci<EFBFBD>",
2000-11-11 10:39:27 +01:00
},
{ "Source",
"Quelle",
2003-05-25 09:51:59 +02:00
"Pozicija",
2003-05-27 15:38:42 +02:00
"Sorgente",
2003-09-11 13:51:56 +02:00
"Bron",
"",//TODO
2003-05-24 10:26:36 +02:00
"Source",
"",//TODO
2002-10-19 09:46:09 +02:00
"L<EFBFBD>hde",
2003-05-31 09:35:45 +02:00
"Zrodlo",
"",//TODO
2003-05-31 09:09:45 +02:00
"Pigi",
2003-01-26 11:48:30 +01:00
"K<EFBFBD>lla",
"",//TODO
2003-06-06 15:43:49 +02:00
"Forr<EFBFBD>s",
2003-05-16 13:04:52 +02:00
"Origen",
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",
2001-03-31 09:58:14 +02:00
"Srate",
2001-06-22 15:19:57 +02:00
"Srate",
2001-08-08 16:43:43 +02:00
"Fr<EFBFBD>q. Symbole",
2002-03-31 16:32:04 +02:00
"Srate",
2003-05-24 11:00:26 +02:00
"Symbolinopeus",
2002-04-01 11:38:27 +02:00
"Srate",
2002-04-06 09:51:08 +02:00
"Srate",
2002-05-01 10:35:01 +02:00
"Srate",
2003-05-24 14:04:45 +02:00
"Symbolrate",
2002-06-10 16:18:50 +02:00
"Rata simboluri",
2002-06-22 09:30:06 +02:00
"Srate",
2003-05-16 13:04:52 +02: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",
2001-03-31 09:58:14 +02:00
"Vpid",
2002-03-22 14:30:41 +01:00
"PID de V<>deo",
2001-08-08 16:43:43 +02:00
"PID Vid<69>o",
2002-03-31 16:32:04 +02:00
"Vpid",
2002-02-09 17:20:19 +01:00
"Kuva PID",
2002-04-01 11:38:27 +02:00
"Vpid",
2002-04-06 09:51:08 +02:00
"Vpid",
2002-05-01 10:35:01 +02:00
"Vpid",
2003-05-24 14:04:45 +02:00
"Video PID",
2002-06-10 16:18:50 +02:00
"PID Video",
2002-06-22 09:30:06 +02:00
"Vpid",
2003-05-16 13:04:52 +02:00
"PID V<>deo",
2000-11-11 10:39:27 +01:00
},
2003-07-26 09:40:19 +02:00
{ "Ppid",
"Ppid",
"Ppid",
"Ppid",
"Ppid",
"Ppid",
"Ppid",
"Ppid",
"Aikatieto PID",
"Ppid",
"Ppid",
"Ppid",
"Ppid",
"Ppid",
"Ppid",
"Ppid",
},
2001-06-03 13:07:20 +02:00
{ "Apid1",
"Apid1",
"Apid1",
"Apid1",
"Apid1",
2002-03-22 14:30:41 +01:00
"PID <20>udio (1)",
2001-08-08 16:43:43 +02:00
"PID Audio (1)",
2002-03-31 16:32:04 +02:00
"Apid1",
"<EFBFBD><EFBFBD>ni PID1",
2002-04-01 11:38:27 +02:00
"Apid1",
2002-04-06 09:51:08 +02:00
"Apid1",
2002-05-01 10:35:01 +02:00
"Apid1",
2003-05-24 14:04:45 +02:00
"Audio PID1",
2002-06-10 16:18:50 +02:00
"PID Audio (1)",
2002-06-22 09:30:06 +02:00
"Apid1",
2003-05-16 13:04:52 +02:00
"PID <20>udio (1)",
2001-06-03 13:07:20 +02:00
},
{ "Apid2",
"Apid2",
"Apid2",
"Apid2",
"Apid2",
2001-06-22 15:19:57 +02:00
"Apid2",
"PID Audio (2)",
2002-03-31 16:32:04 +02:00
"Apid2",
"<EFBFBD><EFBFBD>ni PID2",
2002-04-01 11:38:27 +02:00
"Apid2",
2002-04-06 09:51:08 +02:00
"Apid2",
2002-05-01 10:35:01 +02:00
"Apid2",
2003-05-24 14:04:45 +02:00
"Audio PID2",
2002-06-10 16:18:50 +02:00
"PID Audio (2)",
2002-06-22 09:30:06 +02:00
"Apid2",
2003-05-16 13:04:52 +02:00
"PID <20>udio (2)",
2000-11-11 10:39:27 +01:00
},
2001-06-24 17:42:19 +02:00
{ "Dpid1",
"Dpid1",
"Dpid1",
"Dpid1",
"Dpid1",
2002-03-22 14:30:41 +01:00
"PID AC3 (1)",
2001-08-08 16:43:43 +02:00
"PID AC3 (1)",
2002-03-31 16:32:04 +02:00
"AC3pid1",
"Dolby PID1",
2002-04-01 11:38:27 +02:00
"Dpid1",
2002-04-06 09:51:08 +02:00
"Dpid1",
2002-05-01 10:35:01 +02:00
"Dpid1",
2002-05-26 09:43:17 +02:00
"Dpid1",
2002-06-10 16:18:50 +02:00
"PID AC3 (1)",
2002-06-22 09:30:06 +02:00
"Dpid1",
2003-05-16 13:04:52 +02:00
"PID AC3 (1)",
2001-06-24 17:42:19 +02:00
},
{ "Dpid2",
"Dpid2",
"Dpid2",
"Dpid2",
"Dpid2",
2002-03-22 14:30:41 +01:00
"PID AC3 (2)",
2001-08-08 16:43:43 +02:00
"PID AC3 (2)",
2002-03-31 16:32:04 +02:00
"AC3pid2",
"Dolby PID2",
2002-04-01 11:38:27 +02:00
"Dpid2",
2002-04-06 09:51:08 +02:00
"Dpid2",
2002-05-01 10:35:01 +02:00
"Dpid2",
2002-05-26 09:43:17 +02:00
"Dpid2",
2002-06-10 16:18:50 +02:00
"PID AC3 (2)",
2002-06-22 09:30:06 +02:00
"Dpid2",
2003-05-16 13:04:52 +02:00
"PID AC3 (2)",
2001-06-24 17:42:19 +02:00
},
2001-02-03 16:28:03 +01:00
{ "Tpid",
"Tpid",
"Tpid",
"Tpid",
2001-03-31 09:58:14 +02:00
"Tpid",
2002-03-22 14:30:41 +01:00
"PID Teletexto",
2001-08-08 16:43:43 +02:00
"PID T<>l<EFBFBD>texte",
2002-03-31 16:32:04 +02:00
"Tekst-TV pid",
2003-05-24 11:00:26 +02:00
"Teksti-TV PID",
2002-04-01 11:38:27 +02:00
"Tpid",
2002-04-06 09:51:08 +02:00
"Tpid",
2002-05-01 10:35:01 +02:00
"Tpid",
2003-05-24 14:04:45 +02:00
"Teletext PID",
2002-06-10 16:18:50 +02:00
"PID Teletext",
2002-06-22 09:30:06 +02:00
"Tpid",
2003-05-16 13:04:52 +02:00
"PID Teletext",
2001-02-03 16:28:03 +01:00
},
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",
2001-03-31 09:58:14 +02:00
"CA",
2002-03-22 14:30:41 +01:00
"Encripta<EFBFBD><EFBFBD>o",
2001-08-08 16:43:43 +02:00
"Cryptage",
2001-07-24 16:00:54 +02:00
"Kortleser",
"Salaus",
2002-04-01 11:38:27 +02:00
"CA",
2002-04-06 09:51:08 +02:00
"CA",
2002-05-01 10:35:01 +02:00
"CA",
2003-05-24 14:04:45 +02:00
"Kortl<EFBFBD>sare",
2002-06-10 16:18:50 +02:00
"Criptare",
2002-06-22 09:30:06 +02:00
"CA",
2003-05-16 13:04:52 +02:00
"Acc<EFBFBD>s Condicional",
2000-11-11 10:39:27 +01:00
},
{ "Sid",
"Sid",
"Sid",
"Sid",
"Sid",
"Sid",
"Sid",
"Sid",
2003-05-24 11:00:26 +02:00
"Palvelu ID",
"Sid",
"Sid",
"Sid",
"Sid",
"Sid",
"Sid",
2003-05-16 13:04:52 +02:00
"Sid",
},
{ "Inversion",
"Inversion",
2003-05-25 09:51:59 +02:00
"Inverzija",
"Inversion",
"Inversion",
"Inversion",
"Inversion",
"Inversion",
2002-10-19 09:46:09 +02:00
"Inversio",
"Inversion",
"Inversion",
"Inversion",
"Inversion",
"Inversion",
"Inversion",
2003-05-16 13:04:52 +02:00
"Inversi<EFBFBD>",
},
{ "Bandwidth",
"Bandwidth",
2003-05-25 09:51:59 +02:00
"Pasovna sirina",
"Bandwidth",
"Bandwidth",
"Bandwidth",
"Bande passante",
"Bandwidth",
2003-05-24 11:00:26 +02:00
"Kaistanleveys",
2003-05-31 09:35:45 +02:00
"Szerokosc pasma",
"Bandwidth",
"Bandwidth",
2003-01-26 11:48:30 +01:00
"Bandbredd",
"Bandwidth",
"Bandwidth",
"Amplada de banda",
},
{ "CoderateH",
"CoderateH",
"CoderateH",
"CoderateH",
"CoderateH",
"CoderateH",
"CoderateH",
"CoderateH",
"Yl<EFBFBD>suojaustaso",
"CoderateH",
"CoderateH",
"CoderateH",
"CoderateH",
"CoderateH",
"CoderateH",
2003-05-16 13:04:52 +02:00
"CoderateH",
},
{ "CoderateL",
"CoderateL",
"CoderateL",
"CoderateL",
"CoderateL",
"CoderateL",
"CoderateL",
"CoderateL",
"Alasuojaustaso",
"CoderateL",
"CoderateL",
"CoderateL",
"CoderateL",
"CoderateL",
"CoderateL",
2003-05-16 13:04:52 +02:00
"CoderateL",
},
{ "Modulation",
"Modulation",
2003-05-25 09:51:59 +02:00
"Modulacija",
"Modulation",
"Modulation",
"Modulation",
"Modulation",
"Modulation",
2002-10-19 09:46:09 +02:00
"Modulaatio",
2003-05-31 09:35:45 +02:00
"Modulacja",
"Modulation",
"Modulation",
"Modulation",
"Modulation",
"Modulation",
2003-05-16 13:04:52 +02:00
"Modulaci<EFBFBD>",
},
{ "Transmission",
"Transmission",
2003-05-25 09:51:59 +02:00
"Prenos",
"Transmission",
"Transmission",
"Transmission",
"Transmission",
"Transmission",
"L<EFBFBD>hetystila",
2003-05-31 09:35:45 +02:00
"Transmisja",
"Transmission",
"Transmission",
"Transmission",
"Transmission",
"Transmission",
2003-05-16 13:04:52 +02:00
"Transmissi<EFBFBD>",
},
{ "Guard",
"Guard",
2003-05-25 09:51:59 +02:00
"Zascita",
"Guard",
"Guard",
"Guard",
"Guard",
"Guard",
"Suojav<EFBFBD>li",
"Guard",
"Guard",
"Guard",
"Guard",
"Guard",
"Guard",
2003-05-16 13:04:52 +02:00
"Protegir",
},
{ "Hierarchy",
"Hierarchy",
2003-05-25 09:51:59 +02:00
"Hierarhija",
"Hierarchy",
"Hierarchy",
"Hierarchy",
"Hierarchie",
"Hierarchy",
2003-05-24 11:00:26 +02:00
"Hierarkia",
2003-05-31 09:35:45 +02:00
"Hierachia",
"Hierarchy",
"Hierarchy",
"Hierarchy",
"Hierarchy",
"Hierarchy",
2003-05-16 13:04:52 +02:00
"Jerarquia",
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",
2001-03-31 09:58:14 +02:00
"Actief",
2001-06-22 15:19:57 +02:00
"Activo",
2001-07-22 09:36:49 +02:00
"Actif",
2001-07-24 16:00:54 +02:00
"Aktiv",
2002-02-09 17:20:19 +01:00
"Aktiivinen",
2002-04-01 11:38:27 +02:00
"Aktywny",
2002-04-06 09:51:08 +02:00
"Activo",
2002-05-01 10:35:01 +02:00
"Energo",
2002-05-26 09:43:17 +02:00
"Aktiv",
2002-06-10 16:18:50 +02:00
"Activ",
2002-06-22 09:30:06 +02:00
"Aktiv",
2003-05-16 13:04:52 +02:00
"Actiu",
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",
2001-03-31 09:58:14 +02:00
"Kanaal",
2001-06-22 15:19:57 +02:00
"Canal",
2001-07-22 09:36:49 +02:00
"Cha<EFBFBD>ne",
2001-07-24 16:00:54 +02:00
"Kanal",
2002-02-09 17:20:19 +01:00
"Kanava",
2002-04-01 11:38:27 +02:00
"Kanal",
2002-04-06 09:51:08 +02:00
"Canal",
2002-05-01 10:35:01 +02:00
"Kanali",
2002-05-26 09:43:17 +02:00
"Kanal",
2002-06-10 16:18:50 +02:00
"Canal",
2002-06-22 09:30:06 +02:00
"Csatorna",
2003-05-16 13:04:52 +02:00
"Canal",
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",
2001-03-31 09:58:14 +02:00
"Dag",
2001-06-22 15:19:57 +02:00
"Dia",
2001-07-22 09:36:49 +02:00
"Jour",
2001-07-24 16:00:54 +02:00
"Dag",
2002-02-09 17:20:19 +01:00
"P<EFBFBD>iv<EFBFBD>",
2002-04-01 11:38:27 +02:00
"Dzien",
2002-04-06 09:51:08 +02:00
"D<EFBFBD>a",
2002-05-01 10:35:01 +02:00
"Imera",
2002-05-26 09:43:17 +02:00
"Dag",
2002-06-10 16:18:50 +02:00
"Ziua",
2002-06-22 09:30:06 +02:00
"Nap",
2003-05-16 13:04:52 +02:00
"Dia",
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",
2001-03-31 09:58:14 +02:00
"Begin",
2001-06-22 15:19:57 +02:00
"Inicio",
2001-07-22 09:36:49 +02:00
"D<EFBFBD>but",
2001-07-24 16:00:54 +02:00
"Start",
2002-02-09 17:20:19 +01:00
"Aloitus",
2002-04-01 11:38:27 +02:00
"Poczatek",
2002-04-06 09:51:08 +02:00
"Comienzo",
2002-05-01 10:35:01 +02:00
"Arxi",
2002-05-26 09:43:17 +02:00
"B<EFBFBD>rjar",
2002-06-10 16:18:50 +02:00
"Start",
2002-06-22 09:30:06 +02:00
"Kezdet",
2003-05-16 13:04:52 +02:00
"Inici",
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",
2001-03-31 09:58:14 +02:00
"Einde",
2001-06-22 15:19:57 +02:00
"Fim",
2001-07-22 09:36:49 +02:00
"Fin",
2001-07-24 16:00:54 +02:00
"Slutt",
2002-02-09 17:20:19 +01:00
"Lopetus",
2002-04-01 11:38:27 +02:00
"Koniec",
2002-04-06 09:51:08 +02:00
"Fin",
2002-05-01 10:35:01 +02:00
"Telos",
2002-05-26 09:43:17 +02:00
"Slutar",
2002-06-10 16:18:50 +02:00
"Stop",
2002-06-22 09:30:06 +02:00
"V<EFBFBD>ge",
"Fi",
2000-11-11 10:39:27 +01:00
},
{ "Priority",
"Priorit<EFBFBD>t",
2000-11-19 09:27:15 +01:00
"Prioriteta",
2003-05-27 15:38:42 +02:00
"Priorita'",
2001-03-31 09:58:14 +02:00
"Prioriteit",
2001-06-22 15:19:57 +02:00
"Prioridade",
2001-07-22 09:36:49 +02:00
"Priorit<EFBFBD>",
2001-07-24 16:00:54 +02:00
"Prioritet",
2002-02-09 17:20:19 +01:00
"Prioriteetti",
2002-04-01 11:38:27 +02:00
"Priorytet",
2002-04-06 09:51:08 +02:00
"Prioridad",
2002-05-01 10:35:01 +02:00
"Protereotita",
2002-05-26 09:43:17 +02:00
"Prioritet",
2002-06-10 16:18:50 +02:00
"Prioritate",
2002-06-22 09:30:06 +02:00
"Priorit<EFBFBD>s",
2003-05-16 13:04:52 +02:00
"Prioritat",
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",
2001-03-31 09:58:14 +02:00
"Bewaarduur",
2002-03-22 14:30:41 +01:00
"Dura<EFBFBD><EFBFBD>o",
2001-07-22 09:36:49 +02:00
"Dur<EFBFBD>e de vie",
2001-07-24 16:00:54 +02:00
"Levetid",
2003-05-24 11:00:26 +02:00
"Elinik<EFBFBD>",
2002-04-01 11:38:27 +02:00
"Trwalosc dni",
2002-04-06 09:51:08 +02:00
"Durabilidad",
2002-05-01 10:35:01 +02:00
"Xronos Zois",
2003-05-24 14:04:45 +02:00
"Livstid",
2002-06-10 16:18:50 +02:00
"Durata",
2002-06-22 09:30:06 +02:00
"<EFBFBD>lettartam",
"Durada",
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",
2001-03-31 09:58:14 +02:00
"Filenaam",
2001-06-22 15:19:57 +02:00
"Ficheiro",
2001-07-22 09:36:49 +02:00
"Fichier",
2001-07-24 16:00:54 +02:00
"Filnavn",
2002-02-09 17:20:19 +01:00
"Tiedosto",
2002-04-01 11:38:27 +02:00
"Plik",
2002-04-06 09:51:08 +02:00
"Fichero",
2002-05-01 10:35:01 +02:00
"Arxeio",
2002-05-26 09:43:17 +02:00
"Filnamn",
2002-06-10 16:18:50 +02:00
"Fisier",
2002-06-22 09:30:06 +02:00
"File",
2003-05-16 13:04:52 +02:00
"Arxiu",
2000-11-11 10:39:27 +01:00
},
{ "First day",
"Erster Tag",
2002-03-31 15:55:29 +02:00
"Prvi dan",
2002-03-29 16:20:39 +01:00
"Primo giorno",
2002-03-22 13:58:50 +01:00
"Eerste dag",
2002-03-22 14:30:41 +01:00
"Primeiro dia",
2002-03-03 16:39:54 +01:00
"Premier jour",
2002-03-31 16:32:04 +02:00
"F<EFBFBD>rste dag",
2002-03-22 13:32:42 +01:00
"1. p<>iv<69>",
2002-04-01 11:38:27 +02:00
"Pierwszy dzien",
2002-04-06 09:51:08 +02:00
"Primer d<>a",
2002-05-01 10:35:01 +02:00
"Proti mera",
2002-05-26 09:43:17 +02:00
"F<EFBFBD>rsta dag",
2002-06-10 16:18:50 +02:00
"Prima zi",
2002-06-22 09:30:06 +02:00
"Els<EFBFBD> nap",
2003-05-16 13:04:52 +02:00
"Primer dia",
},
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!",
2003-05-25 09:51:59 +02:00
"Kanal uporablja termin za snemanje!",
2001-01-06 16:17:39 +01:00
"Canale occupato da un timer!",
2001-03-31 09:58:14 +02:00
"Kanaal wordt gebruikt door een timer!",
2002-03-22 14:30:41 +01:00
"Canal a ser utilizador por um timer!",
2002-02-09 17:20:19 +01:00
"Cette cha<68>ne est en cours d'utilisation!",
2001-07-24 16:00:54 +02:00
"Kanalen er i bruk av en timer!",
2002-02-09 17:20:19 +01:00
"Kanava on ajastimen k<>yt<79>ss<73>!",
2002-04-01 11:38:27 +02:00
"Kanal jest zajety przez timer nagran",
2002-04-06 09:51:08 +02:00
"<EFBFBD>Canal est<73> ocupado por un timer!",
2003-03-30 10:06:20 +02:00
"To kanali xrisimopiite apo kapoion programmatismo!",
2002-05-26 09:43:17 +02:00
"Kanalen anv<6E>nds av en timer!",
2002-06-10 16:18:50 +02:00
"Canalul este utilizat de un timer!",
2002-06-22 09:30:06 +02:00
"Csatorn<EFBFBD>t m<>s haszn<7A>lja!",
2003-05-16 13:04:52 +02:00
"Canal en <20>s per un temporitzador!",
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!",
2001-03-31 09:58:14 +02:00
"Kan geen kanaal wisselen!",
2002-03-22 14:30:41 +01:00
"N<EFBFBD>o pode mudar de canal!",
2001-07-22 09:36:49 +02:00
"Impossible de changer de cha<68>ne!",
2001-07-24 16:00:54 +02:00
"Ikke mulig <20> skifte kanal!",
2002-02-09 17:20:19 +01:00
"Kanavan vaihtaminen ei mahdollista!",
2002-04-01 11:38:27 +02:00
"Kanal nie moze byc teraz przelaczony!",
2002-04-06 09:51:08 +02:00
"<EFBFBD>No puedo cambiar canal!",
2003-03-30 10:06:20 +02:00
"Adinati i allagi kanaliou!",
2002-05-26 09:43:17 +02:00
"Om<EFBFBD>jligt att byta kanal!",
2002-06-10 16:18:50 +02:00
"Nu pot comuta canalul!",
2002-06-22 09:30:06 +02:00
"Csatorn<EFBFBD>t nem lehet <20>tkapcsolni!",
2003-05-16 13:04:52 +02:00
"No puc canviar de canal!",
2000-11-11 10:39:27 +01:00
},
{ "Timer is recording!",
"Timer zeichnet gerade auf!",
2003-05-25 09:51:59 +02:00
"Snemanje po terminu!",
2001-01-06 16:17:39 +01:00
"Registrazione di un timer in corso!",
2001-03-31 09:58:14 +02:00
"Timer is aan het opnemen!",
2002-03-22 14:30:41 +01:00
"Timer a gravar!",
2001-07-22 09:36:49 +02:00
"Enregistrement en cours!",
2001-07-24 16:00:54 +02:00
"Timer gj<67>r opptak!",
2003-05-24 11:00:26 +02:00
"Ajastintallennus k<>ynniss<73>!",
2002-04-01 11:38:27 +02:00
"Timer nagrywa!",
2002-04-06 09:51:08 +02:00
"<EFBFBD>Timer esta grabando!",
2002-05-04 14:44:32 +02:00
"Ginete progrmamatismeni egrafi!",
2002-05-26 09:43:17 +02:00
"Timerstyrd inspelning p<>g<EFBFBD>r!",
2002-06-10 16:18:50 +02:00
"Timer-ul este in inregistrare!",
2002-06-22 09:30:06 +02:00
"Felv<EFBFBD>tel folyamatban van!",
2003-05-16 13:04:52 +02:00
"El temporitzador est<73> gravant!",
2000-11-11 10:39:27 +01:00
},
{ "Error while accessing recording!",
2002-04-06 09:51:08 +02:00
"Fehler beim Ansprechen der Aufzeichnung!",
2003-05-25 09:51:59 +02:00
"Napaka pri dostopu do posnetka!",
2003-05-27 15:38:42 +02:00
"Errore nell'accesso alla registrazione",
2002-03-22 13:58:50 +01:00
"Fout bij lezen opname!",
2002-03-22 14:30:41 +01:00
"Erro ao aceder <20> grava<76><61>o",
2002-03-03 16:39:54 +01:00
"Impossible d'acc<63>der <20> l'enregistrement",
2002-03-31 16:32:04 +02:00
"Feil under lesing av opptak!",
2003-05-24 11:00:26 +02:00
"Tallenteen toistaminen ep<65>onnistui!",
2002-04-01 11:38:27 +02:00
"Blad - brak dostepu do nagrania!",
2003-05-16 13:04:52 +02:00
"<EFBFBD>Error al acceder a la grabaci<63>n!",
2003-03-30 10:06:20 +02:00
"Provlima stin prospelasi egrafis!",
2003-05-24 14:04:45 +02:00
"Inspelningen g<>r inte att l<>sa!",
2002-06-10 16:18:50 +02:00
"Eroare in timpul accesarii inregistrarii",
2002-06-22 09:30:06 +02:00
"Hiba a felv<6C>tel hozz<7A>f<EFBFBD>r<EFBFBD>s<EFBFBD>n<EFBFBD>l",
2003-05-16 13:04:52 +02:00
"Error a l'accedir a la gravaci<63>!",
},
2000-11-11 10:39:27 +01:00
{ "Error while deleting recording!",
"Fehler beim L<>schen der Aufzeichnung!",
2003-05-25 09:51:59 +02:00
"Napaka pri brisanju posnetka!",
2003-05-27 15:38:42 +02:00
"Errore nel cancellare la registrazione!",
2001-03-31 09:58:14 +02:00
"Fout bij verwijderen opname!",
2002-03-22 14:30:41 +01:00
"Erro enquanto apagava uma grava<76><61>o!",
2001-07-22 09:36:49 +02:00
"Erreur de suppression de l'enregistrement!",
2001-07-24 16:00:54 +02:00
"Feil under sletting av opptak!",
2003-05-24 11:00:26 +02:00
"Tallenteen poistaminen ep<65>onnistui!",
2002-04-01 11:38:27 +02:00
"Blad przy usuwaniu nagrania!",
2002-04-06 09:51:08 +02:00
"<EFBFBD>Error al borrar la grabaci<63>n!",
2003-03-30 10:06:20 +02:00
"Provlima sto svisimo egrafis !",
2003-05-24 14:04:45 +02:00
"Inspelningen g<>r inte att ta bort!",
2002-06-10 16:18:50 +02:00
"Eroare in timpul stergerii inregistrarii!",
2002-06-22 09:30:06 +02:00
"Hiba a felv<6C>tel t<>rl<72>s<EFBFBD>n<EFBFBD>l!",
2003-05-16 13:04:52 +02:00
"Error a l'esborrar la gravaci<63>!",
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 ***",
2001-03-31 09:58:14 +02:00
"*** Ongeldig kanaal ***",
2002-03-22 14:30:41 +01:00
"*** Canal Inv<6E>lido! ***",
2001-07-22 09:36:49 +02:00
"*** Cha<68>ne invalide! ***",
2001-07-24 16:00:54 +02:00
"*** Ugyldig Kanal! ***",
2002-02-09 17:20:19 +01:00
"*** Virheellinen kanavavalinta! ***",
2002-04-01 11:38:27 +02:00
"*** Niewazny kanal ***",
2002-04-06 09:51:08 +02:00
"*** Canal inv<6E>lido ***",
2003-03-30 10:06:20 +02:00
"*** Akiro Kanali ***",
2002-05-26 09:43:17 +02:00
"*** Felaktig kanal ***",
2002-06-10 16:18:50 +02:00
"*** Canal invalid ***",
2002-06-22 09:30:06 +02:00
"*** <20>rv<72>nytelen csatorna ***",
2003-05-16 13:04:52 +02:00
"*** Canal incorrecte ***",
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!",
2003-05-27 15:38:42 +02:00
"Nessuna periferica DVB disponibile per registrare!",
2001-03-31 09:58:14 +02:00
"Geen vrije DVB kaart om op te nemen!",
2001-06-22 15:19:57 +02:00
"Nenhuma placa DVB disponivel para gravar!",
2001-07-22 09:36:49 +02:00
"Pas de carte DVB disponible pour l'enregistrement!",
2002-02-09 17:20:19 +01:00
"Ingen ledige DVB enheter for opptak!",
2003-05-24 11:00:26 +02:00
"Ei vapaata vastaanotinta tallennukselle!",
2002-04-01 11:38:27 +02:00
"Brak wolnej karty DVB do nagrywania!",
2002-04-06 09:51:08 +02:00
"<EFBFBD>No hay dispositivo DVB disponible para grabar!",
2003-03-30 10:06:20 +02:00
"Den periseuei DVB Karta gia egrafi!",
2002-05-26 09:43:17 +02:00
"Det finns ingen ledig DVB enhet f<>r inspelning!",
2002-06-10 16:18:50 +02:00
"Nu mai sunt dispozitive DVB pentru inregistrare!",
2002-06-22 09:30:06 +02:00
"Nincs szabad DVB k<>rtya a felv<6C>telhez!",
2003-05-16 13:04:52 +02:00
"No hi ha cap dispositiu DVB lliure per gravar!",
2000-11-11 10:39:27 +01:00
},
{ "Channel not available!",
"Kanal nicht verf<72>gbar!",
2003-05-25 09:51:59 +02:00
"Kanal ni razpolozljiv!",
2003-05-27 15:38:42 +02:00
"Canale non disponibile!",
2003-09-11 13:51:56 +02:00
"Kanaal niet beschikbaar",
"",//TODO
2003-05-24 10:26:36 +02:00
"Cha<EFBFBD>ne non disponible!",
"",//TODO
2003-05-24 11:00:26 +02:00
"Kanava ei ole k<>ytett<74>viss<73>!",
2003-05-31 09:35:45 +02:00
"Kanal jest niedostepny!",
2003-05-16 13:04:52 +02:00
"!Canal no disponible!",
2003-03-30 10:06:20 +02:00
"To kanali den ine diathesimo",
2003-01-26 11:48:30 +01:00
"Kanalen ej tillg<6C>nglig!",
"",//TODO
2003-06-06 15:43:49 +02:00
"A csatorna nem el<65>rhet<65>",
2003-05-16 13:04:52 +02:00
"Canal no disponible!",
},
{ "Channel settings are not unique!",
"Kanaleinstellungen sind nicht eindeutig!",
2003-05-25 09:51:59 +02:00
"Nastavitve kanala niso edinstvene!",
2003-05-27 15:38:42 +02:00
"Paramentri Canale non unici!",
2003-09-11 13:51:56 +02:00
"Kanaalinstellingen zijn niet uniek!",
"",//TODO
2003-05-24 11:01:58 +02:00
"Caract<EFBFBD>ristiques des cha<68>nes ne sont pas uniques",
"",//TODO
2003-05-24 11:00:26 +02:00
"Kanava-asetukset eiv<69>t ole yksil<69>lliset!",
2003-05-31 09:35:45 +02:00
"Nastawy kanalu sa niejednoznaczne!",
2003-05-16 13:04:52 +02:00
"!Propiedades de canal duplicadas!",
2003-05-31 09:09:45 +02:00
"Oi rithmiseis tou kanaliou simpiptoun me allo!",
2003-01-26 11:48:30 +01:00
"Kanalinst<EFBFBD>llningarna <20>r ej unika!",
"",//TODO
2003-06-06 15:43:49 +02:00
"A csatornabe<62>ll<6C>t<EFBFBD>sok nem egy<67>rtelm<6C>ek",
2003-05-16 13:04:52 +02:00
"Propietats del canal duplicades!",
},
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)!",
2001-03-31 09:58:14 +02:00
"Kanaal geblokkeerd (neemt op)!",
2001-06-22 15:19:57 +02:00
"Canal bloqueado (a gravar)!",
2001-07-22 09:36:49 +02:00
"Cha<EFBFBD>ne verrouill<6C>e (enregistrement en cours)!",
2001-07-24 16:00:54 +02:00
"Kanalen er l<>st (opptak)!",
2003-05-24 11:00:26 +02:00
"Kanava lukittu (tallennus k<>ynniss<73>)!",
2002-04-01 11:38:27 +02:00
"Kanal zablokowany (nagrywanie w toku)!",
2002-04-06 09:51:08 +02:00
"<EFBFBD>Canal bloqueado (grabando)!",
2003-05-31 09:09:45 +02:00
"To kanali ine apasxolimeno (Ginete egrafi)!",
2002-05-26 09:43:17 +02:00
"Kanalen <20>r l<>st (inspelning p<>g<EFBFBD>r)!",
2002-06-10 16:18:50 +02:00
"Canal blocat (inregistrare)!",
2002-06-22 09:30:06 +02:00
"Csatorna hozz<7A>f<EFBFBD>rhetetlen (felv<6C>tel)!",
2003-05-16 13:04:52 +02:00
"Canal bloquejat (gravant)!",
2000-11-11 10:39:27 +01:00
},
{ "Can't start Transfer Mode!",
"Transfer-Mode kann nicht gestartet werden!",
2002-03-31 15:55:29 +02:00
"Ne morem zaceti z prenosnim nacinom",
2002-03-29 16:20:39 +01:00
"Impossibile iniziare la modalita' di trasferimento!",
2002-03-22 13:58:50 +01:00
"Kan Transfer-Mode niet starten",
2002-03-22 14:30:41 +01:00
"Imposs<EFBFBD>vel iniciar modo de transfer<65>ncia!",
2002-03-03 16:39:54 +01:00
"Impossible d'utiliser le mode transfert!",
2002-03-31 16:32:04 +02:00
"Kan ikke starte transfer modus!",
"Siirtotilan aloitus ep<65>onnistui!",
2002-04-01 11:38:27 +02:00
"Tryb transferowy jest niemozliwy!",
2002-04-06 09:51:08 +02:00
"<EFBFBD>No puedo iniciar modo de transferencia!",
2003-03-30 10:06:20 +02:00
"Adinamia ekinisis katastasis metaforas!",
2002-05-26 09:43:17 +02:00
"Kan inte starta Transfer Mode!",
2002-06-10 16:18:50 +02:00
"Nu pot porni Modul de Transfer!",
2002-06-22 09:30:06 +02:00
"Transfer-Mode nem ind<6E>that<61>!",
2003-05-16 13:04:52 +02:00
"No puc iniciar el mode de transfer<65>ncia!",
},
{ "No editing marks defined!",
"Keine Schnittmarken gesetzt!",
2003-05-25 09:51:59 +02:00
"Nobena tocka ni definirana!",
2003-05-27 15:38:42 +02:00
"Nessun marcatore di modifica definito!",
2003-09-11 13:51:56 +02:00
"Geen bewerkingsmarkeringen gedefinieerd!",
"",//TODO
2003-05-24 10:26:36 +02:00
"Pas de marques d'<27>dition d<>finies!",
"",//TODO
"",//TODO
2003-05-31 09:35:45 +02:00
"Brak znakow montazowych!",
2003-05-24 11:00:26 +02:00
"Muokkausmerkinn<EFBFBD>t puuttuvat",
2003-05-31 09:09:45 +02:00
"Den exoun oristei simeia gia epexsergasia",
2003-05-24 14:04:45 +02:00
"Det finns inga redigeringsm<73>rken",//TODO
"",//TODO
2003-06-06 15:43:49 +02:00
"A v<>g<EFBFBD>pont nincs kijel<65>lve",//TODO
"No hi ha marques d'edici<63> definides",
},
2000-12-28 12:57:16 +01:00
{ "Can't start editing process!",
"Schnitt kann nicht gestartet werden!",
"Ne morem zaceti urejanja!",
2003-05-27 15:38:42 +02:00
"Impossibile iniziare processo di modifica!",
2001-03-31 09:58:14 +02:00
"Kan niet beginnen met bewerken!",
2002-03-22 14:30:41 +01:00
"N<EFBFBD>o pode iniciar a modifica<63><61>o!",
2001-07-22 09:36:49 +02:00
"Impossible de commencer le montage!",
2001-07-24 16:00:54 +02:00
"Kan ikke starte redigeringsprosessen!",
2003-05-24 11:00:26 +02:00
"Muokkauksen aloitus ep<65>onnistui!",
2002-04-01 11:38:27 +02:00
"Uruchamianie montazu jest niemozliwe!",
2002-04-06 09:51:08 +02:00
"<EFBFBD>No puedo iniciar proceso de modificaci<63>n!",
2003-03-30 10:06:20 +02:00
"Adinamia ekinisis tis epexsergasias!",
2003-05-24 14:04:45 +02:00
"Kan inte starta redigering!",
2002-06-10 16:18:50 +02:00
"Nu pot porni procesul de editare!",
2002-06-22 09:30:06 +02:00
"A v<>g<EFBFBD>s nem ind<6E>that<61>!",
2003-05-16 13:04:52 +02:00
"No puc iniciar el proc<6F>s d'edici<63>!",
2000-12-28 12:57:16 +01:00
},
{ "Editing process already active!",
"Schnitt bereits aktiv!",
"Urejanje je ze aktivno!",
2003-05-27 15:38:42 +02:00
"Processo di modifica gia` attivo!",
2001-03-31 09:58:14 +02:00
"Bewerken is al actief!",
2002-03-22 14:30:41 +01:00
"Processo de modifica<63><61>o j<> activo!",
2001-07-22 09:36:49 +02:00
"Montage d<>j<EFBFBD> en cours!",
2001-07-24 16:00:54 +02:00
"Redigeringsprosessen er allerede aktiv!",
2002-02-09 17:20:19 +01:00
"Muokkaus on jo k<>ynniss<73>!",
2002-04-01 11:38:27 +02:00
"Montaz w toku!",
2002-04-06 09:51:08 +02:00
"<EFBFBD>Proceso de modificaci<63>n ya fue iniciado!",
2003-03-30 10:06:20 +02:00
"Epexsergasia vriskete se exselixsi!",
2003-05-24 14:04:45 +02:00
"Redigeringen <20>r redan aktiv!",
2002-06-10 16:18:50 +02:00
"Procesul de editare este activ!",
2002-06-22 09:30:06 +02:00
"A v<>g<EFBFBD>s m<>r aktiv<69>lt!",
2003-05-16 13:04:52 +02:00
"Proc<EFBFBD>s d'edici<63> iniciat anteriorment!",
2000-12-28 12:57:16 +01:00
},
2001-09-01 11:44:08 +02:00
{ "Can't shutdown - option '-s' not given!",
"Shutdown unm<6E>glich - Option '-s' fehlt!",
2003-05-25 09:51:59 +02:00
"Zaustavitev ni izvedljiva - opcija '-s' ni podana!",
2003-05-27 15:38:42 +02:00
"Impossibile spegnere - parametro '-s' non passato!",
2002-03-22 13:58:50 +01:00
"Shutdown onmogelijk - Optie '-s' ontbreekt!",
2002-03-22 14:30:41 +01:00
"Imposs<EFBFBD>vel desligar - falta a op<6F><70>o '-s'!",
2002-03-03 16:39:54 +01:00
"Arr<EFBFBD>t impossible - option '-s' absente!",
2002-03-31 16:32:04 +02:00
"Kan ikke sl<73> av - startet uten parameteret '-s'!",
2003-05-24 11:00:26 +02:00
"Sammutus ei onnistu - '-s' parametri puuttuu!",
2002-05-01 10:35:01 +02:00
"Wylaczenie niemozliwe - brak opcji '-s'!",
2003-05-16 13:04:52 +02:00
"<EFBFBD>No puedo apagar - opci<63>n '-s' ausente!",
2003-03-30 10:06:20 +02:00
"Adinaton na ginei termatismos. Aniparkti i parametros '-s'!",
2003-05-24 14:04:45 +02:00
"Kan inte avsluta, m<>ste anv<6E>nda parameter '-s'",
2002-06-10 16:18:50 +02:00
"Nu pot opri calculatorul - vezi optiunea '-s'",
2002-06-22 09:30:06 +02:00
"A le<6C>ll<6C>t<EFBFBD>s nem lehets<74>ges - Opci<63> '-s' hi<68>nyzik!",
2003-05-27 07:30:43 +02:00
"No puc apagar, falta la opci<63> -s !",
2001-09-01 11:44:08 +02:00
},
{ "Low disk space!",
"Platte beinahe voll!",
2002-03-31 15:55:29 +02:00
"Zmanjkuje prostora na disku",
2002-03-29 16:20:39 +01:00
"Poco spazio su disco!",
2002-03-22 13:58:50 +01:00
"Disk bijna vol!",
2002-03-22 14:30:41 +01:00
"Espa<EFBFBD>o em disco reduzido!",
2002-03-03 16:39:54 +01:00
"Disque presque plein!",
2002-03-31 16:32:04 +02:00
"Lite ledig diskplass!",
2002-02-09 17:20:19 +01:00
"Kovalevy l<>hes t<>ynn<6E>!",
2002-04-01 11:38:27 +02:00
"Dysk wkrotce pelny!",
2002-04-06 09:51:08 +02:00
"<EFBFBD>Disco casi lleno",
2002-05-01 10:35:01 +02:00
"O Skliros kontevi na gemisi!",
2002-05-26 09:43:17 +02:00
"L<EFBFBD>gt diskutrymme!",
2002-06-10 16:18:50 +02:00
"Spatiu scazut pe disc!",
2002-06-22 09:30:06 +02:00
"A merev lemez majdnem tele!",
"Disc gaireb<65> ple!",
},
{ "Can't open CAM menu!",
"CAM-Men<65> kann nicht ge<67>ffnet werden!",
2003-05-25 09:51:59 +02:00
"Ne morem odpreti CAM menija!",
2003-05-27 15:38:42 +02:00
"Impossibile aprire il menu CAM!",
2003-09-11 13:51:56 +02:00
"Kan CAM-menu niet openen!",
"",//TODO
2003-05-24 10:26:36 +02:00
"Impossible d'ouvrir le menu CAM!",
"",//TODO
"Salausmoduulin valikko ei saatavilla",
2003-05-31 09:35:45 +02:00
"CAM-Menu niedostepne!",
2003-05-16 13:04:52 +02:00
"<EFBFBD>No pudeo acceder al men<65> de la CAM!",
2003-03-30 10:06:20 +02:00
"Den mpori na aniksi to CAM menou!",
2003-05-24 14:04:45 +02:00
"Det g<>r inte att <20>ppna CAM menyn!",
"",//TODO
2003-06-06 15:43:49 +02:00
"A CAM-Men<65> nem nyithat<61>",
2003-05-16 13:04:52 +02:00
"No puc obrir el men<65> de la CAM!",
},
{ "Can't reset CAM!",
"CAM-Reset fehlgeschlagen!",
2003-05-25 09:51:59 +02:00
"Ne morem resetirati CAM-a",
2003-05-27 15:38:42 +02:00
"Impossibile reimpostare il modulo CAM!",
2003-09-11 13:51:56 +02:00
"Kan CAM niet herstarten!",
"",//TODO
2003-05-24 10:26:36 +02:00
"Impossible de r<>initialiser la CAM!",
"",//TODO
2003-05-24 11:00:26 +02:00
"Salausmoduulin alustus ep<65>onnistui!",
2003-05-31 09:35:45 +02:00
"Nieudany CAM-Reset!",
2003-05-16 13:04:52 +02:00
"<EFBFBD>No puedo reiniciar la CAM!",
2003-03-30 10:06:20 +02:00
"Adinato na gini epanafora sto CAM",
2003-05-24 14:04:45 +02:00
"Kan inte <20>terst<73>lla CAM!",
"",//TODO
2003-06-06 15:43:49 +02:00
"A CAM-Reset nem siker<65>lt",
2003-05-16 13:04:52 +02:00
"No puc reiniciar la CAM!",
},
{ "CAM has been reset",
"CAM wurde zur<75>ckgesetzt!",
2003-05-25 09:51:59 +02:00
"CAM je resetiran!",
2003-05-27 15:38:42 +02:00
"Modulo CAM reimpostato!",
2003-09-11 13:51:56 +02:00
"CAM is herstart!",
"",//TODO
2003-05-24 10:26:36 +02:00
"La CAM a <20>t<EFBFBD> r<>initialis<69>e",
"",//TODO
2003-05-24 11:00:26 +02:00
"Salausmoduuli alustettu",
2003-05-31 09:35:45 +02:00
"CAM-Reset wykonany!",
2003-05-16 13:04:52 +02:00
"CAM reiniciada",
2003-03-30 10:06:20 +02:00
"Sto CAM egine apanafora",
2003-05-24 14:04:45 +02:00
"CA modulen har <20>terst<73>llts",
"",//TODO
2003-06-06 15:43:49 +02:00
"A CAM vissza lett <20>ll<6C>tva",
2003-05-16 13:04:52 +02:00
"CAM reiniciada",
},
// Setup pages:
{ "OSD",
"OSD",
2002-03-31 15:55:29 +02:00
"OSD",
2002-03-29 16:20:39 +01:00
"OSD",
2002-03-22 13:58:50 +01:00
"OSD",
2002-03-22 14:30:41 +01:00
"OSD",
2002-03-23 10:26:55 +01:00
"Affichage des menus",
2002-03-31 16:32:04 +02:00
"OSD",
2003-05-24 11:00:26 +02:00
"Kuvaruutun<EFBFBD>ytt<EFBFBD>",
2002-04-01 11:38:27 +02:00
"OSD",
2003-05-16 13:04:52 +02:00
"Men<EFBFBD>s en pantalla",
2002-04-06 09:51:08 +02:00
"OSD",
2002-05-01 10:35:01 +02:00
"OSD",
2002-05-26 09:43:17 +02:00
"OSD",
2002-06-10 16:18:50 +02:00
"OSD",
2003-05-16 13:04:52 +02:00
"Informaci<EFBFBD> en pantalla",
},
{ "EPG",
"EPG",
2003-05-25 09:51:59 +02:00
"Programski vodnik",
2002-03-29 16:20:39 +01:00
"EPG",
2002-03-22 13:58:50 +01:00
"EPG",
2002-03-22 14:30:41 +01:00
"EPG",
2002-03-23 10:26:55 +01:00
"Guide des programmes",
2002-03-31 16:32:04 +02:00
"Programoversikt",
2002-03-22 13:32:42 +01:00
"Ohjelmaopas",
2002-04-01 11:38:27 +02:00
"EPG",
2003-05-16 13:04:52 +02:00
"Gu<EFBFBD>a de Programaci<63>n",
2002-05-01 10:35:01 +02:00
"EPG",
2002-05-26 09:43:17 +02:00
"Elektronisk programguide",
2002-06-10 16:18:50 +02:00
"EPG",
2002-06-22 09:30:06 +02:00
"EPG",
2003-05-16 13:04:52 +02:00
"Guia de Programes",
},
{ "DVB",
"DVB",
2002-03-31 15:55:29 +02:00
"DVB",
2002-03-29 16:20:39 +01:00
"Scheda DVB",
2002-03-22 13:58:50 +01:00
"DVB",
2002-03-22 14:30:41 +01:00
"DVB",
2002-03-23 10:26:55 +01:00
"Cartes DVB",
2002-03-31 16:32:04 +02:00
"DVB-enheter",
2002-03-22 13:32:42 +01:00
"DVB",
2002-04-01 11:38:27 +02:00
"DVB",
2002-04-06 09:51:08 +02:00
"DVB",
2002-05-01 10:35:01 +02:00
"DVB",
2002-05-26 09:43:17 +02:00
"DVB",
2002-06-10 16:18:50 +02:00
"Placa DVB",
2002-06-22 09:30:06 +02:00
"DVB",
2003-05-16 13:04:52 +02:00
"Tarja DVB",
},
{ "LNB",
"LNB",
2002-03-31 15:55:29 +02:00
"LNB",
2002-03-29 16:20:39 +01:00
"LNB",
2002-03-22 13:58:50 +01:00
"LNB",
2002-03-22 14:30:41 +01:00
"LNB",
2002-03-23 10:26:55 +01:00
"LNB",
2002-03-31 16:32:04 +02:00
"LNB",
2002-03-22 13:32:42 +01:00
"LNB",
2002-04-01 11:38:27 +02:00
"LNB",
2002-04-06 09:51:08 +02:00
"LNB",
2002-05-01 10:35:01 +02:00
"LNB",
2002-05-26 09:43:17 +02:00
"LNB",
2002-06-10 16:18:50 +02:00
"LNB",
2002-06-22 09:30:06 +02:00
"LNB",
2003-05-16 13:04:52 +02:00
"Configuraci<EFBFBD> de l'LNB",
},
{ "CICAM",
"CICAM",
2002-03-31 15:55:29 +02:00
"CICAM",
2002-03-29 16:20:39 +01:00
"CICAM",
2002-03-22 13:58:50 +01:00
"CICAM",
2002-03-22 14:30:41 +01:00
"CICAM",
2002-03-23 10:26:55 +01:00
"Acc<EFBFBD>s conditionnel",
2002-03-31 16:32:04 +02:00
"CICAM",
"CI-moduuli",
2002-04-01 11:38:27 +02:00
"CICAM",
2002-04-06 09:51:08 +02:00
"CICAM",
2002-05-01 10:35:01 +02:00
"CICAM",
2002-05-26 09:43:17 +02:00
"CICAM",
2002-06-10 16:18:50 +02:00
"Acces conditionat",
2002-06-22 09:30:06 +02:00
"CICAM",
2003-05-16 13:04:52 +02:00
"CI Acc<63>s condicional",
},
{ "Recording",
"Aufnahme",
2002-03-31 15:55:29 +02:00
"Snemanje",
2002-03-29 16:20:39 +01:00
"Registrazione",
2002-03-22 13:58:50 +01:00
"Opname",
2002-03-22 14:30:41 +01:00
"A gravar",
2002-03-23 10:26:55 +01:00
"Enregistrement",
2002-03-31 16:32:04 +02:00
"Opptak",
2003-05-24 11:00:26 +02:00
"Tallennus",
2002-04-01 11:38:27 +02:00
"Nagranie",
2003-05-16 13:04:52 +02:00
"Opciones de Grabaci<63>n",
2002-05-01 10:35:01 +02:00
"Egrafi",
2002-05-26 09:43:17 +02:00
"Inspelning",
2002-06-10 16:18:50 +02:00
"Inregistrare",
2002-06-22 09:30:06 +02:00
"Felv<EFBFBD>tel",
2003-05-16 13:04:52 +02:00
"Opcions de Gravaci<63>",
},
{ "Replay",
"Wiedergabe",
2002-03-31 15:55:29 +02:00
"Predvajanje",
2002-03-29 16:20:39 +01:00
"Replay",
2002-03-22 13:58:50 +01:00
"Afspelen",
2002-03-22 14:30:41 +01:00
"Replay",
2002-03-23 10:26:55 +01:00
"Lecture",
2002-03-31 16:32:04 +02:00
"Spill av",
2003-05-24 11:00:26 +02:00
"Toisto",
2002-04-01 11:38:27 +02:00
"Odtwarzanie",
2003-05-16 13:04:52 +02:00
"Opciones de Reproducci<63>n",
2002-05-01 10:35:01 +02:00
"Anametadosi",
2003-05-24 14:04:45 +02:00
"Uppspelning",
2002-06-10 16:18:50 +02:00
"Redare",
2002-06-22 09:30:06 +02:00
"Lej<EFBFBD>tsz<EFBFBD>s",
2003-05-16 13:04:52 +02:00
"Opcions de Reproducci<63>",
},
{ "Miscellaneous",
"Sonstiges",
2002-03-31 15:55:29 +02:00
"Ostalo",
2002-03-29 16:20:39 +01:00
"Generici",
2002-03-22 13:58:50 +01:00
"Overig",
2002-03-22 14:30:41 +01:00
"Outros",
2002-03-23 10:26:55 +01:00
"Divers",
2002-03-31 16:32:04 +02:00
"Forskjellig",
2003-05-24 11:00:26 +02:00
"Sekalaiset",
2002-04-01 11:38:27 +02:00
"Pozostale",
2002-04-06 09:51:08 +02:00
"Varios",
2002-05-01 10:35:01 +02:00
"Diafora",
2002-05-26 09:43:17 +02:00
"Diverse",
2002-06-10 16:18:50 +02:00
"Diverse",
2002-06-22 09:30:06 +02:00
"Egy<EFBFBD>b",
2003-05-16 13:04:52 +02:00
"Miscel<EFBFBD>l<EFBFBD>nia",
},
2002-05-09 16:26:56 +02:00
{ "Plugins",
"Plugins",
"Plugins",
"Plugins",
"Plugins",
"Plugins",
"Plugins",
"Plugins",
"Laajennokset",
2002-05-09 16:26:56 +02:00
"Plugins",
"Plugins",
"Plugins",
2003-05-24 14:04:45 +02:00
"Moduler",
2002-06-22 09:30:06 +02:00
"Plugins",
"Plugins",
2003-05-16 13:04:52 +02:00
"Plugins",
2002-05-09 16:26:56 +02:00
},
{ "Plugin",
"Plugin",
"Plugin",
"Plugin",
"Plugin",
"Plugin",
"Plugin",
"Plugin",
"Laajennos",
"Plugin",
"Plugin",
"Plugin",
2003-05-24 14:04:45 +02:00
"Modul",
2002-06-22 09:30:06 +02:00
"Plugin",
"Plugin",
2003-05-16 13:04:52 +02:00
"Plugin",
},
2002-03-17 12:04:35 +01:00
{ "Restart",
"Neustart",
2002-03-31 15:55:29 +02:00
"Ponoven zagon",
2003-05-27 15:38:42 +02:00
"Riavvio",
2002-03-22 13:58:50 +01:00
"Herstart",
2002-03-22 14:30:41 +01:00
"Reiniciar",
2002-03-23 10:26:55 +01:00
"Red<EFBFBD>marrer",
2002-03-31 16:32:04 +02:00
"Start p<> nytt",
"K<EFBFBD>ynnist<EFBFBD> uudelleen",
2002-04-01 11:38:27 +02:00
"Zastartowac",
2002-04-06 09:51:08 +02:00
"Reiniciar",
2002-05-01 10:35:01 +02:00
"Epanekinisi",
2002-05-26 09:43:17 +02:00
"Omstart",
2002-06-10 16:18:50 +02:00
"Restart",
2002-06-22 09:30:06 +02:00
"<EFBFBD>jraind<EFBFBD>t<EFBFBD>s",
2003-05-16 13:04:52 +02:00
"Reiniciar",
2002-03-17 12:04:35 +01:00
},
2000-11-11 10:39:27 +01:00
// Setup parameters:
2002-03-17 14:11:22 +01:00
{ "Setup.OSD$Language",
"Sprache",
"Jezik",
"Linguaggio",
"Taal",
2002-03-22 14:30:41 +01:00
"Linguagem",
2002-03-17 14:11:22 +01:00
"Langue",
"Spr<EFBFBD>k",
"Kieli",
2002-04-01 11:38:27 +02:00
"Jezyk",
2003-05-16 13:04:52 +02:00
"Idioma",
2002-05-01 10:35:01 +02:00
"Glosa",
2002-05-26 09:43:17 +02:00
"Spr<EFBFBD>k",
2002-06-10 16:18:50 +02:00
"Limba OSD",
2002-06-22 09:30:06 +02:00
"Nyelv",
2003-05-16 13:04:52 +02:00
"Idioma",
2002-03-17 14:11:22 +01:00
},
{ "Setup.OSD$Width",
"Breite",
2002-03-31 15:55:29 +02:00
"Sirina",
2003-05-27 15:38:42 +02:00
"Larghezza OSD",
2002-03-22 13:58:50 +01:00
"Breedte",
2002-03-22 14:30:41 +01:00
"Largura",
2002-03-23 10:26:55 +01:00
"Largeur",
2002-03-31 16:32:04 +02:00
"Bredde",
2002-03-22 13:32:42 +01:00
"Leveys",
2002-04-01 11:38:27 +02:00
"Szerokosc",
2002-04-06 09:51:08 +02:00
"Anchura",
2002-05-01 10:35:01 +02:00
"Makros",
2002-05-26 09:43:17 +02:00
"Bredd",
2002-06-10 16:18:50 +02:00
"Latime OSD",
2002-06-22 09:30:06 +02:00
"Sz<EFBFBD>less<EFBFBD>g",
2003-05-16 13:04:52 +02:00
"Amplada",
2002-03-17 14:11:22 +01:00
},
{ "Setup.OSD$Height",
"H<EFBFBD>he",
2002-03-31 15:55:29 +02:00
"Visina",
2003-05-27 15:38:42 +02:00
"Altezza OSD",
2002-03-22 13:58:50 +01:00
"Hoogte",
2002-03-22 14:30:41 +01:00
"Altura",
2002-03-23 10:26:55 +01:00
"Hauteur",
2002-03-31 16:32:04 +02:00
"H<EFBFBD>yde",
2002-03-22 13:32:42 +01:00
"Korkeus",
2002-04-01 11:38:27 +02:00
"Wysokosc",
2002-04-06 09:51:08 +02:00
"Altura",
2002-05-01 10:35:01 +02:00
"Ipsos",
2002-05-26 09:43:17 +02:00
"H<EFBFBD>jd",
2002-06-10 16:18:50 +02:00
"Inaltime OSD",
2002-06-22 09:30:06 +02:00
"Magass<EFBFBD>g",
2003-05-16 13:04:52 +02:00
"Al<EFBFBD>ada",
2002-03-17 14:11:22 +01:00
},
2002-03-31 13:39:56 +02:00
{ "Setup.OSD$Message time (s)",
"Anzeigedauer f<>r Nachrichten (s)",
2002-03-31 15:55:29 +02:00
"Cas sporocila (s)",
2002-03-31 13:39:56 +02:00
"Tempo del messaggio (s)",
"Weergave duur van berichten (s)",
"Mostrar contador (s)",
"Dur<EFBFBD>e affichage <20>cran (s)",
2002-03-31 16:32:04 +02:00
"Tid meldinger skal vises (s)",
2003-05-24 11:00:26 +02:00
"Viestien esitysaika (s)",
2002-04-01 11:38:27 +02:00
"Czas wyswietlania wiadomosci (s)",
2002-04-06 09:51:08 +02:00
"Duraci<EFBFBD>n muestra mensajes (s)",
2002-05-04 14:44:32 +02:00
"Xronos endiksis minimaton (d)",
2002-05-26 09:43:17 +02:00
"Tid f<>r meddelanden (sek)",
2002-06-10 16:18:50 +02:00
"Timp afisare mesaj (sec)",
2002-06-22 09:30:06 +02:00
"Inform<EFBFBD>ci<EFBFBD> felt<6C>ntet<65>s<EFBFBD>nek id<69>tartama",
"Durada dels missatges (s)",
2002-03-17 14:11:22 +01:00
},
{ "Setup.OSD$Channel info position",
"Kanal-Info Position",
2002-03-31 15:55:29 +02:00
"Pozicija informacije o kanalu",
2003-05-27 15:38:42 +02:00
"Posizione informazioni canale",
2002-03-22 13:58:50 +01:00
"Kanaal info positie",
2002-03-22 14:30:41 +01:00
"Posi<EFBFBD><EFBFBD>o de info dos canais",
2002-03-17 14:11:22 +01:00
"Position infos cha<68>nes",
2002-03-31 16:32:04 +02:00
"Posisjon p<> kanalinformasjon",
2003-05-24 11:00:26 +02:00
"Kanavatiedon sijainti",
2002-04-01 11:38:27 +02:00
"Lokalizacja informacji o kanale",
2002-04-06 09:51:08 +02:00
"Posici<EFBFBD>n para informaci<63>n canal",
2002-05-01 10:35:01 +02:00
"Thesi Pliroforias kanalion",
2002-05-26 09:43:17 +02:00
"Placering av kanalinformation",
2002-06-10 16:18:50 +02:00
"Pozitie info canal",
2002-06-22 09:30:06 +02:00
"Csatorna-Inf<6E> pozici<63>ja",
2003-05-16 13:04:52 +02:00
"Posici<EFBFBD> de la informaci<63> del canal",
2000-11-11 10:39:27 +01:00
},
2002-03-17 14:11:22 +01:00
{ "Setup.OSD$Info on channel switch",
"Info beim Kanalwechsel",
2000-11-19 09:27:15 +01:00
"Pokazi naziv kanala",
2003-05-27 15:38:42 +02:00
"Mostra info al cambio canale",
2001-03-31 09:58:14 +02:00
"Kanaal info tonen",
2001-06-22 15:19:57 +02:00
"Mostrar info ao mudar de Canal",
2001-07-22 09:36:49 +02:00
"Affichage progr. en cours",
2001-07-24 16:00:54 +02:00
"Info ved kanalskifte",
2003-05-24 11:00:26 +02:00
"N<EFBFBD>yt<EFBFBD> kanavatieto",
2002-04-01 11:38:27 +02:00
"Informacja przy zmianie kanalu",
2002-04-06 09:51:08 +02:00
"Informaci<EFBFBD>n para cambio de canal",
2002-05-01 10:35:01 +02:00
"Plirofories stin alagi kanaliou",
2002-05-26 09:43:17 +02:00
"Information vid kanalbyte",
2002-06-10 16:18:50 +02:00
"Info despre comutare canal",
2002-06-22 09:30:06 +02:00
"Inf<EFBFBD> a csatorna v<>lt<6C>s<EFBFBD>n<EFBFBD>l",
2003-05-16 13:04:52 +02:00
"Informaci<EFBFBD> del canvi de canal",
2000-11-11 10:39:27 +01:00
},
2002-03-17 14:11:22 +01:00
{ "Setup.OSD$Scroll pages",
2000-11-11 10:39:27 +01:00
"Seitenweise scrollen",
2000-11-19 09:27:15 +01:00
"Drsni meni",
2003-05-27 15:38:42 +02:00
"Scorri pagina nel menu",
2001-03-31 09:58:14 +02:00
"Scrollen per pagina",
2002-03-22 14:30:41 +01:00
"Scroll da p<>gina no menu",
2003-05-01 14:11:42 +02:00
"Scrolling par pages",
2001-07-24 16:00:54 +02:00
"Rask rulling i menyer",
"Valikkojen sivutus",
2002-04-01 11:38:27 +02:00
"Przesuwac stronami",
2002-04-06 09:51:08 +02:00
"Desplazar p<>gina entera",
2003-03-30 10:06:20 +02:00
"Kilisi selidas",
2002-05-26 09:43:17 +02:00
"Bl<EFBFBD>ddra sidor",
2002-06-10 16:18:50 +02:00
"Deruleaza pagini",
2002-06-22 09:30:06 +02:00
"Oldalank<EFBFBD>nt l<>ptetmi",
2003-05-16 13:04:52 +02:00
"Despla<EFBFBD>ar p<>gina sencera",
2000-11-11 10:39:27 +01:00
},
2002-03-17 14:11:22 +01:00
{ "Setup.OSD$Sort timers",
"Timer sortieren",
2002-03-31 15:55:29 +02:00
"Sortiraj termine",
2002-03-29 16:20:39 +01:00
"Ordinamento timer",
2002-03-22 13:58:50 +01:00
"Timers sorteren",
2002-03-22 14:30:41 +01:00
"Ordenar os timers",
2002-03-17 14:11:22 +01:00
"Trier les programmations",
2002-03-31 16:32:04 +02:00
"Sorter timere",
2002-03-17 14:11:22 +01:00
"J<EFBFBD>rjest<EFBFBD> ajastimet",
2002-04-01 11:38:27 +02:00
"Sortowanie timerow",
2003-05-16 13:04:52 +02:00
"Ordenar timers",
2002-05-04 14:44:32 +02:00
"Organosi programmatismenon",
2002-05-26 09:43:17 +02:00
"Sortera timers",
2002-06-10 16:18:50 +02:00
"Sortare timere",
2002-06-22 09:30:06 +02:00
"A beprogramozott felv<6C>telek elrendez<65>se",
2003-05-16 13:04:52 +02:00
"Ordenar gravacions programades",
2000-11-11 10:39:27 +01:00
},
2002-03-17 14:11:22 +01:00
{ "Setup.OSD$Recording directories",
2002-04-06 09:51:08 +02:00
"Aufnahmeverzeichnisse",
2002-03-31 15:55:29 +02:00
"Direktoriji za posnetke",
2002-03-29 16:20:39 +01:00
"Directory di registrazione",
2002-03-22 13:58:50 +01:00
"Opname directories",
2002-03-22 14:30:41 +01:00
"Directorias de grava<76><61>o",
2002-03-17 14:11:22 +01:00
"Dossiers d'enregistrements",
2002-03-31 16:32:04 +02:00
"Kataloger til opptak",
2003-05-24 11:00:26 +02:00
"Tallennehakemistot",
2002-04-01 11:38:27 +02:00
"Wykaz nagran",
2003-05-16 13:04:52 +02:00
"Gracaciones en directorios",
2003-03-30 10:06:20 +02:00
"Fakeloi egrafon",
2002-05-26 09:43:17 +02:00
"Kataloger f<>r inspelningar",
2002-06-10 16:18:50 +02:00
"Directoare inregistrari",
2002-06-22 09:30:06 +02:00
"Felv<EFBFBD>telek list<73>ja",
"Gravacions en subcarpetes",
2002-02-03 15:55:04 +01:00
},
2002-03-31 13:39:56 +02:00
{ "Setup.EPG$EPG scan timeout (h)",
"Zeit bis EPG Scan (h)",
"Cas do EPG pregleda (h)",
2003-05-27 15:38:42 +02:00
"Timeout scansione EPG (h)",
2002-03-31 13:39:56 +02:00
"EPG-scan Timeout (h)",
"Expirou o EPG (h)",
2003-05-01 14:11:42 +02:00
"Inactivit<EFBFBD> avant rech. EPG (h)",
2002-03-31 13:39:56 +02:00
"Ledig tid f<>r EPG-s<>k (h)",
2003-05-24 11:00:26 +02:00
"Ohjelmaoppaan taustap<61>ivitys (h)",
2002-04-01 11:38:27 +02:00
"Czas do skanu EPG (h)",
2002-04-06 09:51:08 +02:00
"Tiempo hasta exploraci<63>n EPG (h)",
2003-03-30 10:06:20 +02:00
"Xronos mexri eksetasi EPG se Ores",
2002-05-26 09:43:17 +02:00
"EPG s<>kning timeout",
2002-06-10 16:18:50 +02:00
"Timeout EPG",
2002-06-22 09:30:06 +02:00
"Fennmaradt id<69> az EPG-g (h)",
2003-05-16 13:04:52 +02:00
"M<EFBFBD>xim d'Hores a cercar per la Guia",
2002-03-17 14:11:22 +01:00
},
{ "Setup.EPG$EPG bugfix level",
"EPG Fehlerbereinigung",
2002-03-31 15:55:29 +02:00
"Nivo za popravilo EPG napak",
2003-05-27 15:38:42 +02:00
"Livello correzione EPG",
2002-03-22 13:58:50 +01:00
"EPG foutcorrectieniveau",
2002-03-22 14:30:41 +01:00
"N<EFBFBD>vel de correct<63><74>o EPG",
2002-03-17 14:11:22 +01:00
"Niveau de correction EPG",
2002-03-31 16:32:04 +02:00
"Niv<EFBFBD> for EPG-feilretting",
2003-05-24 11:00:26 +02:00
"Ohjelmaoppaan korjaustaso",
2002-04-01 11:38:27 +02:00
"Poziom bledow EPG",
2002-04-06 09:51:08 +02:00
"Nivel para arreglar EPG",
2002-05-01 10:35:01 +02:00
"EPG Bugfix Vathmos",
2002-05-26 09:43:17 +02:00
"Niv<EFBFBD> f<>r EPG bugfix",
2002-06-10 16:18:50 +02:00
"Nivel corectie EPG",
2002-06-22 09:30:06 +02:00
"EPG hibaelh<6C>r<EFBFBD>t<EFBFBD>s",
2003-05-16 13:04:52 +02:00
"Nivell de correcci<63> de la Guia",
2002-03-17 14:11:22 +01:00
},
{ "Setup.EPG$Set system time",
"Systemzeit stellen",
2002-03-31 15:55:29 +02:00
"Nastavi sistemski cas",
2003-05-27 15:38:42 +02:00
"Settaggio orario automatico",
2002-03-17 14:11:22 +01:00
"Systeem klok instellen",
2002-03-22 14:30:41 +01:00
"Ajustar rel<65>gio do sistema",
2002-03-17 14:11:22 +01:00
"Ajuster l'heure du syst<73>me",
"Juster system-klokken",
2003-05-24 11:00:26 +02:00
"Aseta kellonaika",
2002-04-01 11:38:27 +02:00
"Ustawianie czasu",
2002-04-06 09:51:08 +02:00
"Ajustar reloj de sistema",
2002-05-01 10:35:01 +02:00
"Sintonismos Oras ipologosti",
2002-05-26 09:43:17 +02:00
"St<EFBFBD>ll in systemtid",
2002-06-10 16:18:50 +02:00
"Seteaza ceasul sistem",
2002-06-22 09:30:06 +02:00
"Az id<69> be<62>ll<6C>t<EFBFBD>sa",
2003-05-16 13:04:52 +02:00
"Ajustar l'hora del sistema",
2002-03-17 14:11:22 +01:00
},
{ "Setup.EPG$Use time from transponder",
"Transponder f<>r Systemzeit",
2002-03-31 15:55:29 +02:00
"Transponder za nastavitev casa",
2002-03-29 16:20:39 +01:00
"Utilizza orario da transponder",
2002-03-22 13:58:50 +01:00
"Gebruik transponder tijd voor systeem",
2002-03-22 14:30:41 +01:00
"Usar rel<65>gio do transponder",
2002-03-23 10:26:55 +01:00
"Utiliser l'heure de la cha<68>ne",
2002-03-31 16:32:04 +02:00
"Bruk klokke fra transponder",
2002-03-22 13:32:42 +01:00
"Vastaanota kellonaika l<>hettimelt<6C>",
2002-04-01 11:38:27 +02:00
"Transponder do ustawiania czasu",
2002-04-06 09:51:08 +02:00
"Transponder para reloj de sistema",
2003-03-30 10:06:20 +02:00
"Anametadotis gia sintonismo tis oras",
2003-01-26 11:48:30 +01:00
"Anv<EFBFBD>nd klockan fr<66>n transponder",
2002-06-10 16:18:50 +02:00
"Preia ceasul din transponder",
2002-06-22 09:30:06 +02:00
"Id<EFBFBD>h<EFBFBD>z tartoz<6F> Transponder",
2003-05-16 13:04:52 +02:00
"Usar el temps del m<>ltiplex",
2002-03-17 14:11:22 +01:00
},
{ "Setup.DVB$Primary DVB interface",
"Prim<EFBFBD>res DVB Interface",
"Primarna naprava",
"Scheda DVB primaria",
"Eerste DVB kaart",
2002-03-22 14:30:41 +01:00
"Interface DVB prim<69>rio",
2002-03-23 10:26:55 +01:00
"Carte DVB primaire",
2002-03-17 14:11:22 +01:00
"Hoved DVB-enhet",
2003-05-24 11:00:26 +02:00
"P<EFBFBD><EFBFBD>vastaanotin",
2002-04-01 11:38:27 +02:00
"Pierwotny interfejs DVB",
2002-04-06 09:51:08 +02:00
"Primer interface DVB",
2002-05-01 10:35:01 +02:00
"Protevon DVB karta",
2002-05-26 09:43:17 +02:00
"Prim<EFBFBD>r DVB enhet",
2002-06-10 16:18:50 +02:00
"Placa DVB primara",
2002-06-22 09:30:06 +02:00
"Els<EFBFBD> DVB interface",
2003-05-16 13:04:52 +02:00
"Tarja DVB prim<69>ria",
2002-03-17 14:11:22 +01:00
},
{ "Setup.DVB$Video format",
"Video Format",
2002-03-31 15:55:29 +02:00
"Video format",
2002-03-29 16:20:39 +01:00
"Formato video",
2002-03-22 13:58:50 +01:00
"Videoformaat",
2002-03-22 14:30:41 +01:00
"Formato v<>deo",
2002-03-17 14:11:22 +01:00
"Format vid<69>o",
2002-03-31 16:32:04 +02:00
"TV-Format",
2003-05-24 11:00:26 +02:00
"Kuvasuhde",
2002-04-01 11:38:27 +02:00
"Format telewizyjny",
2002-04-06 09:51:08 +02:00
"Formato V<>deo",
2002-05-01 10:35:01 +02:00
"Video Format",
2002-05-26 09:43:17 +02:00
"Video format",
2002-06-10 16:18:50 +02:00
"Format Video",
2002-06-22 09:30:06 +02:00
"Video form<72>tum",
2003-05-16 13:04:52 +02:00
"Format del v<>deo",
2002-03-17 14:11:22 +01:00
},
2002-03-31 13:39:56 +02:00
{ "Setup.LNB$SLOF (MHz)",
"SLOF (MHz)",
2002-03-31 15:55:29 +02:00
"Frekvenca preklopa (MHz)",
2002-03-31 13:39:56 +02:00
"SLOF (MHz)",
"SLOF (MHz)",
"Limite de bandas LNB (MHz)",
"Limite de bandes LNB (MHz)",
"LO-grensefrekvens (MHz)",
"LNB rajataajuus (MHz)",
2002-04-01 11:38:27 +02:00
"SLOF (MHz)",
2002-04-06 09:51:08 +02:00
"SLOF (MHz)",
2002-05-01 10:35:01 +02:00
"SLOF (MHz)",
2002-05-26 09:43:17 +02:00
"SLOF (MHz)",
2002-06-10 16:18:50 +02:00
"SLOF (MHz)",
2002-06-22 09:30:06 +02:00
"SLOF (MHz)",
2003-05-16 13:04:52 +02:00
"SLOF (MHz)",
2002-03-31 13:39:56 +02:00
},
{ "Setup.LNB$Low LNB frequency (MHz)",
"Untere LNB-Frequenz (MHz)",
"Spodnja LNB-frek. (MHz)",
"Freq LO LNB (MHz)",
"Laagste LNB frequentie (MHz)",
"Frequ<EFBFBD>ncia base LNB (MHz)",
"Fr<EFBFBD>quence basse LNB (MHz)",
"LO-frekvens i lavb<76>ndet (MHz)",
"LNB alempi taajuus (MHz)",
2002-04-01 11:38:27 +02:00
"Dolna czestotliwosc LNB (MHz)",
2002-04-06 09:51:08 +02:00
"Frecuencia baja LNB (MHz)",
2002-05-01 10:35:01 +02:00
"Kato LNB-Sixnotita (MHz)",
2002-05-26 09:43:17 +02:00
"Undre LNB frekvens (MHz)",
2002-06-10 16:18:50 +02:00
"Frecvnta LO LNB (Mhz)",
2002-06-22 09:30:06 +02:00
"Als<EFBFBD> LNB-frekvencia (MHZ)",
2003-05-16 13:04:52 +02:00
"Freq<EFBFBD><EFBFBD>ncia LNB baixa (MHz)",
2002-03-31 13:39:56 +02:00
},
{ "Setup.LNB$High LNB frequency (MHz)",
"Obere LNB-Frequenz (MHz)",
"Zgornja LNB-frek. (MHz)",
"Freq HI LNB (MHz)",
"Hoogste LNB frequentie (MHz)",
"Frequ<EFBFBD>ncia alta LNB (MHz)",
"Fr<EFBFBD>quence haute LNB (MHz)",
"LO-frekvens i h<>yb<79>ndet (MHz)",
"LNB ylempi taajuus (MHz)",
2002-04-01 11:38:27 +02:00
"Gorna czestotliwosc LNB (MHz)",
2002-04-06 09:51:08 +02:00
"Frecuencia alta LNB (MHz)",
2002-05-01 10:35:01 +02:00
"Ano LNB-Sixnotita (MHz)",
2002-05-26 09:43:17 +02:00
"<EFBFBD>vre LNB frekvens (MHz)",
2002-06-10 16:18:50 +02:00
"Feecventa HI LNB (MHz)",
2002-06-22 09:30:06 +02:00
"Fels<EFBFBD> LNB-frekvencia (MHZ)",
2003-05-16 13:04:52 +02:00
"Freq<EFBFBD><EFBFBD>ncia LNB alta (MHz)",
2000-11-11 10:39:27 +01:00
},
2002-03-17 14:11:22 +01:00
{ "Setup.LNB$Use DiSEqC",
"DiSEqC benutzen",
2002-03-31 15:55:29 +02:00
"Uporabi DiSEqC",
2002-03-29 16:20:39 +01:00
"Utilizza DiSEqC",
2002-03-22 13:58:50 +01:00
"DiSEqC gebruiken",
2002-03-22 14:30:41 +01:00
"Utilizar DiSEqC",
2002-03-23 10:26:55 +01:00
"Utiliser le DiSEqC",
2002-03-31 16:32:04 +02:00
"Bruk DiSEqC",
2003-05-24 11:00:26 +02:00
"DiSEqC k<>yt<79>ss<73>",
2002-04-01 11:38:27 +02:00
"Uzywac DiSEqC",
2002-04-06 09:51:08 +02:00
"Utilizar DiSEqC",
2002-05-01 10:35:01 +02:00
"Energopiisi DiSEqC",
2002-05-26 09:43:17 +02:00
"Anv<EFBFBD>nd DiSEqC",
2002-06-10 16:18:50 +02:00
"Utilizez DiSEqC",
2002-06-22 09:30:06 +02:00
"DiSEqC haszn<7A>lata",
2003-05-16 13:04:52 +02:00
"Utilitzar DiSEqC",
2002-03-17 14:11:22 +01:00
},
{ "Setup.CICAM$CICAM DVB",
"CICAM DVB",
"CICAM DVB",
"CICAM DVB",
"CICAM DVB",
"CICAM DVB",
2002-03-23 10:26:55 +01:00
"Acc<EFBFBD>s conditionnel",
2002-03-17 14:11:22 +01:00
"CICAM DVB",
"CI-moduuli DVB",
2002-04-01 11:38:27 +02:00
"CICAM DVB",
2002-04-06 09:51:08 +02:00
"CICAM DVB",
2002-05-01 10:35:01 +02:00
"CICAM DVB",
2002-05-26 09:43:17 +02:00
"CICAM DVB",
2002-06-10 16:18:50 +02:00
"Setare acces conditional",
2002-06-22 09:30:06 +02:00
"CICAM DVB",
2003-05-16 13:04:52 +02:00
"Acc<EFBFBD>s condicional CICAM",
2002-03-17 14:11:22 +01:00
},
2002-03-31 13:39:56 +02:00
{ "Setup.Recording$Margin at start (min)",
"Zeitpuffer bei Anfang (min)",
"Premor pred zacetkom (min)",
2003-05-27 15:38:42 +02:00
"Margine iniziale (min)",
2002-03-31 13:39:56 +02:00
"Tijd marge begin (min)",
"Margem inicial (min)",
"Marge ant<6E>rieure (min)",
2002-03-31 16:32:04 +02:00
"Opptaksmargin start (min)",
2002-03-31 13:39:56 +02:00
"Aloitusmarginaali (min)",
2002-04-01 11:38:27 +02:00
"Poczatkowy czas buforowy (min)",
2002-04-06 09:51:08 +02:00
"Comenzar grabaci<63>n antes (min)",
2002-05-04 14:44:32 +02:00
"Prosthetos xronos prin arxi (lepta)",
2002-05-26 09:43:17 +02:00
"Marginal f<>r start (min)",
2002-06-10 16:18:50 +02:00
"Margine la pornire (min)",
2002-06-22 09:30:06 +02:00
"Id<EFBFBD>eltol<EFBFBD>d<EFBFBD>s a kezd<7A>sn<73>l (min)",
"Marge d'inici de gravaci<63> (min)",
2002-03-31 13:39:56 +02:00
},
{ "Setup.Recording$Margin at stop (min)",
"Zeitpuffer bei Ende (min)",
"Premor za koncem (min)",
2003-05-27 15:38:42 +02:00
"Margine finale (min)",
2002-03-31 13:39:56 +02:00
"Tijd marge eind (min)",
"Margem final (min)",
"Marge post<73>rieure (min)",
2002-03-31 16:32:04 +02:00
"Opptaksmargin slutt (min)",
2002-03-31 13:39:56 +02:00
"Lopetusmarginaali (min)",
2002-04-01 11:38:27 +02:00
"Koncowy czas buforowy (min)",
2002-04-06 09:51:08 +02:00
"Cortar grabaci<63>n despu<70>s (min)",
2002-05-04 14:44:32 +02:00
"Prosthetos xronos sto telos (lepta)",
2002-05-26 09:43:17 +02:00
"Marginal f<>r stopp (min)",
2002-06-10 16:18:50 +02:00
"Margine la oprire (min)",
2002-06-22 09:30:06 +02:00
"Id<EFBFBD>eltol<EFBFBD>d<EFBFBD>s a befejez<65>sn<73>l",
"Marge de fi de gravaci<63> (min)",
2000-11-11 10:39:27 +01:00
},
2002-03-17 14:11:22 +01:00
{ "Setup.Recording$Primary limit",
"Prim<EFBFBD>r-Limit",
2002-03-31 15:55:29 +02:00
"Osnovna meja",
2002-03-29 16:20:39 +01:00
"Limite primario",
2002-03-22 13:58:50 +01:00
"Eerste grens",
2002-03-22 14:30:41 +01:00
"Limite Prim<69>rio",
"Limite primaire",
2002-03-31 16:32:04 +02:00
"Prioritetsgrense HovedDVB",
"P<EFBFBD><EFBFBD>vastaanottimen prioriteetti",
2002-04-01 11:38:27 +02:00
"Pierwotny limit",
2003-05-16 13:04:52 +02:00
"L<EFBFBD>mite primario",
2003-03-30 10:06:20 +02:00
"Protevon orio",
2002-05-26 09:43:17 +02:00
"Prim<EFBFBD>r gr<67>ns",
2002-06-10 16:18:50 +02:00
"Limita Primara",
2002-06-22 09:30:06 +02:00
"Prim<EFBFBD>r-hat<61>r",
2003-05-16 13:04:52 +02:00
"L<EFBFBD>mit primari",
},
2002-03-17 14:11:22 +01:00
{ "Setup.Recording$Default priority",
"Default Priorit<69>t",
2002-03-31 15:55:29 +02:00
"Osnovna prioriteta",
2002-03-29 16:20:39 +01:00
"Priorita' predefinita",
2002-03-22 13:58:50 +01:00
"Standaard prioriteit",
2001-06-22 15:19:57 +02:00
"Prioridade por defeito",
2001-07-22 09:36:49 +02:00
"Priorit<EFBFBD> par d<>faut",
2001-07-24 16:00:54 +02:00
"Normal prioritet (Timer)",
"Tallenteen oletusprioriteetti",
2002-04-01 11:38:27 +02:00
"Priorytet pierwotny",
2002-04-06 09:51:08 +02:00
"Prioridad predefinida",
2002-05-01 10:35:01 +02:00
"Protereotita",
2002-05-26 09:43:17 +02:00
"Normal prioritet",
2002-06-10 16:18:50 +02:00
"Prioritate implicita",
2002-06-22 09:30:06 +02:00
"Default priority",
2003-05-16 13:04:52 +02:00
"Prioritat per defecte",
},
2003-05-25 14:03:00 +02:00
{ "Setup.Recording$Default lifetime (d)",
"Default Lebensdauer (d)",
"Osnovni zivljenski cas (d)",
2003-05-27 15:38:42 +02:00
"Durata predefinita (gg)",
2003-05-25 14:03:00 +02:00
"Standaard levensduur (d)",
"Validade por defeito (d)",
"Dur<EFBFBD>e de vie par d<>faut (j)",
"Normal levetid timer (d)",
"Tallenteen oletuselinik<69> (d)",
2003-05-25 14:03:00 +02:00
"Pierwotna trwalosc (d)",
"Duraci<EFBFBD>n predefinida",
"Xronos zois",
"Normal livstid (dagar)",
"Durata predefinita",
"Default <20>lettartam",
"Durada predefinida",
2003-05-25 14:03:00 +02:00
},
{ "Setup.Recording$Pause priority",
"Pause Priorit<69>t",
"Prioriteta pavze",
2003-05-27 15:38:42 +02:00
"Priorita' di pausa",
2003-09-11 13:51:56 +02:00
"Pauze prioriteit",
"",// TODO
2003-05-25 14:03:00 +02:00
"Priorit<EFBFBD> des pauses",
"",// TODO
2003-05-25 14:03:00 +02:00
"Keskeytyksen prioriteetti",
2003-05-31 09:35:45 +02:00
"Priorytet przerwy",
"",// TODO
"",// TODO
2003-05-25 14:03:00 +02:00
"Prioritet f<>r direktinspelning",
"",// TODO
2003-06-06 15:43:49 +02:00
"Sz<EFBFBD>net priorit<69>s",
2003-05-25 14:03:00 +02:00
"Prioritat de la pausa",
},
2003-05-25 14:03:00 +02:00
{ "Setup.Recording$Pause lifetime (d)",
"Pause Lebensdauer (d)",
"Cas pavze (d)",
2003-05-27 15:38:42 +02:00
"Durata pausa (gg)",
2003-09-11 13:51:56 +02:00
"Pauze levensduur (d)",
"",// TODO
2003-05-25 14:03:00 +02:00
"Dur<EFBFBD>e de vie des pauses (j)",
"",// TODO
2003-05-25 14:03:00 +02:00
"Keskeytyksen elinik<69> (d)",
2003-05-31 09:35:45 +02:00
"Okres trwania przerwy (d)",
"",// TODO
"",// TODO
2003-05-25 14:03:00 +02:00
"Livstid f<>r direktinspelning (dagar)",
"",// TODO
2003-06-06 15:43:49 +02:00
"Sz<EFBFBD>net <20>lettartama",
"Durada de la pausa (d)",
},
2002-03-17 14:11:22 +01:00
{ "Setup.Recording$Use episode name",
"Episodenname verwenden",
2002-03-31 15:55:29 +02:00
"Uporabi ime epizode",
2002-03-29 16:20:39 +01:00
"Utilizza il nome dell'episodio",
2002-03-22 13:58:50 +01:00
"Gebruik episode naam",
2002-03-22 14:30:41 +01:00
"Utilizar o nome do epis<69>dio",
2002-03-23 10:26:55 +01:00
"Utiliser le nom de l'<27>pisode",
2002-03-31 16:32:04 +02:00
"Bruk episodenavn",
2002-03-22 13:32:42 +01:00
"K<EFBFBD>yt<EFBFBD> jakson nime<6D>",
2002-04-01 11:38:27 +02:00
"Czy uzywac nazwe epizodu",
2002-04-06 09:51:08 +02:00
"Utilizar nombre de episodo",
2002-05-01 10:35:01 +02:00
"Xrisimopiisi onomatos episodiou",
2002-05-26 09:43:17 +02:00
"Anv<EFBFBD>nd episodnamn",
2002-06-10 16:18:50 +02:00
"Utilizeaza numele episodului",
2002-06-22 09:30:06 +02:00
"Epiz<EFBFBD>dn<EFBFBD>v felhaszn<7A>l<EFBFBD>sa",
2003-05-16 13:04:52 +02:00
"Utilitzar el nom de l'episodi",
},
2002-03-17 14:11:22 +01:00
{ "Setup.Recording$Mark instant recording",
"Direktaufzeichnung markieren",
"Oznaci direktno snemanje",
"Marca la registrazione",
"Direkte opnamen markeren",
2002-03-22 14:30:41 +01:00
"Marca de grava<76><61>o r<>pida",
2003-05-01 14:11:42 +02:00
"Marquage enregistr. imm<6D>diats",
2002-03-17 14:11:22 +01:00
"Markere direkteopptak",
2003-05-24 11:00:26 +02:00
"Merkitse pikatallenne",
2002-04-01 11:38:27 +02:00
"Zaznaczyc natychm. nagranie",
2002-04-06 09:51:08 +02:00
"Marcar grabaciones instant<6E>neas",
2003-03-30 10:06:20 +02:00
"Epilogi trexon egrafis",
2002-05-26 09:43:17 +02:00
"M<EFBFBD>rk direktinspelning",
2002-06-10 16:18:50 +02:00
"Inregistrare imediata",
2002-06-22 09:30:06 +02:00
"Direktfelv<EFBFBD>tel megjel<65>l<EFBFBD>se",
2003-05-16 13:04:52 +02:00
"Marcar gravaci<63> instant<6E>nia",
2001-06-16 14:31:14 +02:00
},
2002-03-17 14:11:22 +01:00
{ "Setup.Recording$Name instant recording",
"Direktaufzeichnung benennen",
2002-03-31 15:55:29 +02:00
"Ime za direktno snemanje",
2002-03-29 16:20:39 +01:00
"Nome registrazione istantanea",
2002-03-22 13:58:50 +01:00
"Naam direkt-opname",
2002-03-22 14:30:41 +01:00
"Nome de grava<76><61>o r<>pida",
2002-03-17 14:11:22 +01:00
"Noms enregistr. imm<6D>diats",
2002-03-31 16:32:04 +02:00
"Navngi direkteopptak",
2003-05-24 11:00:26 +02:00
"Nime<EFBFBD> pikatallenne",
2002-04-01 11:38:27 +02:00
"Nazwac natychm. nagranie",
2002-04-06 09:51:08 +02:00
"Nombrar grabaciones instant<6E>neas",
2003-03-30 10:06:20 +02:00
"eponomasi trexon egrafis",
2002-05-26 09:43:17 +02:00
"Namnge direktinspelning",
2002-06-10 16:18:50 +02:00
"Nume inregistrare imediata",
2002-06-22 09:30:06 +02:00
"Direktfelv<EFBFBD>tel megnevez<65>se",
2003-05-16 13:04:52 +02:00
"Anomenar gravacions instant<6E>nies",
2002-02-24 11:55:24 +01:00
},
{ "Setup.Recording$Instant rec. time (min)",
"Dauer der Direktaufzeichnung (min)",
2003-05-25 09:51:59 +02:00
"Cas direktnega snemanja (min)",
2003-05-27 15:38:42 +02:00
"Tempo registrazione istantanea (min)",
2003-09-11 13:51:56 +02:00
"Duur van de directe opname (min)",
"",//TODO
2003-05-01 14:11:42 +02:00
"Dur<EFBFBD>e enregistr. imm<6D>diat (min)",
"",//TODO
2003-05-24 11:00:26 +02:00
"Pikatallennuksen kesto (min)",
2003-05-31 09:35:45 +02:00
"Dlugosc bezposredniego nagrania (min)",
2003-05-16 13:04:52 +02:00
"Tiempo de grabaci<63>n instant<6E>nea (min)",
2003-03-30 10:06:20 +02:00
"Stigmiees egrafes xronos (lepta)",
2002-05-26 09:43:17 +02:00
"Direktinspelning l<>ngd (min)",
2002-06-10 16:18:50 +02:00
"Timpul de inregistarea imediata (min)",
2002-06-22 09:30:06 +02:00
"Felv<EFBFBD>tel id<69>tartama",
2003-05-16 13:04:52 +02:00
"Temps de gravaci<63> instant<6E>nia (min)",
},
2002-03-17 14:11:22 +01:00
{ "Setup.Recording$Record Dolby Digital",
"Dolby Digital Ton aufzeichnen",
2002-03-31 15:55:29 +02:00
"Posnemi dolby digital",
2003-05-27 15:38:42 +02:00
"Registra Dolby Digital",
2002-03-22 13:58:50 +01:00
"Dolby Digital geluid opnamen",
2002-03-22 14:30:41 +01:00
"Gravar em Dolby Digital",
2002-03-22 13:32:42 +01:00
"Enregistrer en Dolby Digital",
2002-03-31 16:32:04 +02:00
"Ta opp Dolby Digital lyd",
2003-05-24 11:00:26 +02:00
"Dolby Digital tallennus",
2002-04-01 11:38:27 +02:00
"Nagrywac Dolby Digital",
2002-04-06 09:51:08 +02:00
"Grabar sonido Dolby Digital",
2002-05-01 10:35:01 +02:00
"Egrafi tou Dolby Digital ixou",
2003-05-24 14:04:45 +02:00
"Spela in ljudet med Dolby Digital",
2002-06-10 16:18:50 +02:00
"Inregistreaza Dolby Digital",
2002-06-22 09:30:06 +02:00
"Dolby Digit<69>l felv<6C>tel",
"Gravar el so en Dolby Digital",
},
2002-03-31 13:39:56 +02:00
{ "Setup.Recording$Max. video file size (MB)",
"Max. Video Dateigr<67><72>e (MB)",
2002-03-31 15:55:29 +02:00
"Najvecja velikost datoteke (MB)",
2002-03-31 13:39:56 +02:00
"Dimensione massima file video (MB)",
"Maximale omvang video file (MB)",
"Tamanho m<>ximo dos ficheiros (MB)",
"Taille maxi des fichiers (MB)",
2002-03-31 16:32:04 +02:00
"Maksimal st<73>rrelse p<> videofiler (MB)",
"Suurin tiedostokoko (Mt)",
2002-04-01 11:38:27 +02:00
"Maks. wielkosc pliku (MB)",
2003-05-16 13:04:52 +02:00
"Tama<EFBFBD>o m<>x. de fichero (MB)",
2002-05-01 10:35:01 +02:00
"Megisto megethos arxeiou (MB)",
2002-05-26 09:43:17 +02:00
"Maximal filstorlek f<>r inspelning (MB)",
2002-06-10 16:18:50 +02:00
"Dimensiune maxima a fisierului video (MB)",
2002-06-22 09:30:06 +02:00
"Max. video File-terjedelem (MB)",
"Mida m<>xima de l'arxiu (MB)",
},
2002-03-17 14:11:22 +01:00
{ "Setup.Recording$Split edited files",
"Editierte Dateien aufteilen",
2002-03-31 15:55:29 +02:00
"Razdeli urejene datoteke",
2002-03-29 16:20:39 +01:00
"Dividi i file modificati",
2002-03-22 13:58:50 +01:00
"Bewerkte files opdelen",
2002-03-22 14:30:41 +01:00
"Quebrar ficheiros",
"S<EFBFBD>parer les s<>quences <20>dit<69>es",
2002-03-31 16:32:04 +02:00
"Splitt redigerte filer",
2003-05-24 11:00:26 +02:00
"Jaottele muokatut tallenteet",
2002-04-01 11:38:27 +02:00
"Dzielic montowane pliki",
2002-04-06 09:51:08 +02:00
"Quebrar ficheros",
2003-03-30 10:06:20 +02:00
"Diamelisma epeksergasmenon arxeion",
2003-05-24 14:04:45 +02:00
"Dela upp redigerade filer",
2002-06-10 16:18:50 +02:00
"Separare fisiere editate",
2002-06-22 09:30:06 +02:00
"Feldolgozott File-k feloszt<7A>sa",
2003-05-16 13:04:52 +02:00
"Separar arxius",
2001-09-01 15:23:27 +02:00
},
2002-03-17 14:11:22 +01:00
{ "Setup.Replay$Multi speed mode",
"MultiSpeed Modus",
2002-03-31 15:55:29 +02:00
"Rezim z vec hitrostmi",
2002-03-29 16:20:39 +01:00
"Modalita' multispeed",
2002-03-22 15:37:52 +01:00
"Multi-speed mode",
2002-03-22 14:30:41 +01:00
"Modo de multi-speed",
2002-03-17 14:11:22 +01:00
"Mode multi-vitesses",
2002-03-31 16:32:04 +02:00
"Multispeed modus",
2002-03-17 14:11:22 +01:00
"Moninopeustila",
2002-04-01 11:38:27 +02:00
"Tryb wielopredkosciowy",
2002-04-06 09:51:08 +02:00
"Modo multi-velocidad",
2003-03-30 10:06:20 +02:00
"Multispeed mode",
2002-05-26 09:43:17 +02:00
"Multispeed mode",
2002-06-10 16:18:50 +02:00
"Mod multi-rata",
2002-06-22 09:30:06 +02:00
"MultiSpeed funkci<63>",
"Mode de multivelocitat",
2001-08-25 13:52:38 +02:00
},
2002-03-17 14:11:22 +01:00
{ "Setup.Replay$Show replay mode",
"Wiedergabestatus anzeigen",
2002-03-31 15:55:29 +02:00
"Prikazi rezim predvajanja",
2002-03-29 16:20:39 +01:00
"Modalita' di visualizz su replay",
2002-03-22 13:58:50 +01:00
"Weergave mode aangeven",
2002-03-22 14:30:41 +01:00
"Mostrar modo de replay",
2002-03-17 14:11:22 +01:00
"Affichage mode de lecture",
2002-03-31 16:32:04 +02:00
"Vis avspillingsmodus",
2002-03-17 14:11:22 +01:00
"N<EFBFBD>yt<EFBFBD> toiston tila",
2002-04-01 11:38:27 +02:00
"Wyswietlac status odtwarzania",
2002-04-06 09:51:08 +02:00
"Mostrar modo de replay",
2003-03-30 10:06:20 +02:00
"Endiksi katastasis anametadosis",
2003-05-24 14:04:45 +02:00
"Visa uppspelnings l<>ge",
2002-06-10 16:18:50 +02:00
"Afiseaza modul de redare",
2002-06-22 09:30:06 +02:00
"Lej<EFBFBD>tsz<EFBFBD>s felt<6C>ntet<65>se",
2003-05-16 13:04:52 +02:00
"Mostrar mode de reproducci<63>",
2001-09-30 11:31:43 +02:00
},
{ "Setup.Replay$Resume ID",
"Wiedergabe ID",
2003-05-25 09:51:59 +02:00
"Predvajalni ID",
"Resume ID",// TODO
2003-09-11 13:51:56 +02:00
"Hervattings ID",
"Resume ID",// TODO
"ID de reprise",
"Resume ID",// TODO
"Tallenteen paluutunniste",
2003-05-31 09:35:45 +02:00
"ID odtwarzania",
2003-05-16 13:04:52 +02:00
"Continuar ID",
"Resume ID",// TODO
2003-05-24 14:04:45 +02:00
"<EFBFBD>teruppta ID",
"Resume ID",// TODO
2003-06-06 15:43:49 +02:00
"Lej<EFBFBD>tsz<EFBFBD>s ID",
"ID de Continuar",
},
2002-03-31 13:39:56 +02:00
{ "Setup.Miscellaneous$Min. event timeout (min)",
"Mindest Event Pause (min)",
2002-03-31 15:55:29 +02:00
"Najmanjsi cas dogodka (min)",
2002-03-31 13:39:56 +02:00
"Tempo minimo di pausa (min)", // ??? i don't know...
"Minimale event time-out (min)",
"Per<EFBFBD>odo m<>nimo de pausa (min)",
2003-05-01 14:11:42 +02:00
"MinEventTimeout (min)",
2002-03-31 16:32:04 +02:00
"Minste hendelsespause (min)",
"Tapahtuman odotusaika (min)",
2002-04-01 11:38:27 +02:00
"Min. czas do nast. akcji (Event) (min)",
2002-04-06 09:51:08 +02:00
"Tiempo m<>nimo pausa (min)",
2002-05-04 14:44:32 +02:00
"Elaxistos Xronos paremvolis (lepta)",
2002-05-26 09:43:17 +02:00
"Minsta h<>ndelse-pause (min)",
2002-06-10 16:18:50 +02:00
"MinEventTimeout (min)",
2002-06-22 09:30:06 +02:00
"Min. esem<65>ny sz<73>net (min)",
2003-05-16 13:04:52 +02:00
"Temps m<>nim en pausa (min)",
2001-09-01 09:04:37 +02:00
},
2002-03-31 13:39:56 +02:00
{ "Setup.Miscellaneous$Min. user inactivity (min)",
"Mindest Benutzer-Inaktivit<69>t (min)",
2002-03-31 15:55:29 +02:00
"Najmanjsi cas neaktivnosti (min)",
2002-03-31 13:39:56 +02:00
"Tempo minimo di inattivita' (min)",
"Minimum gebruikers inactiviteit (min)",
"Per<EFBFBD>odo m<>nimo de inactividade (min)",
2003-05-01 14:11:42 +02:00
"Dur<EFBFBD>e minimale d'inact. (min)",
2002-03-31 16:32:04 +02:00
"Minimumstid med inaktivitet (min)",
"K<EFBFBD>ytt<EFBFBD>j<EFBFBD>toiminnon odotusaika (min)",
2002-04-01 11:38:27 +02:00
"Min. brak aktywnosci uzytkownika (min)",
2002-04-06 09:51:08 +02:00
"Tiempo m<>nimo inactividad (min)",
2002-05-04 14:44:32 +02:00
"Elaxistos xronos mi xrisis (lepta)",
2002-05-26 09:43:17 +02:00
"Minsta an<61>ndar-inaktivitet (min)",
2002-06-10 16:18:50 +02:00
"Durata minima de inactivitate (min)",
2002-06-22 09:30:06 +02:00
"Min. kezel<65>si aktivit<69>s (min)",
2003-05-16 13:04:52 +02:00
"Temps m<>nim d'inactivitat (min)",
2001-09-01 09:04:37 +02:00
},
{ "Setup.Miscellaneous$SVDRP timeout (s)",
"SVDRP Timeout (s)",
2003-05-25 09:51:59 +02:00
"SVDRP cas neaktivnosti (s)",
"Timeout SVDRP (s)",
"SVDRP Timeout (s)",
"Timeout SVDRP (s)",
"Temps maxi SVDRP (s)",
"Ubrukt SVDRP-levetid (s)",
"SVDRP odotusaika (s)",
"Min. brak aktywnosci SVDRP (s)",
2003-05-16 13:04:52 +02:00
"SVDRP Timeout (s)",
2002-05-04 14:44:32 +02:00
"SVDRP Timeout (d)",
2002-05-26 09:43:17 +02:00
"SVDRP Timeout (d)",
2002-06-10 16:18:50 +02:00
"Timeout SVDRP (sec)",
2002-06-22 09:30:06 +02:00
"SVDRP Timeout (s)",
2003-05-16 13:04:52 +02:00
"SVDRP Timeout (s)",
2001-09-14 14:06:43 +02:00
},
{ "Setup.Miscellaneous$Zap timeout (s)",
"Zap Timeout (s)",
"",// TODO
"",// TODO
2003-09-11 13:51:56 +02:00
"Zap timeout (s)",
"",// TODO
"",// TODO
"",// TODO
2003-08-24 10:52:20 +02:00
"Kanavavalinnan odotusaika (s)",
"",// TODO
"",// TODO
"",// TODO
"",// TODO
"",// TODO
"",// 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",
2003-05-27 15:38:42 +02:00
"LMMGVSD",
2001-03-31 09:58:14 +02:00
"MDWDVZZ",
2001-06-22 15:19:57 +02:00
"STQQSSD",
2001-07-22 09:36:49 +02:00
"LMMJVSD",
2001-07-24 16:00:54 +02:00
"MTOTFLS",
2002-02-09 17:20:19 +01:00
"MTKTPLS",
2002-04-01 11:38:27 +02:00
"PWSCPSN",
2002-04-06 09:51:08 +02:00
"LMMJVSD",
2002-05-01 10:35:01 +02:00
"DTTPPSK",
2002-05-26 09:43:17 +02:00
"MTOTFLS",
2002-06-10 16:18:50 +02:00
"LMMJVSD",
2002-06-22 09:30:06 +02:00
"HKSCPSV",
"LMCJVSG",
2000-11-11 10:39:27 +01:00
},
{ "MonTueWedThuFriSatSun", // must all be 3 letters!
"MonDieMitDonFreSamSon",
2002-03-31 15:55:29 +02:00
"PonTorSreCetPetSobNed",
2002-03-29 16:20:39 +01:00
"LunMarMerGioVenSabDom",
2002-03-22 13:58:50 +01:00
"MaaDinWoeDonVryZatZon",
2002-03-22 14:30:41 +01:00
"SegTerQuaQuiSexSabDom",
2002-03-03 16:39:54 +01:00
"LunMarMerJeuVenSamDim",
2002-03-31 16:32:04 +02:00
"ManTirOnsTorFreL<EFBFBD>rS<EFBFBD>n",
2002-10-19 09:46:09 +02:00
"Ma Ti Ke To Pe La Su ",
2002-04-01 11:38:27 +02:00
"PonWtoSroCzwPiaSobNie",
2002-04-06 09:51:08 +02:00
"LunMarMieJueVieSabDom",
2002-05-01 10:35:01 +02:00
"DevTriTetPemParSavKir",
2002-05-26 09:43:17 +02:00
"M<EFBFBD>nTisOnsTorFreL<EFBFBD>rS<EFBFBD>n",
2002-06-10 16:18:50 +02:00
"LunMarMieJoiVinSimDum",
2002-06-22 09:30:06 +02:00
"H<EFBFBD>tKedSzeCs<EFBFBD>P<EFBFBD>nSzoVas",
"Dl Dm Dc Dj Dv Ds Dg ",
},
2002-04-16 16:11:40 +02:00
// The allowed characters in strings:
{ " abcdefghijklmnopqrstuvwxyz0123456789-.#~",
" a<>bcdefghijklmno<6E>pqrstu<74>vwxyz0123456789-.#~",
2003-05-25 09:51:59 +02:00
" abcdefghijklmnopqrstuvwxyz0123456789-.#~",
2003-05-27 15:38:42 +02:00
" a<>bcde<64><65>fghi<68>jklmnopqrstu<74>vwxyz0123456789-.#~",
2002-04-16 16:11:40 +02:00
"",// TODO
"",// TODO
" a<>bc<62>de<64><65><EFBFBD>fghi<68>jklmno<6E>pqrstu<74><75>vwxyz0123456789-.#~",
2002-04-16 16:11:40 +02:00
"",// TODO
" abcdefghijklmnopqrstuvwxyz<79><7A><EFBFBD>0123456789-.#~",
2003-05-31 09:35:45 +02:00
" abcdefghijklmnopqrstuvwxyz0123456789-.#~",
2002-04-16 16:11:40 +02:00
" a<>bcde<64>fghi<68>jklmn<6D>o<EFBFBD>pqrstu<74>vwxyz0123456789-.#~",
2002-05-01 10:35:01 +02:00
"",// TODO
" abcdefghijklmnopqrstuvwxyz<79><7A><EFBFBD>0123456789-.#~",
2002-06-10 16:18:50 +02:00
" abcdefghijklmnopqrstuvwxyz0123456789-.#~",
2003-06-06 15:43:49 +02:00
" a<>bcde<64>fghi<68>jklmno<6E><6F>pqrstu<74><75>vwxyz0123456789-.,#~",
2003-05-16 13:04:52 +02:00
" a<>bc<62>de<64><65>fghi<68>jklmno<6E>pqrstu<74>vwxyz0123456789-.,#~_<>",
2002-04-16 16:11:40 +02:00
},
2000-11-11 10:39:27 +01:00
// Learning keys:
{ "Learning Remote Control Keys (%s)",
"Fernbedienungs-Codes lernen (%s)",
2003-05-25 09:51:59 +02:00
"Ucenje kod upravljalca (%s)",
"Apprendimento tasti unita` remota (%s)",
"Leren toetsen afstandsbediening (%s)",
"Aprender as teclas do telecomando (%s)",
"Apprentissage des codes de t<>l<EFBFBD>commande (%s)",
"L<EFBFBD>re fjernkontrolltaster (%s)",
2003-05-24 11:00:26 +02:00
"Kaukos<EFBFBD><EFBFBD>timen opettaminen (%s)",
"Nauka kodu pilota (%s)",
"Aprendiendo teclas del telemando (%s)",
2003-03-30 10:06:20 +02:00
"Ekmathisi pliktron tilexirismou (%s)",
"Inl<EFBFBD>rning av fj<66>rrkontrollsknappar (%s)",
"Invatare taste telecomanda (%s)",
"T<EFBFBD>vir<EFBFBD>ny<EFBFBD>t<EFBFBD> betan<61>t<EFBFBD>sa (%s)",
2003-05-16 13:04:52 +02:00
"Aprenent les tecles del comandament a dist<73>ncia (%s)",
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",
2001-03-31 09:58:14 +02:00
"Fase 1: detecteren type afstandsbediening",
2001-06-22 15:19:57 +02:00
"Fase 1: detectar tipo de receptor",
2001-07-22 09:36:49 +02:00
"Phase 1: D<>tection du type de code",
2001-07-24 16:00:54 +02:00
"Fase 1: Finne fjernkontroll-kodetype",
2003-05-24 11:00:26 +02:00
"Vaihe 1: Koodauksen tunnistaminen",
2002-04-01 11:38:27 +02:00
"Faza 1: Detekcja typu kodu",
2002-04-06 09:51:08 +02:00
"Fase 1: Detectando tipo de receptor",
2003-03-30 10:06:20 +02:00
"Phasi 1: Anixneusi kodika RC",
2002-05-26 09:43:17 +02:00
"Steg1: identifiering av RC kod",
2002-06-10 16:18:50 +02:00
"Faza 1: Detectie tip telecomanda",
2002-06-22 09:30:06 +02:00
"Els<EFBFBD> l<>p<EFBFBD>s: t<>vir<69>ny<6E>t<EFBFBD> k<>dj<64>nak meghat<61>roz<6F>sa",
2003-05-16 13:04:52 +02:00
"Fase 1: Detectant el tipus de receptor",
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",
2003-05-27 15:38:42 +02:00
"Premere un tasto dell'unita` RC",
2001-03-31 09:58:14 +02:00
"Druk op een willekeurige knop",
2002-03-22 13:32:42 +01:00
"Pressione qualquer tecla do telecomando",
2001-07-22 09:36:49 +02:00
"Appuyer sur une touche de la t<>l<EFBFBD>commande",
2001-07-24 16:00:54 +02:00
"Trykk en av tastene p<> fjernkontrollen",
"Paina mit<69> tahansa kaukos<6F><73>timen n<>pp<70>int<6E>",
2002-04-01 11:38:27 +02:00
"Nacisnac klawisz pilota",
2002-04-06 09:51:08 +02:00
"Pulse una tecla en el telemando",
2003-03-30 10:06:20 +02:00
"Piese ena pliktro sto tilexiristirio",
2002-05-26 09:43:17 +02:00
"Tryck valfri tangent p<> fj<66>rrkontrollen",
2002-06-10 16:18:50 +02:00
"Apasati o tasta pe telecomanda",
2002-06-22 09:30:06 +02:00
"Nyomjon meg egy gombot a t<>vir<69>ny<6E>t<EFBFBD>n",
"Premeu qualsevol tecla del comandament",
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!",
2001-03-31 09:58:14 +02:00
"Afstandsbediening code herkend!",
2002-03-22 14:30:41 +01:00
"C<EFBFBD>digo do telecomando detectado!",
2001-07-22 09:36:49 +02:00
"Code de la t<>l<EFBFBD>commande d<>tect<63>!",
2001-07-24 16:00:54 +02:00
"Fjernkontroll-kodetype funnet!",
2002-02-09 17:20:19 +01:00
"N<EFBFBD>pp<EFBFBD>inpainallus vastaanotettu!",
2002-04-01 11:38:27 +02:00
"Kod pilota zostal poznany!",
2002-04-06 09:51:08 +02:00
"<EFBFBD>C<EFBFBD>digo detectado!",
2003-03-30 10:06:20 +02:00
"Evrethike kodikas RC!",
2002-05-26 09:43:17 +02:00
"RC koden detekterad!",
2002-06-10 16:18:50 +02:00
"S-a detectat tipul telecomenzii!",
2002-06-22 09:30:06 +02:00
"T<EFBFBD>vir<EFBFBD>ny<EFBFBD>t<EFBFBD> k<>dja felismerve!",
2003-05-16 13:04:52 +02:00
"Codi detectat!",
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...",
2001-03-31 09:58:14 +02:00
"Druk niet op een knop...",
2002-03-22 14:30:41 +01:00
"N<EFBFBD>o pressione nada...",
2002-03-23 10:26:55 +01:00
"N'appuyer sur aucune touche ...",
2001-07-24 16:00:54 +02:00
"Ikke trykk p<> noen av tastene...",
2003-05-24 11:00:26 +02:00
"<EFBFBD>l<EFBFBD> paina kaukos<6F><73>timen n<>pp<70>imi<6D>...",
2002-04-01 11:38:27 +02:00
"Nie naciskac klawiszy...",
2003-05-16 13:04:52 +02:00
"No pulse ninguna tecla...",
2003-03-30 10:06:20 +02:00
"Min piezeis pliktra...",
2002-05-26 09:43:17 +02:00
"Tryck inte p<> n<>gon knapp...",
2002-06-10 16:18:50 +02:00
"Nu apasati nicio tasta...",
2002-06-22 09:30:06 +02:00
"Ne nyomjon meg gombot...",
"No premeu cap tecla...",
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",
2001-03-31 09:58:14 +02:00
"Fase 2: Leren specifieke toets-codes",
2002-03-22 14:30:41 +01:00
"Fase 2: A aprender c<>digos especificos",
2001-07-22 09:36:49 +02:00
"Phase 2: Apprentissage des codes des touches",
2001-07-24 16:00:54 +02:00
"Fase 2: L<>re spesifikke tastekoder",
2002-02-09 17:20:19 +01:00
"Vaihe 2: N<>pp<70>inkoodien opettelu",
2002-04-01 11:38:27 +02:00
"Faza 2: Nauka pojedynczych klawiszy",
2002-04-06 09:51:08 +02:00
"Fase 2: Aprendiendo c<>digos espec<65>ficos",
2002-05-01 10:35:01 +02:00
"Fasi 2: Ekmathisi memonomenon kodikon pliktron",
2002-05-26 09:43:17 +02:00
"Fas 2: Inl<6E>rning av specifika knapp koder",
2002-06-10 16:18:50 +02:00
"Faza 2: Invatarea codurilor specifice tastelor",
2002-06-22 09:30:06 +02:00
"M<EFBFBD>sodik l<>p<EFBFBD>s: az egyes gombok betan<61>t<EFBFBD>sa",
2003-05-16 13:04:52 +02:00
"Fase 2: Aprenentantge de les funcions",
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'",
2001-03-31 09:58:14 +02:00
"Druk knop voor '%s'",
2001-06-22 15:19:57 +02:00
"Pressione tecla para '%s'",
2001-07-22 09:36:49 +02:00
"Appuyer sur la touche '%s'",
2001-07-24 16:00:54 +02:00
"Trykk tasten for '%s'",
2002-02-09 17:20:19 +01:00
"Paina n<>pp<70>int<6E> toiminnolle '%s'",
2002-04-01 11:38:27 +02:00
"Nacisnac klawisz dla '%s'",
2002-04-06 09:51:08 +02:00
"Pulsar tecla para '%s'",
2003-03-30 10:06:20 +02:00
"Piese to pliktro gia '%s'",
2002-05-26 09:43:17 +02:00
"Tryck p<> knappen f<>r '%s'",
2002-06-10 16:18:50 +02:00
"Apasati tasta pentru '%s'",
2002-06-22 09:30:06 +02:00
"'%s' gomb megnyom<6F>sa",
"Premeu una tecla 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",
2001-03-31 09:58:14 +02:00
"Druk 'Omhoog' om te bevestigen",
2001-06-22 15:19:57 +02:00
"Pressione 'Cima' para confirmar",
2001-07-22 09:36:49 +02:00
"Appuyer sur 'Haut' pour confirmer",
2001-07-24 16:00:54 +02:00
"Trykk 'Opp' for <20> bekrefte",
2003-05-24 11:00:26 +02:00
"Hyv<EFBFBD>ksy painamalla 'Yl<59>s'",
2002-04-01 11:38:27 +02:00
"Nacisnac 'Gora' do potwierdzenia",
2002-04-06 09:51:08 +02:00
"Pulse 'Arriba' para confirmar",
2003-03-30 10:06:20 +02:00
"Piese 'pano' gia apodoxi",
2002-05-26 09:43:17 +02:00
"Tryck 'Upp' f<>r att bekr<6B>fta",
2002-06-10 16:18:50 +02:00
"Apsati 'Sus' pentru confirmare",
2002-06-22 09:30:06 +02:00
"'Fel' megnyom<6F>sa az elfogad<61>shoz",
"Premeu 'Amunt' per confirmar",
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",
2003-05-27 15:38:42 +02:00
"Premere 'Giu' per continuare",
2001-03-31 09:58:14 +02:00
"Druk 'Omlaag' om verder te gaan",
2001-06-22 15:19:57 +02:00
"Pressione 'Baixo' para continuar",
2001-07-22 09:36:49 +02:00
"Appuyer sur 'Bas' pour continuer",
2001-07-24 16:00:54 +02:00
"Trykk Ned' for <20> fortsette",
2003-05-24 11:00:26 +02:00
"Jatka painamalla 'Alas'",
2002-04-01 11:38:27 +02:00
"Nacisnac 'Dol' zeby kontynuowac",
2002-04-06 09:51:08 +02:00
"Pulse 'Abajo' para confirmar",
2003-03-30 10:06:20 +02:00
"Piese 'kato' gia sinexia",
2002-05-26 09:43:17 +02:00
"Tryck 'Ner' f<>r att bekr<6B>fta",
2002-06-10 16:18:50 +02:00
"Apasati jos pentru continuare",
2002-06-22 09:30:06 +02:00
"'Le' megnyom<6F>sa a folytat<61>shoz",
"Premeu 'Avall' per continuar",
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)",
2001-03-31 09:58:14 +02:00
"(druk 'Omhoog' om terug te gaan)",
2001-06-22 15:19:57 +02:00
"(Pressione 'Cima' para voltar)",
2001-07-22 09:36:49 +02:00
"(Appuyer sur 'Haut' pour revenir en arri<72>re)",
2001-07-24 16:00:54 +02:00
"(trykk 'Opp' for <20> g<> tilbake)",
2003-05-24 11:00:26 +02:00
"(palaa takaisin painamalla 'Yl<59>s')",
2002-04-01 11:38:27 +02:00
"(Nacisnac 'Gora' cofa)",
2002-04-06 09:51:08 +02:00
"(Pulse 'Arriba' para retornar)",
2003-03-30 10:06:20 +02:00
"(Piese 'pano' gia epistrofi",
2002-05-26 09:43:17 +02:00
"(Tryck 'Upp' f<>r att backa)",
2002-06-10 16:18:50 +02:00
"(Apsati 'Sus' pentru revenire)",
2002-06-22 09:30:06 +02:00
"(<28>Fel' megnyom<6F>sa a visszat<61>r<EFBFBD>shez)",
"(Premeu 'Amunt' per retornar)",
2000-11-11 10:39:27 +01:00
},
{ "(press 'Down' to end key definition)",
2001-03-31 09:58:14 +02:00
"('Ab' dr<64>cken zum Beenden)",
2000-11-19 09:27:15 +01:00
"(pritisnite 'Dol' za konec)",
2003-05-27 15:38:42 +02:00
"('Giu' per finire la definizione tasti)",
2001-03-31 09:58:14 +02:00
"(Druk 'Omlaag' om te beeindigen)",
2002-03-22 14:30:41 +01:00
"(Pressione 'Baixo' para terminar a defini<6E><69>o)",
2001-07-22 09:36:49 +02:00
"(Appuyer sur 'Bas' pour terminer)",
2001-07-24 16:00:54 +02:00
"(trykk 'Ned' for <20> avslutte innl<6E>ring)",
2003-05-24 11:00:26 +02:00
"(lopeta opettaminen painamalla 'Alas')",
2002-04-01 11:38:27 +02:00
"(Nacisnac 'Dol' by zakonczyc)",
2002-04-06 09:51:08 +02:00
"(Pulse 'Abajo' para terminar programaci<63>n teclas)",
2003-03-30 10:06:20 +02:00
"(Piese 'Kato' gia termatismo diloseon plktron)",
2002-05-26 09:43:17 +02:00
"(Tryck 'Ner' f<>r att avsluta knapp definition)",
2002-06-10 16:18:50 +02:00
"(Apasati 'Jos' pentru terminare)",
2002-06-22 09:30:06 +02:00
"('Le' megnyom<6F>sa a befejez<65>shez)",
"(Premeu 'Avall' per finalitzar l'aprenentatge)",
2000-11-11 10:39:27 +01:00
},
2002-09-29 13:40:45 +02:00
{ "(press 'Menu' to skip this key)",
"('Men<65>' dr<64>cken zum <20>berspringen)",
2003-05-25 09:51:59 +02:00
"pritisnite 'Meni' za preskok te tipke",
2003-05-27 15:38:42 +02:00
"(premere 'Menu' per saltare questo tasto)",
2003-09-11 13:51:56 +02:00
"Druk 'Menu' om deze toets over te slaan",
2002-09-29 13:40:45 +02:00
"",// TODO
2003-05-01 14:11:42 +02:00
"('Menu' pour passer cette touche)",
2002-09-29 13:40:45 +02:00
"",// TODO
2003-05-24 11:00:26 +02:00
"n<EFBFBD>pp<EFBFBD>imen puuttuessa paina 'Valikko'",
2003-05-31 09:35:45 +02:00
"(Nacisnac 'Menu' by ominac klawisz)",
2003-05-16 13:04:52 +02:00
"Pulse 'Menu' para saltarse esta tecla",
2003-03-30 10:06:20 +02:00
"Pata 'Menou' gia prosperasi aftou tou pliktrou",
2003-05-24 14:04:45 +02:00
"Tryck 'Meny' f<>r att hoppa <20>ver denna knapp.",
2002-09-29 13:40:45 +02:00
"",// TODO
2003-06-09 09:47:20 +02:00
"A Men<65> gombot nyomni ennek a gombnak a kihagy<67>s<EFBFBD>hoz",
"Premeu 'Men<65>' per obviar aquesta tecla",
2002-09-29 13:40:45 +02:00
},
2000-11-11 10:39:27 +01:00
{ "Phase 3: Saving key codes",
"Phase 3: Codes abspeichern",
2003-05-25 09:51:59 +02:00
"Faza 3: Shranjevanje kod tipk",
2003-05-27 15:38:42 +02:00
"Fase 3: Salvataggio codici tasti",
2001-03-31 09:58:14 +02:00
"Fase 3: Opslaan toets codes",
2002-03-22 14:30:41 +01:00
"Fase 3: A salvar os c<>digos das teclas",
2001-07-22 09:36:49 +02:00
"Phase 3: Sauvegarde des codes des touches",
2001-07-24 16:00:54 +02:00
"Fase 3: Lagre tastekoder",
2003-05-24 11:00:26 +02:00
"Vaihe 3: N<>pp<70>inkoodien tallentaminen",
2002-04-01 11:38:27 +02:00
"Faza 3: Zapamietac Kod",
2002-04-06 09:51:08 +02:00
"Fase 3: Guardar c<>digos de teclas",
2002-05-01 10:35:01 +02:00
"Fasi 3: Apothikevsi kodikon",
2002-05-26 09:43:17 +02:00
"Fas 3: Spara knappkoder",
2002-06-10 16:18:50 +02:00
"Faza 3: Salvarea codurilor de taste",
2002-06-22 09:30:06 +02:00
"Harmadik l<>p<EFBFBD>s: k<>d ment<6E>se",
2003-05-16 13:04:52 +02:00
"Fase 3: Guardant els codis de les tecles",
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",
2001-03-31 09:58:14 +02:00
"'Omhoog' te bewaren, 'Omlaag' voor annuleren",
2001-06-22 15:19:57 +02:00
"'Cima' para Salvar, 'Baixo' para Cancelar",
2001-07-22 09:36:49 +02:00
"Appuyer sur 'Haut' pour sauvegarder, 'Bas' pour annuler",
2001-07-24 16:00:54 +02:00
"Trykk 'Opp' for <20> lagre, 'Ned' for <20> avbryte",
2003-05-24 11:00:26 +02:00
"Paina 'Yl<59>s' tallentaaksesi ja 'Alas' peruuttaaksesi",
2002-04-01 11:38:27 +02:00
"'Gora' zapamietuje, 'Dol' przerywa",
2003-05-16 13:04:52 +02:00
"Pulse 'Arriba' para guardar, 'Abajo' para anular",
2003-03-30 10:06:20 +02:00
"'Pano' apothikevsi, 'Kato' akirosi",
2002-05-26 09:43:17 +02:00
"Tryck 'Upp' f<>r att spara, 'Ner' f<>r att avsluta",
2002-06-10 16:18:50 +02:00
"Apsati 'Sus' pentru salvare, 'Jos' pentru anulare",
2002-06-22 09:30:06 +02:00
"'Fel' ment<6E>s, 'Le<4C> m<>gse",
"Premeu 'Amunt' per guardar, 'Avall' per anul<75>lar",
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",
2001-03-31 09:58:14 +02:00
"Omhoog",
2001-06-22 15:19:57 +02:00
"Cima",
2001-07-22 09:36:49 +02:00
"Haut",
2001-07-24 16:00:54 +02:00
"Opp",
2002-02-09 17:20:19 +01:00
"Yl<EFBFBD>s",
2002-04-01 11:38:27 +02:00
"Gora",
2002-04-06 09:51:08 +02:00
"Arriba",
2002-05-01 10:35:01 +02:00
"Pano",
2002-05-26 09:43:17 +02:00
"Upp",
2002-06-10 16:18:50 +02:00
"Sus",
2002-06-22 09:30:06 +02:00
"Fel",
2003-05-16 13:04:52 +02:00
"Amunt",
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",
2001-03-31 09:58:14 +02:00
"Omlaag",
2001-06-22 15:19:57 +02:00
"Baixo",
2001-07-22 09:36:49 +02:00
"Bas",
2001-07-24 16:00:54 +02:00
"Ned",
2002-02-09 17:20:19 +01:00
"Alas",
2002-04-01 11:38:27 +02:00
"Dol",
2002-04-06 09:51:08 +02:00
"Abajo",
2002-05-01 10:35:01 +02:00
"Kato",
2002-05-26 09:43:17 +02:00
"Ner",
2002-06-10 16:18:50 +02:00
"Jos",
2002-06-22 09:30:06 +02:00
"Le",
2003-05-16 13:04:52 +02:00
"Avall",
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",
2001-03-31 09:58:14 +02:00
"Menu",
2001-06-22 15:19:57 +02:00
"Menu",
2001-07-22 09:36:49 +02:00
"Menu",
2001-07-24 16:00:54 +02:00
"Meny",
2002-02-09 17:20:19 +01:00
"Valikko",
2002-04-01 11:38:27 +02:00
"Menu",
2002-04-06 09:51:08 +02:00
"Menu",
2002-05-01 10:35:01 +02:00
"Menou",
2002-05-26 09:43:17 +02:00
"Meny",
2002-06-10 16:18:50 +02:00
"Meniu",
2002-06-22 09:30:06 +02:00
"Men<EFBFBD>",
2003-05-16 13:04:52 +02:00
"Men<EFBFBD>",
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",
2001-03-31 09:58:14 +02:00
"Ok",
2001-06-22 15:19:57 +02:00
"Ok",
2001-07-22 09:36:49 +02:00
"Ok",
2001-07-24 16:00:54 +02:00
"Ok",
2002-02-09 17:20:19 +01:00
"Ok",
2002-04-01 11:38:27 +02:00
"Ok",
2002-04-06 09:51:08 +02:00
"Ok",
2002-05-01 10:35:01 +02:00
"Ok",
2002-05-26 09:43:17 +02:00
"Ok",
2002-06-10 16:18:50 +02:00
"Ok",
2002-06-22 09:30:06 +02:00
"Ok",
"D'acord",
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",
2001-03-31 09:58:14 +02:00
"Terug",
2001-06-22 15:19:57 +02:00
"Voltar",
2001-07-22 09:36:49 +02:00
"Retour",
2001-07-24 16:00:54 +02:00
"Tilbake",
2002-02-09 17:20:19 +01:00
"Takaisin",
2002-04-01 11:38:27 +02:00
"Wstecz",
2002-04-06 09:51:08 +02:00
"Retornar",
2002-05-01 10:35:01 +02:00
"Piso",
2002-05-26 09:43:17 +02:00
"Tillbaka",
2002-06-10 16:18:50 +02:00
"Inapoi",
2002-06-22 09:30:06 +02:00
"Vissza",
2003-05-16 13:04:52 +02:00
"Retornar",
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",
2001-03-31 09:58:14 +02:00
"Links",
2001-06-22 15:19:57 +02:00
"Esquerda",
2001-07-22 09:36:49 +02:00
"Gauche",
2001-07-24 16:00:54 +02:00
"Venstre",
2002-02-09 17:20:19 +01:00
"Vasemmalle",
2002-04-01 11:38:27 +02:00
"Lewo",
2002-04-06 09:51:08 +02:00
"Izquierda",
2002-05-01 10:35:01 +02:00
"Aristera",
2002-05-26 09:43:17 +02:00
"V<EFBFBD>nster",
2002-06-10 16:18:50 +02:00
"Stinga",
2002-06-22 09:30:06 +02:00
"Balra",
2003-05-16 13:04:52 +02:00
"Esquerra",
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",
2001-03-31 09:58:14 +02:00
"Rechts",
2001-06-22 15:19:57 +02:00
"Direita",
2001-07-22 09:36:49 +02:00
"Droite",
2001-07-24 16:00:54 +02:00
"H<EFBFBD>yre",
2002-02-09 17:20:19 +01:00
"Oikealle",
2002-04-01 11:38:27 +02:00
"Prawo",
2002-04-06 09:51:08 +02:00
"Derecha",
2002-05-01 10:35:01 +02:00
"Deksia",
2002-05-26 09:43:17 +02:00
"H<EFBFBD>ger",
2002-06-10 16:18:50 +02:00
"Dreapta",
2002-06-22 09:30:06 +02:00
"Jobbra",
2003-05-27 07:30:43 +02:00
"Dreta",
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",
2001-03-31 09:58:14 +02:00
"Rood",
2001-06-22 15:19:57 +02:00
"Vermelho",
2001-07-22 09:36:49 +02:00
"Rouge",
2001-07-24 16:00:54 +02:00
"R<EFBFBD>d",
2002-02-09 17:20:19 +01:00
"Punainen",
2002-04-01 11:38:27 +02:00
"Czerwony",
2002-04-06 09:51:08 +02:00
"Rojo",
2002-05-01 10:35:01 +02:00
"Kokino",
2002-05-26 09:43:17 +02:00
"R<EFBFBD>d",
2002-06-10 16:18:50 +02:00
"Rosu",
2002-06-22 09:30:06 +02:00
"Piros",
2003-05-27 07:30:43 +02:00
"Vermell",
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",
2001-03-31 09:58:14 +02:00
"Groen",
2001-06-22 15:19:57 +02:00
"Verde",
2001-07-22 09:36:49 +02:00
"Vert",
2001-07-24 16:00:54 +02:00
"Gr<EFBFBD>nn",
2002-02-09 17:20:19 +01:00
"Vihre<EFBFBD>",
2002-04-01 11:38:27 +02:00
"Zielony",
2002-04-06 09:51:08 +02:00
"Verde",
2002-05-01 10:35:01 +02:00
"Prasino",
2002-05-26 09:43:17 +02:00
"Gr<EFBFBD>n",
2002-06-10 16:18:50 +02:00
"Verde",
2002-06-22 09:30:06 +02:00
"Z<EFBFBD>ld",
2003-05-16 13:04:52 +02:00
"Verd",
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",
2001-03-31 09:58:14 +02:00
"Geel",
2001-06-22 15:19:57 +02:00
"Amarelo",
2001-07-22 09:36:49 +02:00
"Jaune",
2001-07-24 16:00:54 +02:00
"Gul",
2002-02-09 17:20:19 +01:00
"Keltainen",
2002-04-01 11:38:27 +02:00
"Zolty",
2002-04-06 09:51:08 +02:00
"Amarillo",
2002-05-01 10:35:01 +02:00
"Kitrino",
2002-05-26 09:43:17 +02:00
"Gul",
2002-06-10 16:18:50 +02:00
"Galben",
2002-06-22 09:30:06 +02:00
"S<EFBFBD>rga",
2003-05-16 13:04:52 +02:00
"Groc",
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",
2001-03-31 09:58:14 +02:00
"Blauw",
2001-06-22 15:19:57 +02:00
"Azul",
2001-07-22 09:36:49 +02:00
"Bleu",
2001-07-24 16:00:54 +02:00
"Bl<EFBFBD>",
2002-02-09 17:20:19 +01:00
"Sininen",
2002-04-01 11:38:27 +02:00
"Niebieski",
2002-04-06 09:51:08 +02:00
"Azul",
2002-05-01 10:35:01 +02:00
"Mple",
2002-05-26 09:43:17 +02:00
"Bl<EFBFBD>",
2002-06-10 16:18:50 +02:00
"Albastru",
2002-06-22 09:30:06 +02:00
"K<EFBFBD>k",
2003-05-16 13:04:52 +02:00
"Blau",
2000-11-11 10:39:27 +01:00
},
2002-10-27 14:32:06 +01:00
{ "Play",
"Wiedergabe",
2003-05-25 09:51:59 +02:00
"Predvajaj",
2003-05-27 15:38:42 +02:00
"Riproduci",
2003-09-11 13:51:56 +02:00
"Weergeven",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-05-01 14:11:42 +02:00
"Lecture",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-05-24 11:00:26 +02:00
"Toista",
2003-05-31 09:35:45 +02:00
"Odtworzenie",
2003-05-16 13:04:52 +02:00
"Reproducir",
2003-03-30 10:06:20 +02:00
"Anametadosi",
2003-01-26 11:48:30 +01:00
"Spela upp",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-06-06 15:43:49 +02:00
"Lej<EFBFBD>tsz<EFBFBD>s",
2003-05-16 13:04:52 +02:00
"Reproduir",
2002-10-27 14:32:06 +01:00
},
{ "Pause",
"Pause",
2003-05-25 09:51:59 +02:00
"Pavza",
2003-05-27 15:38:42 +02:00
"Pausa",
2003-09-11 13:51:56 +02:00
"Pauze",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-05-01 14:11:42 +02:00
"Pause",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-05-24 11:00:26 +02:00
"Keskeyt<EFBFBD>",
2003-05-31 09:35:45 +02:00
"Przerwa",
2003-05-16 13:04:52 +02:00
"Pausa",
2003-03-30 10:06:20 +02:00
"Dialima",
2003-01-26 11:48:30 +01:00
"Pausa",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-06-06 15:43:49 +02:00
"Sz<EFBFBD>net",
2003-05-16 13:04:52 +02:00
"Pausa",
2002-10-27 14:32:06 +01:00
},
{ "Stop",
"Stop",
2003-05-25 09:51:59 +02:00
"Ustavi",
2003-05-27 15:38:42 +02:00
"Stop",
2003-09-11 13:51:56 +02:00
"Stop",
2003-05-01 14:11:42 +02:00
"Stop",
"Stop",
2002-10-27 14:32:06 +01:00
"",// TODO
"Lopeta",
2003-05-31 09:35:45 +02:00
"Stop",
2003-05-16 13:04:52 +02:00
"Parar",
2003-03-30 10:06:20 +02:00
"Terma",
2003-01-26 11:48:30 +01:00
"Stoppa",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-06-06 15:43:49 +02:00
"Stop",
"Aturar",
2002-10-27 14:32:06 +01:00
},
{ "Record",
"Aufnehmen",
2003-05-25 09:51:59 +02:00
"Snemaj",
2003-05-27 15:38:42 +02:00
"Registra",
2003-09-11 13:51:56 +02:00
"Opnemen",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-05-01 14:11:42 +02:00
"Enregistrement",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-05-24 11:00:26 +02:00
"Tallenna",
2003-05-31 09:35:45 +02:00
"Nagrywac",
2003-05-16 13:04:52 +02:00
"Grabar",
2003-03-30 10:06:20 +02:00
"Egrafi",
2003-01-26 11:48:30 +01:00
"Spela in",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-06-06 15:43:49 +02:00
"Felvenni",
2003-05-16 13:04:52 +02:00
"Gravar",
2002-10-27 14:32:06 +01:00
},
{ "FastFwd",
"Vorlauf",
2003-05-25 09:51:59 +02:00
"Hitro naprej",
2003-05-27 15:38:42 +02:00
"Avanti Veloce",
2003-09-11 13:51:56 +02:00
"Vooruitspoelen",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-05-01 14:11:42 +02:00
"Avance rapide",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-05-24 11:00:26 +02:00
"Pikakelaus >>",
2003-05-31 09:35:45 +02:00
"Naprzod",
2003-05-16 13:04:52 +02:00
"Adelante r<>pido",
2003-03-30 10:06:20 +02:00
"Girisma mprosta",
2003-05-24 14:04:45 +02:00
"Snabbspolning fram<61>t",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-06-06 15:43:49 +02:00
"El<EFBFBD>re p<>rgetni",
2003-05-16 13:04:52 +02:00
"Endavant r<>pidament",
2002-10-27 14:32:06 +01:00
},
{ "FastRew",
"R<EFBFBD>cklauf",
2003-05-25 09:51:59 +02:00
"Hitro nazaj",
2003-05-27 15:38:42 +02:00
"Indietro Veloce",
2003-09-11 13:51:56 +02:00
"Terugspoelen",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-05-01 14:11:42 +02:00
"Retour rapide",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-05-24 11:00:26 +02:00
"Pikakelaus <<",
2003-05-31 09:35:45 +02:00
"Wstecz",
2003-05-16 13:04:52 +02:00
"Atr<EFBFBD>s r<>pido",
2003-03-30 10:06:20 +02:00
"Girisma piso",
2003-05-24 14:04:45 +02:00
"Snabbspolning bak<61>t",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-06-06 15:43:49 +02:00
"Vissza p<>rgetni",
2003-05-16 13:04:52 +02:00
"Enrera r<>pidament",
2002-10-27 14:32:06 +01:00
},
2001-09-01 11:44:08 +02:00
{ "Power",
"Ausschalten",
2002-03-31 15:55:29 +02:00
"Izklop",
2002-03-29 16:20:39 +01:00
"Power",
2002-03-23 15:33:26 +01:00
"Uitschakelen",
2002-03-22 14:30:41 +01:00
"Ligar",
"Veille", // This one caused some bug reports ;)
2002-03-31 16:32:04 +02:00
"Power",
2002-02-09 17:20:19 +01:00
"Virtakytkin",
2002-04-01 11:38:27 +02:00
"Wylaczyc",
2002-04-06 09:51:08 +02:00
"Corriente",
2002-05-01 10:35:01 +02:00
"Klisimo",
2002-05-26 09:43:17 +02:00
"P<EFBFBD>/Av",
2002-06-10 16:18:50 +02:00
"Pornit",
2002-06-22 09:30:06 +02:00
"Kikapcsolni",
"Aturar",
2001-09-01 11:44:08 +02:00
},
2002-10-27 14:32:06 +01:00
{ "Channel+",
"Kanal+",
2003-05-25 09:51:59 +02:00
"Kanal+",
2003-05-27 15:38:42 +02:00
"Canale +",
2003-09-11 13:51:56 +02:00
"Kanaal+",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-05-01 14:11:42 +02:00
"Cha<EFBFBD>ne+",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-05-24 11:00:26 +02:00
"Kanava +",
2003-05-31 09:35:45 +02:00
"Kanal+",
2003-05-16 13:04:52 +02:00
"Canal +",
2003-03-30 10:06:20 +02:00
"Kanali+",
2003-01-26 11:48:30 +01:00
"Kanal+",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-06-06 15:43:49 +02:00
"Csatorna+",
2003-05-16 13:04:52 +02:00
"Canal +",
2002-10-27 14:32:06 +01:00
},
{ "Channel-",
"Kanal-",
2003-05-25 09:51:59 +02:00
"Kanal-",
2003-05-27 15:38:42 +02:00
"Canale -",
2003-09-11 13:51:56 +02:00
"Kanaal-",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-05-01 14:11:42 +02:00
"Cha<EFBFBD>ne-",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-05-24 11:00:26 +02:00
"Kanava -",
2003-05-31 09:35:45 +02:00
"Kanal-",
2003-05-16 13:04:52 +02:00
"Canal -",
2003-03-30 10:06:20 +02:00
"Kanali-",
2003-01-26 11:48:30 +01:00
"Kanal-",
2002-10-27 14:32:06 +01:00
"",// TODO
2003-06-06 15:43:49 +02:00
"Csatorna-",
2003-05-16 13:04:52 +02:00
"Canal -",
2002-10-27 14:32:06 +01:00
},
{ "Volume+",
"Lautst<EFBFBD>rke+",
2002-03-31 15:55:29 +02:00
"Glasnost+",
2003-05-27 15:38:42 +02:00
"Volume +",
2002-03-22 13:58:50 +01:00
"Volume+",
2002-03-22 14:30:41 +01:00
"Volume+",
2002-03-03 16:39:54 +01:00
"Volume+",
2002-03-31 16:32:04 +02:00
"Volum+",
2003-05-24 11:00:26 +02:00
"<EFBFBD><EFBFBD>nenvoimakkuus +",
2002-04-01 11:38:27 +02:00
"Glosnej",
2002-04-06 09:51:08 +02:00
"Volumen+",
2002-05-01 10:35:01 +02:00
"Entasi+",
2002-05-26 09:43:17 +02:00
"Volym+",
2002-06-10 16:18:50 +02:00
"Volum+",
2002-06-22 09:30:06 +02:00
"Hanger<EFBFBD>+",
2003-05-16 13:04:52 +02:00
"Volum +",
},
{ "Volume-",
"Lautst<EFBFBD>rke-",
2002-03-31 15:55:29 +02:00
"Glasnost-",
2003-05-27 15:38:42 +02:00
"Volume -",
2002-03-22 13:58:50 +01:00
"Volume-",
2002-03-22 14:30:41 +01:00
"Volume-",
2002-03-03 16:39:54 +01:00
"Volume-",
2002-03-31 16:32:04 +02:00
"Volum-",
2003-05-24 11:00:26 +02:00
"<EFBFBD><EFBFBD>nenvoimakkuus -",
2002-04-01 11:38:27 +02:00
"Ciszej",
2002-04-06 09:51:08 +02:00
"Volumen-",
2002-05-01 10:35:01 +02:00
"Entasi-",
2002-05-26 09:43:17 +02:00
"Volym-",
2002-06-10 16:18:50 +02:00
"Volum-",
2002-06-22 09:30:06 +02:00
"Hanger<EFBFBD>-",
2003-05-16 13:04:52 +02:00
"Volum -",
},
{ "Mute",
"Stumm",
2002-03-31 15:55:29 +02:00
"Izklop zvoka",
2002-03-29 16:20:39 +01:00
"Mute",
2002-03-22 13:58:50 +01:00
"Geluid onderbreken",
2002-03-22 14:30:41 +01:00
"Sem som",
2002-03-03 16:39:54 +01:00
"Coupure du son",
2002-03-31 16:32:04 +02:00
"Lyd av",
"<EFBFBD><EFBFBD>net<EFBFBD>n",
2002-04-01 11:38:27 +02:00
"Cisza",
2002-04-06 09:51:08 +02:00
"Mudo",
2003-03-30 10:06:20 +02:00
"Siopilo",
2002-05-26 09:43:17 +02:00
"Ljud Av",
2002-06-10 16:18:50 +02:00
"Mut(e)",
2002-06-22 09:30:06 +02:00
"Csend",
2003-05-16 13:04:52 +02:00
"En silenci",
},
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",
2001-03-31 09:58:14 +02:00
"ja",
2001-06-22 15:19:57 +02:00
"sim",
2001-07-22 09:36:49 +02:00
"oui",
2001-07-24 16:00:54 +02:00
"ja",
2002-02-09 17:20:19 +01:00
"kyll<EFBFBD>",
2002-04-01 11:38:27 +02:00
"tak",
2002-04-06 09:51:08 +02:00
"s<EFBFBD>",
2002-05-01 10:35:01 +02:00
"nai",
2002-05-26 09:43:17 +02:00
"ja",
2002-06-10 16:18:50 +02:00
"da",
2002-06-22 09:30:06 +02:00
"igen",
2003-05-16 13:04:52 +02:00
"s<EFBFBD>",
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",
2001-03-31 09:58:14 +02:00
"nee",
2002-03-22 14:30:41 +01:00
"n<EFBFBD>o",
2001-07-22 09:36:49 +02:00
"non",
2001-07-24 16:00:54 +02:00
"nei",
2002-02-09 17:20:19 +01:00
"ei",
2002-04-01 11:38:27 +02:00
"nie",
2002-04-06 09:51:08 +02:00
"no",
2002-05-01 10:35:01 +02:00
"oxi",
2002-05-26 09:43:17 +02:00
"nej",
2002-06-10 16:18:50 +02:00
"nu",
2002-06-22 09:30:06 +02:00
"nem",
2003-05-16 13:04:52 +02:00
"no",
2000-11-11 10:39:27 +01:00
},
{ "off",
"aus",
2003-05-25 09:51:59 +02:00
"izklop",
2003-05-27 15:38:42 +02:00
"off",
2003-09-11 13:51:56 +02:00
"uit",
2003-05-24 12:51:02 +02:00
"off",
"",// TODO
"",// TODO
2003-05-24 11:00:26 +02:00
"pois",
2003-05-31 09:35:45 +02:00
"wyl.",
2003-05-16 13:04:52 +02:00
"off",
2003-03-30 10:06:20 +02:00
"klisto",
2003-01-26 11:48:30 +01:00
"av",
"",// TODO
2003-06-06 15:43:49 +02:00
"ki",
2003-05-16 13:04:52 +02:00
"off",
},
{ "none",
"keine",
2003-05-25 09:51:59 +02:00
"nobeden",
2003-05-27 15:38:42 +02:00
"nessuno",
2003-09-11 13:51:56 +02:00
"geen",
"",// TODO
2003-05-01 14:11:42 +02:00
"aucun",
"",// TODO
2003-05-24 11:00:26 +02:00
"tyhj<EFBFBD>",
2003-05-31 09:35:45 +02:00
"zaden",
2003-05-27 07:30:43 +02:00
"ninguno",
2003-03-30 10:06:20 +02:00
"kanena",
2003-05-24 14:04:45 +02:00
"ingen",
"",// TODO
2003-06-06 15:43:49 +02:00
"semmi",
2003-05-16 13:04:52 +02:00
"cap",
},
{ "auto",
"auto",
2003-05-25 09:51:59 +02:00
"avtomatsko",
2003-05-27 15:38:42 +02:00
"auto",
2003-09-11 13:51:56 +02:00
"auto",
"",// TODO
2003-05-01 14:11:42 +02:00
"auto",
"",// TODO
2003-05-24 11:00:26 +02:00
"auto",
2003-05-31 09:35:45 +02:00
"auto",
2003-05-16 13:04:52 +02:00
"auto",
2003-03-30 10:06:20 +02:00
"aftomato",
2003-05-24 14:04:45 +02:00
"automatisk",
"",// TODO
2003-06-06 15:43:49 +02:00
"auto",
2003-05-16 13:04:52 +02:00
"auto",
},
{ "top",
"oben",
2002-03-31 15:55:29 +02:00
"zgoraj",
2002-03-29 16:20:39 +01:00
"limite sup",
2002-03-22 13:58:50 +01:00
"boven",
2002-03-22 14:30:41 +01:00
"topo",
2001-08-08 16:43:43 +02:00
"haut",
2002-03-31 16:32:04 +02:00
"<EFBFBD>vre",
"yl<EFBFBD>reuna",
2002-04-01 11:38:27 +02:00
"gora",
2003-05-16 13:04:52 +02:00
"parte superior",
2002-05-01 10:35:01 +02:00
"pano",
2002-05-26 09:43:17 +02:00
"<EFBFBD>vre",
2002-06-10 16:18:50 +02:00
"sus",
2002-06-22 09:30:06 +02:00
"Fent",
2003-05-16 13:04:52 +02:00
"a dalt",
},
{ "bottom",
"unten",
2002-03-31 15:55:29 +02:00
"spodaj",
2002-03-29 16:20:39 +01:00
"limite inf",
2002-03-22 13:58:50 +01:00
"onder",
2002-03-22 14:30:41 +01:00
"fundo",
2001-08-08 16:43:43 +02:00
"bas",
2002-03-31 16:32:04 +02:00
"nedre",
"alareuna",
2002-04-01 11:38:27 +02:00
"dol",
2003-05-16 13:04:52 +02:00
"parte inferior",
2002-05-01 10:35:01 +02:00
"kato",
2003-05-24 14:04:45 +02:00
"undre",
2002-06-10 16:18:50 +02:00
"jos",
2002-06-22 09:30:06 +02:00
"lent",
2003-05-16 13:04:52 +02:00
"a baix",
},
{ "Disk",
"Disk",
"Disk",
2003-05-27 15:38:42 +02:00
"Disco",
"Disk",
"Disk",
2002-03-23 10:26:55 +01:00
"Disque",
"Disk",
2003-05-24 11:00:26 +02:00
"Levy",
2002-04-01 11:38:27 +02:00
"Disk",
2002-04-06 09:51:08 +02:00
"Disco",
2002-05-01 10:35:01 +02:00
"Disk",
2002-05-26 09:43:17 +02:00
"Disk",
2002-06-10 16:18:50 +02:00
"Disc",
2002-06-22 09:30:06 +02:00
"Lemez",
2003-05-27 07:30:43 +02:00
"Disc",
},
{ "free",
"frei",
2002-03-31 15:55:29 +02:00
"prosto",
2002-03-29 16:20:39 +01:00
"liberi",
2002-03-22 13:58:50 +01:00
"vrij",
2002-03-22 14:30:41 +01:00
"livre",
2002-03-03 16:39:54 +01:00
"restant",
2002-03-31 16:32:04 +02:00
"ledig",
"vapaana",
2002-04-01 11:38:27 +02:00
"pozostalo",
2002-04-06 09:51:08 +02:00
"libre",
2002-05-01 10:35:01 +02:00
"akoma",
2002-05-26 09:43:17 +02:00
"ledigt",
2002-06-10 16:18:50 +02:00
"liber",
2002-06-22 09:30:06 +02:00
"szabad",
2003-05-27 07:30:43 +02:00
"lliure",
},
{ "Jump: ", // note the trailing blank
"Springen: ",
2002-03-31 15:55:29 +02:00
"Skoci: ",
2002-03-29 16:20:39 +01:00
"Vai a: ",
2002-03-22 13:58:50 +01:00
"Springen: ",
2002-03-22 14:30:41 +01:00
"Saltar: ",
2002-03-03 16:39:54 +01:00
"Acc<EFBFBD>s direct: ",
2002-03-31 16:32:04 +02:00
"Hopp: ",
2003-05-24 11:00:26 +02:00
"Siirry: ",
2002-04-01 11:38:27 +02:00
"Skok: ",
2003-05-16 13:04:52 +02:00
"Salta a: ",
2002-05-01 10:35:01 +02:00
"Pidima: ",
2002-05-26 09:43:17 +02:00
"Hopp: ",
2002-06-10 16:18:50 +02:00
"Salt: ",
2002-06-22 09:30:06 +02:00
"Ugr<EFBFBD>s: ",
2003-05-27 07:30:43 +02:00
"Salta a:",
},
2002-03-09 17:11:49 +01:00
{ "Volume ", // note the trailing blank
"Lautst<EFBFBD>rke ",
2002-03-31 15:55:29 +02:00
"Glasnost ",
2002-03-29 16:20:39 +01:00
"Volume ",
2002-03-22 13:58:50 +01:00
"Volume ",
2002-03-22 14:30:41 +01:00
"Volume ",
2002-03-09 17:11:49 +01:00
"Volume ",
2002-03-31 16:32:04 +02:00
"Volum ",
2002-03-09 17:11:49 +01:00
"<EFBFBD><EFBFBD>nenvoimakkuus ",
2002-04-01 11:38:27 +02:00
"Glosnosc ",
2002-04-06 09:51:08 +02:00
"Volumen ",
2002-05-01 10:35:01 +02:00
"Entasi ",
2002-05-26 09:43:17 +02:00
"Volym ",
2002-06-10 16:18:50 +02:00
"Volum ",
2002-06-22 09:30:06 +02:00
"Hanger<EFBFBD> ",
2003-05-16 13:04:52 +02:00
"Volum ",
2002-03-09 17:11:49 +01:00
},
{ " Stop replaying", // note the leading blank!
" Wiedergabe beenden",
" Prekini ponavljanje",
" Interrompi riproduzione",
2001-03-31 09:58:14 +02:00
" Stop afspelen",
2002-03-22 14:30:41 +01:00
" Parar reprodu<64><75>o",
2001-07-22 09:36:49 +02:00
" Arr<72>ter la lecture",
2001-07-24 16:00:54 +02:00
" Stopp avspilling",
" Lopeta toisto",
2002-04-01 11:38:27 +02:00
" Zatrzymac odtwarzanie",
2002-04-06 09:51:08 +02:00
" Parar reproduci<63>n",
2002-05-01 10:35:01 +02:00
" Telos anametadosis",
2002-05-26 09:43:17 +02:00
" Avsluta uppspelning",
2002-06-10 16:18:50 +02:00
" Opreste redare",
2002-06-22 09:30:06 +02:00
" Lej<65>tsz<73>st befejzni",
" Aturar la reproducci<63>",
2000-11-11 10:39:27 +01:00
},
{ " Stop recording ", // note the leading and trailing blanks!
" Aufzeichnung beenden ",
2003-05-25 09:51:59 +02:00
" Prekini snemanje ",
" Interrompi registrazione ",
2001-03-31 09:58:14 +02:00
" Stop opnemen ",
2002-03-22 14:30:41 +01:00
" Parar grava<76><61>o ",
2001-07-22 09:36:49 +02:00
" Arr<72>ter l'enregistrement ",
2001-07-24 16:00:54 +02:00
" Stopp opptak fra ",
" Lopeta tallennus ",
2002-04-01 11:38:27 +02:00
" Zatrzymac nagrywanie ",
2002-04-06 09:51:08 +02:00
" Parar grabaci<63>n ",
2002-05-01 10:35:01 +02:00
" Telos egrafis ",
2002-05-26 09:43:17 +02:00
" Avsluta inspelning ",
2002-06-10 16:18:50 +02:00
" Opreste inregistrarea ",
2002-06-22 09:30:06 +02:00
" Felv<6C>telt befejezni ",
" Aturar la gravaci<63> ",
2000-11-11 10:39:27 +01:00
},
{ " Cancel editing", // note the leading blank!
" Schneiden abbrechen",
" Prekini urejanje",
" Annulla modifiche",
2001-03-31 09:58:14 +02:00
" Bewerken afbreken",
2002-03-22 14:30:41 +01:00
" Anular modifica<63><61>o",
2001-07-22 09:36:49 +02:00
" Annuler le montage",
2002-03-31 16:32:04 +02:00
" Avbryt redigering",
2003-05-24 11:00:26 +02:00
" Peru muokkaus",
2002-05-01 10:35:01 +02:00
" Przerwac montaz",
2003-05-16 13:04:52 +02:00
" Anular modificaci<63>n ",
2003-03-30 10:06:20 +02:00
" Akirosi epexsergasias",
2003-05-24 14:04:45 +02:00
" Avbryt redigering",
2002-06-10 16:18:50 +02:00
" Opreste editare",
2002-06-22 09:30:06 +02:00
" V<>g<EFBFBD>st megszak<61>tani",
2003-05-16 13:04:52 +02:00
" Cancel<65>lar l'edici<63> ",
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...",
2001-03-31 09:58:14 +02:00
"Eerste DVB-kaart wordt omgeschakeld...",
2002-03-22 14:30:41 +01:00
"A mudar interface DVB prim<69>rio...",
2002-03-23 10:26:55 +01:00
"Changement de carte DVB primaire...",
2002-04-20 09:42:37 +02:00
"Bytter f<>rste DVB-enhet...",
2003-05-24 11:00:26 +02:00
"Vaihdetaan p<><70>vastaanottimelle...",
2002-04-01 11:38:27 +02:00
"Pierwszy interfejs DVB przelacza...",
2003-05-16 13:04:52 +02:00
"Cambio al interface DVB primario...",
2002-05-04 14:44:32 +02:00
"I protevon DVB Karta alazi...",
2002-05-26 09:43:17 +02:00
"Byter prim<69>r DVB enhet...",
2002-06-10 16:18:50 +02:00
"Comuta interfata primara DVB...",
2002-06-22 09:30:06 +02:00
"Prim<EFBFBD>r Interface <20>tkapcsolva...",
2003-05-16 13:04:52 +02:00
"Canviant a la interf<72>cie DVB prim<69>ria...",
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",
2001-03-31 09:58:14 +02:00
"Gebruik Omhoog/Omlaag - daarna Ok",
2002-03-22 14:30:41 +01:00
"Cima/Baixo para nova localiza<7A><61>o - Ok para mover",
2001-07-22 09:36:49 +02:00
"Haut/Bas -> nouvelle place - OK -> d<>placer",
2001-07-24 16:00:54 +02:00
"Opp/Ned for ny plass - OK for <20> flytte",
"'Yl<59>s/Alas' uusi paikka - 'OK' hyv<79>ksy",
2002-04-01 11:38:27 +02:00
"Gora/Dol na nowa pozycje - Ok zmienia",
2003-05-16 13:04:52 +02:00
"Arriba/Abajo para el nuevo lugar - OK para mover",
2002-05-01 10:35:01 +02:00
"Pano/Kato gia nea thesi. meta OK",
2002-05-26 09:43:17 +02:00
"Upp/Ner f<>r ny plats - OK f<>r att flytta",
2002-06-10 16:18:50 +02:00
"Sus/Jos pentru noua locatie - OK pentru a muta",
2002-06-22 09:30:06 +02:00
"Fel/Le egy uj opci<63><69>rt - azt<7A>n OK",
2003-05-16 13:04:52 +02:00
"Amunt/Avall per una nova localitzaci<63> - OK per moure",
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",
2001-03-31 09:58:14 +02:00
"Bewerken is gestart",
2002-03-22 14:30:41 +01:00
"Processo de modifica<63><61>o iniciado",
2001-07-22 09:36:49 +02:00
"Op<EFBFBD>ration de montage lanc<6E>e",
2001-07-24 16:00:54 +02:00
"Redigeringsprosess startet",
2002-02-09 17:20:19 +01:00
"Muokkaus aloitettu",
2002-04-01 11:38:27 +02:00
"Uruchomiony proces montazu",
2002-04-06 09:51:08 +02:00
"Proceso modificaci<63>n iniciado",
2003-03-30 10:06:20 +02:00
"Arxi epexsergasias",
2003-05-24 14:04:45 +02:00
"Redigering startad",
2002-06-10 16:18:50 +02:00
"Procesul de editare a inceput",
2002-06-22 09:30:06 +02:00
"V<EFBFBD>g<EFBFBD>s elind<6E>tva",
2003-05-16 13:04:52 +02:00
"Proc<EFBFBD>s d'edici<63> iniciat",
2000-12-28 12:57:16 +01:00
},
{ "Editing process finished",
"Schnitt beendet",
2003-05-25 09:51:59 +02:00
"Proces urejanja je koncan",
2002-03-29 16:20:39 +01:00
"Processo di modifica terminato",
2002-03-22 13:58:50 +01:00
"Bewerken is klaar",
2002-03-22 14:30:41 +01:00
"Processo de modifica<63><61>o terminado",
2002-03-03 16:39:54 +01:00
"Montage termin<69>",
2002-03-31 16:32:04 +02:00
"Redigeringsprosess avsluttet",
2002-02-09 17:20:19 +01:00
"Muokkaus lopetettu",
2002-04-01 11:38:27 +02:00
"Proces montazu zakonczony",
2003-05-16 13:04:52 +02:00
"Proceso de modificaci<63>n terminado",
2003-03-30 10:06:20 +02:00
"I epexsergasia teliose",
2003-05-24 14:04:45 +02:00
"Redigering avslutad",
2002-06-10 16:18:50 +02:00
"Procesul de editare s-a terminat",
2002-06-22 09:30:06 +02:00
"V<EFBFBD>g<EFBFBD>s befejezve",
2003-05-16 13:04:52 +02:00
"Proc<EFBFBD>s d'edici<63> finalitzat",
},
{ "Editing process failed!",
"Schnitt gescheitert!",
2002-03-31 15:55:29 +02:00
"Napaka pri procesu urejenja!",
2002-03-29 16:20:39 +01:00
"Processo di modifica fallito!",
2002-03-22 13:58:50 +01:00
"Bewerken is mislukt!",
2002-03-22 14:30:41 +01:00
"Falha no processo de modifica<63><61>o",
2002-03-22 13:58:50 +01:00
"Echec du montage!",
2002-03-31 16:32:04 +02:00
"Feil under redigering!",
2002-03-22 13:58:50 +01:00
"Muokkaus ep<65>onnistui!",
2002-04-01 11:38:27 +02:00
"Bledny proces montazu!",
2002-04-06 09:51:08 +02:00
"Modificaci<EFBFBD>n ha fallado!",
2003-03-30 10:06:20 +02:00
"I epexsergasia apetixe!",
2003-05-24 14:04:45 +02:00
"Redigeringsprocessen misslyckades",
2002-06-10 16:18:50 +02:00
"Proces de editare nereusit",
2002-06-22 09:30:06 +02:00
"V<EFBFBD>g<EFBFBD>s sikertelen!",
2003-05-16 13:04:52 +02:00
"Proc<EFBFBD>s d'edici<63> fallit!",
},
{ "scanning recordings...",
"Aufzeichnungen werden durchsucht...",
2002-03-31 15:55:29 +02:00
"iskanje posnetkov...",
"scansione registrazioni...",
2002-03-22 13:58:50 +01:00
"Doorzoeken opnames...",
2002-03-22 14:30:41 +01:00
"A pesquisar grava<76><61>es...",
2002-03-03 16:39:54 +01:00
"Recherche des enregistrements...",
2002-03-31 16:32:04 +02:00
"G<EFBFBD>r igjennom opptakene...",
2003-05-24 11:00:26 +02:00
"haetaan tallenteita...",
2002-04-01 11:38:27 +02:00
"Skan nagran...",
2002-04-06 09:51:08 +02:00
"buscando grabaciones...",
2003-03-30 10:06:20 +02:00
"Eksetasi egrafon...",
2002-05-26 09:43:17 +02:00
"S<EFBFBD>ker igenom inspelningarna...",
2002-06-10 16:18:50 +02:00
"Caut inregistrari...",
2002-06-22 09:30:06 +02:00
"Felvett ad<61>sok b<>ng<6E>sz<73>se...",
2003-05-16 13:04:52 +02:00
"cercant gravacions...",
},
2003-04-21 14:57:13 +02:00
{ "Pausing live video...",
"Live-Signal wird angehalten...",
2003-05-25 09:51:59 +02:00
"Ustavljanje predvajanja v zivo...",
2003-05-27 15:38:42 +02:00
"Pausa del canale in visione...",
2003-09-11 13:51:56 +02:00
"Pauzeren live uitzending...",
2003-04-21 14:57:13 +02:00
"",// TODO
2003-05-01 14:11:42 +02:00
"Pause de l'<27>mission en direct...",
2003-04-21 14:57:13 +02:00
"",// TODO
2003-05-24 11:00:26 +02:00
"Keskeytet<EFBFBD><EFBFBD>n l<>hetys...",
2003-05-31 09:35:45 +02:00
"Zatrzymany program biezacy...",
2003-05-16 13:04:52 +02:00
"Emisi<EFBFBD>n en directo parada...",
2003-04-21 14:57:13 +02:00
"",// TODO
2003-05-24 14:04:45 +02:00
"Pausar direktinspelningen",
2003-04-21 14:57:13 +02:00
"",// TODO
2003-06-06 15:43:49 +02:00
"Az <20>l<EFBFBD> ad<61>s meg<65>ll<6C>tva...",
2003-05-27 07:30:43 +02:00
"Pausa d'emissi<73> en directe...",
2003-04-21 14:57:13 +02:00
},
2002-05-09 16:26:56 +02:00
{ "This plugin has no setup parameters!",
"Dieses Plugin hat keine Setup-Parameter!",
2003-05-25 09:51:59 +02:00
"Ta plugin nima nastavitvenih parametrov!",
2003-05-27 15:38:42 +02:00
"Questo plugin non ha parametri di setup!",
2003-09-11 13:51:56 +02:00
"Deze plugin heeft geen instelparameters",
2002-05-09 16:26:56 +02:00
"",// TODO
2003-05-24 10:26:36 +02:00
"Ce plugin n'a pas de param<61>tres!",
2002-05-09 16:26:56 +02:00
"",// TODO
"T<EFBFBD>ll<EFBFBD> laajennoksella ei ole asetuksia!",
2003-05-31 09:35:45 +02:00
"Ten plugin niema parametrow!",
2003-05-16 13:04:52 +02:00
"Este plugin no admite configuraci<63>n",
2003-03-30 10:06:20 +02:00
"Afto to plugin den exi parametrous",
2003-05-24 14:04:45 +02:00
"Den h<>r modulen har inga parametrar",
2002-06-22 09:30:06 +02:00
"",// TODO
2003-06-06 15:43:49 +02:00
"Ennek a plugin-nak nincs setup-parametere!",
2003-05-16 13:04:52 +02:00
"Aquest plugin no admet configuraci<63>!",
2002-05-26 09:43:17 +02:00
},
2000-11-11 10:39:27 +01:00
{ NULL }
};
2002-05-09 16:26:56 +02:00
// --- cI18nEntry ------------------------------------------------------------
class cI18nEntry : public cListObject {
private:
const tI18nPhrase *phrases;
const char *plugin;
public:
cI18nEntry(const tI18nPhrase * const Phrases, const char *Plugin);
const tI18nPhrase *Phrases(void) { return phrases; }
const char *Plugin(void) { return plugin; }
};
cI18nEntry::cI18nEntry(const tI18nPhrase * const Phrases, const char *Plugin)
{
phrases = Phrases;
plugin = Plugin;
}
// --- cI18nList -------------------------------------------------------------
class cI18nList : public cList<cI18nEntry> {
public:
cI18nEntry *Get(const char *Plugin);
const tI18nPhrase *GetPhrases(const char *Plugin);
};
cI18nEntry *cI18nList::Get(const char *Plugin)
{
if (Plugin) {
for (cI18nEntry *p = First(); p; p = Next(p)) {
if (strcmp(p->Plugin(), Plugin) == 0)
return p;
}
}
return NULL;
}
const tI18nPhrase *cI18nList::GetPhrases(const char *Plugin)
{
cI18nEntry *p = Get(Plugin);
return p ? p->Phrases() : NULL;
}
cI18nList I18nList;
// ---
void I18nRegister(const tI18nPhrase * const Phrases, const char *Plugin)
{
cI18nEntry *p = I18nList.Get(Plugin);
if (p)
I18nList.Del(p);
if (Phrases)
I18nList.Add(new cI18nEntry(Phrases, Plugin));
}
const char *I18nTranslate(const char *s, const char *Plugin)
2000-11-11 10:39:27 +01:00
{
if (Setup.OSDLanguage) {
2002-05-09 16:26:56 +02:00
const tI18nPhrase *p = Plugin ? I18nList.GetPhrases(Plugin) : Phrases;
if (!p)
p = Phrases;
for (int i = ((p == Phrases) ? 1 : 2); i--; ) {
for (; **p; p++) {
if (strcmp(s, **p) == 0) {
const char *t = (*p)[Setup.OSDLanguage];
if (t && *t)
return t;
}
}
p = Phrases;
2000-11-11 10:39:27 +01:00
}
2002-05-13 16:35:49 +02:00
esyslog("%s%sno translation found for '%s' in language %d (%s)\n", Plugin ? Plugin : "", Plugin ? ": " : "", s, Setup.OSDLanguage, Phrases[0][Setup.OSDLanguage]);
2000-11-11 10:39:27 +01:00
}
const char *p = strchr(s, '$');
return p ? p + 1 : s;
2000-11-11 10:39:27 +01:00
}
2002-05-09 16:26:56 +02:00
const char * const * I18nLanguages(void)
2000-11-11 10:39:27 +01:00
{
return &Phrases[0][0];
}