[vdr-plugin-live] 01/03: Imported Upstream version 0.3.0+git20150930
Tobias Grimm
tiber-guest at moszumanska.debian.org
Wed Sep 30 20:11:28 UTC 2015
This is an automated email from the git hooks/post-receive script.
tiber-guest pushed a commit to branch master
in repository vdr-plugin-live.
commit b3675ae90201844dbb9a304931782b1de627be12
Author: Tobias Grimm <etobi at debian.org>
Date: Wed Sep 30 18:40:41 2015 +0200
Imported Upstream version 0.3.0+git20150930
---
Makefile | 6 +-
buildutil/pot2i18n.pl | 157 -
epg_events.cpp | 36 +-
epg_events.h | 2 +
i18n-generated.h | 10761 ------------------------------------------
i18n-template.h | 16 -
i18n.cpp | 4986 +------------------
i18n.h | 9 -
live.cpp | 11 -
live.h | 4 -
pages/edit_searchtimer.ecpp | 19 +-
pages/ibox.ecpp | 4 -
pages/recstream.ecpp | 8 -
pages/setup.ecpp | 4 -
po/ca_ES.po | 3 +
po/cs_CZ.po | 3 +
po/da_DK.po | 3 +
po/de_DE.po | 3 +
po/el_GR.po | 3 +
po/es_ES.po | 3 +
po/et_EE.po | 3 +
po/fi_FI.po | 3 +
po/fr_FR.po | 3 +
po/hr_HR.po | 3 +
po/hu_HU.po | 3 +
po/it_IT.po | 3 +
po/lt_LT.po | 3 +
po/nl_NL.po | 3 +
po/nn_NO.po | 3 +
po/pl_PL.po | 3 +
po/pt_PT.po | 3 +
po/ro_RO.po | 3 +
po/ru_RU.po | 3 +
po/sk_SK.po | 3 +
po/sl_SI.po | 3 +
po/sv_SE.po | 3 +
po/tr_TR.po | 3 +
recman.cpp | 37 -
recman.h | 3 +-
tasks.cpp | 14 -
timers.cpp | 4 -
tntconfig.cpp | 5 -
42 files changed, 132 insertions(+), 16023 deletions(-)
diff --git a/Makefile b/Makefile
index d50d41f..5d7300b 100644
--- a/Makefile
+++ b/Makefile
@@ -117,9 +117,6 @@ i18n: $(I18Nmo) $(I18Npot)
install-i18n: $(I18Nmsgs)
-#generate-i18n: i18n-template.h $(I18Npot) $(I18Npo) buildutil/pot2i18n.pl
-# buildutil/pot2i18n.pl $(I18Npot) i18n-template.h > i18n-generated.h
-
### Targets:
PAGES:
$(MAKE) -C pages PLUGINFEATURES="$(PLUGINFEATURES)" .dependencies
@@ -147,6 +144,9 @@ dist: $(I18Npo) clean
@echo Distribution package created as $(TMPDIR)/$(PACKAGE).tar.gz
clean: $(SUBDIRS)
+ for SUBDIR in $(SUBDIRS); \
+ do $(MAKE) -C $${SUBDIR} clean; \
+ done
@-rm -f $(PODIR)/*.mo $(PODIR)/*.pot
@-rm -f $(PLUGINOBJS) $(DEPFILE) *.so *.tgz core* *~
@-rm -f $(VERSIONSUFFIX)
diff --git a/buildutil/pot2i18n.pl b/buildutil/pot2i18n.pl
deleted file mode 100755
index 600879b..0000000
--- a/buildutil/pot2i18n.pl
+++ /dev/null
@@ -1,157 +0,0 @@
-#!/usr/bin/perl
-#
-# File: pot2i18n.pl - Convert plugin pot file into i18n.c-format
-# Author: Dieter Hametner
-# Version: 0.1
-#
-# based on po2i18n.pl version 0.1 from Udo Richter
-#
-# See the po2i18n/README file for copyright information and how to
-# reach the original author. Also general use is described there.
-#
-# This version uses the CPAN module Locale::PO to read the .pot and .po files
-# which ensures, that these files are read correctly.
-#
-# The usage of pot2i18n.pl differs from po2i18n.pl that it requires as first
-# argument the path to the plugins .pot file. There it then looks also for
-# the translated .po files which are used to create the result.
-# This version does not sort the msgids lexicaly (in contrast to po2i18n.pl)
-
-use strict;
-use warnings;
-
-use Locale::PO;
-use File::Basename;
-
-my @LANGS = (
- "en_US",
- "de_DE",
- "sl_SI",
- "it_IT",
- "nl_NL",
- "pt_PT",
- "fr_FR",
- "nn_NO",
- "fi_FI",
- "pl_PL",
- "es_ES",
- "el_GR",
- "sv_SE",
- "ro_RO",
- "hu_HU",
- "ca_ES",
- "ru_RU",
- "hr_HR",
- "et_EE",
- "da_DK",
- "cs_CZ",
- "tr_TR"
- );
-
-my %VERS = (
- "en_US" => 10200,
- "de_DE" => 10200,
- "sl_SI" => 10200,
- "it_IT" => 10200,
- "nl_NL" => 10200,
- "pt_PT" => 10200,
- "fr_FR" => 10200,
- "nn_NO" => 10200,
- "fi_FI" => 10200,
- "pl_PL" => 10200,
- "es_ES" => 10200,
- "el_GR" => 10200,
- "sv_SE" => 10200,
- "ro_RO" => 10200,
- "hu_HU" => 10200,
- "ca_ES" => 10200,
- "ru_RU" => 10302,
- "hr_HR" => 10307,
- "et_EE" => 10313,
- "da_DK" => 10316,
- "cs_CZ" => 10342,
- "tr_TR" => 10502
- );
-
-die "Missing .pot file argument" unless $#ARGV >= 0;
-
-my $potfile = $ARGV[0];
-my $podir = dirname($potfile);
-
-my $potRef = Locale::PO->load_file_asarray($potfile);
-shift;
-
-my %translations;
-
-foreach my $lang (@LANGS) {
- $translations{$lang} = Locale::PO->load_file_ashash("$podir/$lang.po");
-}
-
-# debugging code: (may be removed)
-#for my $po (@{$potRef}) {
-# my $msgid = $po->msgid;
-#
-# print "UNTRANSLATED: ", $msgid, "\n";
-# next if $msgid eq "\"\"";
-# foreach my $lang (@LANGS) {
-# my $lhref = $translations{$lang};
-# my $lpo = ${$lhref}{$msgid};
-# $lpo = $po if !defined $lpo;
-#
-# my $msg = $lpo->msgstr;
-# $msg = $lpo->msgid if !defined $msg;
-# $msg = $msgid if ($lang eq "en_US");
-# print $lang, ": ", $msg, "\n";
-# }
-# print "\n";
-#}
-#
-#exit;
-
-my $silent = 0;
-
-while (<>) {
- my $line = $_;
-
- if ($line =~ /^\/\/ START I18N/) {
- print "// START I18N - automatically generated by pot2i18n.pl\n";
- foreach my $po (@{$potRef}) {
- my $msgid = $po->msgid;
- next if $msgid eq "\"\"";
-
- my $head = " { ";
- my $endif = "";
- my $versnum = 10200;
-
- for my $lang (@LANGS) {
- if ($VERS{$lang} ne $versnum) {
- $versnum = $VERS{$lang};
- print $endif;
- print "#if VDRVERSNUM >= $versnum\n";
- $endif = "#endif\n";
- }
-
- my $lhref = $translations{$lang};
- my $lpo = ${$lhref}{$msgid};
- $lpo = $po if !defined $lpo;
-
- my $msgstr = $lpo->msgstr;
- $msgstr = $lpo->msgid if !defined $msgstr;
- $msgstr = $msgid if ($lang eq "en_US");
-
- print "$head$msgstr,\n";
- $head = " ";
- }
- print $endif;
- print " },\n";
- }
- $silent = 1;
- }
-
- if (!$silent) { print $line; }
-
- if ($line =~ /^\/\/ END I18N/) {
- print "// END I18N - automatically generated by pot2i18n.pl\n";
- $silent = 0;
- }
-}
diff --git a/epg_events.cpp b/epg_events.cpp
index cd4996e..9e35f79 100644
--- a/epg_events.cpp
+++ b/epg_events.cpp
@@ -1,6 +1,7 @@
#include <time.h>
#include <glob.h>
#include <algorithm>
+#include <vdr/player.h>
#include "tools.h"
#include "recman.h"
@@ -182,20 +183,37 @@ namespace vdrlive
time_t EpgRecording::GetStartTime() const
{
-#if VDRVERSNUM < 10726
- return m_recording ? m_recording->start : 0;
-#else
return m_recording ? m_recording->Start() : 0;
-#endif
}
time_t EpgRecording::GetEndTime() const
{
-#if VDRVERSNUM < 10726
- return m_recording ? m_recording->start : 0;
-#else
- return m_recording ? m_recording->Start() : 0;
-#endif
+ time_t endTime = 0;
+ if (m_recording)
+ {
+ time_t startTime = m_recording->Start();
+ int length = m_recording->LengthInSeconds();
+
+ endTime = (length < 0) ? startTime : startTime + length;
+ }
+ return endTime;
+ }
+
+ int EpgRecording::Elapsed() const
+ {
+ cControl* pControl = cControl::Control();
+ if (pControl)
+ {
+ int current, total;
+ if (pControl->GetIndex(current,total))
+ {
+ if (total)
+ {
+ return (100 * current) / total;
+ }
+ }
+ }
+ return 0;
}
const string EpgRecording::Name() const
diff --git a/epg_events.h b/epg_events.h
index 7d05b45..3417f6a 100644
--- a/epg_events.h
+++ b/epg_events.h
@@ -234,6 +234,8 @@ namespace vdrlive
virtual time_t GetEndTime() const;
+ virtual int Elapsed() const;
+
private:
const cRecording* m_recording;
bool m_ownCaption;
diff --git a/i18n-generated.h b/i18n-generated.h
deleted file mode 100644
index 962e89e..0000000
--- a/i18n-generated.h
+++ /dev/null
@@ -1,10761 +0,0 @@
-/*
- WARNING: automatically generated content. Changes will get lost!
-
- If this file is 'i18n-generated.h' then it *really* is automatically
- generated.
- If this file is 'i18n-template.h' then it is the base for the
- autogeneration of the other file.
-
- This file is part of live.
-*/
-
-const tI18nPhrase Phrases[] = {
-// START I18N - automatically generated by pot2i18n.pl
- { "Last channel to display",
- "EPG-Anzeige bis Kanal",
- "",
- "Ultimo canale da visualizzare",
- "",
- "",
- "Derni�re cha�ne affich�e",
- "",
- "Näytä viimeisenä kanava",
- "Ostatni kana� na li�cie",
- "�ltimo canal para mostrar",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Poslední zobrazovaný kanál",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "No limit",
- "Alle zeigen",
- "",
- "Mostra tutti",
- "",
- "",
- "Afficher tout",
- "",
- "ei rajoitusta",
- "Bez limitu",
- "Sin l�mite",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Bez limitu",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Use authentication",
- "Authentifizierung nutzen",
- "",
- "Utilizza autenticazione",
- "",
- "",
- "Utiliser l'authentification",
- "",
- "Käytä autentikointia",
- "U�yj autoryzacji",
- "Usar autentificaci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Použít autentifikaci",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "No",
- "Nein",
- "",
- "No",
- "",
- "",
- "Non",
- "",
- "ei",
- "Nie",
- "No",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Ne",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Yes",
- "Ja",
- "",
- "Sì",
- "",
- "",
- "Oui",
- "",
- "kyllä",
- "Tak",
- "Si",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Ano",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Admin login",
- "Admin Login",
- "",
- "Nome amministratore",
- "",
- "",
- "Ouverture Admin",
- "",
- "Ylläpidon käyttäjätunnus",
- "Login Admina",
- "Nombre del administrador",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Admin password",
- "Admin Passwort",
- "",
- "Password amministratore",
- "",
- "",
- "Mot de passe de l'Admin",
- "",
- "Ylläpidon salasana",
- "Has�o Admina",
- "Contrase�a del administrador",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Admin heslo",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "%A, %x",
- "%A, %x",
- "",
- "%A, %x",
- "",
- "",
- "%A, %x",
- "",
- "%A %x",
- "",
- "%A, %x",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Searchtimer",
- "Suchtimer",
- "",
- "Timer di ricerca",
- "Gebruik als zoek timer",
- "",
- "Recherche de programmation",
- "",
- "Hakuajastimet",
- "Timer wyszukiwania",
- "Buscador Programaciones",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nahrávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Error in timer settings",
- "Fehler in den Timer Einstellungen",
- "",
- "Errore nelle impostazioni timer",
- "",
- "",
- "Erreur dans la configuration de programmation",
- "",
- "Ajastimen asetukset virheelliset",
- "B��d w ustawieniach timera",
- "Error en la configuraci�n de la programaci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Chyba v nastavení nahrávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Timer already defined",
- "Timer ist bereits vorhanden",
- "",
- "Timer già definito",
- "",
- "",
- "Programmation d�j� d�finit",
- "",
- "Ajastin jo määritelty",
- "Timer zosta� ju� zdefiniowany",
- "Programaci�n ya definida",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nahrávaní již nastaveno",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Timers are being edited - try again later",
- "Timer werden bearbeitet - später nochmal versuchen",
- "",
- "I timer sono stati modificati - riprova più tardi",
- "",
- "",
- "Programmation sont en cours d'�dition - essayer plus tard",
- "",
- "Ajastimia muokataan - yritä uudelleen myöhemmin",
- "Timery s� edytowane - spr�buj ponownie p�niej",
- "Las programaciones est�n siendo editadas - int�ntelo de nuevo m�s tarde",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nahrávaní někdo mění - zkuste později",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Timer not defined",
- "Timer wurde nicht erstellt",
- "",
- "Timer non definito",
- "",
- "",
- "Programmation non d�finit",
- "",
- "Ajastinta ei ole määritelty",
- "Timer nie zdefiniowany",
- "Programaci�n no definida",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nahrávaní není nastaveno",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "On archive DVD No.",
- "Auf Archiv-DVD Nr.",
- "",
- "In archivio DVD No.",
- "",
- "",
- "Sur le DVD archive no�",
- "",
- "Arkistointi-DVD:llä numero",
- "W archiwum DVD nr",
- "En archivo DVD n�mero",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "On archive HDD No.",
- "Auf Archiv-HDD Nr.",
- "",
- "In archivio HDD No.",
- "",
- "",
- "Sur le HDD archive noä",
- "",
- "Arkistointi-HDD:llä numero",
- "W archiwum HDD nr",
- "En archivo HDD n�mero",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Couldn't find channel or no channels available.",
- "Kann das Programm nicht finden oder keine vorhanden.",
- "",
- "Impossibile trovare canale o canali disponibili.",
- "",
- "",
- "Impossible de trouver la cha�ne ou pas de cha�nes disponibles.",
- "",
- "Kanavaa ei löydy tai yhtään kanavaa ei ole saatavilla.",
- "Nie mo�na odnale�� kana�u lub kana�y nie s� dost�pne.",
- "No se puede encontrar el canal o canales no disponibles",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Kanál neexistuje, nebo je nedostupný.",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Couldn't switch to channel.",
- "Kann nicht zu dem Programm umschalten.",
- "",
- "Impossibile cambiare canale.",
- "",
- "",
- "Impossible de passer � la cha�ne.",
- "",
- "Kanavan valinta epäonnistui.",
- "Nie mo�na prze��czy� kana�u.",
- "No se puede cambiar al canal",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nelze přepnout na kanál.",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Couldn't find recording or no recordings available.",
- "Kann die Aufnahme nicht finden oder keine Aufnahmen vorhanden.",
- "",
- "Impossibile trovare registrazione o registrazioni disponibili.",
- "",
- "",
- "Impossible de trouver l'enregistrement ou aucun enregistrements disponibles.",
- "",
- "Tallennetta ei löydy tai yhtään tallennetta ei ole saatavilla.",
- "Nie mo�na odnale�� nagrania lub nagranie nie jest dost�pne.",
- "No se puede encontrar la grabaci�n o grabaciones no disponibles",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nelze nalézt nahrávky, nebo žádné neexistují",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Cannot control playback!",
- "Kann die Wiedergabe nicht steuern.",
- "",
- "Impossibile controllare la riproduzione!",
- "",
- "",
- "Ne peut pas contr�ler la lecture!",
- "",
- "Toiston hallinta epäonnistui!",
- "Nie mo�na kontrolowa� odtwarzania!",
- "No se puede controlar la reproducci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Přehrávaní nelze ovládat!",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Not playing a recording.",
- "Es wird keine Aufnahme abgespielt.",
- "",
- "Nessuna registrazione in riproduzione.",
- "",
- "",
- "Ne joue pas l'enregistrement.",
- "",
- "Tallennetta ei toisteta.",
- "Nie mo�na odtworzy� nagrania.",
- "No se est� reproduciendo una grabaci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nepřehrává se nahrávka.",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Not playing the same recording as from request.",
- "Es wird nicht die selbe Aufnahme abgespielt.",
- "",
- "Riproduzione di una registrazione diversa da quella richiesta.",
- "",
- "",
- "",
- "",
- "Pyydettyä tallennetta ei toisteta.",
- "Nie mo�na odtworzy� ��danego nagrania.",
- "No se est� reproduciendo la misma grabaci�n que la solicitada",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nepřehrává se požadovaná nahrávka.",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Attempt to delete recording currently in playback.",
- "Versuch die gerade abgepielte Aufnahme zu löschen.",
- "",
- "Tentativo di eliminare una registrazione in corso.",
- "",
- "",
- "Tentative d'effacer l'enregistrement en cours de lecture.",
- "",
- "Yritetään poistaa toistettavaa tallennetta.",
- "Pr�ba usuni�cia aktualnie odtwarzanego nagrania.",
- "Intentar borrar la grabaci�n que se est� reproduciendo",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Pokus o smazání sledované nahrávky",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Epg error",
- "EPG Fehler",
- "",
- "Errore EPG",
- "",
- "",
- "Erreur EPG",
- "",
- "Ohjelmaoppaan virhe",
- "B��d EPG",
- "Error en EPG",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Chyba EPG",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Wrong channel id",
- "Fehlerhafte Kanal Id",
- "",
- "ID canale errato",
- "",
- "",
- "Faux ID de cha�ne",
- "",
- "Väärä kanavan tunniste",
- "B��dny id kana�u",
- "Id de canal err�neo",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Špatné číslo kanálu",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Channel has no schedule",
- "Kanal hat keine Programminfos",
- "",
- "Il canale non ha programmazione",
- "",
- "",
- "La cha�ne n'a pas de programmation",
- "",
- "Kanavalla ei ole ohjelmatietoja",
- "Brak programu dla wybranego kana�u",
- "El canal no tiene programaci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Kanál nemá žádný program",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Wrong event id",
- "Fehlerhafte Sendungs Id",
- "",
- "ID evento errato",
- "",
- "",
- "Faux ID d'�v�nement",
- "",
- "Väärä tapahtuman tunniste",
- "B��dny id audycji",
- "Id de evento err�neo",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Chybné id pořadu",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Required minimum version of epgsearch: ",
- "Benötigte Mindestversion von epgsearch: ",
- "",
- "Versione minima richiesta di EPGSearch:",
- "",
- "",
- "Version minimum requise d'epgsearch: ",
- "",
- "Vaadittava versio EPGSearch-laajennoksesta: ",
- "Wymagana wersja epgsearch (minimum):",
- "Versi�n m�nima de epgsearch requerida: ",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Potřebná minimální verze epgsearch: ",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "All",
- "Alle",
- "",
- "Tutti",
- "",
- "",
- "Tout",
- "",
- "Kaikki",
- "Wszystkie",
- "Todo",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Vše",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "FTA",
- "FTA",
- "",
- "Gratuiti",
- "",
- "",
- "FTA",
- "",
- "Vapaat",
- "Niekodowane - FTA",
- "FTA",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "FTA",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "%I:%M %p",
- "%H:%M",
- "",
- "%I:%M %p",
- "",
- "",
- "%H:%M",
- "",
- "%H:%M",
- "%H:%M",
- "%H:%M",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "%H:%M",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "EPGSearch version outdated! Please update.",
- "EPGSearch-Version zu alt, bitte updaten!",
- "",
- "Versione di EPGSearch troppo vecchia! Devi aggiornarla.",
- "",
- "",
- "Version EPGSearch p�rim�e! Mettre � jour Svp.",
- "",
- "EPGSearch-laajennos pitäisi päivittää!",
- "Plugin EPGSearch jest nieaktualny! Prosz� zaktualizowa�.",
- "�Versi�n de EPGSearch antigua!. Por favor actualice",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Verze EPGSearch je zastaralá! Použijte novější.",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Couldn't aquire primary device",
- "Konnte auf das 'primary device' nicht zugreifen",
- "",
- "Impossibile identificare la scheda primaria",
- "",
- "",
- "Impossible d'acqu�rir p�riph�rique primaire",
- "",
- "Ensisijaisen DVB-sovittimen käyttäminen epäonnistui!",
- "Nie mozna uzyska� dost�pu do pierwszego interfejsu DVB",
- "No se puede capturar el sintonizador principal",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nelze otevřít primární zarízení",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Couldn't grab image from primary device",
- "Konnte kein Bild vom 'primary device' bekommen",
- "",
- "Impossibile ottenere immagini dalla scheda primaria",
- "",
- "",
- "Impossible de r�cup�rer l'image du p�riph�rique primaire",
- "",
- "Kuvan kaappaus ensisijaiselta DVB-sovittimelta epäonnistui!",
- "Nie mo�na pobra� obrazu z pierwszego interfejsu DVB",
- "No se puede capturar la imagen con el sintonizador principal",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nelze získat obrázek z primárního zařízení",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Timer conflict check detected ",
- "Die Timer Konflikt Überprüfung hat ",
- "",
- "Verifica conflitti timer rilevati",
- "Serie's opnemen",
- "",
- "Programmation est active.",
- "",
- "Tarkistuksessa löydettiin ",
- "Wykryto kolizje timer�w ",
- "Detectados conflictos de programaciones",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "conflict",
- "Timerkonflikt entdeckt",
- "",
- "conflitto",
- "Serie's opnemen",
- "",
- "Programmation est active.",
- "",
- "päällekkäinen ajastin",
- "kolizj�",
- "conflicto",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nahrávání bez kolize",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "conflicts",
- "Timerkonflikte entdeckt",
- "",
- "conflitti",
- "Serie's opnemen",
- "",
- "Programmation est active.",
- "",
- "päällekkäistä ajastinta",
- "kolizje",
- "conflictos",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nahrávání bez kolize",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Couldn't aquire access to channels, please try again later.",
- "Zugriff auf die Kanäle wurde verweigert. Bitte später versuchen.",
- "",
- "Impossibile avere accesso ai canali, riprova più tardi.",
- "",
- "",
- "Impossible d'avoir acc�s � des cha�nes, r�essayer ult�rieurement.",
- "",
- "Kanavien käyttäminen epäonnistui! Yritä myöhemmin uudelleen.",
- "Nie mo�na uzyska� dost�pu do kana��w, spr�b�j p�niej.",
- "No se puede tener acceso a los canales, por favor int�ntelo m�s tarde",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nelze získat přístup k programům, zkuste později.",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Sorry, no permission. Please contact your administrator!",
- "Leider nicht erlaubt. Bitte kontaktieren Sie Ihren Administrator!",
- "",
- "Spiacenti, senza permessi. Per favore contatta l'amministratore!",
- "",
- "",
- "",
- "",
- "Ei käyttöoikeutta. Ota yhteyttä ylläpitäjään!",
- "Brak uprawenie�. Skontaktuj si� ze swoim administratorem!",
- "Lo siento, no tiene permiso. �Por favor contacte con su administrador!",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Bohužel chybějící oprávnění. Zeptejte se svého administrátora!",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Couldn't find recording. Maybe you mistyped your request?",
- "Konnte die Aufnahme nicht finden. Möglicherweise ein Tippfehler in der Anfrage?",
- "",
- "Impossibile trovare la registrazione. Hai digitato correttamente la richiesta?",
- "",
- "",
- "",
- "",
- "Tallennetta ei löydy. Kirjoititko varmasti oikein?",
- "Nie mo�na odnale�� nagrania.",
- "No se puede encontrar la grabaci�n. �Puede haberla escrito err�neamente?",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nelze nalézt zadaného uživatele. Byl zadán správně?",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Please set a name for the recording!",
- "Bitte einen Namen für die Aufnahme setzen!",
- "",
- "Imposta un nome alla registrazione!",
- "",
- "",
- "",
- "",
- "Aseta nimi tallenteelle!",
- "Prosz� poda� nazw� nagrania!",
- "�Por favor, introduzca un nombre para la grabaci�n!",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Prosím nastavte název nahrávání!",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Cannot copy, rename or move the recording.",
- "Konnte die Aufnahme nicht umbenennen oder verschieben.",
- "",
- "Impossibile copiare, rinominare o spostare la registrazione.",
- "",
- "",
- "",
- "",
- "Tallenteen kopioiminen, uudelleen nimeäminen tai siirto epäonnistui!",
- "Nie mo�na skopiowa�, przenie�� ani zmieni� nazwy nagrania.",
- "No se puede copiar, renombre o mueva la grabaci�n.",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Edit recording",
- "Aufnahme editieren",
- "",
- "Modifica registrazione",
- "",
- "",
- "",
- "",
- "Muokkaa tallennetta",
- "Edycja nagrania",
- "Editar grabaci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Seznam nahrávek",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Name",
- "Name",
- "",
- "Nome",
- "",
- "",
- "",
- "",
- "Nimi",
- "Nazwa",
- "Nombre",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Jméno",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Directory",
- "Verzeichnis",
- "",
- "Directory",
- "Directory",
- "",
- "Dossier",
- "",
- "Hakemisto",
- "Katalog",
- "Directorio",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Složka",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Delete resume information",
- "Wiedergabeposition löschen",
- "",
- "Elimina informazione ripristino",
- "",
- "",
- "",
- "",
- "Poista paluutiedot",
- "Usu� informacj� o wznowieniu",
- "Borrar marcador de continuaci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Elektronický průvodce programem (EPG)",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Delete marks information",
- "Schnittmarken löschen",
- "",
- "Elimina informazione marcatori",
- "",
- "",
- "",
- "",
- "Poista merkinnät",
- "Usu� informacj� o znacznikach",
- "Borrar informaci�n de marcadores",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Copy only",
- "Nur kopieren",
- "",
- "Solo copia",
- "",
- "",
- "",
- "",
- "Kopioi ainoastaan",
- "Skopiuj do katalogu",
- "Copia �nicamente",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Short description",
- "Kurzbeschreibung",
- "",
- "Descrizione breve",
- "",
- "",
- "Description",
- "",
- "Lyhyt kuvaus",
- "Kr�tki opis",
- "Descripci�n corta",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Popis",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Description",
- "Beschreibung",
- "",
- "Descrizione",
- "",
- "",
- "Description",
- "",
- "Kuvaus",
- "Opis",
- "Descripci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Popis",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Auxiliary info",
- "Zusätzliche Infos",
- "",
- "Informazioni ausiliarie",
- "",
- "",
- "",
- "",
- "Lisätiedot",
- "Dodatkowe informacje",
- "Informaci�n auxiliar",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Save",
- "Speichern",
- "",
- "Salva",
- "",
- "",
- "Sauvegarde",
- "",
- "Tallenna",
- "Zapisz",
- "Grabar",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Uložit",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Cancel",
- "Abbrechen",
- "",
- "Annulla",
- "",
- "",
- "Interrompre",
- "",
- "Peru",
- "Anuluj",
- "Cancelar",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Zrušit",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Couldn't find searchtimer. Maybe you mistyped your request?",
- "Keinen Suchtimer gefunden. Möglicherweise ein Tippfehler in der Anfrage?",
- "",
- "Impossibile trovare timer di ricerca. Hai digitato correttamente la richiesta?",
- "",
- "",
- "Impossible de trouver la programmation de recherche. Peut-�tre que votre demande de fautes de frappe?",
- "",
- "Hakuajastimia ei löydetä! Onko pyyntö oikein kirjoitettu?",
- "Nie mo�na odnale�� timera wyszukiwania.",
- "No se puede encontrar la programaci�n. �Puede que la haya escrito err�neamente?",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nelze najít Automatické nahrávání. Byl požadavek správně zadán?",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "mm/dd/yyyy",
- "dd.mm.yyyy",
- "",
- "mm/dd/yyyy",
- "",
- "",
- "mm/dd/yyyy",
- "",
- "mm/dd/yyyy",
- "dd/mm/yyyy",
- "dd/mm/yyyy",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "dd.mm.yyyy",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Edit search timer",
- "Suchtimer bearbeiten",
- "",
- "Modifica timer di ricerca",
- "",
- "",
- "Editer l'expression de recherche",
- "",
- "Muokkaa hakuajastinta",
- "Edycja timera wyszukiwania",
- "Editar la programaci�n de b�squeda",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Změna automatického nahrávaní",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "New search timer",
- "Neuen Suchtimer anlegen",
- "",
- "Nuovo timer di ricerca",
- "",
- "",
- "Cr�er nouvelle programmation de recherche",
- "",
- "Luo uusi hakuajastin",
- "Nowy timer wyszukiwania",
- "Nueva programaci�n de b�squeda",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nové automatické nahrávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Search text too short - use anyway?",
- "Suchtext zu kurz - trotzdem verwenden?",
- "",
- "Testo da cercare troppo breve - continuare lo stesso?",
- "Zoek tekst tekort - toch gebruiken?",
- "",
- "Texte de recherche est trop court - l'utiliser quand m�me?",
- "",
- "Liian suppea hakuehto - etsitäänkö silti?",
- "Wyszukiwany tekst jest za kr�tki - czy napewno kontynuowa�?",
- "Texto a buscar demasiado corto - �usar de todos modos?",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Zadaný text je krátký - opravdu použít?",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Search term",
- "Suchbegriff",
- "",
- "Termine ricerca",
- "",
- "",
- "Mot cl�",
- "",
- "Hakuehto",
- "Szukany tekst",
- "T�rmino de b�squeda",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Vyhledej",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Search mode",
- "Suchmodus",
- "",
- "Modalità ricerca",
- "",
- "",
- "Mode de recherche",
- "",
- "Hakutapa",
- "Tryb wyszukiwania",
- "Modo de b�squeda",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Vyhledávací režim",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "phrase",
- "Ausdruck",
- "",
- "frase",
- "uitdruk",
- "",
- "Phrase",
- "",
- "fraasi",
- "wyra�enie",
- "Frase",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "slovní spojení",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "all words",
- "alle Worte",
- "",
- "tutte le parole",
- "alle woorden",
- "",
- "tout les mots",
- "",
- "kaikki sanat",
- "wszystkie s�owa",
- "Todas las palabras",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "všechna slova",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "at least one word",
- "ein Wort",
- "",
- "almeno una parola",
- "ten minste een woord",
- "",
- "un mot",
- "",
- "yksi sana",
- "dowolne s�owo",
- "Al menos una palabra",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "alespoň jedno slovo",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "match exactly",
- "exakt",
- "",
- "corrispondenza esatta",
- "precies passend",
- "",
- "correspond exactement",
- "",
- "täsmällinen",
- "dok�adnie ca�e wyra�enie",
- "Coincidencia exacta",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "přesný výraz",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "regular expression",
- "regulärer Ausdruck",
- "",
- "espressione regolare",
- "reguliere uitdruk king",
- "",
- "expression r�guliere",
- "",
- "säännöllinen lauseke",
- "wyra�enie regularne",
- "Expresi�n Regular",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "regulární výraz",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "fuzzy",
- "unscharf",
- "",
- "imprecisa",
- "",
- "",
- "impr�cis",
- "",
- "sumea",
- "niedoprecyzowane",
- "aproximada",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Tolerance",
- "Toleranz",
- "",
- "Tolleranza",
- "",
- "",
- "Tol�rance",
- "",
- "Toleranssi",
- "Tolerancja",
- "Tolerancia",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Tolerance",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Match case",
- "Groß/klein",
- "",
- "Maiuscolo/Minuscolo",
- "Idem case",
- "",
- "Maj/Minuscule",
- "",
- "Huomioi kirjainkoko",
- "Uwzgl�dnij wielko�� liter",
- "Coincidir May�scula/Min�scula",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Velikost písmen",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Search in",
- "Suche in",
- "",
- "Cerca in",
- "",
- "",
- "Recherche dans",
- "",
- "Hae kentistä",
- "Szukaj w",
- "Buscar en",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Vyhledávat v",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Title",
- "Titel",
- "",
- "Titolo",
- "",
- "",
- "Titre",
- "",
- "Otsikko",
- "Tytu�",
- "T�tulo",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Název",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Episode",
- "Episode",
- "",
- "Episodio",
- "",
- "",
- "�pisode",
- "",
- "Jakson nimi",
- "Epizod",
- "Episodio",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Epizoda",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Use extended EPG info",
- "Verw. erweiterte EPG Info",
- "",
- "Utilizza informazioni EPG estesa",
- "Gebruik uitgebreide EPG info",
- "",
- "Utiliser les infos EPG avanc�es",
- "",
- "Käytä laajennettua ohjelmaopasta",
- "U�yj rozszerzonej informacji EPG",
- "Usar informaci�n EPG ampliada",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Použít rozšířené EPG",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Ignore missing EPG info",
- "Ignoriere fehlende EPG Info",
- "",
- "Ignora info EPG mancante",
- "",
- "",
- "Ignorez EPG info manquante",
- "",
- "Jätä puuttuvat ohjelmatiedot huomioimatta",
- "Ignoruj brakuj�ce informacje EPG",
- "Ignorar EPG sin informaci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Ignorovat chybějící EPG",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "When active this can cause very many timers. So please always first test this search before using it as search timer!",
- "Diese Einstellung kann bei Aktivierung sehr viele Timer erzeugen. Also bitte immer zuerst die Suche testen, bevor sie als Suchtimer verwendet wird!",
- "",
- "Attivare questa opzione può creare molti timer. Quindi prova sempre questa ricerca prima di usarla come timer di ricerca!",
- "",
- "",
- "Lorsqu'elle est active, cela peut provoquer de tr�s nombreuses programmations. Donc s�il vous pla�t toujours d'abord tester cette recherche avant de l'utiliser comme progammation de recherche!",
- "",
- "Asetuksen ottaminen käyttöön saattaa luoda lukemattomia ajastimia. Testaa haku ennenkuin teet siitä hakuajastimen!",
- "Aktywacja timera wyszukiwania mo�e spowodowa� dodanie wielu niepotrzebnych timer�w, wi�c przed zapisem najpiew przetestuj dzia�anie wyszukiwania!",
- "Cuando se activa esta opci�n se pueden producir muchas programaciones. Por lo tanto, haga el favor de testear siempre la programaci�n de b�squeda antes de usarla",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Toto nastavení vytvoří mnoho požadavků na nahrávání. Před uložením oveřte chování pomocí Testu!",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Use channel",
- "Verw. Kanal",
- "",
- "Utilizza canale",
- "Gebruik kanaal",
- "",
- "Utiliser la cha�ne",
- "",
- "Käytä kanavaa",
- "Kana�",
- "Usar canal",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Použij kanál",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "interval",
- "Bereich",
- "",
- "intervallo",
- "interval",
- "",
- "intervalle",
- "",
- "kyllä",
- "zakres",
- "intervalo",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "channel group",
- "Kanalgruppe",
- "",
- "gruppo canali",
- "kanaal groep",
- "",
- "Groupe de cha�nes",
- "",
- "kanavaryhmä",
- "grupa kana��w",
- "grupo de canales",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "skupina kanálů",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "only FTA",
- "ohne PayTV",
- "",
- "solo gratuiti",
- "alleen FTA",
- "",
- "sans TV-Payante",
- "",
- "vapaat kanavat",
- "tylko niekodowane",
- "�nicamente FTA",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Pouze FTA",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "from channel",
- "von Kanal",
- "",
- "da canale",
- "van kanaal",
- "",
- "de la cha�ne",
- "",
- "Kanavasta",
- "od kana�u",
- "del canal",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "od kanálu",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "to channel",
- "bis Kanal",
- "",
- "a canale",
- "tot kanaal",
- "",
- "� la cha�ne",
- "",
- "Kanavaan",
- "do kana�u",
- "al canal",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "do kanálu",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Use time",
- "Verw. Uhrzeit",
- "",
- "Utilizza ora",
- "Gebruik tijd",
- "",
- "Utiliser l'heure",
- "",
- "Käytä aloitusaikaa",
- "Czas",
- "Usar hora",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Použij čas",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Start after",
- "Start nach",
- "",
- "Inizio dopo",
- "Start na",
- "",
- "D�part apr�s",
- "",
- "Aloitusaika aikaisintaan",
- "Rozpocz�cie po",
- "Inicia despu�s de",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Začíná po",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "The time the show may start at the earliest",
- "Die Zeit, zu der die Sendung frühestens anfangen darf",
- "",
- "L'ora precedente più vicina per l'inizio evento",
- "",
- "",
- "L'heure lorsque l'�mission doit commencer au plus t�t",
- "",
- "Lähetyksen aloitusaika aikaisintaan",
- "Wyszukiwana audycja mo�e rozpocz�� si� najwcze�niej o ...",
- "La hora del programa puede comenzar antes de",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Čas, kdy může začít nejdříve.",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Start before",
- "Start vor",
- "",
- "Inizio prima",
- "Start voor",
- "",
- "D�part avant",
- "",
- "Aloitusaika viimeistään",
- "Rozpocz�cie przed",
- "Iniciar antes de",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Začíná před",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "The time the show may start at the latest",
- "Die Zeit, zu der die Sendung spätestens angefangen haben muss",
- "",
- "L'ora successiva più tardi per l'inizio evento",
- "",
- "",
- "L'heure lorsque l'�mission doit commencer au plus tard",
- "",
- "Lähetyksen aloitusaika viimeistään",
- "Wyszukiwana audycja mo�e rozpocz�� si� najp�niej o ...",
- "La hora del programa puede comenzar despu�s de",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Čas, kdy může začít nejpozději",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Use duration",
- "Verw. Dauer",
- "",
- "Utilizza durata",
- "Gebruiks duur",
- "",
- "Dur�e d'utilisation",
- "",
- "Käytä kestoaikaa",
- "Czas trwania",
- "Usar duraci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Použij délku",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Min. duration",
- "Min. Dauer",
- "",
- "Durata Minima",
- "Min. duur",
- "",
- "Dur�e min.",
- "",
- "Kestoaika vähintään",
- "Min. czas trwania",
- "Duraci�n m�nima",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "délka min.",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Max. duration",
- "Max. Dauer",
- "",
- "Durata Massima",
- "Max. duur",
- "",
- "Dur�e max.",
- "",
- "Kestoaika enintään",
- "Max. czas trwania",
- "Duraci�n m�xima",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "délka max.",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Use day of week",
- "Verw. Wochentag",
- "",
- "Utilizza giorno della settimana",
- "Gebruik dag van de week",
- "",
- "Utiliser les jours de la semaine",
- "",
- "Käytä viikonpäivää",
- "Dzie�",
- "Usar d�a de la semana",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Použij den v týdnu",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Monday",
- "Montag",
- "",
- "Lunedì",
- "",
- "",
- "Lundi",
- "",
- "Maanantai",
- "Poniedzia�ek",
- "Lunes",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Pondělí",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Tuesday",
- "Dienstag",
- "",
- "Martedì",
- "",
- "",
- "Mardi",
- "",
- "Tiistai",
- "Wtorek",
- "Martes",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Úterý",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Wednesday",
- "Mittwoch",
- "",
- "Mercoledì",
- "",
- "",
- "Mercredi",
- "",
- "Keskiviikko",
- "�roda",
- "Mi�rcoles",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Středa",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Thursday",
- "Donnerstag",
- "",
- "Giovedì",
- "",
- "",
- "Jeudi",
- "",
- "Torstai",
- "Czwartek",
- "Jueves",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Čtvrtek",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Friday",
- "Freitag",
- "",
- "Venerdì",
- "",
- "",
- "Vendredi",
- "",
- "Perjantai",
- "Pi�tek",
- "Viernes",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Pátek",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Saturday",
- "Samstag",
- "",
- "Sabato",
- "",
- "",
- "Samedi",
- "",
- "Lauantai",
- "Sobota",
- "S�bado",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Sobota",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Sunday",
- "Sonntag",
- "",
- "Domenica",
- "",
- "",
- "Dimanche",
- "",
- "Sunnuntai",
- "Niedziela",
- "Domingo",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Neděle",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Use blacklists",
- "Verw. Ausschlusslisten",
- "",
- "Utilizza lista esclusioni",
- "",
- "",
- "Utiliser la liste des exclus",
- "",
- "Käytä mustia listoja",
- "Czarna lista",
- "Usar lista negra",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Použít blacklist",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Selection",
- "Auswahl",
- "",
- "Selezione",
- "",
- "",
- "Selection",
- "",
- "valittu",
- "wybrane",
- "Selecci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "výběr",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "all",
- "alle",
- "",
- "tutti",
- "",
- "",
- "tous",
- "",
- "kaikki",
- "wszystkie",
- "Todo",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "vše",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Use in favorites menu",
- "In Favoritenmenü verw.",
- "",
- "Utilizza nel menu Preferiti",
- "",
- "",
- "Utiliser dans le menu favoris",
- "",
- "Käytä suosikkina",
- "U�yj ulubionych",
- "Usar en men� de favoritos",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Přidat do Oblíbených",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Use as search timer",
- "Als Suchtimer verwenden",
- "",
- "Utilizza come timer di ricerca",
- "Gebruik als zoek timer",
- "",
- "Utiliser la recherche",
- "",
- "Käytä hakuajastimena",
- "Aktywuj timer",
- "Usar como programador de b�squeda",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Další podmínky vyhledávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "user defined",
- "benutzer-definiert",
- "",
- "definito dall'utente",
- "",
- "",
- "D�finis par l'utilisateur",
- "",
- "käyttäjän määrittelemä",
- "w wybranym okersie",
- "definido por el usuario",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "ano - dočasný",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "from date",
- "ab Datum",
- "",
- "da data",
- "",
- "",
- "� partir de la date",
- "",
- "alkaen",
- "od dnia",
- "desde la fecha",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "od data",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "to date",
- "bis Datum",
- "",
- "a data",
- "",
- "",
- "� ce jour",
- "",
- "päättyen",
- "do dnia",
- "hasta la fecha",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "do data",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Record",
- "Aufnehmen",
- "Posnemi",
- "Registra",
- "Opnemen",
- "Gravar",
- "Enregistre",
- "Ta opp",
- "Tallenna",
- "Nagraj",
- "Grabar",
- "�������",
- "Inspelning",
- "�nregistr.",
- "Felvenni",
- "Gravar",
-#if VDRVERSNUM >= 10302
- "������",
-#endif
-#if VDRVERSNUM >= 10307
- "Snimi",
-#endif
-#if VDRVERSNUM >= 10313
- "Salvesta",
-#endif
-#if VDRVERSNUM >= 10316
- "Optag",
-#endif
-#if VDRVERSNUM >= 10342
- "Nahrát",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Announce only",
- "Nur ankündigen",
- "",
- "Solo annuncio",
- "Alleen aankondigen (geen timer)",
- "",
- "Annoncer seulement le d�but de l'�mission",
- "",
- "Muistutus",
- "Tylko powiadomienie",
- "�nicamente avisar",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Pouze upozornit",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Switch only",
- "Nur umschalten",
- "",
- "Solo cambio canale",
- "",
- "",
- "Seulement changer de chaine",
- "",
- "Kanavanvaihto",
- "Tylko prze��cz",
- "�nicamente cambiar",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Přepnout",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Series recording",
- "Serienaufnahme",
- "",
- "Registrazioni in serie",
- "Serie's opnemen",
- "",
- "Enregistrement de s�rie",
- "",
- "Sarjatallennus",
- "Nagrywanie serii",
- "Grabaci�n de series",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nahrávání seriálu",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Delete recordings after ... days",
- "Aufn. nach ... Tagen löschen",
- "",
- "Elimina registrazioni dopo ... giorni",
- "",
- "",
- "Effacer l'enregistrement apr�s ... jours",
- "",
- "Poista tallenteet ... päivän jälkeen",
- "Usu� nagranie po ... dniach:",
- "Borrar grabaciones despu�s de ... d�as",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Vymazat nahrávky po ... dnech",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Keep ... recordings",
- "Behalte ... Aufnahmen",
- "",
- "Mantieni ... registrazioni",
- "",
- "",
- "Garder .... les enregistrements",
- "",
- "Säilytä ... tallennetta",
- "Zatrzymaj ... nagra�:",
- "Mantener ... grabaciones",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Ponechat ... nahrávek",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Pause when ... recordings exist",
- "Pause, wenn ... Aufnahmen exist.",
- "",
- "Pausa, quando ... la registrazione esiste",
- "",
- "",
- "Pause, lorsque ... l'enregistrement existe.",
- "",
- "Keskeytä ... tallenteen jälkeen",
- "Zatrzymaj gdy istnieje ... nagra�",
- "Pausar cuando existan ... grabaciones",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Vynechat pokud existuje ... nahrávek",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Avoid repeats",
- "Vermeide Wiederholung",
- "",
- "Evita repliche",
- "",
- "",
- "Eviter les r�p�titions",
- "",
- "Estä uusinnat",
- "Opcje powt�rek",
- "Evitar repeticiones",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Vynechávat reprízy",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Allowed repeats",
- "Erlaubte Wiederholungen",
- "",
- "Repliche permesse",
- "",
- "",
- "R�p�titions autoris�es",
- "",
- "Sallittujen uusintojen lukumäärä",
- "Liczba powt�rek",
- "Repeticiones permitidas",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Povolit reprízy",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Only repeats within ... days",
- "Nur Wiederh. innerhalb ... Tagen",
- "",
- "Ripeti solo entro ... giorni",
- "",
- "",
- "Que r�p�tition, pendant ... jours",
- "",
- "Vain uusinnat ... päivän sisällä",
- "Nagrywaj powt�rki przez ... dni",
- "�nicamente repeticiones dentro de ... d�as",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Reprízy po ... dnech",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Compare title",
- "Vergleiche Titel",
- "",
- "Confronta titoli",
- "",
- "",
- "Comparer titres",
- "",
- "Vertaa nimeä",
- "Por�wnaj tytu�y",
- "Comparar t�tulo",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Porovnávat název",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Compare subtitle",
- "Vergleiche Untertitel",
- "",
- "Confronta sottotitoli",
- "",
- "",
- "Comparer les sous-titres",
- "",
- "Vertaa jakson nimeä",
- "Por�wnaj podtytu�y",
- "Comparar subt�tulo",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Porovnávat popis",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "if present",
- "wenn vorhanden",
- "",
- "se presente",
- "",
- "",
- "",
- "",
- "jos olemassa",
- "je�eli isteniej�",
- "si est� presente",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "pokud existuje",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Compare summary",
- "Vergleiche Beschreibung",
- "",
- "Confronta descrizione",
- "",
- "",
- "Comparer les descriptions",
- "",
- "Vertaa kuvausta",
- "Podsumowanie por�wnania",
- "Comparar resumen",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Porovnávat popis",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Compare",
- "Vergleiche",
- "",
- "Confronta",
- "",
- "",
- "Comparer",
- "",
- "Vertaa",
- "Por�wnaj",
- "Comparar",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Porovnat",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Use VPS",
- "VPS verwenden",
- "",
- "Utilizza VPS",
- "",
- "",
- "Utiliser VPS",
- "",
- "Käytä VPS-toimintoa",
- "U�yj VPS",
- "Usar VPS",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Použít VPS",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Auto-delete search timer",
- "Suchtimer automatisch löschen",
- "",
- "Eliminazione automatica timer di ricerca",
- "",
- "",
- "Auto-suppression de programmation de recherche",
- "",
- "Poista automaattisesti hakuajastimet",
- "Automatycznie usu� timer",
- "Borrado autom�tico de la programaci�n de b�squeda",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Smazání automatického nahrávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "after ... recordings",
- "nach ... Aufnahmen",
- "",
- "dopo ... registrazioni",
- "",
- "",
- "apr�s ... enregistrements",
- "",
- "... tallenteen jälkeen",
- "po ... nagraniach",
- "tras ... grabaciones",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "po ... nahrávkách",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "after ... days after first rec.",
- "nach ... Tagen nach erster Aufnahme",
- "",
- "dopo ... giorni dopo la prima registrazione",
- "",
- "",
- "apr�s ... jours apr�s le premier enregistrement",
- "",
- "... päivän jälkeen ensimmäisestä",
- "po ... dniach nagrywania",
- "tras ... d�as despu�s de la primera grabaci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "po ... dnech po první nahrávce",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Switch ... minutes before start",
- "Umschalten ... Minuten vor Start",
- "",
- "Cambia ... minuti prima dell'inizio",
- "",
- "",
- "Changer ... minutes avant le d�but",
- "",
- "Vaihda ... minuuttia ennen alkua",
- "Prze��cz na ... minut przed rozpocz�cziem",
- "Cambia ... minutos antes de comenzar",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Přepnout ... minut před začátkem",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Test",
- "Testen",
- "",
- "Prova",
- "",
- "",
- "Tester",
- "",
- "Testaa",
- "Testuj",
- "Probar",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Couldn't find timer. Maybe you mistyped your request?",
- "Konnte Timer nicht finden. Evtl. fehlerhafte Anforderung?",
- "",
- "Impossibile trovare il timer. Hai digitato correttamente la richiesta?",
- "",
- "",
- "N'a pas pu trouver la programmation. Peut-�tre vous avez une erreur dans votre requ�te?",
- "",
- "Ajastinta ei löydy. Kirjoititko varmasti oikein?",
- "Nie mo�na odnale�� timera.",
- "No se puede encontrar la programaci�n. �Puede que la haya escrito err�neamente?",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nelze najít nahrávaní. Je správně zadáno?",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Please set a title for the timer!",
- "Bitte einen Titel fᅵr den Timer angeben!",
- "",
- "Imposta il titolo del timer!",
- "",
- "",
- "Veuillez indiquer un titre pour la programmation!",
- "",
- "Aseta nimi ajastimelle!",
- "Prosz� poda� tytu� dla timera!",
- "�Por favor introduzca un t�tulo para la programaci�n!",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Prosím nastavte název nahrávání!",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Edit timer",
- "Timer bearbeiten",
- "",
- "Modifica timer",
- "",
- "",
- "Editer la programmation",
- "",
- "Muokkaa ajastinta",
- "Edycja timera",
- "Editar programaci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Změna nahrávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "New timer",
- "Neuen Timer anlegen",
- "",
- "Nuovo timer",
- "",
- "",
- "Nouvelle programmation",
- "",
- "Luo uusi ajastin",
- "Nowy timer",
- "Nueva programaci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nové nahrávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Weekday",
- "Wochentag",
- "",
- "Giorno della settimana",
- "",
- "",
- "Jour de la semaine",
- "",
- "Viikonpäivä",
- "Dzie�",
- "D�a de la semana",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Den v týdnu",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Couldn't find user. Maybe you mistyped your request?",
- "Konnte Benutzer nicht finden. Evtl. fehlerhafte Anforderung?",
- "",
- "Impossibile trovare l'utente. Hai digitato correttamente la richiesta?",
- "",
- "",
- "N'a pas pu trouver la programmation. Peut-�tre vous avez une erreur dans votre requ�te?",
- "",
- "Käyttäjää ei löydy. Kirjoititko varmasti oikein?",
- "Nie mo�na odnale�� u�ytkownika.",
- "No se puede encontrar el usuario. �Puede que lo haya escrito err�neamente?",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nelze nalézt zadaného uživatele. Byl zadán správně?",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "This user name is already in use!",
- "Dieser Benutzername wird bereits verwendet!",
- "",
- "Questo nome utente è già in uso!",
- "",
- "",
- "",
- "",
- "Käyttäjänimi on jo käytössä!",
- "Nazwa u�ytkownika jest ju� u�ywana!",
- "�Este nombre de usuario ya se est� usando!",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Toto jméno již použito!",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Edit user",
- "Benutzer bearbeiten",
- "",
- "Modifica utente",
- "Serie's opnemen",
- "",
- "Editer la programmation",
- "",
- "Muokkaa käyttäjää",
- "Edycja u�ytkownia",
- "Editar usuario",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Změna uživatele",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "New user",
- "Neuen Benutzer anlegen",
- "",
- "Nuovo utente",
- "",
- "",
- "Nouvelle programmation",
- "",
- "Luo uusi käyttäjä",
- "Nowy u�ytkownik",
- "Nuevo usuario",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nový uživatel",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Password",
- "Passwort",
- "",
- "Password",
- "",
- "",
- "Mot de passe",
- "",
- "Salasana",
- "Has�o",
- "Contrase�a",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Heslo",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "User rights",
- "Benutzerrechte",
- "",
- "Permessi utente",
- "",
- "",
- "Utilisateur",
- "",
- "Käyttöoikeudet",
- "Uprawnienia",
- "Derechos de usuario",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Oprávnění",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Edit setup",
- "Einstellungen bearbeiten",
- "",
- "Modifica opzioni",
- "Serie's opnemen",
- "",
- "Editer la programmation",
- "",
- "Muokkaa asetuksia",
- "Edycja ustawie�",
- "Editar configuraci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Měnit nastavení",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Add or edit timers",
- "Timer hinzufügen oder ändern",
- "",
- "Aggiungi o modifica timer",
- "Gebruik als zoek timer",
- "",
- "Editer la programmation",
- "",
- "Lisää/muokkaa ajastimia",
- "Dodawanie i edycja timer�w",
- "A�adir o editar programaciones",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nastavení nahrávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Delete timers",
- "Timer löschen",
- "",
- "Elimina timer",
- "Serie's opnemen",
- "",
- "Effacer la programmation",
- "",
- "Poista ajastimia",
- "Usuwanie timer�w",
- "Borrar programaciones",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Rušení nahrávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Delete recordings",
- "Aufnahmen löschen",
- "",
- "Elimina registrazioni",
- "Serie's opnemen",
- "",
- "Enregistrement de s�rie",
- "",
- "Poista tallenteita",
- "Usuwanie niagra�",
- "Borrar grabaciones",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Mazání nahrávek",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Use remote menu",
- "Menü Fernbedienung nutzen",
- "",
- "Utilizza menu remoto",
- "Gebruik tijd",
- "",
- "Utiliser dans le menu favoris",
- "",
- "Käytä kauko-ohjainta",
- "U�ywanie pilota",
- "Usar men� remoto",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Menu dálkového ovládání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Start replay",
- "Wiedergabe starten",
- "",
- "Avvia riproduzione",
- "Start voor",
- "",
- "Page de d�part",
- "",
- "Aloita toisto",
- "Startowane odtwarzania",
- "Iniciar de nuevo la reproducci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Přehrávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Switch channel",
- "Zu diesem Kanal umschalten.",
- "",
- "Cambia canale",
- "tot kanaal",
- "",
- "Changer vers cette cha�ne. ",
- "",
- "Vaihda kanavaa",
- "Prze��czanie kana��w",
- "Cambiar canal",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Přepínání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Add or edit search timers",
- "Suchtimer hinzufügen oder ändern",
- "",
- "Aggiungi o modifica timer di ricerca",
- "Gebruik als zoek timer",
- "",
- "Editer l'expression de recherche",
- "",
- "Lisää/muokkaa hakuajastimia",
- "Dodawanie i edycja timer�w wyszukiwania",
- "A�adir o editar programaciones de b�squeda",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nastavení aut. nahrávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Delete search timers",
- "Suchtimer löschen",
- "",
- "Elimina timer di ricerca",
- "Serie's opnemen",
- "",
- "Effacer la programmation de recherche",
- "",
- "Poista hakuajastimia",
- "Usuwanie timer�w wyszukiwania",
- "Borrar programaciones de b�squeda",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Mazání aut. nahrávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Edit recordings",
- "Aufnahmen editieren",
- "",
- "Modifica registrazioni",
- "",
- "",
- "",
- "",
- "Muokkaa tallenteita",
- "Edycja nagra�",
- "Editar grabaciones",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Seznam nahrávek",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Electronic program guide information",
- "Elektronische Programminformation",
- "",
- "Info Guida Elettronica Programmi (EPG)",
- "",
- "",
- "Guide �lectronique d'information des programmes EPG",
- "",
- "Ohjelmaoppaan tiedot",
- "Informacje EPG",
- "Informaci�n de la Gu�a Electr�nica de Programaci�n (EPG)",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Elektronický průvodce programem (EPG)",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Couldn't find recording or no recordings available",
- "Die Aufnahme nicht finden oder keine Aufnahmen vorhanden",
- "",
- "Impossibile trovare registrazioni o nessuna registrazione disponibile",
- "",
- "",
- "Impossible de trouver un enregistrement ou aucun enregistrements disponibles",
- "",
- "Tallennetta ei löydy tai yhtään tallennetta ei ole saatavilla.",
- "Nie mo�na odnale�� nagrania",
- "No se puede encontrar la grabaci�n o no hay programaciones disponibles",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nelze nalézt nahrávky, nebo žádné neexistují",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Error aquiring schedules lock",
- "Fehler beim Zugriffschutz für die Programminfos",
- "",
- "Errore acquisizione blocco programmi",
- "",
- "",
- "Erreur lors de l'acquisition du verrouillage de programmation de recherche",
- "",
- "Ohjelmatietojen lukitus epäonnistui!",
- "B��d podczas pr�by blokady programu",
- "Error adquiriendo el bloqueo de las programaciones",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Chyba při vytváření zámku pro nahrávky",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Error aquiring schedules",
- "Fehler beim Zugriff auf Programinfos",
- "",
- "Errore acquisizione programmi",
- "",
- "",
- "Erreur lors de l'acquisition de programmation",
- "",
- "Ohjelmatietojen haku epäonnistui!",
- "B��d podczas �ci�gania programu",
- "Error adquiriendo programaciones",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Chyba při plánování",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "%b %d %y",
- "%d.%m.%y",
- "",
- "%b %d %y",
- "",
- "",
- "%d.%m.%y",
- "",
- "%d.%m.%y",
- "",
- "%b %d %y",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "%d.%m.",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Page error",
- "Seitenfehler",
- "",
- "Errore pagina",
- "",
- "",
- "Erreur de paging",
- "",
- "Sivuvirhe",
- "B��d strony",
- "Error en la p�gina",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Chyba stránky",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "playing recording",
- "Wiedergabe",
- "",
- "Riproduzione registrazione",
- "",
- "",
- "Lire l'enregistrement",
- "",
- "Toistetaan tallennetta",
- "Odtwarzanie nagrania",
- "reproduciendo grabaci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "sledování nahrávky",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "no epg info for current event!",
- "Keine Infos zur Sendung!",
- "",
- "Evento attuale senza info EPG!",
- "",
- "",
- "Pas d'infos pour l'�mission!",
- "",
- "Lähetyksellä ei ole ohjelmatietoja!",
- "brak informacji o audycji!",
- "�No hay informaci�n de epg para este programa!",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "chybí detaily pro tento pořad",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "no epg info for current channel!",
- "Dieser Kanal hat kein EPG!",
- "",
- "Canale attuale senza info EPG!",
- "",
- "",
- "Cette cha�ne n'a pas d'EPG!",
- "",
- "Kanavalla ei ole ohjelmatietoja!",
- "brak informacji epg dla kana�u!",
- "�no hay informaci�n de epg para el canal actual!",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "chybí program pro tento kanál",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "no current channel!",
- "Keinen Kanal gefunden!",
- "",
- "Canale non trovato!",
- "",
- "",
- "pas de cha�ne trouv�!",
- "",
- "Kanavaa ei löydy!",
- "brak informacji o kanale!",
- "�no canal actual!",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "není zvolen žádný kanál",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "error retrieving status info!",
- "Fehler: Status nicht verfügbar!",
- "",
- "Errore: stato non disponibile!",
- "",
- "",
- "erreur de r�cup�ration du statut d'info!",
- "",
- "Virhe: tilannetietoja ei saatavilla!",
- "b��d podczas odczytu stanu",
- "error recibiendo la informaci�n de estado",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "chyba při zjišťování statusu!",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "%I:%M:%S %p",
- "%H:%M:%S",
- "",
- "%I:%M:%S %p",
- "",
- "",
- "%H:%M:%S",
- "",
- "%H:%M:%S",
- "%H:%M:%S",
- "%H:%M:%S",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "%H:%M:%S",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Wrong username or password",
- "Falscher Benutzername oder Passwort",
- "",
- "Nome utente o password errata",
- "",
- "",
- "Nom de l'utilisateur ou mot de passei sont erron�",
- "",
- "Väärä käyttäjätunnus tai salasana",
- "B��dna nazwa lub has�o u�ytkownika",
- "Usuario o contrase�a err�neos",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Chybné jméno, nebo heslo",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Login",
- "Anmelden",
- "",
- "Entra",
- "",
- "",
- "Session",
- "",
- "Kirjaudu sisään",
- "Nazwa",
- "Entrar",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "přihlásit",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "VDR Live Login",
- "VDR Live Login",
- "",
- "Accesso VDR Live",
- "",
- "",
- "Session VDR Live",
- "",
- "VDR Live - sisäänkirjautuminen",
- "Login VDR Live",
- "Acceso a VDR Live",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "VDR Live autorizace",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "User",
- "Benutzer",
- "",
- "Utente",
- "",
- "",
- "Utilisateur",
- "",
- "Käyttäjä",
- "U�ytkownik",
- "Usuario",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Uživatel",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "What's on?",
- "Was läuft?",
- "",
- "In programmazione",
- "",
- "",
- "Actuellement?",
- "",
- "Menossa?",
- "Teraz w TV",
- "�Qu� se emite ahora?",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Právě se vysílá",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "MultiSchedule",
- "Zeitleiste",
- "",
- "Multi Programmazione",
- "",
- "",
- "",
- "",
- "Ohjelmaopas",
- "Multiprzewodnik",
- "Multi programaci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Search",
- "Suchen",
- "",
- "Ricerca",
- "",
- "",
- "Recherche",
- "",
- "Etsi",
- "Szukaj",
- "Buscar",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Vyhledej",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Searchtimers",
- "Suchtimer",
- "",
- "Timer di ricerca",
- "",
- "",
- "Recherche de programmation",
- "",
- "Hakuajastimet",
- "Timery wyszukiwania",
- "Programadores de b�squeda",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Automatické nahrávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Recordings",
- "Aufnahmen",
- "",
- "Registrazioni",
- "",
- "",
- "Enregistrements",
- "",
- "Tallenteet",
- "Nagrania",
- "Grabaciones",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nahrávky",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Remote Control",
- "Fernbedienung",
- "",
- "Telecomando",
- "",
- "",
- "T�l�commande du VDR",
- "",
- "Kauko-ohjain",
- "Pilot",
- "Mando a distancia",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Dálkové ovládání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Logout",
- "Abmelden",
- "",
- "Esci",
- "",
- "",
- "Fin de session",
- "",
- "Kirjaudu ulos",
- "Wyloguj",
- "Salir",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Odhlášení",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Your attention is required",
- "Ihre Aufmerksamkeit ist erforderlich",
- "",
- "ATTENZIONE",
- "",
- "",
- "",
- "",
- "Huomiotasi tarvitaan",
- "Uwaga, co� nie gra ",
- "Se requiere su atenci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nutná reakce",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "React",
- "Reagieren",
- "",
- "Risolvi",
- "",
- "",
- "",
- "",
- "Reagoi",
- "Sprawd�",
- "Resolver",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "řešit",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Dismiss",
- "Verwerfen",
- "",
- "Ignora",
- "",
- "",
- "",
- "",
- "Ohita",
- "Anuluj",
- "Ignorar",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "neřešit",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Now",
- "Jetzt",
- "",
- "Adesso",
- "",
- "",
- "maintenant",
- "",
- "Nyt",
- "Teraz",
- "Ahora",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nyní",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "%A, %b %d %Y",
- "%A, %d.%m.%Y",
- "",
- "%A, %b %d %Y",
- "",
- "",
- "%A, %d.%m.%Y",
- "",
- "%A %d.%m.%Y",
- "",
- "%A, %b %d %Y",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "%a, %d.%m. ",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Time",
- "Zeit",
- "",
- "Ora",
- "",
- "",
- "",
- "",
- "Ajankohta",
- "Czas",
- "Hora",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Switch to this channel.",
- "Zu diesem Kanal umschalten.",
- "",
- "Sintonizza questo canale",
- "",
- "",
- "Changer vers cette cha�ne. ",
- "",
- "Vaihda kanavalle",
- "Prze��cz na ten kana�",
- "Cambiar a este canal",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Přepnout",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Search for repeats.",
- "Nach Wiederholungen suchen.",
- "",
- "Cerca repliche",
- "",
- "",
- "Recherche de r�p�titions.",
- "",
- "Etsi toistuvat",
- "Szukaj powt�rek",
- "Buscar repeticiones",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Vyhledat reprízy",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Click to view details.",
- "Für Details klicken.",
- "",
- "Fai click per vedere i dettagli",
- "",
- "",
- "Clic pour voire les d�tails.",
- "",
- "Napsauta katsoaksesi lisätietoja.",
- "Kliknij aby zobaczy� szczeg�y",
- "Pulsar para ver detalles",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Detaily",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "more",
- "mehr",
- "",
- "Altro",
- "",
- "",
- "plus",
- "",
- "lisätietoja",
- "wi�cej",
- "m�s",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "více",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Channel",
- "Kanal",
- "",
- "Canale",
- "",
- "",
- "Cha�ne",
- "",
- "Kanava",
- "Kana�",
- "Canal",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Kanál",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Find more at the Internet Movie Database.",
- "Weitere Informationen in der Internet Movie Database.",
- "",
- "Cerca ulteriori informazioni nel database internet (IMDB)",
- "",
- "",
- "Trouver plus d'information du film dans la base de donn�es film IMDB.",
- "",
- "Hae IMDB:stä",
- "Szukaj w IMDb.com",
- "Encontrar m�s en la Base de Datos de Pel�culas de Internet",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Vyhledej více na Internet Movie Database.",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Stream this channel into browser.",
- "Sendung im Browser anzeigen.",
- "",
- "Trasmetti questo canale nel browser",
- "",
- "",
- "Diffusez cette cha�ne vers le navigateur.",
- "",
- "Aloita kanavan suoratoisto",
- "Ogl�daj kana� w przegl�darce",
- "Reproduce este canal en el navegador",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Přehrávej v prohlížeči",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Stream this recording into browser.",
- "Aufnahme im Browser anzeigen.",
- "",
- "Trasmetti questa registrazione nel browser",
- "",
- "",
- "Diffusez cette cha�ne vers le navigateur.",
- "",
- "Aloita tallenteen suoratoisto",
- "Ogl�daj nagranie w przegl�darce",
- "Reproduce esta grabaci�n en el navegador",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Přehrávej tuto nahrávku v prohlížeči.",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Record this",
- "Diese Sendung aufnehmen",
- "",
- "Registra questa trasmissione",
- "",
- "",
- "Enregistrer cette �mission",
- "",
- "Tallenna ohjelma",
- "Nagraj",
- "Grabar esto",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nahrát",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "loading data",
- "Daten nachladen",
- "",
- "caricamento dati",
- "",
- "",
- "Chargement des donn�es",
- "",
- "ladataan tietoja",
- "�aduj� ...",
- "cargando datos",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "aktualizace údajů",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "an error occured!",
- "Es ist ein Fehler aufgetreten!",
- "",
- "Errore rilevato!",
- "",
- "",
- "Une erreur s'est produite!",
- "",
- "virhe havaittu!",
- "wyst�pi� b��d!",
- "�ha ocurrido un error!",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "problém!",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Request succeeded!",
- "Aktion durchgeführt!",
- "",
- "Richiesta completata!",
- "",
- "",
- "Demande r�ussi!",
- "",
- "Pyyntö onnistui!",
- "Zako�czono powodzeniem!",
- "�B�squeda completada!",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Požadevek úspěšný.",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Request failed!",
- "Aktion fehlgeschlagen!",
- "",
- "Richiesta fallita!",
- "",
- "",
- "�chec de la requ�te!",
- "",
- "Pyyntö epäonnistui!",
- "Zako�czono niepowodzeniem!",
- "�La b�squeda ha fallado!",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Požadavek selhal!",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "January",
- "Januar",
- "",
- "Gennaio",
- "",
- "",
- "Janvier",
- "",
- "Tammikuu",
- "Stycze�",
- "Enero",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "leden",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "February",
- "Februar",
- "",
- "Febbraio",
- "",
- "",
- "F�vrier",
- "",
- "Helmikuu",
- "Luty",
- "Febrero",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "únor",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "March",
- "März",
- "",
- "Marzo",
- "",
- "",
- "Mars",
- "",
- "Maaliskuu",
- "Marzec",
- "Marzo",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "březen",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "April",
- "April",
- "",
- "Aprile",
- "",
- "",
- "Avril",
- "",
- "Huhtikuu",
- "Kwiecie�",
- "Abril",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "duben",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "May",
- "Mai",
- "",
- "Maggio",
- "",
- "",
- "Mai",
- "",
- "Toukokuu",
- "Maj",
- "Mayo",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "květen",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "June",
- "Juni",
- "",
- "Giugno",
- "",
- "",
- "Juin",
- "",
- "Kesäkuu",
- "Czerwiec",
- "Junio",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "červen",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "July",
- "Juli",
- "",
- "Luglio",
- "",
- "",
- "Juillet",
- "",
- "Heinäkuu",
- "Lipiec",
- "Julio",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "červenec",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "August",
- "August",
- "",
- "Agosto",
- "",
- "",
- "Ao�t",
- "",
- "Elokuu",
- "Sierpie�",
- "Agosto",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "srpen",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "September",
- "September",
- "",
- "Settembre",
- "",
- "",
- "Septembre",
- "",
- "Syyskuu",
- "Wrzesie�",
- "Septiembre",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "září",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "October",
- "Oktober",
- "",
- "Ottobre",
- "",
- "",
- "Octobre",
- "",
- "Lokakuu",
- "Pa�dziernik",
- "Octubre",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "říjen",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "November",
- "November",
- "",
- "Novembre",
- "",
- "",
- "Novembre",
- "",
- "Marraskuu",
- "Listopad",
- "Noviembre",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "listopad",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "December",
- "Dezember",
- "",
- "Dicembre",
- "",
- "",
- "D�cembre",
- "",
- "Joulukuu",
- "Grudzie�",
- "Diciembre",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "prosinec",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "retrieving status ...",
- "Hole Status ...",
- "",
- "Rilevamento stato ...",
- "",
- "",
- "mise � jours de l'�tat",
- "",
- "Haetaan tietoja ...",
- "odczytywanie stanu ...",
- "recibiendo estado ...",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "zjišťování stavu...",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Toggle updates on/off.",
- "Statusabfrage ein- oder ausschalten.",
- "",
- "Attiva/disattiva aggiornamenti",
- "",
- "",
- "Activer/D�sactiver l'update du status",
- "",
- "Aseta tilannekysely päälle/pois",
- "W��cz/wy��cz aktualizacj� stanu.",
- "Activar actualizaciones activado/desactivado",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "aktualizovat změny ano/ne.",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "stop playback",
- "Anhalten",
- "",
- "Ferma",
- "",
- "",
- "arr�ter la lecture",
- "",
- "Lopeta toisto",
- "zatrzymaj odtwarzanie",
- "detener reproducci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "ukončit přehrávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "resume playback",
- "Fortsetzen",
- "",
- "Continua",
- "",
- "",
- "continuer",
- "",
- "Jatka toistoa",
- "wzn�w odtwarzanie",
- "continuar reproducci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "pokračovat v přehrávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "pause playback",
- "Pause",
- "",
- "Pausa",
- "",
- "",
- "pause",
- "",
- "Pysäytä toisto",
- "pauzuj odtwarzanie",
- "pausar reproducci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "přerušit přehrávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "fast rewind",
- "Suchlauf rückwärts",
- "",
- "Riavvolgi",
- "",
- "",
- "retour rapide",
- "",
- "Pikakelaus taaksepäin",
- "przewi� do ty�u",
- "rebobinado r�pido",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "rychle zpět",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "fast forward",
- "Suchlauf vorwärts",
- "",
- "Avanza",
- "",
- "",
- "avance rapide",
- "",
- "Pikakelaus eteenpäin",
- "przewi� do przodu",
- "avance r�pido",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "rychle vpřed",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "previous channel",
- "Sender zurück",
- "",
- "Canale precedente",
- "",
- "",
- "cha�ne pr�c�dent",
- "",
- "Edellinen kanava",
- "poprzeni kana�",
- "canal previo",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "předchozí kanál",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "next channel",
- "Sender vor",
- "",
- "Canale successivo",
- "",
- "",
- "Cha�ne suivante",
- "",
- "Seuraava kanava",
- "nast�pny kana�",
- "canal siguiente",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "další kanál",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "No server response!",
- "Der Server antwortet nicht!",
- "",
- "Nessuna risposta dal server!",
- "",
- "",
- "Pas de r�ponse du serveur!",
- "",
- "Palvelin ei vastaa!",
- "Serwer nie odpowiada!",
- "�El servidor no responde!",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Server neodpovídá!",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Failed to update infobox!",
- "Kann Infobox nicht aktualisieren!",
- "",
- "Aggiornamento tabella info fallita!",
- "",
- "",
- "�chec de la mise � jour infobox!",
- "",
- "Infolaatikon päivitys epäonnistui!",
- "B��d poczas aktualizacji panela!",
- "�La actualizaci�n de infobox ha fallado!",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Aktualizace infookna selhala!",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Authors",
- "Autoren",
- "",
- "Autori",
- "",
- "",
- "Auteur",
- "",
- "Tekijät",
- "Autorzy",
- "Autores",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Autoři",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Project Idea",
- "Projekt Idee",
- "",
- "Idea progetto",
- "",
- "",
- "Chef de projet",
- "",
- "Projektin idea",
- "",
- "Idea del proyecto",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "nápad",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Webserver",
- "Webserver",
- "",
- "Server web",
- "",
- "",
- "Serveur Web",
- "",
- "HTTP-palvelin",
- "",
- "Servidor Web",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "web server",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Project leader",
- "Projektleiter",
- "",
- "Capo progetto",
- "",
- "",
- "Chef de projet",
- "",
- "Projektipäällikkö",
- "",
- "Jefe del proyecto",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "vedoucí týmu",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Content",
- "Inhalte",
- "",
- "Contenuti",
- "",
- "",
- "Contenu",
- "",
- "Sisältö",
- "",
- "Contenido",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "obsah",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Graphics",
- "Grafiken",
- "",
- "Grafiche",
- "",
- "",
- "Graphiques",
- "",
- "Grafiikka",
- "",
- "Gr�ficos",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "grafika",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Information",
- "Informationen",
- "",
- "Informazioni",
- "",
- "",
- "Information",
- "",
- "Tietoja",
- "Informacje",
- "Informaci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Informace",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "LIVE version",
- "LIVE Version",
- "",
- "Versione LIVE",
- "",
- "",
- "Version LIVE",
- "",
- "LIVE-versio",
- "Wersja LIVE",
- "Versi�n LIVE",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "LIVE verze",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "VDR version",
- "VDR Version",
- "",
- "Versione VDR",
- "",
- "",
- "Version VDR",
- "",
- "VDR-versio",
- "Wersja VDR",
- "Versi�n VDR",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "VDR verze",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Features",
- "Unterstütze Plugins",
- "",
- "Funzioni",
- "",
- "",
- "Soutien des plugins",
- "",
- "Tuetut laajennokset",
- "Dodatki",
- "Caracter�sticas",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Moduly",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "active",
- "aktiv",
- "",
- "attivo",
- "",
- "",
- "actif",
- "",
- "käytössä",
- "aktywny",
- "activo",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "aktivní",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "required",
- "erforderlich",
- "",
- "richiesto",
- "",
- "",
- "requis",
- "",
- "vaadittava",
- "wymagany",
- "requerido",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "vyżadováno",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Homepage",
- "Homepage",
- "",
- "Pagina principale",
- "",
- "",
- "Page d'accueil",
- "",
- "Kotisivu",
- "Strona domowa",
- "P�gina principal",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Domovská stránka",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Bugs and suggestions",
- "Fehlerberichte und Vorschläge",
- "",
- "Rapporto errori e proposte",
- "",
- "",
- "Bogues et suggestions",
- "",
- "Virheraportoinnit ja parannusehdotukset",
- "B��dy i sugestie",
- "Sugerencias y bugs",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Chyby a připomínky",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "If you encounter any bugs or would like to suggest new features, please use our bugtracker",
- "Für Fehler oder Verbesserungsvorschläge steht unser Bugtracker bereit",
- "",
- "Se riscontri degli errori o vuoi chiedere nuove funzioni utilizza il nostro bugtracker",
- "",
- "",
- "Si vous rencontrez n'importe quels bogue ou voudriez sugg�rer de nouveaux dispositifs, employer notre bugtracker svp",
- "",
- "Voit raportoida sekä virheet että parannusehdotukset suoraan havaintotietokantaan",
- "Je�li znajdziesz jakie� b��dy lub chcia�by� zasugerowa� nowe funkcje, skorzystaj z naszego bugtrackera",
- "Si encuentra alg�n bug o le gustar�a sugerir nuevas caracter�sticas, por favor use nuestro bugtracker",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Pokud odhalíte nějaké chyby, příp. si přejete nové vlastnosti, použijte prosím bugtracker",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "ERROR:",
- "FEHLER:",
- "",
- "ERRORE:",
- "",
- "",
- "ERREUR:",
- "",
- "VIRHE:",
- "B��D:",
- "ERROR",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "CHYBA:",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Deleted recording:",
- "Gelöschte Aufnahme:",
- "",
- "Registrazione eliminata:",
- "Serie's opnemen",
- "",
- "",
- "",
- "Poistettu tallenne:",
- "Usuni�to nagranie:",
- "Grabaci�n borrada:",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Smazaná nahrávka:",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "List of recordings",
- "Liste der Aufnahmen",
- "",
- "Elenco registrazioni",
- "",
- "",
- "Liste des enregistrements",
- "",
- "Tallennelistaus",
- "Lista nagra�",
- "Lista de grabaciones",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Seznam nahrávek",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "No recordings found",
- "Keine Aufnahmen vorhanden",
- "",
- "Nessuna registrazione trovata",
- "",
- "",
- "Pas d'enregistrement",
- "",
- "Tallenteita ei löydy",
- "Nie znaleziono nagra�",
- "No se han encontrado grabaciones",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "žádné nahrávky",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Delete selected",
- "Löschen",
- "",
- "Elimina selezionati",
- "",
- "",
- "",
- "",
- "Poista valitut",
- "Usu� zaznaczone",
- "Borrar selecci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Smazat automatické nahrávání?",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "%a,",
- "%a,",
- "",
- "%a,",
- "",
- "",
- "%a,",
- "",
- "%a",
- "",
- "%a,",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "%a, %x",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "(%d:%02d)",
- "(%d:%02d)",
- "",
- "(%d:%02d)",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Sort by name",
- "Sortiere nach Name",
- "",
- "Ordina per nome",
- "",
- "",
- "",
- "",
- "Järjestä nimen mukaan",
- "Sortuj wed�ug nazwy",
- "Ordenar por nombre",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Sort by date",
- "Sortiere nach Datum",
- "",
- "Ordina per data",
- "",
- "",
- "",
- "",
- "Järjestä päivämäärän mukaan",
- "Sortuj wed�ug daty",
- "Ordenar por fecha",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "do data",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Filter",
- "Filter",
- "",
- "Filtro",
- "",
- "",
- "",
- "",
- "Suodata",
- "Filtr",
- "Filtrar",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Look in recordings titles and subtitles for the given string and display only the matching ones. You may also use perl compatible regular expressions (PCRE).",
- "Suche in Aufnahme-Titel und Untertitel nach dem angegebenen Wort und zeige nur die zutreffenden an. Es sind auch Perl kompatible reguläre Ausdrücke (PCRE) erlaubt.",
- "",
- "Cerca nei titoli e sottotitoli delle registrazioni determinati valori e mostra solo quelli attinenti. Puoi anche usare espressioni regolari compatibili perl (PCRE)",
- "",
- "",
- "",
- "",
- "Suodata tallenteet nimi- ja kuvauskentistä hakusanan avulla. Voit käyttää myös Perl-yhteensopivia säännöllisiä lausekkeita (PCRE).",
- "Poka� nagrania zgodne z wpisanym wyra�eniem (mo�na u�ywa� tak�e wyra�e� regularnych typu PERL).",
- "Buscar en grabaciones t�tulos y subt�tulos la cadena indicada y mostrar �nicamente las que coincidan. Puede tambi�n usar expresiones regulares tipo perl (PCRE).",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Expand all folders",
- "Alle Ordner aufklappen",
- "",
- "Espandi tutte le cartelle",
- "",
- "",
- "",
- "",
- "Avaa kaikki kansiot",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Collapse all folders",
- "Alle Ordner einklappen",
- "",
- "Comprimi tutte le cartelle",
- "",
- "",
- "",
- "",
- "Sulje kaikki kansiot",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Delete this recording from hard disc!",
- "Diese Aufnahme von der Festplatte löschen!",
- "",
- "Elimina questa registrazione dal disco fisso!",
- "",
- "",
- "",
- "",
- "Poista tallenne kovalevyltä!",
- "Usu� to nagranie z twardego dysku!",
- "�Borrar esta grabaci�n del disco duro!",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Smazat nahrávku!",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "play this recording.",
- "Diese Aufnahme abspielen.",
- "",
- "Riproduci questa registrazione",
- "",
- "",
- "lire cette enregistrement.",
- "",
- "Toista tallenne",
- "Odtw�rz nagranie",
- "reproducir esta grabaci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Přehrát nahrávku",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Couldn't find channel or no channels available. Maybe you mistyped your request?",
- "Konnte Kanal nicht finden oder keine Kanäle verfügbar. Ist die Anfrage korrekt?",
- "",
- "Impossibile trovare il canale o i canali disponibili. Hai digitato correttamente la richiesta?",
- "",
- "",
- "N'a pas pu trouver la cha�ne. Votre requ�te est t'elle corr�te? ",
- "",
- "Kanavaa ei löydy. Kirjoititko varmasti oikein?",
- "Nie mo�na odnale�� kana�u lub kana�y nie s� dost�pne.",
- "No se puede encontrar el canal o no hay canales disponibles. �Puede que lo haya escrito de forma err�nea?",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Kanál je nedostupný, nebo neexistuje. Zkontrolujte zadání.",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Snapshot interval",
- "Snapshot-Intervall",
- "",
- "Intervallo schermata",
- "interval",
- "",
- "intervalle",
- "",
- "Kuvien päivitysväli",
- "Okres pomi�dzy migawkami",
- "Intervalo de visionado",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Interval snímků obrazovky",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "No schedules available for this channel",
- "Für diesen Kanal liegen keine EPG-Informationen vor",
- "",
- "Nessun programma disponibile per questo canale",
- "",
- "",
- "Aucune programmation disponible pour cette cha�ne",
- "",
- "Tälle kanavalle ei ole saatavilla ohjelmistoa",
- "Brak listy audycji dla tego kana�u",
- "No hay programaciones disponibles para este canal",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Pro kanál není dostupný program",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Search settings",
- "Einstellungen zur Suche",
- "",
- "Impostazioni ricerca",
- "",
- "",
- "R�glages de recherche",
- "",
- "Hakuasetukset",
- "Ustawienia wyszukiwania",
- "Configuraci�n de b�squedas",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nastavení hledání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Extended search",
- "Erweiterte Suche",
- "",
- "Ricerca avanzata",
- "",
- "",
- "Recherche �tendue",
- "",
- "Laajennettu haku",
- "Wyszukiwanie zaawansowane",
- "B�squeda extendida",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Rozšířené hledání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "no",
- "nein",
- "",
- "no",
- "",
- "",
- "non",
- "",
- "ei",
- "nie",
- "no",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "ne",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Search results",
- "Suchergebnisse",
- "",
- "Risultati ricerca",
- "",
- "",
- "R�sultats",
- "",
- "Hakutulokset",
- "Wyniki wyszykiwania",
- "Resultados de la b�squeda",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Výsledky vyhledávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "No search results",
- "keine Suchergebnisse",
- "",
- "Nessun risultato ricerca",
- "",
- "",
- "pas de r�sultat de recherche",
- "",
- "Ei hakutuloksia",
- "Nic nie znaleziono",
- "B�squeda sin resultados",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "žádné výsledky vyhledávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Expression",
- "Suchbegriff",
- "",
- "Termine ricerca",
- "",
- "",
- "Expression de recherche",
- "",
- "Hakutermi",
- "Wyra�enie",
- "Expresi�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Výraz",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Starts between",
- "Beginnt zwischen",
- "",
- "Inizia tra",
- "",
- "",
- "D�part entre",
- "",
- "Alkaa välillä",
- "Pocz�tek mi�dzy",
- "Iniciar entre",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Začíná mezi",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Toggle search timer actions (in)active",
- "Aktionen des Suchtimers (de)aktivieren",
- "",
- "Attiva/disattiva azioni ricerca timer",
- "",
- "",
- "Actions de la programmation de recherche (in)actives",
- "",
- "Aseta hakuajastin päälle/pois",
- "Aktywuj/deaktywuj timer wyszukiwania",
- "Cambiar acciones de la programaci�n de b�squeda (in)activo",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "(De)Aktivace automatického nahrávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Browse search timer results",
- "Suchtimerergebnisse betrachten",
- "",
- "Visualizza risultati ricerca",
- "",
- "",
- "Passer en revue les r�sultats de programmation de recherche",
- "",
- "Selaa hakutuloksia",
- "Przegl�daj wyniki timera wyszukiwania",
- "Navegar por los resultados de la b�squeda",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Listování výsledky vyhledávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Delete this search timer?",
- "Diesen Suchtimer löschen?",
- "",
- "Eliminare questo timer di ricerca?",
- "",
- "",
- "Effacer cette programmation de recherche?",
- "",
- "Poistetaanko tämä hakuajastin?",
- "Usun�� ten timer wyszukiwania?",
- "Borrar este programador de b�squeda",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Smazat automatické nahrávání?",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Delete search timer",
- "Suchtimer löschen",
- "",
- "Elimina timer di ricerca",
- "",
- "",
- "Effacer la programmation de recherche",
- "",
- "Poista hakuajastin",
- "Usu� timer wyszukiwania",
- "Borrar programador de b�squeda",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Smazat automatické nahrávání?",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Trigger search timer update",
- "Suchtimer-Update starten",
- "",
- "Avvia aggiornamento timer di ricerca",
- "",
- "",
- "Mise � jour des recherches de programmation maintenant",
- "",
- "Päivitä hakuajastimet",
- "Zaprogramuj aktywne timery wyszukiwania",
- "Actualizar las programaciones",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Aktualizovat položky nahrávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Please set login and password!",
- "Bitte Login und Passwort angeben!",
- "",
- "Digita un nome utente e password!",
- "",
- "",
- "Entr�e le nom d'utilisateur et le mot de passe svp!",
- "",
- "Aseta käyttäjätunnus sekä salasana!",
- "Prosz� wpisa� login i has�o!",
- "Por favor introduzca nombre de usuario y contrase�a",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nastavte uživatele a heslo!",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Setup saved.",
- "Einstellungen gespeichert.",
- "",
- "Opzioni salvate.",
- "",
- "",
- "Param�tre sauvegard�",
- "",
- "Asetukset tallennettu.",
- "Zapisano ustawienia.",
- "Configuraci�n guardada",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nastavení uloženo.",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Setup",
- "Einstellungen",
- "",
- "Opzioni",
- "",
- "",
- "Configuration",
- "",
- "Asetukset",
- "Ustawienia",
- "Configuraci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nastavení",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "User management",
- "Benutzerverwaltung",
- "",
- "Gestione utenti",
- "",
- "",
- "",
- "",
- "Käyttäjähallinta",
- "Zarz�dzanie u�ytkownikami",
- "Administraci�n de usuarios",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Local net (no login required)",
- "Lokales Netz (keine Anmeldung notwendig)",
- "",
- "Rete locale (nessun accesso richiesto)",
- "",
- "",
- "R�seau local (non requis)",
- "",
- "Paikallinen verkko (ei autentikointia)",
- "Sie� lokalna (logowanie nie wymagane)",
- "Red local (sin autentificaci�n requerida)",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Lokální síť (bez přilášení)",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Show live logo image",
- "Zeige das Live Logo",
- "",
- "Mostra logo immagine Live",
- "",
- "",
- "Afficher l'image du logo de live",
- "",
- "Näytä Live-logo",
- "Pokazuj logo VDR-Live",
- "Muestra la imagen del logo Live",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Zobrazit logo",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Use ajax technology",
- "Verwende AJAX Technologie",
- "",
- "Utilizza tecnologia Ajax",
- "",
- "",
- "Utilisez la technologie Ajax",
- "",
- "Käytä AJAX-tekniikkaa",
- "U�ywaj technologii ajax",
- "Usar tecnolog�a ajax",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Používat dynamické stránky (ajax)",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Show dynamic VDR information box",
- "Zeige dynamische VDR Status Box",
- "",
- "Mostra tabella informazione dinamica VDR",
- "",
- "",
- "Voir la bo�te d'information dynamique VDR",
- "",
- "Näytä dynaaminen VDR:n infolaatikko",
- "Pokazuj panel informacyjny",
- "Mostrar informaci�n din�mica de VDR box",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Použít dynamický blok informací",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Allow video streaming",
- "Erlaube Videoanzeige im Browser",
- "",
- "Permetti trasmissione video",
- "",
- "",
- "Permettez-streaming vid�o",
- "",
- "Salli lähetyksen suoratoisto",
- "Zezw�l na streamowanie strumienia video",
- "Permitir streaming de v�deo",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Povolit streamování videa",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Streamdev server port",
- "Streamdev Server Port",
- "",
- "Porta server Streamdev",
- "",
- "",
- "Port du serveur streamdev",
- "",
- "Streamdev-palvelimen portti",
- "Port serwera Streamdev",
- "Puerto del servidor streamdev",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Streamdev stream type",
- "Streamdev Stream Typ",
- "",
- "Tipo trasmissione Streamdev",
- "",
- "",
- "Type du serveur streamdev",
- "",
- "Streamdev-lähetteen tyyppi",
- "Typ strumienia Streamdev",
- "Tipo de stream de streamdev",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Streamdev typ streamu",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Add links to IMDb",
- "Füge Links zur IMDb hinzu",
- "",
- "Aggiungi collegamenti a IMDB",
- "",
- "",
- "Ajouter des liens vers IMDb",
- "",
- "Lisää linkit IMDb:hen",
- "Pokazuj odno�niki do IMDb",
- "A�adir enlaces a IMDb",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Přidat odkazy k IMDb",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Additional fixed times in 'What's on?'",
- "Zusätzliche Zeitpunkte in 'Was läuft?'",
- "",
- "Ore aggiuntive fisse menu \"In programmazione\"",
- "",
- "",
- "p�riodes fixes additionnelles dans 'actuellement?'",
- "",
- "Lisäajankohdat 'Menossa?'-sivulle",
- "Lista wyboru godzin w zak�adce 'Teraz w TV'",
- "Horas fijas adicionales en '�Qu� se emite ahora?'",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Přidat časy pro zobrazení v \"Právě se vysílá\"",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Format is HH:MM. Separate multiple times with a semicolon",
- "Format ist HH:MM. Mehrere Zeiten durch Semikolon trennen",
- "",
- "Il formato è HH:MM. Separa le ore multiple con un punto e virgola",
- "",
- "",
- "Le format est HH:MM . Plusieurs p�riodes s�par�es avec un point-virgule",
- "",
- "Käytä HH:MM formaattia ja erota ajankohdat puolipisteellä",
- "Wpisz czasy, kt�re maj� by� wy�wietlane na li�cie wyboru w formacie GG:MM. Oddzielaj poszczeg�lne wpisy �rednikiem.",
- "El formato es HH:MM. Separado m�ltiples veces con un punto y coma",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Formát je HH:MM. Oddělte více časů středníkem",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Channel groups for MultiSchedule",
- "Kanalgruppen für die Zeitleiste",
- "",
- "Gruppi canali per Multi Programmazione",
- "",
- "",
- "La cha�ne n'a pas de programmation",
- "",
- "Kanavaryhmät 'Ohjelmaopas'-sivulle",
- "Grypy kana��w w 'Multipzewodniku'",
- "Grupos de canales para multi programaci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Kanál nemá žádný program",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Separate channels with a comma ',', separate groups with a semi-colon ';'",
- "Trenne Kanäle mit Komma ',', trenne Kanalgruppen mit Semikolon ';'",
- "",
- "Separa canali con una virgola ',', separa gruppi con un punto e virgola ';'",
- "",
- "",
- "",
- "",
- "Käytä pilkkua erottimena kanaville ja puolipistettä kanavaryhmille",
- "Kana�y oddzielaj przecinkiem, grypu kana��w oddzielaj �rednikiem (np. 1,2,7,3,11;4,5,6;21,22,23,40",
- "Canales separados con una coma ',', grupos separados con un punto y coma ';'",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Duration of MultiSchedule in hours",
- "Dauer der Zeitleiste in Stunden",
- "",
- "Durata Multi Programmazione (in ore)",
- "",
- "",
- "",
- "",
- "'Ohjelmaopas'-sivun kesto tunteina",
- "Czas jaki ma obejmowa� Multiprzewodnik (w godzinach) ",
- "Duraci�n de la multi programaci�n en horas",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Show channels without EPG",
- "Zeige Kanäle ohne EPG",
- "",
- "Mostra canali senza EPG",
- "",
- "",
- "",
- "",
- "Näytä ohjelmaoppaattomat kanavat",
- "Pokazuj kana�y bez EPG",
- "Mostrar canales sin EPG",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Start page",
- "Startseite",
- "",
- "Pagina iniziale",
- "",
- "",
- "Page de d�part",
- "",
- "Aloitussivu",
- "Strona startowa",
- "P�gina de inicio",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Startovací stránka",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Theme",
- "Thema",
- "",
- "Tema",
- "",
- "",
- "Th�me",
- "",
- "Ulkoasu",
- "Sk�rka",
- "Tema",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Téma",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Timer conflicts",
- "Timer-Konflikte",
- "",
- "Conflitti timer",
- "Serie's opnemen",
- "",
- "Programmation est active.",
- "",
- "Päällekkäiset ajastimet",
- "Kolizje timer�w",
- "Conflictos de programaciones",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nahrávání bez kolize",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "No timer conflicts",
- "Keine Timer-Konflikte",
- "",
- "Nessun timer in conflitto",
- "Serie's opnemen",
- "",
- "Programmation est active.",
- "",
- "Ei päällekkäisiä ajastimia",
- "Brak kolizji timer�w",
- "No hay conflictos de programaciones",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nahrávání bez kolize",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Timer has a conflict.",
- "Timer hat einen Konflikt.",
- "",
- "Il timer ha un conflitto.",
- "Serie's opnemen",
- "",
- "Programmation est active.",
- "",
- "Päällekkäinen ajastin",
- "Timer jest w kolizji.",
- "La programaci�n tiene un conflicto",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Kolize v nastavení nahrávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Timer is active.",
- "Timer ist aktiv.",
- "",
- "Timer attivo.",
- "",
- "",
- "Programmation est active.",
- "",
- "Aktiivinen ajastin",
- "Timer jest aktywny.",
- "La programaci�n est� activa",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nahrávaní povoleno",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Toggle timer active/inactive",
- "Timer aktiv/inaktiv schalten",
- "",
- "Attiva/disattiva timer",
- "",
- "",
- "Programmation basculer actif/inactif",
- "",
- "Aseta ajastin päälle/pois",
- "Aktywuj/deaktywuj timer.",
- "Cambiar programaci�n activa/inactiva",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Povolit/zrušit nahrávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Delete timer",
- "Timer löschen",
- "",
- "Elimina timer",
- "",
- "",
- "Effacer la programmation",
- "",
- "Poista ajastin",
- "Usu� timer",
- "Borrar programaci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Zrušit nahrávání!",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "No timer defined",
- "Keine Timer vorhanden",
- "",
- "Nessun timer definito",
- "",
- "",
- "Aucune programmation d�finie",
- "",
- "Ajastinta ei ole määritelty",
- "Brak zdefiniowanych timer�w.",
- "No hay definida programaci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nahrávání není nastaveno",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Timer is recording.",
- "Timer zeichnet auf.",
- "",
- "Timer in registrazione.",
- "Serie's opnemen",
- "",
- "Enregistrement de s�rie",
- "",
- "Ajastinta tallennetaan",
- "Trwa nagranie timera.",
- "La programaci�n se est� grabando.",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Probíhá nahrávání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Users",
- "Benutzer",
- "",
- "Utenti",
- "",
- "",
- "Utilisateur",
- "",
- "Käyttäjät",
- "U�ytkownicy",
- "Usuarios",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Uživatelé",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Delete user",
- "Benutzer löschen",
- "",
- "Elimina utente",
- "Serie's opnemen",
- "",
- "Effacer la programmation",
- "",
- "Poista käyttäjä",
- "Usu� u�ytkownika",
- "Borrar usuario",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Smazat uživatele",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "VLC: live video stream",
- "VLC: Video Stream",
- "",
- "VLC: trasmissione video Live",
- "",
- "",
- "VLC: live vid�o stream",
- "",
- "VLC: live-lähetyksen suoratoisto",
- "VLC: streamuj video",
- "VLC: reproducci�n de v�deo en vivo",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "VLC: stream běžícího vysílání",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "VLC: play recording",
- "VLC: Aufnahme abspielen",
- "",
- "VLC: riproduci registrazione",
- "",
- "",
- "Lire l'enregistrement",
- "",
- "VLC: toista tallenne",
- "VLC: odtwarzaj nagranie",
- "VLC: reproducir grabaci�n",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "VLC: streamování nahrávky",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Stop",
- "Stopp",
- "",
- "Ferma",
- "",
- "",
- "Stop",
- "",
- "Pysäytä",
- "Stop",
- "Detener",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Play",
- "Wiedergabe",
- "",
- "Riproduci",
- "",
- "",
- "Lecture",
- "",
- "Toista",
- "Play",
- "Reproducir",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Přehrávat",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Sound on",
- "Ton an",
- "",
- "Volume",
- "",
- "",
- "Son",
- "",
- "Poista mykistys",
- "W��cz g�os",
- "Sonido activado",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Se zvukem",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Sound off",
- "Ton aus",
- "",
- "Muto",
- "",
- "",
- "Coupure du son",
- "",
- "Mykistä",
- "Wycisz g�os",
- "Sonido desactivado",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Bez zvuku",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Fullscreen",
- "Vollbild",
- "",
- "Ingrandisci",
- "",
- "",
- "Plein �cran",
- "",
- "Kokonäyttö",
- "Pe�ny ekran",
- "Pantalla completa",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Celá obrazovka",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Close",
- "Schließen",
- "",
- "Chiudi",
- "",
- "",
- "fermer",
- "",
- "Sulje",
- "Zamknij",
- "Cerrar",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Zavřít",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "VLC media URL",
- "VLC Medien URL",
- "",
- "Collegamento multimediale di VLC",
- "",
- "",
- "VLC lien m�dia ",
- "",
- "VLC:n URL",
- "",
- "medios URL VLC",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "VLC adresa",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "%a, %x",
- "%a, %x",
- "",
- "%a, %x",
- "",
- "",
- "%A, %x",
- "",
- "%a %x",
- "",
- "%a, %x",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "%a, %x",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "What's running on",
- "Was läuft am",
- "",
- "In programmazione alle",
- "",
- "",
- "Qu'y a t'il au programme vers",
- "",
- "Menossa",
- "Teraz w TV:",
- "�Qu� se est� reproduciendo?",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Co právě bězí v ",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "at",
- "um",
- "",
- "alle",
- "",
- "",
- "�",
- "",
- "kello",
- "o godz.",
- "a las",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- " ",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "What's on next?",
- "Was läuft als nächstes?",
- "",
- "In programmazione dopo",
- "",
- "",
- "Quoi faire ensuite?",
- "",
- "Tulossa seuraavaksi?",
- "Nastepnie",
- "�Qu� hay a continuaci�n?",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Co běží potom?",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Favorites",
- "Favoriten",
- "",
- "Preferiti",
- "",
- "",
- "Favoris",
- "",
- "Suosikit",
- "Ulubione",
- "Favoritos",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Oblíbené",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "View the schedule of this channel",
- "Zeige Programm dieses Kanals",
- "",
- "Visualizza scheda programmi del canale",
- "",
- "",
- "Regarder le programme de cette cha�ne",
- "",
- "Näytä ohjelmisto kanavalta",
- "Wy�wietl program dla tego kana�u",
- "Ver la programaci�n de este canal",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Zobraz program kanálu",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { " - ",
- " - ",
- "",
- " - ",
- "",
- "",
- "",
- "",
- "",
- "",
- " - ",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Next",
- "als Nächstes",
- "",
- "Prossimi",
- "",
- "",
- "prochainement",
- "",
- "Seuraavaksi",
- "Nast�pnie",
- "Siguiente",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Další",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "What's on",
- "Was läuft",
- "",
- "In programmazione",
- "",
- "",
- "Actuellement",
- "",
- "Menossa",
- "Audycje",
- "�Qu� hay ahora?",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Co poběží v",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Details view",
- "Ausführliche Ansicht",
- "",
- "Vedi come dettagli",
- "",
- "",
- "Vue d�tail�e",
- "",
- "Ruudukkonäkymä",
- "Widek szczeg�owy",
- "Ver detalles",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Detailní pohled",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "List view",
- "Listenansicht",
- "",
- "Vedi come elenco",
- "",
- "",
- "Vue en liste",
- "",
- "Listanäkymä",
- "Widok listy",
- "Ver lista",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Souhrný pohled",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "Live Interactive VDR Environment",
- "Live Interactive VDR Environment",
- "",
- "Ambiente interattivo LIVE per VDR",
- "",
- "",
- "",
- "",
- "Interaktiivinen VDR-ympäristö",
- "",
- "Entorno interactivo de Live VDR",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
- { "No EPG information available",
- "Keine EPG Daten vorhanden",
- "",
- "Nessuna informazione EPG disponibile",
- "",
- "",
- "",
- "",
- "Ohjelmatietoja ei saatavilla",
- "Brak informacji EPG",
- "No hay informaci�n disponible de la EPG",
- "",
- "",
- "",
- "",
- "",
-#if VDRVERSNUM >= 10302
- "",
-#endif
-#if VDRVERSNUM >= 10307
- "",
-#endif
-#if VDRVERSNUM >= 10313
- "",
-#endif
-#if VDRVERSNUM >= 10316
- "",
-#endif
-#if VDRVERSNUM >= 10342
- "Nejsou dostupné informace o programu",
-#endif
-#if VDRVERSNUM >= 10502
- "",
-#endif
- },
-// END I18N - automatically generated by pot2i18n.pl
- { NULL }
-};
diff --git a/i18n-template.h b/i18n-template.h
deleted file mode 100644
index c430099..0000000
--- a/i18n-template.h
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
- WARNING: automatically generated content. Changes will get lost!
-
- If this file is 'i18n-generated.h' then it *really* is automatically
- generated.
- If this file is 'i18n-template.h' then it is the base for the
- autogeneration of the other file.
-
- This file is part of live.
-*/
-
-const tI18nPhrase Phrases[] = {
-// START I18N
-// END I18N
- { NULL }
-};
diff --git a/i18n.cpp b/i18n.cpp
index f0b14da..5c01b0c 100644
--- a/i18n.cpp
+++ b/i18n.cpp
@@ -1,4978 +1,32 @@
/*
This file has some own functionality and is used as backward
compatibility for vdr prior to version 1.5.7 language support.
+ Backward compatibility to old language support has been dropped
+ on Feb 13, 2015.
*/
#include "i18n.h"
-namespace vdrlive {
-
-I18n& LiveI18n()
-{
- static I18n instance;
- return instance;
-}
-
-I18n::I18n()
- : m_encoding(
-#if VDRVERSNUM >= 10503
- cCharSetConv::SystemCharacterTable() ? cCharSetConv::SystemCharacterTable() : "UTF-8"
-#else
- I18nCharSets()[::Setup.OSDLanguage]
-#endif
- )
+namespace vdrlive
{
- // fix encoding spelling for html standard.
- std::string const iso("iso");
- if (m_encoding.find(iso) != std::string::npos) {
- if (iso.length() == m_encoding.find_first_of("0123456789")) {
- m_encoding.insert(iso.length(), "-");
- }
- }
-}
-
-#if VDRVERSNUM < 10507
-#include "i18n-generated.h"
-#endif
-
-#ifdef NEVER
-const tI18nPhrase Phrases[] = {
- { "Live Interactive VDR Environment",
- "Live Interactive VDR Environment",
- "", // Slovenski
- "", // Italiono
- "", // Nederlands
- "", // Portugu�s
- "Environnement interactif Live VDR", // Fran�ais Patrice Staudt 16.06.2007
- "", // Norsk
- "Live-integroitu VDR-ymp�rist�",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "What's running at",
- "Was l�uft um",
- "", // Slovenski
- "", // Italiono
- "", // Nederlands
- "", // Portugu�s
- "Qu'y a t'il au programme vers", // Fran�ais
- "", // Norsk
- "Menossa kello",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "%I:%M %p", // Time formatting string (Hour:Minute suffix)
- "%H:%M Uhr", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "%H:%M", // Fran�ais
- "", // Norsk
- "%H:%M",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "%I:%M:%S %p", // Time formatting string (Hour:Minute:Seconds suffix)
- "%H:%M:%S Uhr", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "%H:%M:%S", // Fran�ais
- "", // Norsk
- "%H:%M:%S",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "%a, %b %d", // English
- "%a, %d.%m.", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "%a, %d.%m.", // Fran�ais
- "", // Norsk
- "%a, %d.%m.",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "%A, %b %d %Y", // English
- "%A, %d.%m.%Y", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "%A, %d.%m.%Y", // Fran�ais
- "", // Norsk
- "%A, %d.%m.%Y",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "%b %d %y", // English
- "%d.%m.%y", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "%d.%m.%y", // Fran�ais
- "", // Norsk
- "%d.%m.%y",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "%A, %x", // English
- "%A, %x", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "%A, %x", // Fran�ais
- "", // Norsk
- "%A, %x",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Date", // English
- "Datum", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Date", // Fran�ais
- "", // Norsk
- "P�iv�m��r�",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Time", // English
- "Zeit", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Temps", // Fran�ais
- "", // Norsk
- "Kellonaika",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Recordings", // English
- "Aufnahmen", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Enregistrements", // Fran�ais
- "", // Norsk
- "Tallenteet",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "List of recordings", // English
- "Liste der Aufnahmen", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Liste des enregistrements", // Fran�ais
- "", // Norsk
- "Tallennelistaus",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "No recordings found", // English
- "Keine Aufnahmen vorhanden", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Pas d'enregistrement", // Fran�ais
- "", // Norsk
- "Tallenteita ei l�ydy",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "playing recording", // English
- "Wiedergabe", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Lire l'enregistrement", // Fran�ais
- "", // Norsk
- "Toistetaan tallennetta",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "stop playback", // English
- "Anhalten", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "arr�ter la lecture", // Fran�ais
- "", // Norsk
- "Lopeta toisto",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "resume playback", // English
- "Fortsetzen", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "continuer", // Fran�ais
- "", // Norsk
- "Jatka toistoa",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "pause playback", // English
- "Pause", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "pause", // Fran�ais
- "", // Norsk
- "Pys�yt� toisto",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "fast forward", // English
- "Suchlauf vorw�rts", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "avance rapide", // Fran�ais
- "", // Norsk
- "Pikakelaus eteenp�in",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "fast rewind", // English
- "Suchlauf r�ckw�rts", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "retour rapide", // Fran�ais
- "", // Norsk
- "Pikakelaus taaksep�in",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Remote Control", // English
- "Fernbedienung", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "T�l�commande", // Fran�ais
- "", // Norsk
- "Kauko-ohjain",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Interval", // English
- "Intervall", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Intervalle", // Fran�ais
- "", // Norsk
- "P�ivitysv�li",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Save", // English
- "Speichern", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Sauvegarde", // Fran�ais
- "", // Norsk
- "Tallenna",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Menu", // English
- "Men�", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Menu", // Fran�ais
- "", // Norsk
- "Valikko",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Exit", // English
- "Zur�ck", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Quitter", // Fran�ais
- "", // Norsk
- "Poistu",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Back", // English
- "Zur�ck", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Retour", // Fran�ais
- "", // Norsk
- "Takaisin",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Ok", // English
- "Ok", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Ok", // Fran�ais
- "", // Norsk
- "Ok",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Vol+", // English
- "Laut+", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Vol+", // Fran�ais
- "", // Norsk
- "��ni+",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Vol-", // English
- "Laut-", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Vol-", // Fran�ais
- "", // Norsk
- "��ni-",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Mute", // English
- "Stumm", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Muet", // Fran�ais
- "", // Norsk
- "Mykist�",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "New timer", // English
- "Neuen Timer anlegen", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Nouvelle programmation", // Fran�ais
- "", // Norsk
- "Luo uusi ajastin",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Edit", // English
- "�ndern", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Changer", // Fran�ais
- "", // Norsk
- "Muokkaa",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Weekday", // English
- "Wochentag", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Jour de la semaine", // Fran�ais
- "", // Norsk
- "Viikonp�iv�",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Use VPS", // English
- "VPS verwenden", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Utiliser VPS", // Fran�ais
- "", // Norsk
- "K�yt� VPS-toimintoa",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Monday", // English
- "Montag", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Lundi", // Fran�ais
- "", // Norsk
- "Maanantai",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Tuesday", // English
- "Dienstag", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Mardi", // Fran�ais
- "", // Norsk
- "Tiistai",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Wednesday", // English
- "Mittwoch", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Mercredi", // Fran�ais
- "", // Norsk
- "Keskiviikko",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Thursday", // English
- "Donnerstag", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Jeudi", // Fran�ais
- "", // Norsk
- "Torstai",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Friday", // English
- "Freitag", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Vendredi", // Fran�ais
- "", // Norsk
- "Perjantai",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Saturday", // English
- "Samstag", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Samedi", // Fran�ais
- "", // Norsk
- "Lauantai",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Sunday", // English
- "Sonntag", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Dimanche", // Fran�ais
- "", // Norsk
- "Sunnuntai",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Yes", // English
- "Ja", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Oui", // Fran�ais
- "", // Norsk
- "kyll�",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "No", // English
- "Nein", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Non", // Fran�ais
- "", // Norsk
- "ei",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Searchtimers", // English
- "Suchtimer", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Recherche", // Fran�ais
- "", // Norsk
- "Hakuajastimet",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "retrieving status ...", // English
- "Hole Status ...", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "mise � jours de l'�tat", // Fran�ais
- "", // Norsk
- "Haetaan tietoja ...",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "previous channel", // English
- "Sender zur�ck", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "cha�ne pr�c�dent", // Fran�ais
- "", // Norsk
- "Edellinen kanava",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "next channel", // English
- "Sender vor", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Cha�ne suivante", // Fran�ais
- "", // Norsk
- "Seuraava kanava",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Record this", // English
- "Diese Sendung aufnehmen", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Enregistrer cette �mission", // Fran�ais
- "", // Norsk
- "Tallenna ohjelma",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Edit this", // English
- "Timer editieren", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Changer cette programmation", // Fran�ais
- "", // Norsk
- "Muokkaa ajastinta",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Click to view details.", // English
- "F�r Details klicken.", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Clic pour voire les d�tails.", // Fran�ais
- "", // Norsk
- "Napsauta katsoaksesi lis�tietoja.",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "more", // English
- "mehr", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "plus", // Fran�ais
- "", // Norsk
- "lis�tietoja",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Switch to this channel.", // English
- "Zu diesem Kanal umschalten.", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Changer vers cette cha�ne. ", // Fran�ais
- "", // Norsk
- "Vaihda kanavalle",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "play this recording.", // English
- "Diese Aufnahme abspielen.", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "lire cette enregistrement.", // Fran�ais
- "", // Norsk
- "Toista tallenne",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Toggle updates on/off.", // English
- "Statusabfrage ein- oder ausschalten.", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Activer/D�sactiver l'update du status", // Fran�ais
- "", // Norsk
- "Aseta tilannekysely p��lle/pois",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "no epg info for current event!", // English
- "Keine Infos zur Sendung!", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Pas d'infos pour l'�mission!", // Fran�ais
- "", // Norsk
- "L�hetyksell� ei ole ohjelmatietoja!",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "no epg info for current channel!", // English
- "Dieser Kanal hat kein EPG!", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Cette cha�ne n'a pas d'EPG!", // Fran�ais
- "", // Norsk
- "Kanavalla ei ole ohjelmatietoja!",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "no current channel!", // English
- "Keinen Kanal gefunden!", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "pas de cha�ne trouv�!", // Fran�ais
- "", // Norsk
- "Kanavaa ei l�ydy!",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "error retrieving status info!", // English
- "Fehler: Status nicht verf�gbar!", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "erreur: pas d'information d'�tat!", // Fran�ais
- "", // Norsk
- "Virhe: tilannetietoja ei saatavilla!",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "No server response!", // English
- "Der Server antwortet nicht!", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "Palvelin ei vastaa!", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Failed to update infobox!", // English
- "Kann Infobox nicht aktualisieren!", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "Infolaatikon p�ivitys ep�onnistui!", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "loading data", // English
- "Daten nachladen", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "ladataan tiet�ja", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "an error occured!", // English
- "Es ist ein Fehler aufgetreten!", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "virhe havaittu!", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Request succeeded!", // English
- "Aktion durchgef�hrt!", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Request failed!", // English
- "Aktion fehlgeschlagen!", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Show live logo image", // English
- "Zeige das Live Logo", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "N�yt� Live-logo", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Use ajax technology", // English
- "Verwende AJAX Technologie", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "K�yt� AJAX-tekniikkaa", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Show dynamic VDR information box", // English
- "Zeige dynamische VDR Status Box", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "N�yt� dynaaminen VDR:n infolaatikko", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "View the schedule of this channel", // English
- "Zeige Programm dieses Kanals", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Regarder le programme de cette cha�ne", // Fran�ais
- "", // Norsk
- "N�yt� ohjelmisto kanavalta",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "No schedules available for this channel", // English
- "F�r diesen Kanal liegen keine EPG-Informationen vor", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "T�lle kanavalle ei ole saatavilla ohjelmistoa", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Search term", // English
- "Suchbegriff", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Mot cl�", // Fran�ais
- "", // Norsk
- "Hakuehto",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Search mode", // English
- "Suchmodus", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Mode de recherche", // Fran�ais
- "", // Norsk
- "Hakutapa",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "phrase",
- "Ausdruck",
- "",// TODO
- "frase",// Italiano
- "uitdruk",
- "",// TODO
- "Phrase",
- "",// TODO
- "fraasi",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "all words",
- "alle Worte",
- "",// TODO
- "tutte le parole",// Italiano
- "alle woorden",
- "",// TODO
- "tout les mots",
- "",// TODO
- "kaikki sanat",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "at least one word",
- "ein Wort",
- "",// TODO
- "almeno una parola",// Italiano
- "ten minste een woord",
- "",// TODO
- "un mot",
- "",// TODO
- "yksi sana",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
-
- { "match exactly",
- "exakt",
- "",// TODO
- "esatta corrispondenza",// Italiano
- "precies passend",
- "",// TODO
- "correspond exactement",
- "",// TODO
- "t�sm�llinen",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Ees ti
- "",// TODO Dansk
- "",// TODO �esky (Czec h)
-
- },
- { "regular expression",
- "regul�rer Ausdruck",
- "",// TODO
- "espressione regolare",// Italiano
- "reguliere uitdruk king",
- "",// TODO
- "expression r�guliere",
- "",// TODO
- "s��nn�llinen lauseke",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Ees ti
- "",// TODO Dansk
- "",// TODO �esky (Czec h)
- },
- { "Match case",
- "Gro�/klein",
- "",// TODO
- "Mai uscolo/Minuscolo",// Italiano
- "Idem case",
- "",// TODO
- "Maj/Minuscule",
- "",// TODO
- "Huomioi kirjainkoko",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Tolerance",
- "Toleranz",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "Tol�rance",// TODO
- "",// TODO
- "Toleranssi",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "fuzzy",
- "unscharf",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "impr�cis",
- "",// TODO
- "sumea",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Search in", // English
- "Suche in", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Recherche dans", // Fran�ais
- "", // Norsk
- "Hae kentist�",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Title", // English
- "Titel", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Titre", // Fran�ais
- "", // Norsk
- "Otsikko",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Episode", // English
- "Episode", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "�pisode", // Fran�ais
- "", // Norsk
- "Jakson nimi",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Description", // English
- "Beschreibung", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Description", // Fran�ais
- "", // Norsk
- "Kuvaus",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Show schedule of channel", // English
- "Zeige Programm dieses Kanals", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Montrer le programme de la cha�ne", // Fran�ais
- "", // Norsk
- "N�yt� kanavan ohjelmisto",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Use channel",
- "Verw. Kanal",
- "",// TODO
- "Utilizzare canale",// Italiano
- "Gebruik kanaal",
- "",// TODO
- "Utiliser la cha�ne",
- "",// TODO
- "K�yt� kanavaa",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "interval",
- "Bereich",
- "",// TODO
- "intervallo",// Italiano
- "interval",
- "",// TODO
- "intervalle",// Francais Pat
- "",// TODO
- "kyll�",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "channel group",
- "Kanalgruppe",
- "",// TODO
- "gruppo canali",// Italiano
- "kanaal groep",
- "",// TODO
- "Groupe de cha�nes",// Francais Pat
- "",// TODO
- "kanavaryhm�",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "only FTA",
- "ohne PayTV",
- "",// TODO
- "solo FTA",// Italiano
- "alleen FTA",
- "",// TODO
- "sans TV-Payante",
- "",// TODO
- "vapaat kanavat",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "from channel",
- "von Kanal",
- "",// TODO
- "da canale",// Italiano
- "van kanaal",
- "",// TODO
- "de la cha�ne",
- "",// TODO
- "Kanavasta",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "to channel",
- "bis Kanal",
- "",// TODO
- "a canale",// Italiano
- "tot kanaal",
- "",// TODO
- "� la cha�ne",
- "",// TODO
- "Kanavaan",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Use extended EPG info",
- "Verw. erweiterte EPG Info",
- "",// TODO
- "Utilizzare informazioni EPG estesa",// Italiano
- "Gebruik uitgebreide EPG info",
- "",// TODO
- "Utiliser les infos EPG avanc�es",// Francais Pat
- "",// TODO
- "K�yt� laajennettua ohjelmaopasta",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Use time",
- "Verw. Uhrzeit",
- "",// TODO
- "Utilizzare l'orario",// Italiano
- "Gebruik tijd",
- "",// TODO
- "Utiliser l'heure",
- "",// TODO
- "K�yt� aloitusaikaa",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Start after",
- "Start nach",
- "",// TODO
- "Comincia dopo",// Italiano
- "Start na",
- "",// TODO
- "D�part apr�s",
- "",// TODO
- "Aloitusaika aikaisintaan",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Start before",
- "Start vor",
- "",// TODO
- "Comincia prima",// Italiano
- "Start voor",
- "",// TODO
- "D�part avant",
- "",// TODO
- "Aloitusaika viimeist��n",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Use duration",
- "Verw. Dauer",
- "",// TODO
- "Utilizzare durata",// Italiano
- "Gebruiks duur",
- "",// TODO
- "Dur�e d'utilisation",
- "",// TODO
- "K�yt� kestoaikaa",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Max. duration",
- "Max. Dauer",
- "",// TODO
- "Durata Massima",// Italiano
- "Max. duur",
- "",// TODO
- "Dur�e max.",
- "",// TODO
- "Kestoaika enint��n",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Min. duration",
- "Min. Dauer",
- "",// TODO
- "Durata Minima",// Italiano
- "Min. duur",
- "",// TODO
- "Dur�e min.",
- "",// TODO
- "Kestoaika v�hint��n",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Use day of week",
- "Verw. Wochentag",
- "",// TODO
- "Utilizzare giorno della settimana",// Italiano
- "Gebruik dag van de week",
- "",// TODO
- "Utiliser les jours de la semaine",
- "",// TODO
- "K�yt� viikonp�iv��",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Use blacklists",
- "Verw. Ausschlusslisten",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "Utiliser la liste des exclus",
- "",// TODO
- "K�yt� mustia listoja",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Use in favorites menu",
- "In Favoritenmen� verw.",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "Utiliser dans le menu favoris",
- "",// TODO
- "K�yt� suosikkina",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Use as search timer",
- "Als Suchtimer verwenden",
- "",// TODO
- "Utilizzare come timer di ricerca",// Italiano
- "Gebruik als zoek timer",
- "",// TODO
- "Utiliser la recherche",
- "",// TODO
- "K�yt� hakuajastimena",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Record",
- "Aufnehmen",
- "Posnemi",
- "Registra",
- "Opnemen",
- "Gravar",
- "Enregistre",
- "Ta opp",
- "Tallenna",
- "Nagraj",
- "Grabar",
- "�������",
- "Inspelning",
- "�nregistr.",
- "Felvenni",
- "Gravar",
- "������",
- "Snimi",
- "Salvesta",
- "Optag",
- "Nahr�t",
- },
- { "Switch only",
- "Nur umschalten",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "Seulement changer de chaine",
- "",// TODO
- "Kanavanvaihto",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Announce only",
- "Nur ank�ndigen",
- "",// TODO
- "Solo annuncio (niente timer)",// Italiano
- "Alleen aankondigen (geen timer)",
- "",// TODO
- "Annoncer seulement le d�but de l'�mission",
- "",// TODO
- "Muistutus",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Series recording",
- "Serienaufnahme",
- "",// TODO
- "Registrazione serie",// Italiano
- "Serie's opnemen",
- "",// TODO
- "Enregistrement de s�rie",
- "",// TODO
- "Sarjatallennus",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Directory",
- "Verzeichnis",
- "",// TODO
- "Cartella",// Italiano
- "Directory",
- "",// TODO
- "Dossier",
- "",// TODO
- "Hakemisto",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Delete recordings after ... days",
- "Aufn. nach ... Tagen l�schen",
- "",// TODO
- "",// Italiano
- "",// TODO
- "",// TODO
- "Effacer l'enregistrement apr�s ... jours",// Francais Pat
- "",// TODO
- "Poista tallenteet ... p�iv�n j�lkeen",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Keep ... recordings",
- "Behalte ... Aufnahmen",
- "",// TODO
- "",// Italiano
- "",// TODO
- "",// TODO
- "Garder .... les enregistrements",
- "",// TODO
- "S�ilyt� ... tallennetta",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Pause when ... recordings exist",
- "Pause, wenn ... Aufnahmen exist.",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "Pause, lorsque ... l'enregistrement existe.",
- "",// TODO
- "Keskeyt� ... tallenteen j�lkeen",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Switch ... minutes before start",
- "Umschalten ... Minuten vor Start",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "Changer ... minutes avant le d�but",
- "",// TODO
- "Vaihda ... minuuttia ennen alkua",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Avoid repeats",
- "Vermeide Wiederholung",
- "",// TODO
- "",// Italiano
- "",// TODO
- "",// TODO
- "Eviter les r�p�titions",// Francais Pat
- "",// TODO
- "Est� uusinnat",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Allowed repeats",
- "Erlaubte Wiederholungen",
- "",// TODO
- "",// Italiano
- "",// TODO
- "",// TODO
- "R�p�titions autoris�es",// Francais Pat
- "",// TODO
- "Sallittujen uusintojen lukum��r�",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Only repeats within ... days",
- "Nur Wiederh. innerhalb ... Tagen",
- "",// TODO
- "",// Italiano
- "",// TODO
- "",// TODO
- "Que r�p�tition, pendant ... jours",// Francais Pat
- "",// TODO
- "Vain uusinnat ... p�iv�n sis�ll�",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Compare title",
- "Vergleiche Titel",
- "",// TODO
- "",// Italiano
- "",// TODO
- "",// TODO
- "Comparer titres",// Francais Pat
- "",// TODO
- "Vertaa nime�",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Compare subtitle",
- "Vergleiche Untertitel",
- "",// TODO
- "",// Italiano
- "",// TODO
- "",// TODO
- "Comparer les sous-titres",// Francais Pat
- "",// TODO
- "Vertaa jakson nime�",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
-
- },
- { "Compare summary",
- "Vergleiche Beschreibung",
- "",// TODO
- "",// Italiano
- "",// TODO
- "",// TODO
- "Comparer les descriptions",// Francais Pat
- "",// TODO
- "Vertaa kuvausta",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Compare",
- "Vergleiche",
- "",// TODO
- "",// Italiano
- "",// TODO
- "",// TODO
- "Comparer",// Francais Pat
- "",// TODO
- "Vertaa",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Selection",
- "Auswahl",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "Selection",// Francais Pat
- "",// TODO
- "valittu",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "all",
- "alle",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "tous",// Francais Pat
- "",// TODO
- "kaikki",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "Search results",
- "Suchergebnisse",
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "R�sultats", // Fran�ais
- "", // Norsk
- "Hakutulokset",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "No search results",
- "keine Suchergebnisse",
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "pas de r�sultat de recherche", // Fran�ais
- "", // Norsk
- "Ei hakutuloksia",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Power", // English
- "Ausschalten", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "�teindre", // Fran�ais
- "", // Norsk
- "Virta",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Begin Recording", // English
- "Sofortaufnahme", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Enregistrement direct", // Fran�ais
- "", // Norsk
- "Aloita tallennus",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Up", // English
- "Hoch", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Vers le haut", // Fran�ais
- "", // Norsk
- "Yl�s",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Down", // English
- "Runter", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Vers le bas", // Fran�ais
- "", // Norsk
- "Alas",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Left", // English
- "Links", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Gauche", // Fran�ais
- "", // Norsk
- "Vasen",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Right", // English
- "Rechts", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Droite", // Fran�ais
- "", // Norsk
- "Oikea",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Red", // English
- "Rot", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Rouge", // Fran�ais
- "", // Norsk
- "Punainen",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Green", // English
- "Gr�n", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Vert", // Fran�ais
- "", // Norsk
- "Vihre�",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Yellow", // English
- "Gelb", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Jaune", // Fran�ais
- "", // Norsk
- "Keltainen",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Blue", // English
- "Blau", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Bleu", // Fran�ais
- "", // Norsk
- "Sininen",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "New",
- "Neu",
- "Novo",
- "Nuovo",
- "Nieuw",
- "Novo",
- "Nouveau",
- "Ny",
- "Uusi",
- "Nowy",
- "Nuevo",
- "N��",
- "Ny",
- "Nou",
- "�j",
- "Nou",
- "��������",
- "Novi",
- "Uus",
- "Ny",
- "Nov�",
- },
- { "Toggle timer active/inactive",
- "Timer aktiv/inaktiv schalten",
- "",
- "",
- "",
- "",
- "Programmation basculer actif/inactif",
- "",
- "Aseta ajastin p��lle/pois",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- },
- { "Delete timer",
- "Timer l�schen",
- "",
- "",
- "",
- "",
- "Effacer la programmation",
- "",
- "Poista ajastin",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- },
- { "Edit timer",
- "Timer bearbeiten",
- "",
- "",
- "",
- "",
- "Editer la programmation",
- "",
- "Muokkaa ajastinta",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- },
- { "Toggle search timer actions (in)active",
- "Aktionen des Suchtimers (de)aktivieren",
- "",
- "",
- "",
- "",
- "Actions de la programmation de recherche (in)actives",
- "",
- "Aseta hakuajastin p��lle/pois",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- },
- { "Browse search timer results",
- "Suchtimerergebnisse betrachten",
- "",
- "",
- "",
- "",
- "Passer en revue les r�sultats de programmation de recherche",
- "",
- "Selaa hakutuloksia",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- },
- { "Delete search timer",
- "Suchtimer l�schen",
- "",
- "",
- "",
- "",
- "Effacer la programmation de recherche",
- "",
- "Poista hakuajastin",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- },
- { "Expression",
- "Suchbegriff",
- "",
- "",
- "",
- "",
- "Expression de recherche",
- "",
- "Hakutermi",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- },
- { "Edit search timer",
- "Suchtimer bearbeiten",
- "",
- "",
- "",
- "",
- "Editer l'expression de recherche",
- "",
- "Muokkaa hakuajastinta",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- },
- { "New search timer",
- "Neuen Suchtimer anlegen",
- "",
- "",
- "",
- "",
- "Cr�er nouvelle programmation de recherche",
- "",
- "Luo uusi hakuajastin",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- },
- { "Delete this search timer?", // English
- "Diesen Suchtimer l�schen?", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Effacer cette programmation de recherche?", // Fran�ais
- "", // Norsk
- "Poistetaanko t�m� hakuajastin?",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Cancel",
- "Abbrechen",
- "",
- "",
- "",
- "",
- "Interrompre",
- "",
- "Peru",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- },
+ I18n& LiveI18n()
+ {
+ static I18n instance;
+ return instance;
+ }
+
+ I18n::I18n()
+ : m_encoding(cCharSetConv::SystemCharacterTable() ? cCharSetConv::SystemCharacterTable() : "UTF-8")
+ {
+ // fix encoding spelling for html standard.
+ std::string const iso("iso");
+ if (m_encoding.find(iso) != std::string::npos) {
+ if (iso.length() == m_encoding.find_first_of("0123456789")) {
+ m_encoding.insert(iso.length(), "-");
+ }
+ }
+ }
- { "All",
- "Alle",
- "",
- "",
- "",
- "",
- "Tout",
- "",
- "Kaikki",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- "",
- },
- { "Test", // English
- "Testen", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Tester", // Fran�ais
- "", // Norsk
- "Testaa",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "The time the show may start at the latest", // English
- "Die Zeit, zu der die Sendung sp�testens angefangen haben muss", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "L'heure lorsque l'�mission doit commencer au plus tard", // Fran�ais
- "", // Norsk
- "L�hetyksen aloitusaika viimeist��n",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "The time the show may start at the earliest", // English
- "Die Zeit, zu der die Sendung fr�hestens anfangen darf", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "L'heure lorsque l'�mission doit commencer au plus t�t", // Fran�ais
- "", // Norsk
- "L�hetyksen aloitusaika aikaisintaan",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Search text too short - use anyway?",
- "Suchtext zu kurz - trotzdem verwenden?",
- "",// TODO
- "Il testo da cercare � troppo corto. Continuare lo stesso?",// Italiano
- "Zoek tekst tekort - toch gebruiken?",
- "",// TODO
- "Texte de recherche est trop court - l'utiliser quand m�me?",
- "",// TODO
- "Liian suppea hakuehto - etsit��nk� silti?",
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO
- "",// TODO Eesti
- "",// TODO Dansk
- "",// TODO �esky (Czech)
- },
- { "User", // English
- "Benutzer", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Utilisateur", // Fran�ais
- "", // Norsk
- "K�ytt�j�",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Password", // English
- "Passwort", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Mot de passe", // Fran�ais
- "", // Norsk
- "Salasana",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Last channel to display", // English
- "Letzer angezeigter Kanal", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Derni�re cha�ne affich�e", // Fran�ais
- "", // Norsk
- "N�yt� viimeisen� kanava",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Use authentication", // English
- "Authentifizierung nutzen", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Utiliser l'authentification", // Fran�ais
- "", // Norsk
- "K�yt� autentikointia",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "No limit", // English
- "Alle zeigen", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Afficher tout", // Fran�ais
- "", // Norsk
- "ei rajoitusta",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Admin login", // English
- "Admin Login", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Ouverture Admin", // Fran�ais
- "", // Norsk
- "Yll�pidon k�ytt�j�tunnus",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Admin password", // English
- "Admin Passwort", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Mot de passe de l'Admin", // Fran�ais
- "", // Norsk
- "Yll�pidon salasana",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "VDR Live Login", // English
- "VDR Live Login", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Session VDR Live", // Fran�ais
- "", // Norsk
- "VDR Live - sis��nkirjautuminen",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Logout", // English
- "Abmelden", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Fin de la session", // Fran�ais
- "", // Norsk
- "Kirjaudu ulos",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Login", // English
- "Anmelden", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Session", // Fran�ais
- "", // Norsk
- "Kirjaudu sis��n",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Search", // English
- "Suchen", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Recherche", // Fran�ais
- "", // Norsk
- "Etsi",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Extended search", // English
- "Erweiterte Suche", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Recherche �tendue", // Fran�ais
- "", // Norsk
- "Laajennettu haku",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Search settings", // English
- "Einstellungen zur Suche", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "R�glages de recherche", // Fran�ais
- "", // Norsk
- "Hakuasetukset",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "On archive DVD No.", // English
- "Auf Archiv-DVD Nr.", // Deutsch
- "", // Slovenski
- "In archivio DVD No.", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Sur le DVD archive no�", // Fran�ais
- "", // Norsk
- "Arkistointi-DVD:ll� numero",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "On archive HDD No.", // English
- "Auf Archiv-HDD Nr.", // Deutsch
- "", // Slovenski
- "In archivio HDD No.", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Sur le HDD archive no�", // Fran�ais
- "", // Norsk
- "Arkistointi-HDD:ll� numero",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Starts between", // English
- "Beginnt zwischen", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "D�part entre", // Fran�ais
- "", // Norsk
- "Alkaa v�lill�",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Wrong username or password", // English
- "Falscher Benutzername oder Passwort", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Nom de l'utilisateur ou mot de passei sont erron�", // Fran�ais
- "", // Norsk
- "V��r� k�ytt�j�tunnus tai salasana",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Required minimum version of epgsearch: ", // English
- "Ben�tigte Mindestversion von epgsearch: ", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Version minimum requise d'epgsearch: ", // Fran�ais
- "", // Norsk
- "Vaadittava versio EPGSearch-laajennoksesta: ",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "EPGSearch version outdated! Please update.", // English
- "EPGSearch-Version zu alt, bitte updaten!", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Version EPGSearch p�rim�e! Mettre � jour Svp.", // Fran�ais
- "", // Norsk
- "EPGSearch-laajennos pit�isi p�ivitt��!",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Search for repeats.", // English
- "Nach Wiederholungen suchen.", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Recherche de r�p�titions.", // Fran�ais
- "", // Norsk
- "Etsi toistuvat",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "What's on",
- "Was l�uft",
- "", // Slovenski
- "", // Italiono
- "", // Nederlands
- "", // Portugu�s
- "Actuellement", // Fran�ais
- "", // Norsk
- "Menossa",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "What's on?",
- "Was l�uft?",
- "", // Slovenski
- "", // Italiono
- "", // Nederlands
- "", // Portugu�s
- "Actuellement?", // Fran�ais
- "", // Norsk
- "Menossa?",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Now",
- "Jetzt",
- "", // Slovenski
- "", // Italiono
- "", // Nederlands
- "", // Portugu�s
- "maintenant", // Fran�ais
- "", // Norsk
- "Nyt",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Next",
- "als N�chstes",
- "", // Slovenski
- "", // Italiono
- "", // Nederlands
- "", // Portugu�s
- "prochainement", // Fran�ais
- "", // Norsk
- "Seuraavaksi",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "additional fixed times in 'What's on?'",
- "zus�tzliche Zeitpunkte in 'Was l�uft?'",
- "", // Slovenski
- "", // Italiono
- "", // Nederlands
- "", // Portugu�s
- "p�riodes fixes additionnelles dans 'actuellement?'", // Fran�ais
- "", // Norsk
- "Lis�ajankohdat 'Menossa?'-sivulle",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Format is HH:MM. Separate multiple times with a semicolon",
- "Format ist HH:MM. Mehrere Zeiten durch Semikolon trennen",
- "", // Slovenski
- "", // Italiono
- "", // Nederlands
- "", // Portugu�s
- "Le format est HH:MM . Plusieurs p�riodes s�par�es avec un point-virgule", // Fran�ais
- "", // Norsk
- "K�yt� HH:MM formaattia ja erota ajankohdat puolipisteell�",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "at",
- "um",
- "", // Slovenski
- "", // Italiono
- "", // Nederlands
- "", // Portugu�s
- "�", // Fran�ais
- "", // Norsk
- "kello",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Authors",
- "Autoren",
- "", // Slovenski
- "", // Italiono
- "", // Nederlands
- "", // Portugu�s
- "Auteur", // Fran�ais
- "", // Norsk
- "Tekij�t",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Project leader",
- "Projektleiter",
- "", // Slovenski
- "", // Italiono
- "", // Nederlands
- "", // Portugu�s
- "Chef de projet", // Fran�ais
- "", // Norsk
- "Projektip��llikk�",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Webserver",
- "Webserver",
- "", // Slovenski
- "", // Italiono
- "", // Nederlands
- "", // Portugu�s
- "Serveur Web", // Fran�ais
- "", // Norsk
- "HTTP-palvelin",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Content",
- "Inhalte",
- "", // Slovenski
- "", // Italiono
- "", // Nederlands
- "", // Portugu�s
- "Contenu", // Fran�ais
- "", // Norsk
- "Sis�lt�",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Graphics",
- "Grafiken",
- "", // Slovenski
- "", // Italiono
- "", // Nederlands
- "", // Portugu�s
- "Graphiques", // Fran�ais
- "", // Norsk
- "Grafiikka",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Information",
- "Informationen",
- "", // Slovenski
- "", // Italiono
- "", // Nederlands
- "", // Portugu�s
- "Information", // Fran�ais
- "", // Norsk
- "Tietoja",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "LIVE version",
- "LIVE Version",
- "", // Slovenski
- "", // Italiono
- "", // Nederlands
- "", // Portugu�s
- "Version LIVE", // Fran�ais
- "", // Norsk
- "LIVE-versio",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "VDR version",
- "VDR Version",
- "", // Slovenski
- "", // Italiono
- "", // Nederlands
- "", // Portugu�s
- "Version VDR", // Fran�ais
- "", // Norsk
- "VDR-versio",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Features",
- "Unterst�tze Plugins",
- "", // Slovenski
- "", // Italiono
- "", // Nederlands
- "", // Portugu�s
- "Soutien des plugins", // Fran�ais
- "", // Norsk
- "Tuetut laajennokset",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Homepage",
- "Homepage",
- "", // Slovenski
- "", // Italiono
- "", // Nederlands
- "", // Portugu�s
- "Page d'accueil", // Fran�ais
- "", // Norsk
- "Kotisivu",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Couldn't find timer. Maybe you mistyped your request?", // English
- "Konnte Timer nicht finden. Evtl. fehlerhafte Anforderung?", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "N'a pas pu trouver la programmation. Peut-�tre vous avez une erreur dans votre requ�te?", // Fran�ais
- "", // Norsk
- "Ajastinta ei l�ydy. Kirjoititko varmasti oikein?",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Couldn't find channel or no channels available. Maybe you mistyped your request?", // English
- "Konnte Kanal nicht finden oder keine Kan�le verf�gbar. Ist die Anfrage korrekt?", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "N'a pas pu trouver la cha�ne. Votre requ�te est t'elle corr�te? ", // Fran�ais
- "", // Norsk
- "Kanavaa ei l�ydy. Kirjoititko varmasti oikein?",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Page error", // English
- "Seitenfehler", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Erreur de page", // Fran�ais
- "", // Norsk
- "Sivuvirhe",
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "If you encounter any bugs or would like to suggest new features, please use our bugtracker", // English
- "F�r Fehler oder Verbesserungsvorschl�ge steht unser Bugtracker bereit", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Si vous rencontrez n'importe quels bogue ou voudriez sugg�rer de nouveaux dispositifs, employer notre bugtracker svp", // Fran�ais
- "", // Norsk
- "Voit raportoida sek� virheet ett� parannusehdotukset suoraan havaintotietokantaan", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Bugs and suggestions", // English
- "Fehlerberichte und Vorschl�ge", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Bogues et suggestions", // Fran�ais
- "", // Norsk
- "Virheraportoinnit ja parannusehdotukset", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Find more at the Internet Movie Database.", // English
- "Weitere Informationen in der Internet Movie Database.", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Trouver plus d'information du film dans la base de donn�es film IMDB.", // Fran�ais
- "", // Norsk
- "Hae IMDB:st�", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Details view", // English
- "Ausf�hrliche Ansicht", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Vue d�tail�e", // Fran�ais
- "", // Norsk
- "Ruudukkon�kym�", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "List view", // English
- "Listenansicht", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Vue en liste", // Fran�ais
- "", // Norsk
- "Listan�kym�", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "No timer defined", // English
- "Keine Timer vorhanden", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Aucune programmation d�finie", // Fran�ais
- "", // Norsk
- "Ajastinta ei ole m��ritelty", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Start page", // English
- "Startseite", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Page de d�part", // Fran�ais
- "", // Norsk
- "Aloitussivu", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "active", // English
- "aktiv", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "actif", // Fran�ais
- "", // Norsk
- "k�yt�ss�", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "required", // English
- "erforderlich", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "requis", // Fran�ais
- "", // Norsk
- "vaadittava", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Local net (no login required)", // English
- "Lokales Netz (keine Anmeldung notwendig)", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "R�seau local (non requis)", // Fran�ais
- "", // Norsk
- "Paikallinen verkko (ei autentikointia)", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Theme", // English
- "Thema", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Th�me", // Fran�ais
- "", // Norsk
- "Ulkoasu", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Please set login and password!", // English
- "Bitte Login und Passwort angeben!", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Entr�e le nom d'utilisateur et le mot de passe svp!", // Fran�ais
- "", // Norsk
- "Aseta k�ytt�j�tunnus sek� salasana!", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Please set a title for the timer!", // English
- "Bitte einen Titel f�r den Timer angeben!", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Veuillez indiquer un titre pour la programmation!", // Fran�ais
- "", // Norsk
- "Aseta nimi ajastimelle!", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Setup saved.", // English
- "Einstellungen gespeichert.", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Param�tre sauvegard�", // Fran�ais
- "", // Norsk
- "Asetukset tallennettu.", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Trigger search timer update", // English
- "Suchtimer-Update starten", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "Mise � jour des recherches de programmation maintenant", // Fran�ais
- "", // Norsk
- "P�ivit� hakuajastimet", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Electronic program guide information", // English
- "Elektronische Programminformation", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "Ohjelmaoppaan tiedot", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Epg error", // English
- "EPG Fehler", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "Ohjelmaoppaan virhe", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "Auto-delete search timer", // English
- "Suchtimer automatisch l�schen", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu?s
- "", // Fran?ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa?ol
- "", // Greek
- "", // Svenska
- "", // Rom?n?
- "", // Magyar
- "", // Catal?
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "after ... recordings", // English
- "nach ... Aufnahmen", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu?s
- "", // Fran?ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa?ol
- "", // Greek
- "", // Svenska
- "", // Rom?n?
- "", // Magyar
- "", // Catal?
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "after ... days after first rec.", // English
- "nach ... Tagen nach erster Aufnahme", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu?s
- "", // Fran?ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa?ol
- "", // Greek
- "", // Svenska
- "", // Rom?n?
- "", // Magyar
- "", // Catal?
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "user defined", // English
- "benutzer-definiert", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "from date", // English
- "ab Datum", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "to date", // English
- "bis Datum", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "mm/dd/yyyy", // English - Dateformat for Datepicker, use 'mm' for month, 'dd' for day, 'yyyy' for year
- "dd.mm.yyyy", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "January", // English
- "Januar", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "February", // English
- "Februar", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "March", // English
- "M�rz", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "April", // English
- "April", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "May", // English
- "Mai", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "June", // English
- "Juni", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "July", // English
- "Juli", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "August", // English
- "August", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "September", // English
- "September", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "October", // English
- "Oktober", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "November", // English
- "November", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- { "December", // English
- "Dezember", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- /*
- { "", // English
- "", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu�s
- "", // Fran�ais
- "", // Norsk
- "", // Finnish
- "", // Polski
- "", // Espa�ol
- "", // Greek
- "", // Svenska
- "", // Rom�n�
- "", // Magyar
- "", // Catal�
- "", // Russian
- "", // Hrvatski
- "", // Eesti
- "", // Dansk
- "", // Czech
- },
- */
- { 0 },
-};
-#endif
} // namespace vdrlive
diff --git a/i18n.h b/i18n.h
index ce5421f..e584d17 100644
--- a/i18n.h
+++ b/i18n.h
@@ -23,15 +23,6 @@ class I18n
I18n& LiveI18n();
-#if APIVERSNUM < 10507
-extern const tI18nPhrase Phrases[];
-#define trNOOP(s) (s)
-#endif
-
-#if APIVERSNUM < 10509
-#define trVDR(s) tr(s)
-#endif
-
} // namespace vdrlive
#endif // VDR_LIVE_I18N_H
diff --git a/live.cpp b/live.cpp
index 653c6a6..234e66a 100644
--- a/live.cpp
+++ b/live.cpp
@@ -24,9 +24,7 @@ const char *Plugin::VERSION = LIVEVERSION;
const char *Plugin::DESCRIPTION = LIVESUMMARY;
std::string Plugin::m_configDirectory;
-#if APIVERSNUM > 10729
std::string Plugin::m_resourceDirectory;
-#endif
cUsers Users;
@@ -47,22 +45,13 @@ bool Plugin::ProcessArgs(int argc, char *argv[])
bool Plugin::Start(void)
{
m_configDirectory = canonicalize_file_name(cPlugin::ConfigDirectory( PLUGIN_NAME_I18N ));
-#if APIVERSNUM > 10729
m_resourceDirectory = canonicalize_file_name(cPlugin::ResourceDirectory( PLUGIN_NAME_I18N ));
-#endif
-#if VDRVERSNUM < 10507
- RegisterI18n( vdrlive::Phrases );
-#endif
// force status monitor startup
LiveStatusMonitor();
// preload files into file Cache
-#if APIVERSNUM > 10729
PreLoadFileCache(m_resourceDirectory);
-#else
- PreLoadFileCache(m_configDirectory);
-#endif
// load users
Users.Load(AddDirectory(m_configDirectory.c_str(), "users.conf"), true);
diff --git a/live.h b/live.h
index 2b224a1..3239bc7 100644
--- a/live.h
+++ b/live.h
@@ -24,18 +24,14 @@ public:
virtual bool SetupParse(const char *Name, const char *Value);
static std::string const& GetConfigDirectory() { return m_configDirectory; }
-#if APIVERSNUM > 10729
static std::string const& GetResourceDirectory() { return m_resourceDirectory; }
-#endif
private:
static const char *VERSION;
static const char *DESCRIPTION;
static std::string m_configDirectory;
-#if APIVERSNUM > 10729
static std::string m_resourceDirectory;
-#endif
std::auto_ptr< ServerThread > m_thread;
};
diff --git a/pages/edit_searchtimer.ecpp b/pages/edit_searchtimer.ecpp
index 69103a1..d6a0aba 100644
--- a/pages/edit_searchtimer.ecpp
+++ b/pages/edit_searchtimer.ecpp
@@ -341,7 +341,7 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
usevps = searchtimer->UseVPS();
delmode = searchtimer->DelMode();
delaftercountrecs = searchtimer->DelAfterCountRecs();
- delafterdaysoffirstrec = searchtimer->DelAfterDaysOfFirstRec();
+ delafterdaysoffirstrec = searchtimer->DelAfterDaysOfFirstRec();
editsearchtimer = searchtimer;
}
@@ -364,7 +364,7 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
<html>
<head>
<title>VDR Live - <$ editsearchtimer ? tr("Edit search timer") : tr("New search timer") $></title>
-
+
<& pageelems.stylesheets &>
<& pageelems.ajax_js &>
@@ -377,9 +377,9 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
changeduseduration(document.getElementById("useduration"));
changeduseweekday(document.getElementById("useweekday"));
changeduseassearchtimer(document.getElementById("useassearchtimer"));
-% if (extEPGInfos.size() > 0) {
+% if (extEPGInfos.size() > 0) {
changeduseextepginfo(document.getElementById("useextepginfo"));
-% }
+% }
changedavoidrepeats(document.getElementById("avoidrepeats"));
changedblacklistmode(document.getElementById("blacklistmode"));
changeddelmode(document.getElementById("delmode"));
@@ -420,9 +420,9 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
function changeduseassearchtimer(selection)
{
- document.getElementById("searchtimermodesettings").style.display =
+ document.getElementById("searchtimermodesettings").style.display =
(selection.options[selection.selectedIndex].value > 0) ? "block" : "none";
- document.getElementById("useassearchtimeruserdef").style.display =
+ document.getElementById("useassearchtimeruserdef").style.display =
(selection.options[selection.selectedIndex].value == 2) ? "block" : "none";
changedsearchtimermode(document.getElementById("searchtimer_mode"));
}
@@ -431,11 +431,11 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
{
document.getElementById("searchtimermode1settings").style.display =
(selection.options[selection.selectedIndex].value == 0 &
- document.getElementById("useassearchtimer").options[document.getElementById("useassearchtimer").selectedIndex].value > 0) ?
+ document.getElementById("useassearchtimer").options[document.getElementById("useassearchtimer").selectedIndex].value > 0) ?
"block" : "none";
document.getElementById("searchtimermode3settings").style.display =
- (selection.options[selection.selectedIndex].value == 2 &
- document.getElementById("useassearchtimer").options[document.getElementById("useassearchtimer").selectedIndex].value > 0) ?
+ (selection.options[selection.selectedIndex].value == 2 &
+ document.getElementById("useassearchtimer").options[document.getElementById("useassearchtimer").selectedIndex].value > 0) ?
"block" : "none";
}
@@ -758,6 +758,7 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
<option value="0" <{ SELECTIF(searchtimeraction == 0) }> ><$ tr("Record") $></option>
<option value="1" <{ SELECTIF(searchtimeraction == 1) }> ><$ tr("Announce only") $></option>
<option value="2" <{ SELECTIF(searchtimeraction == 2) }> ><$ tr("Switch only") $></option>
+ <option value="4" <{ SELECTIF(searchtimeraction == 4) }> ><$ tr("Announce via email") $></option>
</select>
</div>
<div id="searchtimermode1settings" style="display: none">
diff --git a/pages/ibox.ecpp b/pages/ibox.ecpp
index 4aaa957..84c9615 100644
--- a/pages/ibox.ecpp
+++ b/pages/ibox.ecpp
@@ -44,11 +44,7 @@ TimerConflictNotifier timerNotifier();
infoUrl = "timerconflicts.html";
}
-#if VDRVERSNUM >= 10403
const char* NowReplaying = cReplayControl::NowReplaying();
-#else
- const char* NowReplaying = cControl::Control()?cReplayControl::LastReplayed():NULL;
-#endif
EpgInfoPtr epgEvent;
diff --git a/pages/recstream.ecpp b/pages/recstream.ecpp
index f45d1c4..61a48e1 100644
--- a/pages/recstream.ecpp
+++ b/pages/recstream.ecpp
@@ -15,11 +15,7 @@ using namespace vdrlive;
off_t RecSize(cRecording const * recording)
{
-#if VDRVERSNUM < 10704
- cFileName recFile(recording->FileName(), false, false);
-#else
cFileName recFile(recording->FileName(), false, false, recording->IsPesRecording());
-#endif
off_t recSize = 0;
for (cUnbufferedFile *recData = recFile.Open(); recData; recData = recFile.NextFile()) {
struct stat buf;
@@ -52,11 +48,7 @@ if (recording) {
reply.setContentLengthHeader(RecSize(recording));
reply.setDirectMode();
-#if VDRVERSNUM < 10704
- cFileName recFile(recording->FileName(), false, false);
-#else
cFileName recFile(recording->FileName(), false, false, recording->IsPesRecording());
-#endif
// dsyslog("LIVE: start send video data.");
for (cUnbufferedFile *recData = recFile.Open(); recData; recData = recFile.NextFile()) {
char buffer[KILOBYTE(16)];
diff --git a/pages/setup.ecpp b/pages/setup.ecpp
index 9bb2261..695b26d 100644
--- a/pages/setup.ecpp
+++ b/pages/setup.ecpp
@@ -265,11 +265,7 @@ if (!cUser::CurrentUserHasRightTo(UR_EDITSETUP))
<td class="rightcol"><select name="theme" size="1" id="theme">
<%cpp>
{
-#if APIVERSNUM > 10729
const string dirPath(Plugin::GetResourceDirectory() + "/themes");
-#else
- const string dirPath(Plugin::GetConfigDirectory() + "/themes");
-#endif
cReadDir d(dirPath.c_str());
struct dirent* e;
string parent("..");
diff --git a/po/ca_ES.po b/po/ca_ES.po
index 6e4088f..bc17a64 100644
--- a/po/ca_ES.po
+++ b/po/ca_ES.po
@@ -337,6 +337,9 @@ msgstr ""
msgid "Switch only"
msgstr ""
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr ""
diff --git a/po/cs_CZ.po b/po/cs_CZ.po
index c1c9824..e61fc4b 100644
--- a/po/cs_CZ.po
+++ b/po/cs_CZ.po
@@ -343,6 +343,9 @@ msgstr "Pouze upozornit"
msgid "Switch only"
msgstr "Přepnout"
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr "Nahrávání seriálu"
diff --git a/po/da_DK.po b/po/da_DK.po
index 8041518..0019923 100644
--- a/po/da_DK.po
+++ b/po/da_DK.po
@@ -335,6 +335,9 @@ msgstr ""
msgid "Switch only"
msgstr ""
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr ""
diff --git a/po/de_DE.po b/po/de_DE.po
index 69a0902..cd9df39 100644
--- a/po/de_DE.po
+++ b/po/de_DE.po
@@ -337,6 +337,9 @@ msgstr "Nur ankündigen"
msgid "Switch only"
msgstr "Nur umschalten"
+msgid "Announce via email"
+msgstr "Mit E-Mail ankündigen"
+
msgid "Series recording"
msgstr "Serienaufnahme"
diff --git a/po/el_GR.po b/po/el_GR.po
index 3126fa1..2f7b972 100644
--- a/po/el_GR.po
+++ b/po/el_GR.po
@@ -335,6 +335,9 @@ msgstr ""
msgid "Switch only"
msgstr ""
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr ""
diff --git a/po/es_ES.po b/po/es_ES.po
index b7dfd03..3ad7b80 100644
--- a/po/es_ES.po
+++ b/po/es_ES.po
@@ -335,6 +335,9 @@ msgstr "
msgid "Switch only"
msgstr "�nicamente cambiar"
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr "Grabaci�n de series"
diff --git a/po/et_EE.po b/po/et_EE.po
index aa303b1..75f3836 100644
--- a/po/et_EE.po
+++ b/po/et_EE.po
@@ -335,6 +335,9 @@ msgstr ""
msgid "Switch only"
msgstr ""
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr ""
diff --git a/po/fi_FI.po b/po/fi_FI.po
index d89678e..b65fd91 100644
--- a/po/fi_FI.po
+++ b/po/fi_FI.po
@@ -335,6 +335,9 @@ msgstr "Muistutus"
msgid "Switch only"
msgstr "Kanavanvaihto"
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr "Sarjatallennus"
diff --git a/po/fr_FR.po b/po/fr_FR.po
index 3a82cb4..5fd15e2 100644
--- a/po/fr_FR.po
+++ b/po/fr_FR.po
@@ -342,6 +342,9 @@ msgstr "Annoncer seulement le d
msgid "Switch only"
msgstr "Seulement changer de chaine"
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr "Enregistrement de s�rie"
diff --git a/po/hr_HR.po b/po/hr_HR.po
index f90ed21..0a0c81c 100644
--- a/po/hr_HR.po
+++ b/po/hr_HR.po
@@ -336,6 +336,9 @@ msgstr ""
msgid "Switch only"
msgstr ""
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr ""
diff --git a/po/hu_HU.po b/po/hu_HU.po
index 366ebfa..bbc72bf 100644
--- a/po/hu_HU.po
+++ b/po/hu_HU.po
@@ -336,6 +336,9 @@ msgstr ""
msgid "Switch only"
msgstr ""
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr ""
diff --git a/po/it_IT.po b/po/it_IT.po
index b5a061d..7ae27e4 100644
--- a/po/it_IT.po
+++ b/po/it_IT.po
@@ -341,6 +341,9 @@ msgstr "Solo annuncio"
msgid "Switch only"
msgstr "Solo cambio canale"
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr "Registrazioni in serie"
diff --git a/po/lt_LT.po b/po/lt_LT.po
index 36da893..40d5c73 100644
--- a/po/lt_LT.po
+++ b/po/lt_LT.po
@@ -337,6 +337,9 @@ msgstr "Tik pristato"
msgid "Switch only"
msgstr "Tik pereina"
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr "Įrašai"
diff --git a/po/nl_NL.po b/po/nl_NL.po
index 0541ed1..1caa755 100644
--- a/po/nl_NL.po
+++ b/po/nl_NL.po
@@ -341,6 +341,9 @@ msgstr "Alleen aankondigen (geen timer)"
msgid "Switch only"
msgstr ""
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr "Serie's opnemen"
diff --git a/po/nn_NO.po b/po/nn_NO.po
index 6f72e37..a6d27df 100644
--- a/po/nn_NO.po
+++ b/po/nn_NO.po
@@ -336,6 +336,9 @@ msgstr ""
msgid "Switch only"
msgstr ""
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr ""
diff --git a/po/pl_PL.po b/po/pl_PL.po
index 3029511..dc62c2e 100644
--- a/po/pl_PL.po
+++ b/po/pl_PL.po
@@ -335,6 +335,9 @@ msgstr "Tylko powiadomienie"
msgid "Switch only"
msgstr "Tylko prze��cz"
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr "Nagrywanie serii"
diff --git a/po/pt_PT.po b/po/pt_PT.po
index aaafdf2..977f5d0 100644
--- a/po/pt_PT.po
+++ b/po/pt_PT.po
@@ -335,6 +335,9 @@ msgstr ""
msgid "Switch only"
msgstr ""
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr ""
diff --git a/po/ro_RO.po b/po/ro_RO.po
index 1d94c22..887355b 100644
--- a/po/ro_RO.po
+++ b/po/ro_RO.po
@@ -336,6 +336,9 @@ msgstr ""
msgid "Switch only"
msgstr ""
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr ""
diff --git a/po/ru_RU.po b/po/ru_RU.po
index e61a1e5..7f0aa3d 100644
--- a/po/ru_RU.po
+++ b/po/ru_RU.po
@@ -335,6 +335,9 @@ msgstr "Только объявлять"
msgid "Switch only"
msgstr "Только переключать"
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr "Запись серий"
diff --git a/po/sk_SK.po b/po/sk_SK.po
index 2dc3fc4..3c73729 100644
--- a/po/sk_SK.po
+++ b/po/sk_SK.po
@@ -336,6 +336,9 @@ msgstr "Len oznamova
msgid "Switch only"
msgstr "Iba prep�na�"
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr "S�riov� nahr�vky"
diff --git a/po/sl_SI.po b/po/sl_SI.po
index 17df34c..d9cac32 100644
--- a/po/sl_SI.po
+++ b/po/sl_SI.po
@@ -336,6 +336,9 @@ msgstr ""
msgid "Switch only"
msgstr ""
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr ""
diff --git a/po/sv_SE.po b/po/sv_SE.po
index ffb9aff..98c0010 100644
--- a/po/sv_SE.po
+++ b/po/sv_SE.po
@@ -336,6 +336,9 @@ msgstr ""
msgid "Switch only"
msgstr ""
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr ""
diff --git a/po/tr_TR.po b/po/tr_TR.po
index 92bd955..3487040 100644
--- a/po/tr_TR.po
+++ b/po/tr_TR.po
@@ -336,6 +336,9 @@ msgstr ""
msgid "Switch only"
msgstr ""
+msgid "Announce via email"
+msgstr ""
+
msgid "Series recording"
msgstr ""
diff --git a/recman.cpp b/recman.cpp
index ade3d93..d5d9f29 100644
--- a/recman.cpp
+++ b/recman.cpp
@@ -137,11 +137,7 @@ namespace vdrlive {
return;
//dsyslog("[LIVE]: deleting resume '%s'", recording->Name());
-#if VDRVERSNUM < 10704
- cResumeFile ResumeFile(recording->FileName());
-#else
cResumeFile ResumeFile(recording->FileName(), recording->IsPesRecording());
-#endif
ResumeFile.Delete();
}
@@ -387,43 +383,14 @@ namespace vdrlive {
time_t RecordingsItemRec::StartTime() const
{
-#if VDRVERSNUM < 10726
- return m_recording->start;
-#else
return m_recording->Start();
-#endif
}
long RecordingsItemRec::Duration() const
{
long RecLength = 0;
if (!m_recording->FileName()) return 0;
-#if VDRVERSNUM < 10704
- cString filename = cString::sprintf("%s%s", m_recording->FileName(), INDEXFILESUFFIX);
- if (*filename) {
- if (access(filename, R_OK) == 0) {
- struct stat buf;
- if (stat(filename, &buf) == 0) {
- struct tIndex { int offset; uchar type; uchar number; short reserved; };
- int delta = buf.st_size % sizeof(tIndex);
- if (delta) {
- delta = sizeof(tIndex) - delta;
- esyslog("ERROR: invalid file size (%ld) in '%s'", buf.st_size, *filename);
- }
- RecLength = (buf.st_size + delta) / sizeof(tIndex) / SecondsToFrames(60);
- }
- }
- }
-#elif VDRVERSNUM < 10721
- // open index file for reading only
- cIndexFile *index = new cIndexFile(m_recording->FileName(), false, m_recording->IsPesRecording());
- if (index && index->Ok()) {
- RecLength = (int) (index->Last() / SecondsToFrames(60, m_recording->FramesPerSecond()));
- }
- delete index;
-#else
return m_recording->LengthInSeconds() / 60;
-#endif
if (RecLength == 0) {
cString lengthFile = cString::sprintf("%s%s", m_recording->FileName(), LENGTHFILESUFFIX);
ifstream length(*lengthFile);
@@ -669,11 +636,9 @@ namespace vdrlive {
}
m_pDirVec->push_back(""); // always add root directory
-#if APIVERSNUM >= 10712
for (cNestedItem* item = Folders.First(); item; item = Folders.Next(item)) { // add folders.conf entries
InjectFoldersConf(item);
}
-#endif
for (cRecording* recording = Recordings.First(); recording; recording = Recordings.Next(recording)) {
string name = recording->Name();
size_t found = name.find_last_of("~");
@@ -693,7 +658,6 @@ namespace vdrlive {
}
}
-#if APIVERSNUM >= 10712
void DirectoryList::InjectFoldersConf(cNestedItem * folder, string parent)
{
if (!folder) {
@@ -711,7 +675,6 @@ namespace vdrlive {
InjectFoldersConf(item, dir);
}
}
-#endif
/**
* Implementation of class DirectoryListPtr:
diff --git a/recman.h b/recman.h
index e239b0b..abc5359 100644
--- a/recman.h
+++ b/recman.h
@@ -357,9 +357,8 @@ namespace vdrlive {
private:
DirectoryList(RecordingsManagerPtr recManPtr);
-#if APIVERSNUM >= 10712
void InjectFoldersConf(cNestedItem * folder, std::string parent = "");
-#endif
+
public:
typedef std::list< std::string > DirVecType;
diff --git a/tasks.cpp b/tasks.cpp
index 2a2b8d5..5f73ba6 100644
--- a/tasks.cpp
+++ b/tasks.cpp
@@ -19,11 +19,7 @@ using namespace std::tr1::placeholders;
const char* NowReplaying()
{
-#if VDRVERSNUM >= 10403
return cReplayControl::NowReplaying();
-#else
- return cControl::Control()?cReplayControl::LastReplayed():NULL;
-#endif
}
StickyTask::StickyTask()
@@ -60,15 +56,9 @@ void PlayRecordingTask::Action()
const char *current = NowReplaying();
if (!current || (0 != strcmp(current, recording->FileName()))) {
-#if VDRVERSNUM >= 10728
cReplayControl::SetRecording( 0 );
cControl::Shutdown();
cReplayControl::SetRecording( recording->FileName() );
-#else
- cReplayControl::SetRecording( 0, 0 );
- cControl::Shutdown();
- cReplayControl::SetRecording( recording->FileName(), recording->Title() );
-#endif
cControl::Launch( new cReplayControl );
cControl::Attach();
}
@@ -128,11 +118,7 @@ void StopRecordingTask::Action()
return;
}
-#if VDRVERSNUM >= 10728
cReplayControl::SetRecording( 0 );
-#else
- cReplayControl::SetRecording( 0, 0 );
-#endif
cControl::Shutdown();
}
diff --git a/timers.cpp b/timers.cpp
index de303d4..3bcbe1b 100644
--- a/timers.cpp
+++ b/timers.cpp
@@ -97,11 +97,7 @@ namespace vdrlive {
string SortedTimers::GetTimerDays(cTimer const& timer)
{
string currentDay = timer.WeekDays() > 0 ?
-#if VDRVERSNUM < 10503
- *cTimer::PrintDay(0, timer.WeekDays()) :
-#else
*cTimer::PrintDay(0, timer.WeekDays(), true) :
-#endif
FormatDateTime(tr("%A, %x"), timer.Day());
return currentDay;
}
diff --git a/tntconfig.cpp b/tntconfig.cpp
index e4937ec..123ee78 100644
--- a/tntconfig.cpp
+++ b/tntconfig.cpp
@@ -31,13 +31,8 @@ namespace vdrlive {
namespace {
std::string GetResourcePath()
{
-#if APIVERSNUM > 10729
string resourceDir(Plugin::GetResourceDirectory());
return resourceDir;
-#else
- string configDir(Plugin::GetConfigDirectory());
- return configDir;
-#endif
}
void MapUrl(tnt::Tntnet & app, const char *rule, const char * component, std::string const & instPath, const char * pathInfo, const char * mime_type)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-vdr-dvb/vdr-plugin-live.git
More information about the pkg-vdr-dvb-changes
mailing list