summaryrefslogtreecommitdiff
path: root/i18n.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <kls (at) cadsoft (dot) de>2004-05-16 18:00:00 +0200
committerKlaus Schmidinger <kls (at) cadsoft (dot) de>2004-05-16 18:00:00 +0200
commitc80a53ff6ea22aa14d1f9772b310b77ea0da7c42 (patch)
treec2c6d9dc5c939765abc61fb0f19de00f988aecc9 /i18n.c
parent9384e56566f56e77d577319a42929e708936e7c7 (diff)
downloadvdr-patch-lnbsharing-c80a53ff6ea22aa14d1f9772b310b77ea0da7c42.tar.gz
vdr-patch-lnbsharing-c80a53ff6ea22aa14d1f9772b310b77ea0da7c42.tar.bz2
Version 1.3.7vdr-1.3.7
- Fixed a memory leak in thread handling when using NPTL (thanks to Jon Burgess). - Fixed handling Setup.RecordDolbyDigital, which was broken since version 1.1.6. - Fixed handling text lengths for itemized EPG texts (thanks to Marcel Wiesweg). - Fixed the help for LSTE and LSTR (was broken in 1.3.6). - Improved iso8859-7 fonts (thanks to Dimitrios Dimitrakos). - Added some 3-letter language codes (thanks to Marcus Mönnig). - Added language code handling to the subtitling descriptor in 'libsi' (thanks to Pekka Virtanen). - Moved several menu item classes from menu.c to menuitems.[hc] to make them available for plugins. - The epg2html.pl script now handles '|' in description texts. - The new setup option "OSD/Use small font" can be used to control the use of the small font (see MANUAL for details). - Swapped osd.[hc] and osdbase.[hc] to have the virtual OSD base class named cOsd. Plugins may need to adjust their #include statements. - Colors are now given as AARRGGBB instead of AABBGGRR. The values are mapped to the driver's (wrong) sequence in dvbosd.c (this should really be fixed in the driver, together with the endian problem). - The new OSD setup parameters "Left" and "Top" can be used to define the top left corner of the OSD. - The OSD size parameters are now in pixel (as opposed to formerly characters). When reading a 'setup.conf' file from an older version of VDR, the OSDwidth and OSDheight values will be converted to pixel automatically. - The OSD is now fully device independent. See the comments in VDR/osd.h and the description in PLUGINS.html for information on how a plugin can implement an OSD display on arbitrary hardware. - The OSD (actually its cBitmap class) can now handle XPM files. There are several XPM files in the VDR/symbols directory which can be used by skins (some of these have been taken from the "elchi" patch). See VDR/skinsttng.c for examples on how to use these. - Due to the changes in the OSD handling the DEBUG_OSD option for a textual OSD has been dropped. There will be a plugin that implements a skin with this functionality later. - The entire OSD display can now be implemented via "skins". See VDR/skins.[hc], VDR/skinclassic.[hc], VDR/skinsttng.[hc] and PLUGINS.html for information on how a plugin can implement its own skin. By default VDR comes with a "Classic" skin that implements the OSD display known from previous versions, and the new skin named "ST:TNG Panels", which is also the default skin now. The actual skin can be selected through "Setup/OSD/Skin". - The colors used in a skin can now be configured using "themes". See PLUGINS.html for information on how a skin can make use of themes, and man vdr(5) for the structure of a theme file. The actual theme to use can be selected through "Setup/OSD/Theme". - Added Croatian language texts (thanks to Drazen Dupor). NOTE: there is apparently a problem with the newly introduced iso8859-2 font, because as soon as Setup/OSD/Language is set to Croatian (currently the last one in the list) everything freezes and the vdr processes have to be killed with -9 and the driver needs to be reloaded. Maybe somebody else can find out what's going wrong here... - Added missing NULL checks when accessing sectionHandler in device.c (thanks to Pekka Virtanen). - Fixed setting the time from the DVB data stream (thanks to Helmut Auer for pointing out a frequency/transponder handling mixup). This now also takes the actual source (sat, cable etc.) into account. Please go into "Setup/EPG" and set the "Set system time" and "Use time from transponder" parameters accordingly (this is necessary even if you have already set them before!).
Diffstat (limited to 'i18n.c')
-rw-r--r--i18n.c428
1 files changed, 424 insertions, 4 deletions
diff --git a/i18n.c b/i18n.c
index 17cc2a4..a1b73d4 100644
--- a/i18n.c
+++ b/i18n.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: i18n.c 1.152 2004/03/13 10:59:23 kls Exp $
+ * $Id: i18n.c 1.155 2004/05/16 11:53:45 kls Exp $
*
* Translations provided by:
*
@@ -23,6 +23,7 @@
* 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à <jvila@tinet.org>
* Russian Vyacheslav Dikonov <sdiconov@mail.ru>
+ * Croatian Drazen Dupor <drazen.dupor@dupor.com>
*
*/
@@ -94,6 +95,7 @@ const tI18nPhrase Phrases[] = {
"Magyar",
"Català",
"ÀãááÚØÙ", // Russian
+ "Hrvatski",
},
// The character set needed for this language (this MUST be the second phrase!):
{ "iso8859-1",
@@ -113,13 +115,14 @@ const tI18nPhrase Phrases[] = {
"iso8859-1",
"iso8859-1",
"iso8859-5",
+ "iso8859-2",
},
// The 3-letter names of the language (this MUST be the third phrase!):
- { "eng",
+ { "eng,dos",
"deu,ger",
"slv",
"ita",
- "dut,nla",
+ "dut,nla,nld",
"por",
"fra,fre",
"nor",
@@ -132,6 +135,7 @@ const tI18nPhrase Phrases[] = {
"hun",
"cat,cln",
"rus",
+ "hrv",
},
// Menu titles:
{ "VDR",
@@ -151,6 +155,7 @@ const tI18nPhrase Phrases[] = {
"VDR",
"VDR",
"VDR",
+ "VDR",
},
{ "Schedule",
"Programm",
@@ -169,6 +174,7 @@ const tI18nPhrase Phrases[] = {
"Program",
"Guia de Programació",
"ÂÕÛÕÓØÔ",
+ "Raspored",
},
{ "Channels",
"Kanäle",
@@ -187,6 +193,7 @@ const tI18nPhrase Phrases[] = {
"Csatornák",
"Canals",
"ºÐÝÐÛë",
+ "Programi",
},
{ "Timers",
"Timer",
@@ -205,6 +212,7 @@ const tI18nPhrase Phrases[] = {
"Felvétel beprogramozása",
"Temporitzadors",
"ÂÐÙÜÕàë",
+ "Termini",
},
{ "Recordings",
"Aufzeichnungen",
@@ -223,6 +231,7 @@ const tI18nPhrase Phrases[] = {
"Felvett adások",
"Veure programes gravats",
"·ÐßØáØ",
+ "Snimke",
},
{ "Setup",
"Einstellungen",
@@ -241,6 +250,7 @@ const tI18nPhrase Phrases[] = {
"Beállítások",
"Configuració",
"½ÐáâàÞÙÚÐ",
+ "Konfiguracija",
},
{ "Commands",
"Befehle",
@@ -259,6 +269,7 @@ const tI18nPhrase Phrases[] = {
"Parancsok",
"Ordres",
"ºÞÜÐÝÔë",
+ "Naredbe",
},
{ "Recording commands",
"Befehle für Aufzeichnungen",
@@ -277,6 +288,7 @@ const tI18nPhrase Phrases[] = {
"Parancsok a felvett filmekhez",
"Ordres de gravació",
"ºÞÜÐÝÔë ×ÐßØáØ",
+ "Naredbe za snimanje",
},
{ "Edit channel",
"Kanal editieren",
@@ -295,6 +307,7 @@ const tI18nPhrase Phrases[] = {
"Csatornák beállítása",
"Editar canal",
"ÀÕÔÐÚâØàÞÒÐÝØÕ ÚÐÝÐÛÐ",
+ "Ureðivanje programa",
},
{ "Edit timer",
"Timer editieren",
@@ -313,6 +326,7 @@ const tI18nPhrase Phrases[] = {
"Felvétel beprogramozásának megváltoztatása",
"Editar temporitzador",
"ÃáâÐÝÞÒÚÐ âÐÙÜÕàÐ",
+ "Ureðivanje termina",
},
{ "Event",
"Sendung",
@@ -331,6 +345,7 @@ const tI18nPhrase Phrases[] = {
"Adás",
"Esdeveniment",
"¿ÕàÕÔÐçÐ",
+ "Emisija",
},
{ "Summary",
"Inhalt",
@@ -349,6 +364,7 @@ const tI18nPhrase Phrases[] = {
"Tartalom",
"Sinopsi",
"¾ßØáÐÝØÕ",
+ "Sadr¾aj",
},
{ "Schedule - %s",
"Programm - %s",
@@ -367,6 +383,7 @@ const tI18nPhrase Phrases[] = {
"Program - %s",
"Guia de Programació - %s",
"¿àÞÓàÐÜÜÐ - %s",
+ "Raspored - %s",
},
{ "What's on now?",
"Was läuft jetzt?",
@@ -385,6 +402,7 @@ const tI18nPhrase Phrases[] = {
"Mi megy most?",
"Què fan ara?",
"ÁÕÙçÐá Ò íäØàÕ:",
+ "©to je trenutno na programu?",
},
{ "What's on next?",
"Was läuft als nächstes?",
@@ -403,6 +421,7 @@ const tI18nPhrase Phrases[] = {
"Mi következik?",
"Què fan després?",
"´ÐÛÕÕ Ò ßàÞÓàÐÜÜÕ:",
+ "©to slijedi?",
},
// Button texts (should not be more than 10 characters!):
{ "Edit",
@@ -422,6 +441,7 @@ const tI18nPhrase Phrases[] = {
"Beállítani",
"Editar",
"ÀÕÔÐÚâØàÞÒÐâì",
+ "Promjeni",
},
{ "New",
"Neu",
@@ -440,6 +460,7 @@ const tI18nPhrase Phrases[] = {
"Új",
"Nou",
"´ÞÑÐÒØâì",
+ "Novi",
},
{ "Delete",
"Löschen",
@@ -458,6 +479,7 @@ const tI18nPhrase Phrases[] = {
"Törölni",
"Esborrar",
"ÃÔÐÛØâì",
+ "Obri¹i",
},
{ "Mark",
"Markieren",
@@ -476,6 +498,7 @@ const tI18nPhrase Phrases[] = {
"Megjelölni",
"Marcar",
"¿ÕàÕÜÕáâØâì",
+ "Oznaèi",
},
{ "On/Off",
"Ein/Aus",
@@ -494,6 +517,7 @@ const tI18nPhrase Phrases[] = {
"Be/Ki",
"On/Off",
"²ÚÛ/²ëÚÛ",
+ "De-/Aktiviraj",
},
{ "Record",
"Aufnehmen",
@@ -512,6 +536,7 @@ const tI18nPhrase Phrases[] = {
"Felvenni",
"Gravar",
"·ÐßØáì",
+ "Snimi",
},
{ "Play",
"Wiedergabe",
@@ -530,6 +555,7 @@ const tI18nPhrase Phrases[] = {
"Lejátszani",
"Reproduir",
"²ÞáßàÞØ×ÒÕáâØ",
+ "Start",
},
{ "Rewind",
"Anfang",
@@ -548,6 +574,7 @@ const tI18nPhrase Phrases[] = {
"Vissza az elejére",
"Enrera",
"½Ð×ÐÔ",
+ "Na poèetak",
},
{ "Button$Stop",
"Beenden",
@@ -566,6 +593,7 @@ const tI18nPhrase Phrases[] = {
"Stop",
"Aturar",
"ÁâÞß",
+ "Stop",
},
{ "Resume",
"Weiter",
@@ -584,6 +612,7 @@ const tI18nPhrase Phrases[] = {
"Tovább",
"Continuar",
"¿àÞÔÞÛÖØâì",
+ "Nastavi",
},
{ "Summary",
"Inhalt",
@@ -602,6 +631,7 @@ const tI18nPhrase Phrases[] = {
"Tartalom",
"Resum",
"¾ßØáÐÝØÕ",
+ "Sadr¾aj",
},
{ "Open",
"Öffnen",
@@ -620,6 +650,7 @@ const tI18nPhrase Phrases[] = {
"Kinyitni",
"Obrir",
"¾âÚàëâì",
+ "Otvori",
},
{ "Switch",
"Umschalten",
@@ -638,6 +669,7 @@ const tI18nPhrase Phrases[] = {
"Átkapcsolni",
"Canviar",
"¿ÕàÕÚÛîçØâì",
+ "Prebaci",
},
{ "Now",
"Jetzt",
@@ -656,6 +688,7 @@ const tI18nPhrase Phrases[] = {
"Most",
"Ara",
"ÁÕÙçÐá",
+ "Trenutno",
},
{ "Next",
"Nächste",
@@ -674,6 +707,7 @@ const tI18nPhrase Phrases[] = {
"Következö",
"Següent",
"´ÐÛÕÕ",
+ "Slijedi",
},
{ "Button$Schedule",
"Programm",
@@ -692,6 +726,7 @@ const tI18nPhrase Phrases[] = {
"Program",
"Programar",
"¿àÞÓàÐÜÜÐ",
+ "Raspored",
},
{ "Language",
"Sprache",
@@ -710,6 +745,7 @@ const tI18nPhrase Phrases[] = {
"Nyelv",
"Idioma",
"Ï×ëÚ",
+ "Jezik",
},
{ "Eject",
"Auswerfen",
@@ -728,6 +764,7 @@ const tI18nPhrase Phrases[] = {
"Kidobni",
"Expulsar",
"¸×ÒÛÕçì",
+ "Izbaci",
},
{ "ABC/abc",
"ABC/abc",
@@ -746,6 +783,7 @@ const tI18nPhrase Phrases[] = {
"ABC/abc",
"ABC/abc",
"°±²/ÐÑÒ",
+ "ABC/abc",
},
{ "Insert",
"Einfügen",
@@ -764,6 +802,7 @@ const tI18nPhrase Phrases[] = {
"Beilleszteni",
"Inserir",
"²áâÐÒÚÐ",
+ "Umetni",
},
{ "Overwrite",
"Überschreiben",
@@ -782,6 +821,7 @@ const tI18nPhrase Phrases[] = {
"Átírni",
"Sobrescriure",
"·ÐÜÕÝÐ",
+ "Prepi¹i",
},
{ "Menu",
"Menü",
@@ -800,6 +840,7 @@ const tI18nPhrase Phrases[] = {
"Menü",
"Menú",
"¼ÕÝî",
+ "Izbor",
},
{ "Reset",
"Reset",
@@ -818,6 +859,7 @@ const tI18nPhrase Phrases[] = {
"Reset",
"Reiniciar",
"ÁÑàÞá",
+ "Reset",
},
{ "Scan",
"Scan",
@@ -836,6 +878,7 @@ const tI18nPhrase Phrases[] = {
"",//TODO
"",//TODO
"ÁÚÐÝØàÞÒÐâì",
+ "Pretra¾i",
},
// Confirmations:
{ "Delete channel?",
@@ -855,6 +898,7 @@ const tI18nPhrase Phrases[] = {
"Csatorna törlése?",
"Esborrar el canal?",
"ÃÔÐÛØâì ÚÐÝÐÛ?",
+ "Obrisati program?",
},
{ "Delete timer?",
"Timer löschen?",
@@ -873,6 +917,7 @@ const tI18nPhrase Phrases[] = {
"Felvétel beprogramozásának törlése?",
"Esborrar el temporitzador?",
"ÃÔÐÛØâì âÐÙÜÕà?",
+ "Obrisati termin?",
},
{ "Delete recording?",
"Aufzeichnung löschen?",
@@ -891,6 +936,7 @@ const tI18nPhrase Phrases[] = {
"Felvétel törlése?",
"Esborrar gravació?",
"ÁâÕàÕâì ×ÐßØáì?",
+ "Obrisati snimku?",
},
{ "Timer still recording - really delete?",
"Timer zeichnet auf - trotzdem löschen?",
@@ -909,6 +955,7 @@ const tI18nPhrase Phrases[] = {
"Felvétel folyamatban van - mégis törölni?",
"Temporitzador activat - Esborrar de totes maneres?",
"¸Ôñâ ×ÐßØáì ßÞ âÐÙÜÕàã - ÔÕÙáâÒØâÕÛìÝÞ ãÔÐÛØâì?",
+ "Jo¹ snimam - zaista obrisati?",
},
{ "Stop recording?",
"Aufzeichnung beenden?",
@@ -927,6 +974,7 @@ const tI18nPhrase Phrases[] = {
"Felvétel befejezni?",
"Aturar la gravació?",
"¿àÕÚàÐâØâì ×ÐßØáì?",
+ "Zaustaviti snimanje?",
},
{ "on primary interface",
"auf dem primären Interface",
@@ -945,6 +993,7 @@ const tI18nPhrase Phrases[] = {
"az elsö kártyán",
"a la interfície primària",
"ÝÐ ÞáÝÞÒÝÞÜ ãáâàÞÙáâÒÕ",
+ "na primarnom ureðaju",
},
{ "Cancel editing?",
"Schneiden abbrechen?",
@@ -963,6 +1012,7 @@ const tI18nPhrase Phrases[] = {
"Vágást befejezni?",
"Cancel·lar l'edició?",
"¿àÕàÒÐâì àÕÔÐÚâØàÞÒÐÝØÕ?",
+ "Otkazati ureðivanje?",
},
{ "Really restart?",
"Wirklich neu starten?",
@@ -981,6 +1031,7 @@ const tI18nPhrase Phrases[] = {
"Tényleg újraindítani?",
"Segur que voleu reiniciar?",
"´ÕÙáâÒØâÕÛìÝÞ ßÕàÕ×ÐßãáâØâì?",
+ "Zaista ponovo pokrenuti?",
},
{ "Recording - restart anyway?",
"Aufnahme läuft - trotzdem neu starten?",
@@ -999,6 +1050,7 @@ const tI18nPhrase Phrases[] = {
"Felvétel folyamatban van - mégis újraindítani?",
"Gravant - Reiniciar de totes maneres?",
"¸Ôñâ ×ÐßØáì - ÔÕÙáâÒØâÕÛìÝÞ ßÕàÕ×ÐßãáâØâì?",
+ "Snimanje traje - svejedno restart sistema?",
},
{ "Recording - shut down anyway?",
"Aufnahme läuft - trotzdem ausschalten?",
@@ -1017,6 +1069,7 @@ const tI18nPhrase Phrases[] = {
"Felvétel folyamatban van - mégis kikapcsolni?",
"Gravant - Apagar de totes maneres?",
"¸Ôñâ ×ÐßØáì - ÔÕÙáâÒØâÕÛìÝÞ ÒëÚÛîçØâì?",
+ "Snimanje traje - svejedno iskljuèiti?",
},
{ "Recording in %d minutes, shut down anyway?",
"Aufnahme in %d Minuten - trotzdem ausschalten?",
@@ -1035,6 +1088,7 @@ const tI18nPhrase Phrases[] = {
"Felvétel %d perc mulva kezdödik - mégis kikapcsolni?",
"Hi ha una gravació en %d minuts - Apagar de totes maneres?",
"ÇÕàÕ× %d ÜØÝãâ ÝÐçÝñâáï ×ÐßØáì - ÔÕÙáâÒØâÕÛìÝÞ ÒëÚÛîçØâì?",
+ "Snimanje za %d minuta - svejedno iskljuèiti?",
},
{ "Press any key to cancel shutdown",
"Taste drücken um Shutdown abzubrechen",
@@ -1053,6 +1107,7 @@ const tI18nPhrase Phrases[] = {
"Nyomj egy gombot a leállás megállításához",
"Prem qualsevol tecla per cancel·lar l'aturada",
"½ÐÖÜØâÕ ÛîÑãî ÚÝÞßÚã çâÞÑë ÞâÜÕÝØâì ÒëÚÛîçÕÝØÕ.",
+ "Pritisnite tipku ako ne ¾elite ugasiti sistem",
},
// Channel parameters:
{ "Name",
@@ -1072,6 +1127,7 @@ const tI18nPhrase Phrases[] = {
"Név",
"Nom",
"½Ð×ÒÐÝØÕ",
+ "Naziv",
},
{ "Frequency",
"Frequenz",
@@ -1090,6 +1146,7 @@ const tI18nPhrase Phrases[] = {
"Frekvencia",
"Freqüència",
"ÇÐáâÞâÐ",
+ "Frekvencija",
},
{ "Polarization",
"Polarisation",
@@ -1108,6 +1165,7 @@ const tI18nPhrase Phrases[] = {
"Polarizáció",
"Polarització",
"¿ÞÛïàØ×ÐæØï",
+ "Polarizacija",
},
{ "Source",
"Quelle",
@@ -1126,6 +1184,7 @@ const tI18nPhrase Phrases[] = {
"Forrás",
"Origen",
"¸áâÞçÝØÚ",
+ "Izvor",
},
{ "Srate",
"Srate",
@@ -1144,6 +1203,7 @@ const tI18nPhrase Phrases[] = {
"Srate",
"Srate",
"ÁØÜÒ. áÚÞàÞáâì",
+ "Srate", // hrv
},
{ "Vpid",
"Vpid",
@@ -1162,6 +1222,7 @@ const tI18nPhrase Phrases[] = {
"Vpid",
"PID Vídeo",
"Vpid (ÒØÔÕÞ)",
+ "Vpid",
},
{ "Ppid",
"Ppid",
@@ -1180,6 +1241,7 @@ const tI18nPhrase Phrases[] = {
"Ppid",
"Ppid",
"Ppid",
+ "Ppid",
},
{ "Apid1",
"Apid1",
@@ -1198,6 +1260,7 @@ const tI18nPhrase Phrases[] = {
"Apid1",
"PID Àudio (1)",
"Apid1 (ÐãÔØÞ 1)",
+ "Apid1", // hrv
},
{ "Apid2",
"Apid2",
@@ -1216,6 +1279,7 @@ const tI18nPhrase Phrases[] = {
"Apid2",
"PID Àudio (2)",
"Apid2 (ÐãÔØÞ 2)",
+ "Apid2", // hrv
},
{ "Dpid1",
"Dpid1",
@@ -1234,6 +1298,7 @@ const tI18nPhrase Phrases[] = {
"Dpid1",
"PID AC3 (1)",
"Dpid1 (AC3 1)",
+ "Dpid1", // hrv
},
{ "Dpid2",
"Dpid2",
@@ -1252,6 +1317,7 @@ const tI18nPhrase Phrases[] = {
"Dpid2",
"PID AC3 (2)",
"Dpid2 (AC3 2)",
+ "Dpid2", // hrv
},
{ "Tpid",
"Tpid",
@@ -1270,6 +1336,7 @@ const tI18nPhrase Phrases[] = {
"Tpid",
"PID Teletext",
"Tpid (âÕÛÕâÕÚáâ)",
+ "Tpid", // hrv
},
{ "CA",
"CA",
@@ -1288,6 +1355,7 @@ const tI18nPhrase Phrases[] = {
"CA",
"Accés Condicional",
"CA (ÔÕÚÞÔÕà)",
+ "Kodiranje (CA)",
},
{ "Sid",
"Sid",
@@ -1306,6 +1374,7 @@ const tI18nPhrase Phrases[] = {
"Sid",
"Sid",
"Sid",
+ "Sid", // hrv
},
{ "Inversion",
"Inversion",
@@ -1324,6 +1393,7 @@ const tI18nPhrase Phrases[] = {
"Inversion",
"Inversió",
"¸ÝÒÕàáØï",
+ "Inverzija",
},
{ "Bandwidth",
"Bandwidth",
@@ -1342,6 +1412,7 @@ const tI18nPhrase Phrases[] = {
"Bandwidth",
"Amplada de banda",
"´ØÐßÐ×ÞÝ",
+ "Bandwidth", // hrv "Pojasna ¹irina",
},
{ "CoderateH",
"CoderateH",
@@ -1360,6 +1431,7 @@ const tI18nPhrase Phrases[] = {
"CoderateH",
"CoderateH",
"CoderateH",
+ "CoderateH", // hrv
},
{ "CoderateL",
"CoderateL",
@@ -1378,6 +1450,7 @@ const tI18nPhrase Phrases[] = {
"CoderateL",
"CoderateL",
"CoderateL",
+ "CoderateL", // hrv
},
{ "Modulation",
"Modulation",
@@ -1396,6 +1469,7 @@ const tI18nPhrase Phrases[] = {
"Modulation",
"Modulació",
"¼ÞÔãÛïæØï",
+ "Modulacija",
},
{ "Transmission",
"Transmission",
@@ -1414,6 +1488,7 @@ const tI18nPhrase Phrases[] = {
"Transmission",
"Transmissió",
"¿ÕàÕÔÐçÐ",
+ "Prijenos",
},
{ "Guard",
"Guard",
@@ -1432,6 +1507,7 @@ const tI18nPhrase Phrases[] = {
"Guard",
"Protegir",
"·ÐéØâÐ",
+ "Za¹tita",
},
{ "Hierarchy",
"Hierarchy",
@@ -1450,6 +1526,7 @@ const tI18nPhrase Phrases[] = {
"Hierarchy",
"Jerarquia",
"¸ÕàÐàåØï",
+ "Hijerarhija",
},
// Timer parameters:
{ "Active",
@@ -1469,6 +1546,7 @@ const tI18nPhrase Phrases[] = {
"Aktiv",
"Actiu",
"°ÚâØÒØàÞÒÐÝ",
+ "Aktivan",
},
{ "Channel",
"Kanal",
@@ -1487,6 +1565,7 @@ const tI18nPhrase Phrases[] = {
"Csatorna",
"Canal",
"ºÐÝÐÛ",
+ "Program",
},
{ "Day",
"Tag",
@@ -1505,6 +1584,7 @@ const tI18nPhrase Phrases[] = {
"Nap",
"Dia",
"´ÕÝì",
+ "Dan",
},
{ "Start",
"Anfang",
@@ -1523,6 +1603,7 @@ const tI18nPhrase Phrases[] = {
"Kezdet",
"Inici",
"½ÐçÐÛÞ",
+ "Poèetak",
},
{ "Stop",
"Ende",
@@ -1541,6 +1622,7 @@ const tI18nPhrase Phrases[] = {
"Vége",
"Fi",
"ºÞÝÕæ",
+ "Kraj",
},
{ "VPS",
"VPS",
@@ -1559,6 +1641,7 @@ const tI18nPhrase Phrases[] = {
"",// TODO
"",// TODO
"VPS ßÞßàÐÒÚÐ",
+ "VPS", // hrv
},
{ "Priority",
"Priorität",
@@ -1577,6 +1660,7 @@ const tI18nPhrase Phrases[] = {
"Prioritás",
"Prioritat",
"¿àØÞàØâÕâ",
+ "Prioritet",
},
{ "Lifetime",
"Lebensdauer",
@@ -1595,6 +1679,7 @@ const tI18nPhrase Phrases[] = {
"Élettartam",
"Durada",
"ÁàÞÚ åàÐÝÕÝØï",
+ "Trajanje",
},
{ "File",
"Datei",
@@ -1613,6 +1698,7 @@ const tI18nPhrase Phrases[] = {
"File",
"Arxiu",
"ÄÐÙÛ",
+ "Datoteka",
},
{ "First day",
"Erster Tag",
@@ -1631,6 +1717,7 @@ const tI18nPhrase Phrases[] = {
"Elsö nap",
"Primer dia",
"¿ÕàÒëÙ ÔÕÝì",
+ "Prvi dan",
},
// Error messages:
{ "Channel is being used by a timer!",
@@ -1650,6 +1737,7 @@ const tI18nPhrase Phrases[] = {
"Csatornát más használja!",
"Canal en ús per un temporitzador!",
"ºÐÝÐÛ ×ÐÝïâ âÐÙÜÕàÞÜ!",
+ "Program je trenutno zauzet terminom za snimanje",
},
{ "Can't switch channel!",
"Kanal kann nicht umgeschaltet werden!",
@@ -1668,6 +1756,7 @@ const tI18nPhrase Phrases[] = {
"Csatornát nem lehet átkapcsolni!",
"No puc canviar de canal!",
"½ÕÒÞ×ÜÞÖÝÞ ßÕàÕÚÛîçØâì ÚÐÝÐÛ!",
+ "Ne mogu prebaciti program!",
},
{ "Timer is recording!",
"Timer zeichnet gerade auf!",
@@ -1686,6 +1775,7 @@ const tI18nPhrase Phrases[] = {
"Felvétel folyamatban van!",
"El temporitzador està gravant!",
"¸Ôñâ ×ÐßØáì ßÞ âÐÙÜÕàã!",
+ "Snimanje po definiranom terminu!",
},
{ "Error while accessing recording!",
"Fehler beim Ansprechen der Aufzeichnung!",
@@ -1704,6 +1794,7 @@ const tI18nPhrase Phrases[] = {
"Hiba a felvétel hozzáférésénél",
"Error a l'accedir a la gravació!",
"¾èØÑÚÐ ÔÞáâãßÐ Ú ×ÐßØáØ!",
+ "Gre¹ka pri pristupanju snimke!",
},
{ "Error while deleting recording!",
"Fehler beim Löschen der Aufzeichnung!",
@@ -1722,6 +1813,7 @@ const tI18nPhrase Phrases[] = {
"Hiba a felvétel törlésénél!",
"Error a l'esborrar la gravació!",
"¾èØÑÚÐ ãÔÐÛÕÝØï ×ÐßØáØ!",
+ "Gre¹ka pri brisanju snimke!",
},
{ "*** Invalid Channel ***",
"*** Ungültiger Kanal ***",
@@ -1740,6 +1832,7 @@ const tI18nPhrase Phrases[] = {
"*** Érvénytelen csatorna ***",
"*** Canal incorrecte ***",
"*** ½ÕßàÐÒØÛìÝëÙ ÚÐÝÐÛ ***",
+ "*** Neispravan program ***",
},
{ "No free DVB device to record!",
"Keine freie DVB-Karte zum Aufnehmen!",
@@ -1758,6 +1851,7 @@ const tI18nPhrase Phrases[] = {
"Nincs szabad DVB kártya a felvételhez!",
"No hi ha cap dispositiu DVB lliure per gravar!",
"½Õâ áÒÞÑÞÔÝÞÓÞ DVB-ãáâàÞÙáâÒÐ ÔÛï ×ÐßØáØ!",
+ "Nema slobodnog DVB ureðaja za snimanje!",
},
{ "Channel not available!",
"Kanal nicht verfügbar!",
@@ -1776,6 +1870,7 @@ const tI18nPhrase Phrases[] = {
"A csatorna nem elérhetö",
"Canal no disponible!",
"ºÐÝÐÛ ÝÕÔÞáâãßÕÝ!",
+ "Program nije dostupan!",
},
{ "Channel settings are not unique!",
"Kanaleinstellungen sind nicht eindeutig!",
@@ -1794,6 +1889,7 @@ const tI18nPhrase Phrases[] = {
"A csatornabeállítások nem egyértelmüek",
"Propietats del canal duplicades!",
"½ÐáâàÞÙÚØ ÚÐÝÐÛÐ ÝÕ ãÝØÚÐÛìÝë!",
+ "Parametri programa nisu jedinstveni!",
},
{ "Channel locked (recording)!",
"Kanal blockiert (zeichnet auf)!",
@@ -1812,6 +1908,7 @@ const tI18nPhrase Phrases[] = {
"Csatorna hozzáférhetetlen (felvétel)!",
"Canal bloquejat (gravant)!",
"ºÐÝÐÛ ×ÐÑÛÞÚØàÞÒÐÝ (ØÔñâ ×ÐßØáì)!",
+ "Program blokiran (snimanje)!",
},
{ "Can't start Transfer Mode!",
"Transfer-Mode kann nicht gestartet werden!",
@@ -1830,6 +1927,7 @@ const tI18nPhrase Phrases[] = {
"Transfer-Mode nem indítható!",
"No puc iniciar el mode de transferència!",
"½ÕÒÞ×ÜÞÖÝÞ ÒÚÛîçØâì àÕÖØÜ ßàÞßãáÚÐ!", // ???
+ "Ne mogu zapoèeti 'prijenosni' naèin!",
},
{ "No editing marks defined!",
"Keine Schnittmarken gesetzt!",
@@ -1848,6 +1946,7 @@ const tI18nPhrase Phrases[] = {
"A vágópont nincs kijelölve",//TODO
"No hi ha marques d'edició definides",
"½Õ ×ÐÔÐÝë ÜÕâÚØ ÔÛï ÜÞÝâÐÖÐ!",
+ "Nijedna prekidna toèka nije postavljena!",
},
{ "Can't start editing process!",
"Schnitt kann nicht gestartet werden!",
@@ -1866,6 +1965,7 @@ const tI18nPhrase Phrases[] = {
"A vágás nem indítható!",
"No puc iniciar el procés d'edició!",
"½ÕÒÞ×ÜÞÖÝÞ ÝÐçÐâì ÜÞÝâÐÖ ×ÐßØáØ!",
+ "Ne mogu zapoèeti ureðivanje!",
},
{ "Editing process already active!",
"Schnitt bereits aktiv!",
@@ -1884,6 +1984,7 @@ const tI18nPhrase Phrases[] = {
"A vágás már aktivált!",
"Procés d'edició iniciat anteriorment!",
"¿àÞæÕáá ÒØÔÕÞÜÞÝâÐÖÐ ãÖÕ ×ÐßãéÕÝ!",
+ "Ureðivanje je veæ aktivirano!",
},
{ "Can't shutdown - option '-s' not given!",
"Shutdown unmöglich - Option '-s' fehlt!",
@@ -1902,6 +2003,7 @@ const tI18nPhrase Phrases[] = {
"A leállítás nem lehetséges - Opció '-s' hiányzik!",
"No puc apagar, falta la opció -s !",
"²ëÚÛîçÕÝØÕ ÝÕÒÞ×ÜÞÖÝÞ - ÝÕ ×ÐÔÐÝ ßÐàÐÜÕâà '-s'!",
+ "Ga¹enje nemoguæe - nedostaje opcija '-s'!",
},
{ "Low disk space!",
"Platte beinahe voll!",
@@ -1920,6 +2022,7 @@ const tI18nPhrase Phrases[] = {
"A merev lemez majdnem tele!",
"Disc gairebé ple!",
"½ÕÔÞáâÐâÞçÝÞ ÜÕáâÐ ÝÐ ÔØáÚÕ!",
+ "Nedovoljno prostora na disku",
},
{ "Can't open CAM menu!",
"CAM-Menü kann nicht geöffnet werden!",
@@ -1938,6 +2041,7 @@ const tI18nPhrase Phrases[] = {
"A CAM-Menü nem nyitható",
"No puc obrir el menú de la CAM!",
"¼ÕÝî CAM-ÜÞÔãÛï ÝÕÔÞáâãßÝÞ!",
+ "Ne mogu otvoriti CAM izbor!",
},
{ "Can't reset CAM!",
"CAM-Reset fehlgeschlagen!",
@@ -1956,6 +2060,7 @@ const tI18nPhrase Phrases[] = {
"A CAM-Reset nem sikerült",
"No puc reiniciar la CAM!",
"¾èØÑÚÐ ßÕàÕ×ÐßãáÚÐ CAM-ÜÞÔãÛï!",
+ "Ne mogu resetirati CAM",
},
{ "CAM has been reset",
"CAM wurde zurückgesetzt!",
@@ -1974,6 +2079,7 @@ const tI18nPhrase Phrases[] = {
"A CAM vissza lett állítva",
"CAM reiniciada",
"CAM-ÜÞÔãÛì ßÕàÕ×ÐßãéÕÝ!",
+ "CAM je resetiran!",
},
// Setup pages:
{ "OSD",
@@ -1993,6 +2099,7 @@ const tI18nPhrase Phrases[] = {
"OSD",
"Informació en pantalla",
"¼ÕÝî",
+ "OSD",
},
{ "EPG",
"EPG",
@@ -2011,6 +2118,7 @@ const tI18nPhrase Phrases[] = {
"EPG",
"Guia de Programes",
"ÂÕÛÕÓØÔ",
+ "Pregled emisija (EPG)",
},
{ "DVB",
"DVB",
@@ -2029,6 +2137,7 @@ const tI18nPhrase Phrases[] = {
"DVB",
"Tarja DVB",
"DVB",
+ "DVB",
},
{ "LNB",
"LNB",
@@ -2047,6 +2156,7 @@ const tI18nPhrase Phrases[] = {
"LNB",
"Configuració de l'LNB",
"ºÞÝÒÕàâÕà",
+ "LNB",
},
{ "CICAM",
"CICAM",
@@ -2065,6 +2175,7 @@ const tI18nPhrase Phrases[] = {
"CICAM",
"CI Accés condicional",
"ÃáÛÞÒÝëÙ ÔÞáâãß",
+ "CICAM",
},
{ "Recording",
"Aufnahme",
@@ -2083,6 +2194,7 @@ const tI18nPhrase Phrases[] = {
"Felvétel",
"Opcions de Gravació",
"·ÐßØáì",
+ "Snimanje",
},
{ "Replay",
"Wiedergabe",
@@ -2101,6 +2213,7 @@ const tI18nPhrase Phrases[] = {
"Lejátszás",
"Opcions de Reproducció",
"²ÞáßàÞØ×ÒÕÔÕÝØÕ",
+ "Reprodukcija",
},
{ "Miscellaneous",
"Sonstiges",
@@ -2119,6 +2232,7 @@ const tI18nPhrase Phrases[] = {
"Egyéb",
"Miscel·lània",
"¿àÞçÕÕ",
+ "Ostalo",
},
{ "Plugins",
"Plugins",
@@ -2137,6 +2251,7 @@ const tI18nPhrase Phrases[] = {
"Plugins",
"Plugins",
"¼ÞÔãÛØ àÐáèØàÕÝØï",
+ "Dodaci (Plugins)",
},
{ "Plugin",
"Plugin",
@@ -2155,6 +2270,7 @@ const tI18nPhrase Phrases[] = {
"Plugin",
"Plugin",
"¼ÞÔãÛì",
+ "Plugin",
},
{ "Restart",
"Neustart",
@@ -2173,6 +2289,7 @@ const tI18nPhrase Phrases[] = {
"Ùjraindítás",
"Reiniciar",
"¿ÕàÕ×ÐßãáâØâì",
+ "Restart sistema",
},
// Setup parameters:
{ "Setup.OSD$Language",
@@ -2192,6 +2309,83 @@ const tI18nPhrase Phrases[] = {
"Nyelv",
"Idioma",
"Ï×ëÚ",
+ "Jezik",
+ },
+ { "Setup.OSD$Skin",
+ "Oberfläche",
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ },
+ { "Setup.OSD$Theme",
+ "Thema",
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ },
+ { "Setup.OSD$Left",
+ "Links",
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ },
+ { "Setup.OSD$Top",
+ "Oben",
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
},
{ "Setup.OSD$Width",
"Breite",
@@ -2210,6 +2404,7 @@ const tI18nPhrase Phrases[] = {
"Szélesség",
"Amplada",
"ÈØàØÝÐ",
+ "©irina",
},
{ "Setup.OSD$Height",
"Höhe",
@@ -2228,6 +2423,7 @@ const tI18nPhrase Phrases[] = {
"Magasság",
"Alçada",
"²ëáÞâÐ",
+ "Visina",
},
{ "Setup.OSD$Message time (s)",
"Anzeigedauer für Nachrichten (s)",
@@ -2246,6 +2442,83 @@ const tI18nPhrase Phrases[] = {
"Információ feltüntetésének idötartama",
"Durada dels missatges (s)",
"´ÛØâÕÛìÝÞáâì ßÞÚÐ×Ð áÞÞÑéÕÝØÙ (áÕÚ)",
+ "Vrijeme prikaza poruka (s)",
+ },
+ { "Setup.OSD$Use small font",
+ "Kleine Schrift benutzen",
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ },
+ { "never",
+ "nie",
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ },
+ { "skin dependent",
+ "je nach Oberfläche",
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ },
+ { "always",
+ "immer",
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
},
{ "Setup.OSD$Channel info position",
"Kanal-Info Position",
@@ -2264,6 +2537,7 @@ const tI18nPhrase Phrases[] = {
"Csatorna-Infó poziciója",
"Posició de la informació del canal",
"¿ÞÛÞÖÕÝØÕ ÞÚÝÐ ØÝäÞàÜÐæØØ Þ ÚÐÝÐÛÕ",
+ "Pozicija informacije o programu",
},
{ "Setup.OSD$Info on channel switch",
"Info beim Kanalwechsel",
@@ -2282,6 +2556,7 @@ const tI18nPhrase Phrases[] = {
"Infó a csatorna váltásánál",
"Informació del canvi de canal",
"¿ÞÚÐ×ëÒÐâì ØÝäÞàÜÐæØî Þ ÚÐÝÐÛÕ",
+ "Informacije kod promjene kanala",
},
{ "Setup.OSD$Scroll pages",
"Seitenweise scrollen",
@@ -2300,6 +2575,7 @@ const tI18nPhrase Phrases[] = {
"Oldalanként léptetmi",
"Desplaçar pàgina sencera",
"¿àÞÚàãâÚÐ áâàÐÝØæ ÜÕÝî",
+ "Listaj po stranicama",
},
{ "Setup.OSD$Sort timers",
"Timer sortieren",
@@ -2318,6 +2594,7 @@ const tI18nPhrase Phrases[] = {
"A beprogramozott felvételek elrendezése",
"Ordenar gravacions programades",
"ÁÞàâØàÞÒÚÐ âÐÙÜÕàÞÒ",
+ "Sortiraj termine",
},
{ "Setup.OSD$Recording directories",
"Aufnahmeverzeichnisse",
@@ -2336,6 +2613,7 @@ const tI18nPhrase Phrases[] = {
"Felvételek listája",
"Gravacions en subcarpetes",
"ºÐâÐÛÞÓØ åàÐÝÕÝØï ×ÐßØáÕÙ",
+ "Imenik za snimke",
},
{ "Setup.EPG$EPG scan timeout (h)",
"Zeit bis EPG Scan (h)",
@@ -2354,6 +2632,7 @@ const tI18nPhrase Phrases[] = {
"Fennmaradt idö az EPG-g (h)",
"Màxim d'Hores a cercar per la Guia",
"·ÐÔÕàÖÚÐ áÚÐÝØàÞÒÐÝØï âÕÛÕÓØÔÐ (ç)",
+ "Vrijeme do EPG pregleda (h)",
},
{ "Setup.EPG$EPG bugfix level",
"EPG Fehlerbereinigung",
@@ -2372,6 +2651,7 @@ const tI18nPhrase Phrases[] = {
"EPG hibaelhárítás",
"Nivell de correcció de la Guia",
"ÃàÞÒÕÝì ÚÞààÕÚæØØ ÞèØÑÞÚ",
+ "Nivo popravka EPG gre¹aka",
},
{ "Setup.EPG$EPG linger time (min)",
"Alte EPG-Daten anzeigen (min)",// TODO
@@ -2390,6 +2670,7 @@ const tI18nPhrase Phrases[] = {
"",// TODO
"",// TODO
"ÅàÐÝÕÝØÕ ãáâÐàÕÒèØå ÔÐÝÝëå (ÜØÝ)",
+ "Prika¾i stare EPG podatke (min)",// TODO
},
{ "Setup.EPG$Set system time",
"Systemzeit stellen",
@@ -2408,6 +2689,7 @@ const tI18nPhrase Phrases[] = {
"Az idö beállítása",
"Ajustar l'hora del sistema",
"ÃáâÐÝÞÒØâì áØáâÕÜÝÞÕ ÒàÕÜï",
+ "Podesi vrijeme sistema",
},
{ "Setup.EPG$Use time from transponder",
"Transponder für Systemzeit",
@@ -2426,6 +2708,7 @@ const tI18nPhrase Phrases[] = {
"Idöhöz tartozó Transponder",
"Usar el temps del múltiplex",
"¸áßÞÛì×ÞÒÐâì ÒàÕÜï âàÐÝáßÞÝÔÕàÐ",
+ "Transponder za pode¹avanje sata",
},
{ "Setup.EPG$Preferred languages",
"Bevorzugte Sprachen",
@@ -2444,6 +2727,7 @@ const tI18nPhrase Phrases[] = {
"",// TODO
"",// TODO
"¿àÕÔßÞçØâÐÕÜëÕ ï×ëÚØ",
+ "Preferirani jezik",
},
{ "Setup.EPG$Preferred language",
"Bevorzugte Sprache",
@@ -2462,6 +2746,7 @@ const tI18nPhrase Phrases[] = {
"",// TODO
"",// TODO
"²ëÑàÐÝ",
+ "Preferirani jezik",
},
{ "Setup.DVB$Primary DVB interface",
"Primäres DVB Interface",
@@ -2480,6 +2765,7 @@ const tI18nPhrase Phrases[] = {
"Elsö DVB interface",
"Tarja DVB primària",
"¾áÝÞÒÝÞÕ DVB-ãáâàÞÙáâÒÞ",
+ "Primarni DVB ureðaj",
},
{ "Setup.DVB$Video format",
"Video Format",
@@ -2498,6 +2784,7 @@ const tI18nPhrase Phrases[] = {
"Video formátum",
"Format del vídeo",
"ÄÞàÜÐâ ÒØÔÕÞ",
+ "Video format",
},
{ "Setup.DVB$Update channels",
"Kanäle aktualisieren",
@@ -2516,6 +2803,7 @@ const tI18nPhrase Phrases[] = {
"",// TODO
"",// TODO
"¾ÑÝÞÒÛïâì ÝÐáâàÞÙÚØ ÚÐÝÐÛÞÒ",
+ "Aktualiziraj programe",
},
{ "names only",
"nur Namen",
@@ -2534,6 +2822,7 @@ const tI18nPhrase Phrases[] = {
"",// TODO
"",// TODO
"âÞÛìÚÞ ÝÐ×ÒÐÝØï",
+ "samo imena",
},
{ "names and PIDs",
"Namen und PIDs",
@@ -2552,6 +2841,7 @@ const tI18nPhrase Phrases[] = {
"",// TODO
"",// TODO
"ÝÐ×ÒÐÝØï Ø PIDë",
+ "imena i identifikatore (PIDs)",
},
{ "add new channels",
"neue Kanäle hinzufügen",
@@ -2570,6 +2860,7 @@ const tI18nPhrase Phrases[] = {
"",// TODO
"",// TODO
"ÝÞÒëÕ ÚÐÝÐÛë",
+ "dodaj nove programe",
},
{ "add new transponders",
"neue Transponder hinzufügen",
@@ -2588,6 +2879,7 @@ const tI18nPhrase Phrases[] = {
"",// TODO
"",// TODO
"ÝÞÒ. âàÐÝáßÞÝÔÕàë",
+ "dodaj nove transpondere", // hrv TODO transponderi == odasiljaèi?
},
{ "Setup.LNB$SLOF (MHz)",
"SLOF (MHz)",
@@ -2606,6 +2898,7 @@ const tI18nPhrase Phrases[] = {
"SLOF (MHz)",
"SLOF (MHz)",
"ÇÐáâÞâÐ ßÕàÕÚÛîçÕÝØï (SLOF) (¼³æ)",
+ "Frekv. preklopa SLOF (MHz)",
},
{ "Setup.LNB$Low LNB frequency (MHz)",
"Untere LNB-Frequenz (MHz)",
@@ -2624,6 +2917,7 @@ const tI18nPhrase Phrases[] = {
"Alsó LNB-frekvencia (MHZ)",
"Freqüència LNB baixa (MHz)",
"½ØÖÝïï çÐáâÞâÐ ÚÞÝÒÕàâÕàÐ (¼³æ)",
+ "Donja LNB frekv. (MHz)",
},
{ "Setup.LNB$High LNB frequency (MHz)",
"Obere LNB-Frequenz (MHz)",
@@ -2642,6 +2936,7 @@ const tI18nPhrase Phrases[] = {
"Felsö LNB-frekvencia (MHZ)",
"Freqüència LNB alta (MHz)",
"²ÕàåÝïï çÐáâÞâÐ ÚÞÝÒÕàâÕàÐ (¼³æ)",
+ "Gornja LNB frekv. (MHz)",
},
{ "Setup.LNB$Use DiSEqC",
"DiSEqC benutzen",
@@ -2660,6 +2955,7 @@ const tI18nPhrase Phrases[] = {
"DiSEqC használata",
"Utilitzar DiSEqC",
"¸áßÞÛì×ÞÒÐâì DiSEqC",
+ "Koristi DiSEqC",
},
{ "Setup.CICAM$CICAM DVB",
"CICAM DVB",
@@ -2678,6 +2974,7 @@ const tI18nPhrase Phrases[] = {
"CICAM DVB",
"Accés condicional CICAM",
"CAM-ÜÞÔãÛì DVB",
+ "CICAM DVB",
},
{ "Setup.Recording$Margin at start (min)",
"Zeitpuffer bei Anfang (min)",
@@ -2696,6 +2993,7 @@ const tI18nPhrase Phrases[] = {
"Idöeltolódás a kezdésnél (min)",
"Marge d'inici de gravació (min)",
"¾ßÕàÕÖÕÝØÕ ÝÐçÐÛÐ ×ÐßØáØ (ÜØÝ)",
+ "Rezerva na poèetku snimanja (min)",
},
{ "Setup.Recording$Margin at stop (min)",
"Zeitpuffer bei Ende (min)",
@@ -2714,6 +3012,7 @@ const tI18nPhrase Phrases[] = {
"Idöeltolódás a befejezésnél",
"Marge de fi de gravació (min)",
"·ÐßÐ×ÔëÒÐÝØÕ ÞáâÐÝÞÒÚØ ×ÐßØáØ (ÜØÝ)",
+ "Rezerva na kraju (min)",
},
{ "Setup.Recording$Primary limit",
"Primär-Limit",
@@ -2732,6 +3031,7 @@ const tI18nPhrase Phrases[] = {
"Primér-határ",
"Límit primari",
"¼ØÝ. ßàØÞàØâÕâ ×ÐåÒÐâÐ ÞáÝ. ãáâàÞÙáâÒÐ",
+ "Standardno ogranièenje",
},
{ "Setup.Recording$Default priority",
"Default Priorität",
@@ -2750,6 +3050,7 @@ const tI18nPhrase Phrases[] = {
"Default priority",
"Prioritat per defecte",
"¿àØÞàØâÕâ âÐÙÜÕàÐ ßÞ ãÜÞÛçÐÝØî",
+ "Standardni prioritet",
},
{ "Setup.Recording$Default lifetime (d)",
"Default Lebensdauer (d)",
@@ -2768,6 +3069,7 @@ const tI18nPhrase Phrases[] = {
"Default élettartam",
"Durada predefinida",
"ÁàÞÚ åàÐÝÕÝØï ×ÐßØáØ ßÞ ãÜÞÛçÐÝØî (Ô)",
+ "Standardno trajanje (d)",
},
{ "Setup.Recording$Pause priority",
"Pause Priorität",
@@ -2786,6 +3088,7 @@ const tI18nPhrase Phrases[] = {
"Szünet prioritás",
"Prioritat de la pausa",
"¿àØÞàØâÕâ ÞâÛÞÖÕÝÝÞÓÞ ßàÞáÜÞâàÐ",
+ "Prioritet pauze",
},
{ "Setup.Recording$Pause lifetime (d)",
"Pause Lebensdauer (d)",
@@ -2804,6 +3107,7 @@ const tI18nPhrase Phrases[] = {
"Szünet élettartama",
"Durada de la pausa (d)",
"ÅàÐÝÕÝØÕ ÞâÛÞÖÕÝÝÞÓÞ ßàÞáÜÞâàÐ (Ô)",
+ "Trajanje pauze (d)",
},
{ "Setup.Recording$Use episode name",
"Episodenname verwenden",
@@ -2822,6 +3126,7 @@ const tI18nPhrase Phrases[] = {
"Epizódnév felhasználása",
"Utilitzar el nom de l'episodi",
"³àãßßØàÞÒÐâì äÐÙÛë ßÞ íßØ×ÞÔÐÜ",
+ "Koristi ime epizode",
},
{ "Setup.Recording$Use VPS",
"VPS benutzen",
@@ -2840,6 +3145,7 @@ const tI18nPhrase Phrases[] = {
"",// TODO
"",// TODO
"¸áßÞÛì×ÞÒÐâì áØÓÝÐÛë VPS",
+ "Koristi VPS",
},
{ "Setup.Recording$VPS margin (s)",
"Zeitpuffer bei VPS (s)",
@@ -2858,6 +3164,7 @@ const tI18nPhrase Phrases[] = {
"",// TODO
"",// TODO
"±ãäÕàÝÞÕ ÒàÕÜï VPS (áÕÚ)",
+ "Vremenska rezerva kod VPS (s)",
},
{ "Setup.Recording$Mark instant recording",
"Direktaufzeichnung markieren",
@@ -2876,6 +3183,7 @@ const tI18nPhrase Phrases[] = {
"Direktfelvétel megjelölése",
"Marcar gravació instantània",
"¾âÜÕçÐâì áÔÕÛÐÝÝëÕ ÒàãçÝãî ×ÐßØáØ",
+ "Oznaèi direktno snimanje",
},
{ "Setup.Recording$Name instant recording",
"Direktaufzeichnung benennen",
@@ -2894,6 +3202,7 @@ const tI18nPhrase Phrases[] = {
"Direktfelvétel megnevezése",
"Anomenar gravacions instantànies",
"ÁåÕÜÐ ØÜÕÝÞÒÐÝØï àãçÝëå ×ÐßØáÕÙ",
+ "Imenuj direktno snimanje",
},
{ "Setup.Recording$Instant rec. time (min)",
"Dauer der Direktaufzeichnung (min)",
@@ -2912,6 +3221,7 @@ const tI18nPhrase Phrases[] = {
"Felvétel idötartama",
"Temps de gravació instantània (min)",
"´ÛØâÕÛìÝÞáâì àãçÝÞÙ ×ÐßØáØ (ÜØÝ)",
+ "Trajanje direktnog snimanja (min)",
},
{ "Setup.Recording$Record Dolby Digital",
"Dolby Digital Ton aufzeichnen",
@@ -2930,6 +3240,7 @@ const tI18nPhrase Phrases[] = {
"Dolby Digitál felvétel",
"Gravar el so en Dolby Digital",
"·ÐßØáëÒÐâì ×ÒãÚ Dolby Digital",
+ "Snimi 'Dolby digital' ton",
},
{ "Setup.Recording$Max. video file size (MB)",
"Max. Video Dateigröße (MB)",
@@ -2948,6 +3259,7 @@ const tI18nPhrase Phrases[] = {
"Max. video File-terjedelem (MB)",
"Mida màxima de l'arxiu (MB)",
"¼ÐÚá. àÐ×ÜÕà ÒØÔÕÞäÐÙÛÐ (¼Ñ)",
+ "Maksimalna velièina datoteke (MB)",
},
{ "Setup.Recording$Split edited files",
"Editierte Dateien aufteilen",
@@ -2966,6 +3278,7 @@ const tI18nPhrase Phrases[] = {
"Feldolgozott File-k felosztása",
"Separar arxius",
"´ÕÛØâì ÞâàÕÔÐÚâØàÞÒÐÝÝëÕ äÐÙÛë",
+ "Podijeli ureðene datoteke",
},
{ "Setup.Replay$Multi speed mode",
"MultiSpeed Modus",
@@ -2984,6 +3297,7 @@ const tI18nPhrase Phrases[] = {
"MultiSpeed funkció",
"Mode de multivelocitat",
"¼ÝÞÓÞáÚÞàÞáâÝÞÙ àÕÖØÜ",
+ "MultiSpeed naèin",
},
{ "Setup.Replay$Show replay mode",
"Wiedergabestatus anzeigen",
@@ -3002,6 +3316,7 @@ const tI18nPhrase Phrases[] = {
"Lejátszás feltüntetése",
"Mostrar mode de reproducció",
"¾âÞÑàÐÖÐâì àÕÖØÜ ÒÞáßàÞØ×ÒÕÔÕÝØï", // ???
+ "Prika¾i naèin prikazivanja",
},
{ "Setup.Replay$Resume ID",
"Wiedergabe ID",
@@ -3020,6 +3335,7 @@ const tI18nPhrase Phrases[] = {
"Lejátszás ID",
"ID de Continuar",
"ID ÒÞáßàÞØ×ÒÕÔÕÝØï", // ???
+ "ID nastavka",
},
{ "Setup.Miscellaneous$Min. event timeout (min)",
"Mindest Event Pause (min)",
@@ -3038,6 +3354,7 @@ const tI18nPhrase Phrases[] = {
"Min. esemény szünet (min)",
"Temps mínim en pausa (min)",
"¼ØÝ. ÒàÕÜï ÞÖØÔÐÝØï áÞÑëâØï (ÜØÝ)",
+ "Najmanje vrijeme pauze",
},
{ "Setup.Miscellaneous$Min. user inactivity (min)",
"Mindest Benutzer-Inaktivität (min)",
@@ -3056,6 +3373,7 @@ const tI18nPhrase Phrases[] = {
"Min. kezelési aktivitás (min)",
"Temps mínim d'inactivitat (min)",
"¼ØÝ. ÒàÕÜï ÞÖØÔÐÝØï ÒÒÞÔÐ (ÜØÝ)",
+ "Najmanje vrijeme neaktivnosti (min)",
},
{ "Setup.Miscellaneous$SVDRP timeout (s)",
"SVDRP Timeout (s)",
@@ -3074,6 +3392,7 @@ const tI18nPhrase Phrases[] = {
"SVDRP Timeout (s)",
"SVDRP Timeout (s)",
"·ÐÔÕàÖÚÐ ÞÑàëÒÐ áÞÕÔ. SVDRP (áÕÚ)",
+ "SVDRP vrijeme neaktivnosti",
},
{ "Setup.Miscellaneous$Zap timeout (s)",
"Zap Timeout (s)",
@@ -3092,6 +3411,7 @@ const tI18nPhrase Phrases[] = {
"",// TODO
"",// TODO
"·ÐÔÕàÖÚÐ ßÕàÕÚÛîçÕÝØï ÚÐÝÐÛÐ (áÕÚ)",
+ "",// hrv TODO
},
// The days of the week:
{ "MTWTFSS",
@@ -3111,6 +3431,7 @@ const tI18nPhrase Phrases[] = {
"HKSCPSV",
"LMCJVSG",
"¿²ÁÇ¿²Á",
+ "PUSÈPSN", // hrv
},
{ "MonTueWedThuFriSatSun", // must all be 3 letters!
"MonDieMitDonFreSamSon",
@@ -3129,6 +3450,7 @@ const tI18nPhrase Phrases[] = {
"HétKedSzeCsüPénSzoVas",
"Dl Dm Dc Dj Dv Ds Dg ",
"¿ÞݲâàÁàÔÇâÒ¿âÝÁãѲáÚ",
+ "PonUtoSriÈetPetSubNed", // hrv
},
// The allowed characters in strings:
{ " abcdefghijklmnopqrstuvwxyz0123456789-.#~",
@@ -3148,6 +3470,7 @@ const tI18nPhrase Phrases[] = {
" aábcdeéfghiíjklmnoóöpqrstuúüvwxyz0123456789-.,#~",
" aàbcçdeéèfghiíjklmnoòpqrstuúvwxyz0123456789-.,#~_·",
" abcdefghijklmnopqrstuvwxyzÐÑÒÓÔÕñÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìîï0123456789-.#~",
+ " abcèædðefghijklmnopqrs¹tuvwxyz¾0123456789-.#~", // hrv
},
// Learning keys:
{ "Learning Remote Control Keys (%s)",
@@ -3167,6 +3490,7 @@ const tI18nPhrase Phrases[] = {
"Távirányító betanítása (%s)",
"Aprenent les tecles del comandament a distància (%s)",
"²ÒÞÔ ÚÞÔÞÒ ÚÝÞßÞÚ ßãÛìâÐ (%s)",
+ "Uèenje kôda daljinskog upravljaèa (%s)",
},
{ "Phase 1: Detecting RC code type",
"Phase 1: FB Code feststellen",
@@ -3185,6 +3509,7 @@ const tI18nPhrase Phrases[] = {
"Elsö lépés: távirányító kódjának meghatározása",
"Fase 1: Detectant el tipus de receptor",
"ÈÐÓ 1: ¾ßàÕÔÕÛÕÝØÕ âØßÐ ÚÞÔÐ ßãÛìâÐ",
+ "Faza 1: detektiranje kôda daljinskog upravljaèa.",
},
{ "Press any key on the RC unit",
"Eine Taste auf der FB drücken",
@@ -3203,6 +3528,7 @@ const tI18nPhrase Phrases[] = {
"Nyomjon meg egy gombot a távirányítón",
"Premeu qualsevol tecla del comandament",
"½ÐÖÜØâÕ ÛîÑãî ÚÝÞßÚã ÝÐ ßãÛìâÕ",
+ "Pritisnite tipku na daljinskom upravljaèu",
},
{ "RC code detected!",
"FB Code erkannt!",
@@ -3221,6 +3547,7 @@ const tI18nPhrase Phrases[] = {
"Távirányító kódja felismerve!",
"Codi detectat!",
"¾ÑÝÐàãÖÕÝ ÚÞÔ ßãÛìâÐ!",
+ "Kôd daljinskog upravljaèa je prepoznat!",
},
{ "Do not press any key...",
"Keine Taste drücken...",
@@ -3239,6 +3566,7 @@ const tI18nPhrase Phrases[] = {
"Ne nyomjon meg gombot...",
"No premeu cap tecla...",
"½Õ ÝÐÖØÜÐÙâÕ ÚÝÞßÚØ...",
+ "Ne pritiskajte tipku...",
},
{ "Phase 2: Learning specific key codes",
"Phase 2: Einzelne Tastencodes lernen",
@@ -3257,6 +3585,7 @@ const tI18nPhrase Phrases[] = {
"Második lépés: az egyes gombok betanítása",
"Fase 2: Aprenentantge de les funcions",
"ÈÐÓ 2: ·ÐÔÐÝØÕ ÚÞÔÞÒ ÞâÔÕÛìÝëå ÚÝÞßÞÚ",
+ "Faza 2: Uèenje posebnih kôdova",
},
{ "Press key for '%s'",
"Taste für '%s' drücken",
@@ -3275,6 +3604,7 @@ const tI18nPhrase Phrases[] = {
"'%s' gomb megnyomása",
"Premeu una tecla per '%s'",
"½ÐÖÜØâÕ ÚÝÞßÚã '%s'",
+ "Pritisnite tipku za '%s'",
},
{ "Press 'Up' to confirm",
"'Auf' drücken zum Bestätigen",
@@ -3293,6 +3623,7 @@ const tI18nPhrase Phrases[] = {
"'Fel' megnyomása az elfogadáshoz",
"Premeu 'Amunt' per confirmar",
"½ÐÖÜØâÕ '²ÒÕàå' çâÞÑë ßÞÔâÒÕàÔØâì",
+ "Pritisnite 'Gore' za potvrdu",
},
{ "Press 'Down' to continue",
"'Ab' drücken zum Weitermachen",
@@ -3311,6 +3642,7 @@ const tI18nPhrase Phrases[] = {
"'Le' megnyomása a folytatáshoz",
"Premeu 'Avall' per continuar",
"½ÐÖÜØâÕ '²ÝØ×' çâÞÑë ßàÞÔÞÛÖØâì",
+ "Pritisnite 'Dolje' za nastavak",
},
{ "(press 'Up' to go back)",
"('Auf' drücken um zurückzugehen)",
@@ -3329,6 +3661,7 @@ const tI18nPhrase Phrases[] = {
"(´Fel' megnyomása a visszatéréshez)",
"(Premeu 'Amunt' per retornar)",
"(½ÐÖÜØâÕ '²ÒÕàå' çâÞÑë ÒÕàÝãâìáï)",
+ "(pritisnite 'Gore' za nazad)",
},
{ "(press 'Down' to end key definition)",
"('Ab' drücken zum Beenden)",
@@ -3347,6 +3680,7 @@ const tI18nPhrase Phrases[] = {
"('Le' megnyomása a befejezéshez)",
"(Premeu 'Avall' per finalitzar l'aprenentatge)",
"(½ÐÖÜØâÕ '²ÝØ×' çâÞÑë ×ÐÚÞÝçØâì ÝÐáâàÞÙÚã ßãÛìâÐ)",
+ "(pritisnite 'Dolje' za kraj)",
},
{ "(press 'Menu' to skip this key)",
"('Menü' drücken zum Überspringen)",
@@ -3365,6 +3699,7 @@ const tI18nPhrase Phrases[] = {
"A Menü gombot nyomni ennek a gombnak a kihagyásához",
"Premeu 'Menú' per obviar aquesta tecla",
"(½ÐÖÜØâÕ '¼ÕÝî' çâÞÑë ßàÞßãáâØâì ÚÝÞßÚã)",
+ "pritisnite 'Izbor' da preskoèite ovu tipku",
},
{ "Phase 3: Saving key codes",
"Phase 3: Codes abspeichern",
@@ -3383,6 +3718,7 @@ const tI18nPhrase Phrases[] = {
"Harmadik lépés: kód mentése",
"Fase 3: Guardant els codis de les tecles",
"ÈÐÓ 3: ·ÐßÞÜØÝÐÝØÕ ÚÞÔÞÒ ÚÝÞßÞÚ",
+ "Faza 3: Spremanje kôdova tipki",
},
{ "Press 'Up' to save, 'Down' to cancel",
"'Auf' speichert, 'Ab' bricht ab",
@@ -3401,6 +3737,7 @@ const tI18nPhrase Phrases[] = {
"'Fel' mentés, 'Le´ mégse",
"Premeu 'Amunt' per guardar, 'Avall' per anul·lar",
"½ÐÖÜØâÕ '²ÒÕàå' çâÞÑë ×ÐßÞÜÝØâì, '²ÝØ×' çâÞÑë ÞâÚÐ×Ðâìáï",
+ "'Gore' za potvrdu, 'Dolje' za prekid",
},
// Key names:
{ "Up",
@@ -3420,6 +3757,7 @@ const tI18nPhrase Phrases[] = {
"Fel",
"Amunt",
"²ÒÕàå",
+ "Gore",
},
{ "Down",
"Ab",
@@ -3438,6 +3776,7 @@ const tI18nPhrase Phrases[] = {
"Le",
"Avall",
"²ÝØ×",
+ "Dolje",
},
{ "Menu",
"Menü",
@@ -3456,6 +3795,7 @@ const tI18nPhrase Phrases[] = {
"Menü",
"Menú",
"¼ÕÝî",
+ "Izbor",
},
{ "Ok",
"Ok",
@@ -3474,6 +3814,7 @@ const tI18nPhrase Phrases[] = {
"Ok",
"D'acord",
"Ok",
+ "Ok",
},
{ "Back",
"Zurück",
@@ -3492,6 +3833,7 @@ const tI18nPhrase Phrases[] = {
"Vissza",
"Retornar",
"½Ð×ÐÔ",
+ "Nazad",
},
{ "Left",
"Links",
@@ -3510,6 +3852,7 @@ const tI18nPhrase Phrases[] = {
"Balra",
"Esquerra",
"½ÐÛÕÒÞ",
+ "Lijevo",
},
{ "Right",
"Rechts",
@@ -3528,6 +3871,7 @@ const tI18nPhrase Phrases[] = {
"Jobbra",
"Dreta",
"½ÐßàÐÒÞ",
+ "Desno",
},
{ "Red",
"Rot",
@@ -3546,6 +3890,7 @@ const tI18nPhrase Phrases[] = {
"Piros",
"Vermell",
"ºàÐáÝëÙ",
+ "Crveno",
},
{ "Green",
"Grün",
@@ -3564,6 +3909,7 @@ const tI18nPhrase Phrases[] = {
"Zöld",
"Verd",
"·ÕÛñÝëÙ",
+ "Zeleno",
},
{ "Yellow",
"Gelb",
@@ -3582,6 +3928,7 @@ const tI18nPhrase Phrases[] = {
"Sárga",
"Groc",
"¶ñÛâëÙ",
+ "®uto",
},
{ "Blue",
"Blau",
@@ -3600,6 +3947,7 @@ const tI18nPhrase Phrases[] = {
"Kék",
"Blau",
"ÁØÝØÙ",
+ "Plavo",
},
{ "Play",
"Wiedergabe",
@@ -3618,6 +3966,7 @@ const tI18nPhrase Phrases[] = {
"Lejátszás",
"Reproduir",
"²ÞáßàÞØ×ÒÕÔÕÝØÕ",
+ "Start",
},
{ "Pause",
"Pause",
@@ -3636,6 +3985,7 @@ const tI18nPhrase Phrases[] = {
"Szünet",
"Pausa",
"¿Ðã×Ð",
+ "Pauza",
},
{ "Stop",
"Stop",
@@ -3654,6 +4004,7 @@ const tI18nPhrase Phrases[] = {
"Stop",
"Aturar",
"ÁâÞß",
+ "Stop",
},
{ "Record",
"Aufnehmen",
@@ -3672,6 +4023,7 @@ const tI18nPhrase Phrases[] = {
"Felvenni",
"Gravar",
"·ÐßØáì",
+ "Snimaj",
},
{ "FastFwd",
"Vorlauf",
@@ -3690,6 +4042,7 @@ const tI18nPhrase Phrases[] = {
"Elöre pörgetni",
"Endavant ràpidament",
"²ßÕàñÔ",
+ "Naprijed",
},
{ "FastRew",
"Rücklauf",
@@ -3708,6 +4061,7 @@ const tI18nPhrase Phrases[] = {
"Vissza pörgetni",
"Enrera ràpidament",
"½Ð×ÐÔ",
+ "Nazad",
},
{ "Power",
"Ausschalten",
@@ -3726,6 +4080,7 @@ const tI18nPhrase Phrases[] = {
"Kikapcsolni",
"Aturar",
"²ëÚÛîçØâì",
+ "Iskljuèi",
},
{ "Channel+",
"Kanal+",
@@ -3744,6 +4099,7 @@ const tI18nPhrase Phrases[] = {
"Csatorna+",
"Canal +",
"ºÐÝÐÛ +",
+ "Program +",
},
{ "Channel-",
"Kanal-",
@@ -3762,6 +4118,7 @@ const tI18nPhrase Phrases[] = {
"Csatorna-",
"Canal -",
"ºÐÝÐÛ -",
+ "Program -",
},
{ "Volume+",
"Lautstärke+",
@@ -3780,6 +4137,7 @@ const tI18nPhrase Phrases[] = {
"Hangerö+",
"Volum +",
"³àÞÜÚÞáâì +",
+ "Glasnije", // hrv "Glasnocca +"
},
{ "Volume-",
"Lautstärke-",
@@ -3798,6 +4156,7 @@ const tI18nPhrase Phrases[] = {
"Hangerö-",
"Volum -",
"³àÞÜÚÞáâì -",
+ "Ti¹e", // hrv Glasnocca -"
},
{ "Mute",
"Stumm",
@@ -3816,6 +4175,7 @@ const tI18nPhrase Phrases[] = {
"Csend",
"En silenci",
"²ëÚÛîçØâì ×ÒãÚ",
+ "Bez zvuka",
},
// Miscellaneous:
{ "yes",
@@ -3835,6 +4195,7 @@ const tI18nPhrase Phrases[] = {
"igen",
"sí",
"ÔÐ",
+ "da",
},
{ "no",
"nein",
@@ -3853,6 +4214,7 @@ const tI18nPhrase Phrases[] = {
"nem",
"no",
"ÝÕâ",
+ "ne",
},
{ "off",
"aus",
@@ -3871,6 +4233,7 @@ const tI18nPhrase Phrases[] = {
"ki",
"off",
"ÒëÚÛ",
+ "ugasi",
},
{ "none",
"keine",
@@ -3889,6 +4252,7 @@ const tI18nPhrase Phrases[] = {
"semmi",
"cap",
"ÝØçÕÓÞ",
+ "nijedan",
},
{ "auto",
"auto",
@@ -3907,6 +4271,7 @@ const tI18nPhrase Phrases[] = {
"auto",
"auto",
"ÐÒâÞ",
+ "automatski",
},
{ "top",
"oben",
@@ -3925,6 +4290,7 @@ const tI18nPhrase Phrases[] = {
"Fent",
"a dalt",
"áÒÕàåã",
+ "gore",
},
{ "bottom",
"unten",
@@ -3943,6 +4309,7 @@ const tI18nPhrase Phrases[] = {
"lent",
"a baix",
"áÝØ×ã",
+ "dolje",
},
{ "Disk",
"Disk",
@@ -3961,6 +4328,7 @@ const tI18nPhrase Phrases[] = {
"Lemez",
"Disc",
"´ØáÚ",
+ "Disk",
},
{ "free",
"frei",
@@ -3979,6 +4347,7 @@ const tI18nPhrase Phrases[] = {
"szabad",
"lliure",
"áÒÞÑÞÔÝÞ",
+ "slobodno",
},
{ "Jump: ", // note the trailing blank
"Springen: ",
@@ -3997,6 +4366,7 @@ const tI18nPhrase Phrases[] = {
"Ugrás: ",
"Salta a:",
"¿ÕàÕÙâØ: ",
+ "Skoèi: ",
},
{ "Volume ", // note the trailing blank
"Lautstärke ",
@@ -4015,6 +4385,7 @@ const tI18nPhrase Phrases[] = {
"Hangerö ",
"Volum ",
"³àÞÜÚÞáâì ",
+ "Glasnoæa ",
},
{ " Stop replaying", // note the leading blank!
" Wiedergabe beenden",
@@ -4033,6 +4404,7 @@ const tI18nPhrase Phrases[] = {
" Lejátszást befejzni",
" Aturar la reproducció",
" ¿àÕÚàÐâØâì ÒÞáßàÞØ×ÒÕÔÕÝØÕ",
+ " Prekini reprodukciju",
},
{ " Stop recording ", // note the leading and trailing blanks!
" Aufzeichnung beenden ",
@@ -4051,6 +4423,7 @@ const tI18nPhrase Phrases[] = {
" Felvételt befejezni ",
" Aturar la gravació ",
" ¿àÕÚàÐâØâì ×ÐßØáì ",
+ " Prekini snimanje ",
},
{ " Cancel editing", // note the leading blank!
" Schneiden abbrechen",
@@ -4069,6 +4442,7 @@ const tI18nPhrase Phrases[] = {
" Vágást megszakítani",
" Cancel·lar l'edició ",
" ¿àÕàÒÐâì ÜÞÝâÐÖ ×ÐßØáØ",
+ " Prekini ureðivanje",
},
{ "Switching primary DVB...",
"Primäres Interface wird umgeschaltet...",
@@ -4087,6 +4461,7 @@ const tI18nPhrase Phrases[] = {
"Primér Interface átkapcsolva...",
"Canviant a la interfície DVB primària...",
"ÁÜÕÝÐ ÞáÝÞÒÝÞÓÞ DVB-ãáâàÞÙáâÒÐ...",
+ "Preklapanje primarnog DVB ureðaja...",
},
{ "Up/Dn for new location - OK to move",
"Auf/Ab für neue Position - dann OK",
@@ -4105,6 +4480,7 @@ const tI18nPhrase Phrases[] = {
"Fel/Le egy uj opcióért - aztán OK",
"Amunt/Avall per una nova localització - OK per moure",
"½ÐÖØÜÐÙâÕ \"²ÒÕàå\"/\"²ÝØ×\" ÔÛï ÒëÑÞàÐ ßÞ×ØæØØ, Ð ×ÐâÕÜ \"OK\"",
+ "Gore/Dolje na novu poziciju - zatim OK",
},
{ "Editing process started",
"Schnitt gestartet",
@@ -4123,6 +4499,7 @@ const tI18nPhrase Phrases[] = {
"Vágás elindítva",
"Procés d'edició iniciat",
"½ÐçÐâ ÜÞÝâÐÖ ×ÐßØáØ",
+ "Rezanje je zapoèeto",
},
{ "Editing process finished",
"Schnitt beendet",
@@ -4141,6 +4518,7 @@ const tI18nPhrase Phrases[] = {
"Vágás befejezve",
"Procés d'edició finalitzat",
"¼ÞÝâÐÖ ÞÚÞÝçÕÝ",
+ "Rezanje zavr¹eno",
},
{ "Editing process failed!",
"Schnitt gescheitert!",
@@ -4159,6 +4537,7 @@ const tI18nPhrase Phrases[] = {
"Vágás sikertelen!",
"Procés d'edició fallit!",
"¾èØÑÚÐ ÒÞ ÒàÕÜï ÜÞÝâÐÖÐ ×ÐßØáØ!",
+ "Rezanje neuspje¹no!",
},
{ "scanning recordings...",
"Aufzeichnungen werden durchsucht...",
@@ -4177,6 +4556,7 @@ const tI18nPhrase Phrases[] = {
"Felvett adások böngészése...",
"cercant gravacions...",
"ÁÚÐÝØàÞÒÐÝØÕ ×ÐßØáÕÙ...",
+ "pretra¾ivanje snimljenog...",
},
{ "Pausing live video...",
"Live-Signal wird angehalten...",
@@ -4195,6 +4575,7 @@ const tI18nPhrase Phrases[] = {
"Az élö adás megállítva...",
"Pausa d'emissió en directe...",
"ÀÕÖØÜ ÞâÛÞÖÕÝÝÞÓÞ ßàÞáÜÞâàÐ...",
+ "Zaustavljanje ¾ivog signala...",
},
{ "This plugin has no setup parameters!",
"Dieses Plugin hat keine Setup-Parameter!",
@@ -4213,7 +4594,46 @@ const tI18nPhrase Phrases[] = {
"Ennek a plugin-nak nincs setup-parametere!",
"Aquest plugin no admet configuració!",
"¼ÞÔãÛì ÝÕ ØÜÕÕâ ßÐàÐÜÕâàÞÒ ÝÐáâàÞÙÚØ!",
- },
+ "Ovaj dodatak (Plugin) nema parametara!",
+ },
+ { "Classic VDR",
+ "Klassischer VDR",
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ },
+ { "ST:TNG Panels",
+ "ST:TNG Konsolen",
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ "",// TODO
+ },
{ NULL }
};