diff --git a/.gitignore b/.gitignore index 08aca6a64..6772de412 100644 --- a/.gitignore +++ b/.gitignore @@ -27,6 +27,7 @@ INSTALL .*.swp ### editor crap +*.orig *.rej *~ diff --git a/acinclude.m4 b/acinclude.m4 index f644897db..3cefc2260 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -154,6 +154,9 @@ TUXBOX_APPS_DIRECTORY_ONE(libdir,LIBDIR,libdir,/lib,/tuxbox, TUXBOX_APPS_DIRECTORY_ONE(plugindir,PLUGINDIR,libdir,/lib,/tuxbox/plugins, [--with-plugindir=PATH ],[where to find the plugins]) +TUXBOX_APPS_DIRECTORY_ONE(luaplugindir,LUAPLUGINDIR,libdir,/lib,/tuxbox/luaplugins, + [--with-luaplugindir=PATH ],[where to find Lua plugins]) + TUXBOX_APPS_DIRECTORY_ONE(ucodedir,UCODEDIR,localstatedir,/var,/tuxbox/ucodes, [--with-ucodedir=PATH ],[where to find the ucodes]) @@ -181,6 +184,7 @@ AC_SUBST(GAMESDIR) AC_SUBST(LIBDIR) AC_SUBST(MNTDIR) AC_SUBST(PLUGINDIR) +AC_SUBST(LUAPLUGINDIR) AC_SUBST(UCODEDIR) AC_SUBST(THEMESDIR) AC_SUBST(ICONSDIR) @@ -216,7 +220,9 @@ AC_ARG_WITH(dvbincludes, [DVBINCLUDES="$withval"],[DVBINCLUDES=""]) if test "$DVBINCLUDES"; then - CPPFLAGS="$CPPFLAGS -I$DVBINCLUDES" + CPPFLAGS="-I$DVBINCLUDES $CPPFLAGS" + CFLAGS="-I$DVBINCLUDES $CFLAGS" + CXXFLAGS="-I$DVBINCLUDES $CXXFLAGS" fi AC_CHECK_HEADERS(ost/dmx.h,[ @@ -233,9 +239,15 @@ AC_CHECK_HEADERS(linux/dvb/version.h,[ version DVB_API_VERSION ]])]) DVB_API_VERSION=`(eval "$ac_cpp conftest.$ac_ext") 2>&AS_MESSAGE_LOG_FD | $EGREP "^version" | sed "s,version\ ,,"` + + AC_LANG_CONFTEST([AC_LANG_SOURCE([[ +#include +version DVB_API_VERSION_MINOR + ]])]) + DVB_API_VERSION_MINOR=`(eval "$ac_cpp conftest.$ac_ext") 2>&AS_MESSAGE_LOG_FD | $EGREP "^version" | sed "s,version\ ,,"` rm -f conftest* - AC_MSG_NOTICE([found dvb version $DVB_API_VERSION]) + AC_MSG_NOTICE([found dvb version $DVB_API_VERSION.$DVB_API_VERSION_MINOR]) ]) fi @@ -245,6 +257,12 @@ if test "$DVB_API_VERSION"; then else AC_MSG_ERROR([can't find dvb headers]) fi + +if test "$DVB_API_VERSION_MINOR"; then + AC_DEFINE_UNQUOTED(HAVE_DVB_API_VERSION_MINOR,$DVB_API_VERSION_MINOR,[Define to the minor version of the dvb api]) +else + AC_DEFINE_UNQUOTED(HAVE_DVB_API_VERSION_MINOR,0,[Define to the minor version of the dvb api]) +fi ]) AC_DEFUN([TUXBOX_APPS_CAPTURE],[ diff --git a/configure.ac b/configure.ac index 92a11dfb5..a2f903f74 100644 --- a/configure.ac +++ b/configure.ac @@ -3,6 +3,7 @@ AM_INIT_AUTOMAKE([1.0.1 nostdinc]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES]) TUXBOX_APPS +TUXBOX_APPS_DVB TUXBOX_APPS_DIRECTORY TUXBOX_APPS_PKGCONFIG TUXBOX_BOXTYPE @@ -116,6 +117,7 @@ PKG_CHECK_MODULES([LUA], [lua >= 5.2], echo "lua >= 5.2 found", [ AC_DEFINE(STATIC_LUAPOSIX,1,[Define to 1 for static lua build.]) ]) ]) +TUXBOX_APPS_LIB_PKGCONFIG(SIGC,sigc++-2.0) #TUXBOX_APPS_LIB_PKGCONFIG(CONFIGFILE,tuxbox-configfile) #TUXBOX_APPS_LIB_PKGCONFIG(CONNECTION,tuxbox-connection) @@ -208,9 +210,12 @@ AC_ARG_ENABLE(pip, [AC_DEFINE(ENABLE_PIP,1,[enable picture in picture support])]) -AM_CONDITIONAL(ENABLE_TEST_MENU,test "$enable_testmenu" = "yes") -if test "$enable_testmenu" = "yes"; then - AC_DEFINE(ENABLE_TEST_MENU,1,[include test menu in neutrino main menu - not recommended for general users!]) +AC_ARG_ENABLE(testing, + AS_HELP_STRING(--enable-testing,include devel code parts for neutrino tests)) + +AM_CONDITIONAL(ENABLE_TESTING,test "$enable_testing" = "yes") +if test "$enable_testing" = "yes"; then + AC_DEFINE(ENABLE_TESTING,1,[include devel code parts for neutrino tests - not recommended for general users!]) fi @@ -274,6 +279,7 @@ lib/libtuxtxt/Makefile lib/libdvbsub/Makefile lib/libupnpclient/Makefile lib/libiw/Makefile +lib/luaclient/Makefile src/lcddisplay/Makefile src/nhttpd/Makefile src/nhttpd/web/Makefile diff --git a/data/cables.xml b/data/cables.xml index 3220eb5f9..b60fd0001 100644 --- a/data/cables.xml +++ b/data/cables.xml @@ -1438,4 +1438,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/icons/0-green.png b/data/icons/0-green.png new file mode 100644 index 000000000..716637c7a Binary files /dev/null and b/data/icons/0-green.png differ diff --git a/data/icons/0-red.png b/data/icons/0-red.png new file mode 100644 index 000000000..a99393a3f Binary files /dev/null and b/data/icons/0-red.png differ diff --git a/data/icons/1-green.png b/data/icons/1-green.png new file mode 100644 index 000000000..1ad8fee1b Binary files /dev/null and b/data/icons/1-green.png differ diff --git a/data/icons/1-red.png b/data/icons/1-red.png new file mode 100644 index 000000000..690a5154c Binary files /dev/null and b/data/icons/1-red.png differ diff --git a/data/icons/2-green.png b/data/icons/2-green.png new file mode 100644 index 000000000..3679e7511 Binary files /dev/null and b/data/icons/2-green.png differ diff --git a/data/icons/2-red.png b/data/icons/2-red.png new file mode 100644 index 000000000..05845207e Binary files /dev/null and b/data/icons/2-red.png differ diff --git a/data/icons/3-green.png b/data/icons/3-green.png new file mode 100644 index 000000000..3cb2d23fa Binary files /dev/null and b/data/icons/3-green.png differ diff --git a/data/icons/3-red.png b/data/icons/3-red.png new file mode 100644 index 000000000..06644bb00 Binary files /dev/null and b/data/icons/3-red.png differ diff --git a/data/icons/4-green.png b/data/icons/4-green.png new file mode 100644 index 000000000..4b690273d Binary files /dev/null and b/data/icons/4-green.png differ diff --git a/data/icons/4-red.png b/data/icons/4-red.png new file mode 100644 index 000000000..c2508e59e Binary files /dev/null and b/data/icons/4-red.png differ diff --git a/data/icons/5-green.png b/data/icons/5-green.png new file mode 100644 index 000000000..bf74eeed9 Binary files /dev/null and b/data/icons/5-green.png differ diff --git a/data/icons/5-red.png b/data/icons/5-red.png new file mode 100644 index 000000000..cc9963238 Binary files /dev/null and b/data/icons/5-red.png differ diff --git a/data/icons/6-green.png b/data/icons/6-green.png new file mode 100644 index 000000000..b8376864a Binary files /dev/null and b/data/icons/6-green.png differ diff --git a/data/icons/6-red.png b/data/icons/6-red.png new file mode 100644 index 000000000..e34639e11 Binary files /dev/null and b/data/icons/6-red.png differ diff --git a/data/icons/7-green.png b/data/icons/7-green.png new file mode 100644 index 000000000..a02844aa2 Binary files /dev/null and b/data/icons/7-green.png differ diff --git a/data/icons/7-red.png b/data/icons/7-red.png new file mode 100644 index 000000000..b33f57e85 Binary files /dev/null and b/data/icons/7-red.png differ diff --git a/data/icons/8-green.png b/data/icons/8-green.png new file mode 100644 index 000000000..a87ae15c0 Binary files /dev/null and b/data/icons/8-green.png differ diff --git a/data/icons/8-red.png b/data/icons/8-red.png new file mode 100644 index 000000000..000fc524b Binary files /dev/null and b/data/icons/8-red.png differ diff --git a/data/icons/9-green.png b/data/icons/9-green.png new file mode 100644 index 000000000..8959902e8 Binary files /dev/null and b/data/icons/9-green.png differ diff --git a/data/icons/9-red.png b/data/icons/9-red.png new file mode 100644 index 000000000..01e66e508 Binary files /dev/null and b/data/icons/9-red.png differ diff --git a/data/icons/Makefile.am b/data/icons/Makefile.am index 28076ef7d..43eceae09 100644 --- a/data/icons/Makefile.am +++ b/data/icons/Makefile.am @@ -110,6 +110,7 @@ install_DATA += \ hint_osd.png \ hint_personalize.png \ hint_picview.png \ + hint_plugin.png \ hint_protection.png \ hint_radiomode.png \ hint_reboot.png \ @@ -136,6 +137,7 @@ install_DATA += \ icon_movieplayer.png \ icon_red.png \ icon_yellow.png \ + icon_ytplay.png \ important.png \ info.png \ info_small.png \ @@ -159,6 +161,8 @@ install_DATA += \ mp_f-skip.png \ mp_pause.png \ mp_play.png \ + mp_play_repeat_all.png \ + mp_play_repeat_track.png \ mp3.jpg \ mp3.png \ mp3-0.jpg \ diff --git a/data/icons/hint_nkplay.png b/data/icons/hint_nkplay.png new file mode 100644 index 000000000..4ea007091 Binary files /dev/null and b/data/icons/hint_nkplay.png differ diff --git a/data/icons/hint_plugin.png b/data/icons/hint_plugin.png new file mode 100644 index 000000000..4e53b6426 Binary files /dev/null and b/data/icons/hint_plugin.png differ diff --git a/data/icons/hint_rass.png b/data/icons/hint_rass.png new file mode 100644 index 000000000..e9f5462da Binary files /dev/null and b/data/icons/hint_rass.png differ diff --git a/data/icons/hint_spark.png b/data/icons/hint_spark.png new file mode 100644 index 000000000..f10fca62e Binary files /dev/null and b/data/icons/hint_spark.png differ diff --git a/data/icons/icon_nkplay.png b/data/icons/icon_nkplay.png new file mode 100644 index 000000000..ce3b052f2 Binary files /dev/null and b/data/icons/icon_nkplay.png differ diff --git a/data/icons/icon_ytplay.png b/data/icons/icon_ytplay.png new file mode 100644 index 000000000..858f4ffd4 Binary files /dev/null and b/data/icons/icon_ytplay.png differ diff --git a/data/icons/longpress.png b/data/icons/longpress.png new file mode 100644 index 000000000..6b0c3db18 Binary files /dev/null and b/data/icons/longpress.png differ diff --git a/data/icons/mp3.jpg b/data/icons/mp3.jpg index e7457c980..c5d59fd0d 100644 Binary files a/data/icons/mp3.jpg and b/data/icons/mp3.jpg differ diff --git a/data/icons/mp_play_repeat_all.png b/data/icons/mp_play_repeat_all.png new file mode 100644 index 000000000..415c530b9 Binary files /dev/null and b/data/icons/mp_play_repeat_all.png differ diff --git a/data/icons/mp_play_repeat_track.png b/data/icons/mp_play_repeat_track.png new file mode 100644 index 000000000..04a8f71bd Binary files /dev/null and b/data/icons/mp_play_repeat_track.png differ diff --git a/data/icons/radiomode.jpg b/data/icons/radiomode.jpg index 7dff6838e..9dc8b8dc5 100644 Binary files a/data/icons/radiomode.jpg and b/data/icons/radiomode.jpg differ diff --git a/data/icons/rass.png b/data/icons/rass.png new file mode 100644 index 000000000..ce6a80a78 Binary files /dev/null and b/data/icons/rass.png differ diff --git a/data/icons/scan.jpg b/data/icons/scan.jpg index e0c8faa95..72bd7b5a3 100644 Binary files a/data/icons/scan.jpg and b/data/icons/scan.jpg differ diff --git a/data/icons/warning.png b/data/icons/warning.png new file mode 100644 index 000000000..374193eec Binary files /dev/null and b/data/icons/warning.png differ diff --git a/data/locale/deutsch.locale b/data/locale/deutsch.locale index e43d94c1f..e8870129e 100644 --- a/data/locale/deutsch.locale +++ b/data/locale/deutsch.locale @@ -128,6 +128,7 @@ audiomenu.pref_subs_head Untertitelwahl audiomenu.spdif_dd Dolby Digital über S/PDIF audiomenu.stereo stereo audiomenu.volume_adjust Lautstärke ändern, in % +audiomenu.volume_start Einschaltlautstärke audiomenu.volume_step Lautstärke Schrittweite audioplayer.add Hinzufügen audioplayer.add_ic Icecast @@ -175,7 +176,6 @@ audioplayer.shuffle Zufällig audioplayer.spectrum LCD Skala audioplayer.stop Stopp audioplayer.title_artist Titel, Interpret -audioplayerpicsettings.general Audioplayer/Bildbetrachter bookmarkmanager.delete Löschen bookmarkmanager.name Bookmarks bookmarkmanager.rename Umbenennen @@ -201,6 +201,7 @@ bouquetname.hdtv HD Kanäle bouquetname.new Neue Kanäle bouquetname.other Unbekannter Provider bouquetname.removed Gelöschte Kanäle +bouquetname.webtv WebTV Kanäle buildinfo.compiled_on Build Host buildinfo.compiled_with Compiler Version buildinfo.compiler_flags Compiler Flags @@ -217,6 +218,8 @@ channellist.edit Bearbeiten channellist.epgtext_align_left links channellist.epgtext_align_right rechts channellist.extended Sendungsfortschritt anzeigen +channellist.extended_colored mit farbigem Fortschrittsbalken +channellist.extended_simple mit einfachem Fortschrittsbalken channellist.favs Favoriten channellist.foot Kanalinformationen channellist.foot_freq Tuning-Parameter @@ -232,6 +235,7 @@ channellist.keep_numbers Dauerhafte Kanalnummern channellist.make_hdlist Erzeuge Bouquet mit HD-Kanälen channellist.make_newlist Erzeuge Bouquet mit neuen Kanälen channellist.make_removedlist Erzeuge Bouquet mit gelöschten Kanälen +channellist.make_webtvlist Erzeuge Bouquet mit WebTV-Kanälen channellist.new_zap_mode Quickzap in Liste channellist.new_zap_mode_active aktiv channellist.new_zap_mode_allow erlauben @@ -245,6 +249,7 @@ channellist.reset_all Entferne Markierung "Neu" für alle Kanäle channellist.reset_flags Entferne Kanal-Markierung "Neu" channellist.sats Satelliten channellist.show_channellogo Senderlogos zeigen +channellist.show_channelnumber Kanalnummern zeigen channellist.since seit channellist.start Start ci.clock CI Takt (Mhz) @@ -264,6 +269,7 @@ clock_seconds Sekunden anzeigen clock_size_height Höhe der Anzeige clock_switch_off Uhr ausblenden clock_switch_on Uhr einblenden +color.gradient Farbverlauf colorchooser.alpha alpha colorchooser.blue blau colorchooser.green grün @@ -361,43 +367,47 @@ extra.cache_txt Teletext zwischenspeichern extra.chadded Der aktuelle Kanal wird dem selektierten Bouquet hinzugefügt...\n extra.chalreadyinbq Der aktuelle Kanal ist bereits im selektierten Bouquet...\n extra.dboxinfo Box-Info +extra.dboxinfo_available Frei +extra.dboxinfo_boottime Boot +extra.dboxinfo_filesystem Dateisystem +extra.dboxinfo_frontend Frontends +extra.dboxinfo_load Last +extra.dboxinfo_memory Speicher +extra.dboxinfo_ram RAM +extra.dboxinfo_size Gesamt +extra.dboxinfo_swap Swap +extra.dboxinfo_time Zeit +extra.dboxinfo_timeformat %F, %H:%M:%S +extra.dboxinfo_uptime Uptime +extra.dboxinfo_use Nutzung +extra.dboxinfo_used Benutzt extra.east Osten -extra.fec_1_2 1/2 S1_QPSK -extra.fec_2_3 2/3 S1_QPSK -extra.fec_3_4 3/4 S1_QPSK -extra.fec_5_6 5/6 S1_QPSK -extra.fec_7_8 7/8 S1_QPSK -extra.fec_auto Auto DVB-S -extra.fec_auto_s2 Auto DVB-S2 -extra.fec_s2_8psk_1_2 1/2 S2_8PSK -extra.fec_s2_8psk_2_3 2/3 S2_8PSK -extra.fec_s2_8psk_3_4 3/4 S2_8PSK -extra.fec_s2_8psk_3_5 3/5 S2_8PSK -extra.fec_s2_8psk_4_5 4/5 S2_8PSK -extra.fec_s2_8psk_5_6 5/6 S2_8PSK -extra.fec_s2_8psk_7_8 7/8 S2_8PSK -extra.fec_s2_8psk_8_9 8/9 S2_8PSK -extra.fec_s2_8psk_9_10 9/10 S2_8PSK -extra.fec_s2_qpsk_1_2 1/2 S2_QPSK -extra.fec_s2_qpsk_2_3 2/3 S2_QPSK -extra.fec_s2_qpsk_3_4 3/4 S2_QPSK -extra.fec_s2_qpsk_3_5 3/5 S2_QPSK -extra.fec_s2_qpsk_4_5 4/5 S2_QPSK -extra.fec_s2_qpsk_5_6 5/6 S2_QPSK -extra.fec_s2_qpsk_7_8 7/8 S2_QPSK -extra.fec_s2_qpsk_8_9 8/9 S2_QPSK -extra.fec_s2_qpsk_9_10 9/10 S2_QPSK +extra.fec_1_2 1/2 +extra.fec_2_3 2/3 +extra.fec_2_5 2/5 +extra.fec_3_4 3/4 +extra.fec_3_5 3/5 +extra.fec_4_5 4/5 +extra.fec_5_6 5/6 +extra.fec_7_8 7/8 +extra.fec_8_9 8/9 +extra.fec_9_10 9/10 +extra.fec_auto Auto extra.key_current_transponder Aktuelle Transponder Taste extra.key_format_mode Videoformat +extra.key_help Hilfe-Taste extra.key_list_end Listenende extra.key_list_start Listenanfang +extra.key_next43mode Nächstes Seitenformat extra.key_pic_mode Bildschirmformat extra.key_pic_size 4:3 Anzeigeverhalten extra.key_pip_close Stop/Start PiP extra.key_pip_setup PiP Konfiguration extra.key_pip_swap Umschalten PiP/live extra.key_plugin Schnellstart-Plugin +extra.key_record Aufnahme-Taste extra.key_screenshot Screenshot Taste +extra.key_switchformat Nächste Auflösung extra.key_timeshift Timeshift extra.key_unlock Entsperrtaste extra.ladirection Breitengrad-Ausrichtung @@ -423,20 +433,76 @@ extra.south Süden extra.start_tostandby Standby nach Boxstart extra.temp_timeshift Temporäres Timeshift extra.timeshift_pause Timeshift Pause -extra.tp.pol_v V +extra.tp_bandwidth Bandbreite +extra.tp_bandwidth_10mhz 10Mhz +extra.tp_bandwidth_1_712mhz 1.712Mhz +extra.tp_bandwidth_5mhz 5Mhz +extra.tp_bandwidth_6mhz 6Mhz +extra.tp_bandwidth_7mhz 7Mhz +extra.tp_bandwidth_8mhz 8Mhz +extra.tp_bandwidth_auto Auto +extra.tp_coderate_hp Informationsrate (HP) +extra.tp_coderate_lp Informationsrate (LP) +extra.tp_constellation Konstellation +extra.tp_delsys Empfangssystem +extra.tp_delsys_dss DSS +extra.tp_delsys_dtmb DTMB +extra.tp_delsys_dvbc DVB-C +extra.tp_delsys_dvbc2 DVB-C2 +extra.tp_delsys_dvbs DVB-S +extra.tp_delsys_dvbs2 DVB-S2 +extra.tp_delsys_dvbt DVB-T +extra.tp_delsys_dvbt2 DVB-T2 +extra.tp_delsys_isdbc ISDB-C +extra.tp_delsys_isdbs ISDB-S +extra.tp_delsys_isdbt ISDB-T +extra.tp_delsys_turbo Turbo extra.tp_fec FEC extra.tp_freq Frequenz +extra.tp_gi Schutzintervall +extra.tp_gi_19_128 19/128 +extra.tp_gi_19_256 19/256 +extra.tp_gi_1_128 1/128 +extra.tp_gi_1_16 1/16 +extra.tp_gi_1_32 1/32 +extra.tp_gi_1_4 1/4 +extra.tp_gi_1_8 1/8 +extra.tp_gi_auto Auto +extra.tp_gi_pn420 PN420 +extra.tp_gi_pn595 PN595 +extra.tp_gi_pn945 PN945 +extra.tp_hierarchy Hierarchieinformation +extra.tp_hierarchy_1 1 +extra.tp_hierarchy_2 2 +extra.tp_hierarchy_4 4 +extra.tp_hierarchy_auto Auto +extra.tp_hierarchy_none None extra.tp_mod Modulation extra.tp_mod_128 QAM/128 extra.tp_mod_16 QAM/16 extra.tp_mod_256 QAM/256 extra.tp_mod_32 QAM/32 +extra.tp_mod_4 QPSK +extra.tp_mod_4_nr QAM/4-NR extra.tp_mod_64 QAM/64 +extra.tp_mod_8 8PSK +extra.tp_mod_auto QAM/AUTO extra.tp_pol Polarisation extra.tp_pol_h H extra.tp_pol_l L extra.tp_pol_r R +extra.tp_pol_v V extra.tp_rate Symbolrate +extra.tp_transmit_mode Sendemodus +extra.tp_transmit_mode_16k 16K +extra.tp_transmit_mode_1k 1K +extra.tp_transmit_mode_2k 2K +extra.tp_transmit_mode_32k 32K +extra.tp_transmit_mode_4k 4K +extra.tp_transmit_mode_8k 8K +extra.tp_transmit_mode_auto Auto +extra.tp_transmit_mode_c1 C1 +extra.tp_transmit_mode_c3780 C3780 extra.update_dir Lokales Update-Verzeichnis extra.use_gotoxx Benutze gotoXX extra.volume_digits Lautstärkeanzeige Ziffern @@ -483,6 +549,7 @@ filesystem.is.utf8.option.iso8859.1 ISO-8859-1 filesystem.is.utf8.option.utf8 UTF-8 flashupdate.actionreadflash lese Flash flashupdate.apply_settings Sollen die aktuellen Einstellungen in das neue Image übernommen werden? +flashupdate.autocheck Beim Start nach Updates suchen flashupdate.cantopenfile kann Datei nicht öffnen flashupdate.cantopenmtd kann MTD nicht öffnen flashupdate.checkupdate_internet Online nach Updates suchen @@ -573,7 +640,6 @@ flashupdate.wrongbase Abweichende Release-Information\nFortfahren? fontmenu.channellist Kanalliste fontmenu.epg EPG (Programmführer) fontmenu.eventlist Event-Liste -fontmenu.gamelist Spiele-Liste fontmenu.head Schrift fontmenu.infobar Infobar fontmenu.menu Menü @@ -599,8 +665,6 @@ fontsize.eventlist_itemlarge Groß fontsize.eventlist_itemsmall Klein fontsize.eventlist_title Titel fontsize.filebrowser_item Dateibrowsereinträge -fontsize.gamelist_itemlarge Groß -fontsize.gamelist_itemsmall Klein fontsize.hint Schriftart wird initialisiert,\nbitte warten... fontsize.infobar_channame Kanalname fontsize.infobar_info Info @@ -619,11 +683,11 @@ hdd_5min 5 min. hdd_60min 60 min. hdd_activate Übernehmen hdd_check Dateisystemprüfung -hdd_check_failed Festplattenprüfung fehlgeschlagen +hdd_check_failed Datenträgerprüfung fehlgeschlagen hdd_check_format_bad Überprüfung von Datenträgern mit Format %s wird nicht unterstützt. hdd_extended_settings Erweiterte Festplatteneinstellungen hdd_fast Schnell -hdd_format Formatiere Festplatte +hdd_format Formatiere Datenträger hdd_format_failed Formatierung fehlgeschlagen! Stellen Sie sicher, dass der Datenträger nicht in Verwendung ist und versuchen Sie es erneut. hdd_format_warn Alle Daten auf dem Datenträger werden gelöscht! Formatierung starten? hdd_fs Dateisystem zum formatieren @@ -631,15 +695,22 @@ hdd_fs_unknown unbekannt hdd_manage Laufwerke verwalten hdd_middle Mittel hdd_mount Mount +hdd_mount_failed Fehler! Überprüfen Sie ihre Laufwerkseinstellungen. +hdd_mount_ok Laufwerk bereit hdd_mount_umount Mount/Unmount hdd_noise Akustikkontrolle (AAM) -hdd_not_found Keine Festplatte +hdd_not_found Kein Datenträger hdd_removable_device Wechseldatenträger +hdd_set_recdir Diesen Datenträger für die Aufnahme nutzen? hdd_settings Laufwerke hdd_sleep Ausschalten nach... hdd_slow Langsam -hdd_umount Unmount +hdd_statfs Füllstands-Abfrage +hdd_statfs_always immer +hdd_statfs_recording nur während Aufnahme +hdd_umount Aushängen hdd_umount_warn Laufwerk aushängen +hdd_umounted Laufwerk entfernt imageinfo.creator Ersteller: imageinfo.date Datum: imageinfo.dokumentation Dokus: @@ -657,11 +728,11 @@ infoviewer.epgwait Warte auf EPG-Informationen... infoviewer.eventlist EPG/Vorschau infoviewer.languages Tonwahl infoviewer.motor_moving Antennenpositionierung -infoviewer.next später +infoviewer.next Später infoviewer.nocurrent Keine Info zu laufendem Programm infoviewer.noepg Keine EPG-Information verfügbar infoviewer.notavailable Kanal (zur Zeit) nicht verfügbar -infoviewer.now jetzt +infoviewer.now Jetzt infoviewer.selecttime Startzeiten infoviewer.streaminfo Erweiterungen infoviewer.subchan_disp_pos Unterkanalanzeige @@ -683,6 +754,7 @@ keybindingmenu.cancel Kanalliste schließen keybindingmenu.channeldown Kanal runter keybindingmenu.channellist Kanalliste keybindingmenu.channelup Kanal hoch +keybindingmenu.edit Bearbeiten keybindingmenu.head Tasten-Belegungen bearbeiten keybindingmenu.lastchannel Letzter Kanal keybindingmenu.longkeypress_duration Langer Tastendruck @@ -693,6 +765,7 @@ keybindingmenu.mode_left_right_key_tv_volume Lautstärkeregelung keybindingmenu.mode_left_right_key_tv_vzap Virtual Zap keybindingmenu.mode_left_right_key_tv_zap Umschalten keybindingmenu.modechange Moduswechsel +keybindingmenu.navigation Navigation keybindingmenu.pagedown Seite weiter keybindingmenu.pageup Seite zurück keybindingmenu.poweroff Standby EIN/AUS @@ -712,6 +785,10 @@ keybindingmenu.special_active Sondertasten keybindingmenu.subchanneldown Unterkanal zurück keybindingmenu.subchannelup Unterkanal weiter keybindingmenu.tvradiomode Fernseh-/Radio-Modus +keybindingmenu.video Video +keybindingmenu.volume Lautstärke +keybindingmenu.volumedown Leiser +keybindingmenu.volumeup Lauter keybindingmenu.zaphistory Zapping-History Bouquet keychooser.head Neue Taste einstellen keychooser.text1 Bitte Taste drücken @@ -749,6 +826,9 @@ ledcontroler.off LED1 & LED2 aus ledcontroler.on.all LED1 & LED2 an ledcontroler.on.led1 LED1 an ledcontroler.on.led2 LED2 an +lua.boolparam_deprecated1 Achtung! +lua.boolparam_deprecated2 Die Verwendung von Zahl oder String +lua.boolparam_deprecated3 für einen Boolean Parameter ist veraltet.\n Bitte nutzen Sie native Bool Werte zB: lua.function_deprecated1 Achtung! lua.function_deprecated2 Die Funktion lua.function_deprecated3 ist veraltet,\n bitte nutzen Sie @@ -784,6 +864,7 @@ mainsettings.language Sprache mainsettings.lcd VFD-Display mainsettings.manage Einstellungen verwalten mainsettings.misc Erweiterte Einstellungen +mainsettings.multimedia Multimedia mainsettings.network Netzwerk mainsettings.osd OSD mainsettings.recording Aufnahme @@ -805,6 +886,7 @@ menu.hint_audio_srs Schalten Sie SRS TruVolume ein oder aus menu.hint_audio_srs_algo Stellen Sie die Betriebsarten von SRS TruVolume ein menu.hint_audio_srs_nmgr Schalten Sie den NoiseManager ein oder aus menu.hint_audio_srs_volume Legen Sie die Referenzlautstärke für SRS TruVolume fest +menu.hint_audio_volstart Legen Sie die Einschaltlautstärke fest, die immer beim Starten eingestellt werden soll menu.hint_audio_volstep Beim Betätigen der Lautstärketasten wird die Lautstärke immer schrittweise nach diesem Wert geändert menu.hint_audioplayer_defdir Wählen Sie das Startverzeichnis für den Audioplayer menu.hint_audioplayer_follow Das Auswählen eines aktuellen Titels in der Wiedergabeliste zulassen @@ -837,6 +919,7 @@ menu.hint_channellist_mode Wählen Sie die Start-Kanalliste im TV-Modus menu.hint_channellist_mode_radio Wählen Sie die Start-Kanalliste im Radio-Modus menu.hint_channellist_setup Wählen Sie die Anzeigeoptionen für die Kanalliste menu.hint_channellist_show_channellogo Zeigt Senderlogos in der Kanalliste. +menu.hint_channellist_show_channelnumber Zeigt Kanalnummer in der Kanalliste. menu.hint_channels Kanalliste öffnen menu.hint_ci Conditional-Access-Menü zum Einrichten Ihres CI-Moduls oder der eingebetteten Conax-Karte menu.hint_clock_background Lassen Sie die Uhr mit Hintergrund anzeigen @@ -844,6 +927,7 @@ menu.hint_clock_mode Schalten Sie die Uhr ein oder aus menu.hint_clock_seconds Legen Sie fest, ob die Sekunden angezeigt werden sollen menu.hint_clock_size Stellen Sie die Größe der Uhr ein menu.hint_clock_textcolor Konfigurieren Sie die Farbe der Ziffern +menu.hint_color_gradient Schaltet Farbverläufe für verschiedene Menüelemente ein/aus menu.hint_colors Konfigurieren Sie die Menü-Farben menu.hint_content_back Ändern Sie die Hintergrundfarbe für den Fensterinhalt menu.hint_content_textcolor Ändern Sie die Textfarbe für den Fensterinhalt @@ -859,8 +943,8 @@ menu.hint_epg_max_events Maxiale Anzahl der Events im Zwischenspeicher menu.hint_epg_old_events Veraltete EPG-Daten werden nach dieser Zeit (in Stunden) verworfen menu.hint_epg_save Speichert die EPG-Daten auf einem externen Datenträger und läd es von dort nach einen Neustart menu.hint_epg_save_standby Speichert die EPG-Daten auch im Standby-Modus -menu.hint_epg_scan Aktivieren Sie den Hintergrundscan der EPG-Daten, wenn ein freier Tuner vorhanden ist, im aktuellen Bouquet oder in allen Favoriten -menu.hint_epg_scan_mode Wählen Sie den Modus für den EPG Scan aus. +menu.hint_epg_scan Zu scannende Bouquets wählen. Aktuelles Bouquet beim Umschalten, markierte Bouquets oder alle Favoriten +menu.hint_epg_scan_mode Aktivieren Sie den Hintergrundscan der EPG-Daten, wenn ein freier Tuner vorhanden ist menu.hint_event_textcolor Ändern Sie die Farbe für farbige Events in der Kanalliste und der Infobar menu.hint_eventlist_additional Definiert, ob zusätzliche Informationen im Hauptfenster angezeigt werden sollen menu.hint_eventlist_fonts Ändern Sie die Schriftgröße in der Event-Liste @@ -877,7 +961,6 @@ menu.hint_font_gui Wählen Sie die Schriftart für die Menüs menu.hint_font_scaling Legen Sie die vertikale und horizontale Skalierung der Menüschrift fest menu.hint_font_ttx Wählen Sie die Schriftart für den Teletext menu.hint_fonts Konfigurieren Sie die Schriftart und die Schriftgrößen für die Menüs -menu.hint_gamelist_fonts Ändern die Schriftgrößen für die Spiele- und Script-Liste menu.hint_games Zeige Liste der installierten Spiele menu.hint_hdd Formatierung und Prüfung der Datenträger menu.hint_hdd_apply Die veränderten Einstellungen zum Sleep- und Akustik-Modus werden übernommen @@ -886,6 +969,7 @@ menu.hint_hdd_fmt Wählen Sie das Datenträgerformat aus menu.hint_hdd_format Erstellt eine Partition auf dem Datenträger und formatiert diese menu.hint_hdd_noise Setzen Sie Parameter für das Automatic Acoustic Management.\nNicht alle Laufwerke unterstützen diese Funktion menu.hint_hdd_sleep Dieser Wert definiert, nach wieviel Minuten die Festplatte bei Inaktivität in den Sleep-Modus geschaltet wird +menu.hint_hdd_statfs Legen Sie fest, wann die Aufnahmeverzeichnis-Füllstandsanzeige im InfoViewer (und ggf. am VFD-Display) aktualisiert werden darf menu.hint_hdd_tools Formatieren Sie die gefundenen Datenträger bzw. überprüfen Sie deren Dateisystem menu.hint_head_back Ändern Sie die Titel-Hintergrundfarbe menu.hint_head_textcolor Ändern Sie die Titel-Textfarbe @@ -904,7 +988,6 @@ menu.hint_infobar_fonts Ändern Sie die Schriftgrößen in der Infobar menu.hint_infobar_logo Logo- und Signal-Optionen menu.hint_infobar_logo_dir Wählen Sie das Verzeichnis für die Senderlogos menu.hint_infobar_on_epg Zeigt einen Hinweis bei EPG-Änderungen -menu.hint_infobar_progressbar Wählt die Optionen des Fortschrittsbalken in der Infobar menu.hint_infobar_radiotext Zeigt Radiotext in einen Fenster, wenn verfügbar menu.hint_infobar_res Zeige die gesendete Auflösung in Symbolen menu.hint_infobar_sat Zeigt die aktuellen Satelliten- oder Kabel-Provider @@ -955,6 +1038,7 @@ menu.hint_key_pip_swap Tastenzuordnung zum Umschalten PiP und aktuellem Kanal menu.hint_key_plugin Wählen Sie eine Taste für das Schnellstart-Plugin menu.hint_key_poweroff Wählen Sie eine Taste für den Standby und für das Verhalten für Standby und Deep-Standby menu.hint_key_quickzap Konfigurieren Sie die Tastenbelegung für die Schnellumschaltung +menu.hint_key_record Konfigurieren Sie die Taste für den Aufnahmestart menu.hint_key_repeatblock Die Verzögerung nach einem Tastendruck bis die Box reagieren soll menu.hint_key_repeatblockgeneric Die Verzögerung zwischen den Tastewiederholungen bis die Box reagieren soll menu.hint_key_right Wählen Sie die Funktion für die Tasten 'links' und 'rechts' im TV/Radio-Modus @@ -967,6 +1051,8 @@ menu.hint_key_subchannelup Weisen Sie eine Taste für das Weiterschalten in den menu.hint_key_transponder Weisen Sie eine Taste für das Anzeigen der Transponder in der Kanalliste zu menu.hint_key_tvradiomode Wählen Sie eine Taste für das Umschalten zwischen TV- und Radio-Modus menu.hint_key_unlock Weisen Sie eine Taste zum Entriegeln zu, \nbetätigen Sie die Taste 'Rot' für 5 Sekunden +menu.hint_key_volumedown Weisen Sie eine Taste für die Reduzierung der Lautstärke zu +menu.hint_key_volumeup Weisen Sie eine Taste für die Erhöhung der Lautstärke zu menu.hint_keys Tastenbelegungen und Fernbedienungs-Abstimmung bearbeiten menu.hint_lang_pref Wählen Sie ihre bevorzugten Tonspuren und Untertitel-Sprachen menu.hint_language Menü-Sprache, Zeitzone, bevorzugte Tonspuren, Untertitel-Sprachen und mehr @@ -984,6 +1070,7 @@ menu.hint_lua Plugins ausführen menu.hint_make_hdlist Bei aktiver Option wird ein Bouquet namens 'HD' erzeugt, in dem alle HD-Sender zusammengefasst sind menu.hint_make_newlist Nach einer Kanalsuche wird ein Bouquet namens 'neue Kanäle' erzeugt menu.hint_make_removedlist Nach einer Kanalsuche wird ein Bouquet namens 'gelöschte Kanäle' erzeugt +menu.hint_make_webtvlist Bei aktiver Option wird ein Bouquet namens 'WebTV' erzeugt, in dem alle WebTV-Sender zusammengefasst sind menu.hint_manage_settings Sichern, Wiederherstellen und Auslieferungszustand wiederherstellen menu.hint_mb Ihre Aufnahmen menu.hint_media Abspielen von Musik, Internetradio und Filmen; Betrachten Sie Bilder @@ -1003,6 +1090,7 @@ menu.hint_movieplayer_plugin Wählen Sie ein Plugin, das mit einer Schnellstart- menu.hint_net_broadcast Ändern Sie die Broadcast-Adresse.\nWenn Sie unsicher sind, verwenden Sie zuletzt .255 menu.hint_net_dhcp Verwenden Sie einen DHCP-Server für die automatische Vergabe einer IP-Adresse im Netzwerk menu.hint_net_djmount Mountet UPnP-Geräte als Dateisystem unter /media/00upnp +menu.hint_net_dropbear Aktivieren Sie SSH Zugriff zur Box menu.hint_net_ftpd Aktivieren Sie die Dateiübertragung über FTP menu.hint_net_gateway Geben Sie die Gateway-Adresse des Routers ein menu.hint_net_hostname Ändern Sie den Hostnamen der Box @@ -1035,13 +1123,13 @@ menu.hint_net_xupnpd Freigabe von Live Channels über UPNP menu.hint_network IP-Adresse, Gateway, DNS, Zeit-Sync, Netzwerk-Freigaben, Dienste und mehr menu.hint_new_zap_mode Aktiviert Quickzap in der Kanalliste. Nach Betätigen der Mute-Taste wird mit den Hoch/Runter-Tasten direkt umgeschalten menu.hint_numeric_adjust Adjust channel list mode on numeric zap -menu.hint_onekey_plugin Wählen Sie ein Plugin, das mit einer Schnellstart-Taste gestartet wird menu.hint_opkg Hier können Sie neue Software-Pakete installieren oder vorhandene aktualisieren menu.hint_opkg_upgrade Aktualisiert alle installierten Pakete auf die neueste verfügbare Version menu.hint_osd Farben, Schriftarten, Anzeigegröße, Ansichtsoptionen der Menüs und mehr menu.hint_osd_language Wählen Sie ihre Menü-Sprache menu.hint_osd_preset Wählen Sie zwischen Röhren-TV (CRT) oder Flachbildschirm (LCD) menu.hint_osd_timing Einblendzeit, die das OSD auf dem TV angezeigt wird +menu.hint_other_fonts Ändern Sie andere Schriftgrößen menu.hint_parentallock_changepin Geben Sie den 4-stelligen PIN-Code ein, der dann ggf. abgefragt wird menu.hint_parentallock_lockage Legen Sie fest, bei welcher Altersklasse die Abfrage der PIN erfolgt menu.hint_parentallock_menu Menüs mit PIN Code sichern @@ -1059,7 +1147,15 @@ menu.hint_plugins_hdd_dir Auswahl des Verzeichnisses zum Laden der Plugins von e menu.hint_power_leds Konfiguriert das Verhalten der LEDs an der Power-Taste menu.hint_pref_lang Wählen Sie ihre bevorzugte Tonspur und EPG-Sprache,\ndie Einstellung 'none' deaktiviert diese Option menu.hint_pref_subs Wählen Sie ihre bevorzugte Untertitel-Sprache,\ndie Einstellung 'none' deaktiviert diese Option +menu.hint_progressbar Wählen Sie die Optionen für die Fortschrittsbalken-Anzeige menu.hint_progressbar_color Erscheinungsbild der Fortschrittsbalken auswählen +menu.hint_progressbar_gradient Fügt dem Fortschrittsbalken einen vertikalen Helligkeitsverlauf hinzu. +menu.hint_progressbar_infobar_position Wählt die Optionen des Fortschrittsbalkens in der Infobar +menu.hint_progressbar_preview Mit der OK-Taste können Sie den Stand des Fortschrittsbalkens ändern +menu.hint_progressbar_timescale_green Hier können Sie den grünen Farbanteil bunter Fortschrittsbalken anpassen +menu.hint_progressbar_timescale_invert Wählen Sie den Farbverlauf +menu.hint_progressbar_timescale_red Hier können Sie den roten Farbanteil bunter Fortschrittsbalken anpassen +menu.hint_progressbar_timescale_yellow Hier können Sie den gelben Farbanteil bunter Fortschrittsbalken anpassen menu.hint_protection Schützen Sie Inhalte per PIN-Code\nStandard-PIN ist 0000 menu.hint_radiomode Schaltet zum Radio-Modus menu.hint_reboot Startet die Box neu\nDer Neustart erfolgt ohne Bestätigung! @@ -1068,6 +1164,7 @@ menu.hint_record_apid_alt Sind weitere Tonspuren verfügbar, dann können diese menu.hint_record_apid_std Schließt bei einer Aufnahme die durch den Sender definierte Tonspur 'Standard' in die Aufnahme ein bzw. aus menu.hint_record_apids Konfigurieren Sie die Tonspuren für die Aufnahme menu.hint_record_apply Hiermit werden die Aufnahmeoptionen übernommen +menu.hint_record_auto_cover Automatisch ein Film-Vorschaubild beim Abspielen erzeugen menu.hint_record_chandir Diese Option speichert Aufnahmen mit dem Namen des Kanals in ein eigenes Verzeichnis menu.hint_record_data Daten-Spuren (Teletext, Untertitel) für die Aufnahme menu.hint_record_data_dvbsub Untertitel-Spur zu Aufnahme hinzufügen @@ -1103,9 +1200,11 @@ menu.hint_scan_auto Automatischer Suchlauf ausgewählter Anbieter menu.hint_scan_autoall Automatischer Suchlauf aller ausgewählten Anbieter menu.hint_scan_autoall_select Suchlauf nur in ausgewählten Satelliten menu.hint_scan_bouquet erneuern: hinzufügen zu den Bouquets, löschen: entfernt alte Bouquets, nicht ändern: neue werden in 'Andere' angefügt +menu.hint_scan_bw Wählen Sie die Bandbreite menu.hint_scan_cable Wählen Sie ihr Kabelnetz für den Suchlauf menu.hint_scan_cable_simple Kabel-Suchlauf mit optionaler Anbieter- und Kanal-Nummerierung menu.hint_scan_commited Wählen Sie ihre Einstellungen für diesen Satelliten +menu.hint_scan_delsys Wählen Sie das Empfangssystem für diesen Kanal/Transponder. menu.hint_scan_diseqc Wählen Sie das DiSEqC-Schalter-Eingangssignal für diesen Satelliten menu.hint_scan_diseqcorder Diseqc command order for cascaded switches menu.hint_scan_diseqcrepeat DiSEqC-Wiederholungen für kaskadierte Schaltungen @@ -1122,6 +1221,8 @@ menu.hint_scan_fesetup Konfigurieren des oder der Tuner menu.hint_scan_fetimeout Maximale Wartezeit auf das Signal in 1/10 Sekunden menu.hint_scan_freq Geben Sie eine Transponder-Frequenz ein menu.hint_scan_fta Lassen Sie nur frei empfangbare (nicht-verschlüsselte) Programme suchen +menu.hint_scan_gi Wählen Sie den Schutzintervall für diesen terrestrischen Kanal +menu.hint_scan_hierarchy Wählen Sie die Hierarchie für diesen terrestrischen Kanal menu.hint_scan_ladirection Wählen Sie ihre Breitengrad-Ausrichtung menu.hint_scan_latitude Geben Sie ihren Breitengrad ein menu.hint_scan_lnbconfig Konfigurieren Sie LNB-Parameter für diesen Satelliten @@ -1158,6 +1259,7 @@ menu.hint_scan_setup_fe Konfigurieren Sie ihre ausgewählten Tuner menu.hint_scan_start Startet die Kanalsuche mit den angegebenen Parametern.\nMit der Taste 'Exit' kann abgebrochen werden menu.hint_scan_test Testen Sie das Signal für diesen Transponder menu.hint_scan_tpselect Wählen Sie einen einzelnen Transponder für den Suchlauf +menu.hint_scan_transmit_mode Wählen Sie den Übertragungsmodus für diesen terrestrischen Kanal menu.hint_scan_uncommited Wählen Sie nicht festgeschriebene Angaben für diesen Satelliten menu.hint_scan_usals USALS Optionen menu.hint_scan_usals_repeat Geben Sie die USALS-Wiederholungen für den Rotor ein @@ -1207,6 +1309,7 @@ menu.hint_timezone Wählen Sie ihre Zeitzone aus menu.hint_tools Werkzeuge ausführen menu.hint_tvmode Schaltet zum TV-Modus menu.hint_tvradio_switch Schaltet zwischen TV- und Radio-Modus um +menu.hint_upnp Universal Plug and Play Browser menu.hint_vfd Frontdisplay und Power-LEDs menu.hint_vfd_brightness Definiert die Helligkeit im TV-Betrieb menu.hint_vfd_brightness_setup Konfiguriert die Helligkeit des Frontdisplays für verschiedene Modi @@ -1236,6 +1339,7 @@ menu.hint_volume Wählen Sie die Anzeigeoptionen für die Lautstärke menu.hint_volume_digits Zifferndarstellung der Lautstärkeanzeige ein- oder ausschalten menu.hint_volume_pos Wählen Sie die Position der Lautstärkeanzeige aus menu.hint_volume_size Wählen Sie die Höhe der Lautstärkeanzeige +menu.hint_webtv_setup Hier konfigurierte WebTV-Kanäle finden Sie in der Kanalverwaltung. menu.hint_window_size Kanalliste, EPG-Infos und einige andere Fenster werden mit diesem Faktor skaliert menu.hint_ytplay Wiedergabe von ausgewählten Youtube Feeds menu.hint_zap_cycle Wählen Sie, ob nur innerhalb des aktiven Bouquets umgeschaltet werden kann @@ -1273,6 +1377,7 @@ miscsettings.epg_save EPG zwischenspeichern miscsettings.epg_save_standby EPG speichern in Standby-Modus miscsettings.epg_scan Hintergrundscan EPG miscsettings.epg_scan_always Immer +miscsettings.epg_scan_bouquets Zu scannende Bouquets miscsettings.epg_scan_bq Aktuelles Bouquet miscsettings.epg_scan_fav Alle Favoriten miscsettings.epg_scan_live Bei eingeschalteter Box @@ -1305,17 +1410,26 @@ miscsettings.infoclock Uhr miscsettings.progressbar Fortschrittsbalken miscsettings.progressbar_color Farbe miscsettings.progressbar_design Design -miscsettings.progressbar_design_0 farbige Punkte -miscsettings.progressbar_design_1 farbige vertikale Linien -miscsettings.progressbar_design_2 farbige horizontale Linien +miscsettings.progressbar_design_0 Punkte +miscsettings.progressbar_design_1 vertikale Balken +miscsettings.progressbar_design_2 horizontale Balken miscsettings.progressbar_design_3 Farbverlauf miscsettings.progressbar_design_4 monochrom -miscsettings.progressbar_design_long Progressbardesign +miscsettings.progressbar_design_long Design +miscsettings.progressbar_gradient 3D-Effekt miscsettings.progressbar_infobar_position Position miscsettings.progressbar_infobar_position_0 Standard miscsettings.progressbar_infobar_position_1 unterhalb Kanalname miscsettings.progressbar_infobar_position_2 unterhalb Kanalname (schmal) miscsettings.progressbar_infobar_position_3 zwischen EPG-Events (schmal) +miscsettings.progressbar_preview Vorschau +miscsettings.progressbar_timescale Zeitskala +miscsettings.progressbar_timescale_green Grün +miscsettings.progressbar_timescale_green_red von Grün nach Rot +miscsettings.progressbar_timescale_invert Farbverlauf +miscsettings.progressbar_timescale_red Rot +miscsettings.progressbar_timescale_red_green von Rot nach Grün +miscsettings.progressbar_timescale_yellow Gelb miscsettings.radiotext Radiotext miscsettings.shutdown_count Komplett ausschalten nach miscsettings.shutdown_count_hint1 Zeit (in Minuten), nach der vom Standby in @@ -1380,6 +1494,7 @@ moviebrowser.browser_row_head Spalten Einstellungen moviebrowser.browser_row_item Spalteninfo moviebrowser.browser_row_nr Anzahl Spalten moviebrowser.browser_row_width Spaltenbreite [% der Gesamtbreite] +moviebrowser.cache_dir Cache-Verzeichnis moviebrowser.delete_info Lösche Dateien, bitte warten... moviebrowser.dir Pfad moviebrowser.dir_head Zusätzliche Verzeichnisse @@ -1410,6 +1525,7 @@ moviebrowser.hint_newbook_backward Neue Wiederholung\n 'blue' für Endposition moviebrowser.hint_newbook_forward Neuer Werbesprung\n 'blue' für Endposition moviebrowser.info_audio Audio moviebrowser.info_channel Kanal +moviebrowser.info_file Datei moviebrowser.info_filename Name moviebrowser.info_genre_major Genre moviebrowser.info_genre_minor Genre @@ -1479,12 +1595,20 @@ moviebrowser.short_size Grösse moviebrowser.short_title Titel moviebrowser.start_head Film starten von Position: moviebrowser.start_record_start Aufnahmestart +moviebrowser.ts_only Nur Aufnahmen zeigen moviebrowser.update_if_dest_empty_only Übernehmen nur wenn Ziel leer moviebrowser.use_dir Verzeichnis verwenden moviebrowser.use_movie_dir Wiedergabeverzeichnis verwenden moviebrowser.use_rec_dir Aufnahmeverzeichnis verwenden +moviebrowser.yt_cache Downloads +moviebrowser.yt_cache_add Download von\n%s\nwird eingeplant. +moviebrowser.yt_cancel Alle abbrechen +moviebrowser.yt_cancel_transfer Download abbrechen? +moviebrowser.yt_clear Liste leeren +moviebrowser.yt_completed Vollständige Downloads moviebrowser.yt_concurrent_connections Gleichzeitige Verbindungen -moviebrowser.yt_error Fehler beim laden des Youtube Feed +moviebrowser.yt_error Fehler beim Laden des Youtube-Feeds +moviebrowser.yt_failed Fehlgeschlagene Downloads moviebrowser.yt_history Frühere Suchen moviebrowser.yt_max_history Max. Anzahl früherer Suchen moviebrowser.yt_max_results Max. Anzahl der zu holenden Feeds @@ -1496,6 +1620,7 @@ moviebrowser.yt_orderby.published Veröffentlichungszeitpunkt moviebrowser.yt_orderby.rating Bewertung moviebrowser.yt_orderby.relevance Relevanz moviebrowser.yt_orderby.viewcount Zahl der Views +moviebrowser.yt_pending Anstehende Downloads moviebrowser.yt_pref_quality Bevorzugte Qualität moviebrowser.yt_prev_results Vorherige Ergebnisse moviebrowser.yt_recently_featured Vor kurzem empfohlen @@ -1530,6 +1655,8 @@ movieplayer.ytplayback Youtube-Feed Wiedergabe mpkey.audio Audiotrack mpkey.bookmark Speichere Lesezeichen mpkey.forward Vorlauf +mpkey.goto Zeiteingabe +mpkey.next_repeat_mode Nächster Wiederholungs-Modus mpkey.pause Pause mpkey.play Play mpkey.plugin Movieplayer-Plugin @@ -1585,6 +1712,7 @@ nfs.mountnow Jetzt mounten nfs.mountok Mount erfolgreich nfs.mounttimeout Mount-Fehler: Timeout nfs.password Passwort +nfs.refresh_mac MAC-Adresse feststellen nfs.remount Verzeichnisse erneut mounten nfs.type Typ nfs.type_cifs CIFS @@ -1614,6 +1742,7 @@ opkg.title Paketverwaltung opkg.upgrade Installierte Pakete aktualisieren options.default Voreinstellungen benutzen options.fb framebuffer +options.hint_default Setzen Sie die Werte auf die Voreinstellung zurück. options.ntp_off DVB options.ntp_on NTP options.null null @@ -1717,6 +1846,11 @@ pinprotection.head PIN-Abfrage pinprotection.wrongcode Geben Sie den Code nocheinmal ein! plugins.hdd_dir Externes Plugin-Verz. plugins.result Pluginausgabe +plugintype.disabled Deaktiviert +plugintype.game Spiel +plugintype.lua Lua-Plugin +plugintype.script Skript +plugintype.tool Werkzeug rclock.lockmsg Die Fernbedienung wird gesperrt.\n Um die Sperre aufzuheben, bitte\n und auf der Fernbedienung\n drücken. rclock.menueadd FB sperren rclock.title Fernbedienung sperren @@ -1732,6 +1866,7 @@ recordingmenu.apids Tonspuren recordingmenu.apids_ac3 AC3 Tonspuren aufnehmen recordingmenu.apids_alt Alternative Tonspuren aufn. recordingmenu.apids_std Standard Tonspur aufnehmen +recordingmenu.auto_cover Autom. Film-Vorschaubild recordingmenu.data_pids Daten-Spuren recordingmenu.defdir Aufnahmeverzeichnis recordingmenu.dvbsub_pids Untertitel aufnehmen @@ -1803,6 +1938,11 @@ satsetup.fastscan_prov_tvv_sd TV Vlaanderen (SD) satsetup.fastscan_sd nur SD satsetup.fastscan_type Scantyp satsetup.fastscan_update Auto-Update +satsetup.fe_delsys_mode Modus des Empfangssystems +satsetup.fe_delsys_mode_auto Auto +satsetup.fe_delsys_mode_cable Kabel +satsetup.fe_delsys_mode_sat Satellit +satsetup.fe_delsys_mode_terrestrial Terrestrisch satsetup.fe_mode Tuner Modus satsetup.fe_mode_independent Independent satsetup.fe_mode_link_loop Loop @@ -1843,6 +1983,7 @@ sc.waiting Warte auf Antwort scants.abort_body Scanvorgang wirklich abbrechen? scants.abort_header breche Scan ab... scants.actcable Kabelnetz: +scants.acthybrid Hybrid: scants.actsatellite Satellit: scants.actterrestrial Terrestrisch: scants.bouquet Bouquets @@ -1910,7 +2051,7 @@ settings.pos_top_left oben links settings.pos_top_right oben rechts settings.restore Image-Einstellungen: Wiederherstellen settings.restore_warn Alle Settings werden ersetzt.\nDie Box wird neu gestartet.\nWeiter? -shutdown.recoding_query Aufnahme läuft. Trotzdem beenden? +shutdown.recording_query Aufnahme läuft. Trotzdem beenden? shutdowntimer.announce Die Box wird in 1 Min. heruntergefahren.\nShutdown abbrechen? sleeptimerbox.announce Die Box wird in 1 Min. in Standby-Betrieb gehen.\nStandby-Betrieb abbrechen? sleeptimerbox.hint1 Ausschaltzeit in Minuten (000 = aus) @@ -1921,6 +2062,7 @@ sleeptimerbox.title2 Inaktivitätstimer streaminfo.aratio Verhältnis streaminfo.aratio_unknown unbekannt streaminfo.audiotype Audiotyp +streaminfo.audiotype_unknown unbekannt streaminfo.average_bitrate Durchschnitt streaminfo.bitrate Bitrate streaminfo.framerate Bildrate @@ -2029,6 +2171,7 @@ unicable.lnb Unicable Eingang unicable.qrg Unicable Frequenz unicable.scr Unicable SCR unit.decimal , +unit.long.years Jahre unit.short.hour h unit.short.millisecond ms unit.short.minute min @@ -2047,6 +2190,9 @@ usermenu.item_epg_misc EPG Funktionen usermenu.item_none (frei) usermenu.item_plugin_types Plugin-Typen usermenu.item_vtxt Teletext +usermenu.items Menüpunkte +usermenu.key Taste +usermenu.key_select Taste zuweisen usermenu.msg_info_is_empty Es wurde kein Name für dieses Menü vergeben.\nVerwende Standardname:\n usermenu.msg_warning_name Sie haben mehrere Menüpunkte für dieses Menü angelegt,\naber keinen neuen Namen festgelegt.\nEs ist daher empfohlen, einen neuen Namen zu vergeben! usermenu.msg_warning_no_items Sie haben keine Menüpunkte für dieses Menü angelegt!\nDer Menüname wird daher zurückgesetzt! @@ -2105,6 +2251,10 @@ videomenu.videoformat_149 14:9 videomenu.videoformat_169 16:9 videomenu.videoformat_43 4:3 videomenu.videomode Videosystem +webtv.head WebTV +webtv.xml WebTV-XML-Dateien +webtv.xml.add XML-Datei hinzufügen +webtv.xml.del XML-Datei entfernen window_size Fenstergröße in % wizard.initial_settings Grundeinstellungen gefunden wizard.install_settings Kanalliste für Astra 19.2°E installieren? @@ -2116,6 +2266,7 @@ wizard.setup_type_hint Wählen Sie einfache Grundeinstellungen oder erweiterte A wizard.welcome_head Willkommen zur Ersteinrichtung Ihres Receivers! wizard.welcome_text Wir gratulieren Ihnen zum Kauf Ihrer CST. In den nun folgenden\nSchritten begleiten wir Sie durch die Erstinstallation des Gerätes.\nWir wünschen Ihnen viel Freude mit dem wohl einzigartigsten Receiver!\nBeachten Sie: Ihre CST Set-Top-Box lässt sich bequem per Webinterface\nsteuern, um zum Beispiel die Timer-Verwaltung zu nutzen oder Live-TV im Web-Browser zu schauen.\nAchten Sie darauf, dass Ihre Gerät nicht von aussen zugänglich ist,\nda sonst ein Zugriff über das Internet nicht ausgeschlossen werden kann!\nNächster Schritt? word.from ab +word.in in zapit.scantype Service-Auswahl zapit.scantype.all Alle Services zapit.scantype.radio Nur Radio diff --git a/data/locale/english.locale b/data/locale/english.locale index 77695ab3b..31428f7b7 100644 --- a/data/locale/english.locale +++ b/data/locale/english.locale @@ -128,6 +128,7 @@ audiomenu.pref_subs_head Subtitle language preferences audiomenu.spdif_dd Encoded DD on SPDIF audiomenu.stereo stereo audiomenu.volume_adjust Volume adjustment, in % +audiomenu.volume_start Start volume audiomenu.volume_step Volume step audioplayer.add Add audioplayer.add_ic Icecast @@ -175,7 +176,6 @@ audioplayer.shuffle shuffle audioplayer.spectrum lcd a-spectrum audioplayer.stop Stop audioplayer.title_artist Title, Artist -audioplayerpicsettings.general Audioplayer / Picviewer bookmarkmanager.delete delete bookmarkmanager.name bookmarks bookmarkmanager.rename rename @@ -201,6 +201,7 @@ bouquetname.hdtv HD channels bouquetname.new New channels bouquetname.other Unknown provider bouquetname.removed Removed channels +bouquetname.webtv WebTV channels buildinfo.compiled_on Build Host buildinfo.compiled_with Compiler version buildinfo.compiler_flags Compiler flags @@ -216,7 +217,9 @@ channellist.current_tp Current transponder channellist.edit Edit channellist.epgtext_align_left left channellist.epgtext_align_right right -channellist.extended Show progressbars +channellist.extended Show event progress +channellist.extended_colored with colored progressbar +channellist.extended_simple with simple progressbar channellist.favs Favoriten channellist.foot Channel Information channellist.foot_freq Sat/Freq Info @@ -232,6 +235,7 @@ channellist.keep_numbers Persistent channel numbers channellist.make_hdlist Create list of HD channels channellist.make_newlist Create list of new channels channellist.make_removedlist Create list of removed channels +channellist.make_webtvlist Create list of WebTV channels channellist.new_zap_mode Quickzap in list channellist.new_zap_mode_active active channellist.new_zap_mode_allow allow @@ -244,7 +248,8 @@ channellist.remember Last used channellist.reset_all Reset 'new' flag for all channels channellist.reset_flags Reset 'new' channel flag channellist.sats Satellites -channellist.show_channellogo Show channellogos +channellist.show_channellogo Show channel logos +channellist.show_channelnumber Show channel numbers channellist.since since channellist.start starts ci.clock CI clock (Mhz) @@ -264,6 +269,7 @@ clock_seconds Show seconds clock_size_height Display height clock_switch_off Clock off clock_switch_on Clock on +color.gradient Color gradient colorchooser.alpha alpha colorchooser.blue blue colorchooser.green green @@ -361,43 +367,47 @@ extra.cache_txt Cache teletext extra.chadded The current channel has been added to selected bouquet....\n extra.chalreadyinbq The current channel is already in selected bouquet....\n extra.dboxinfo Box Info +extra.dboxinfo_available Free +extra.dboxinfo_boottime Boot +extra.dboxinfo_filesystem Filesystem +extra.dboxinfo_frontend Frontends +extra.dboxinfo_load Load +extra.dboxinfo_memory Memory +extra.dboxinfo_ram RAM +extra.dboxinfo_size Total +extra.dboxinfo_swap Swap +extra.dboxinfo_time Time +extra.dboxinfo_timeformat %F, %H:%M:%S +extra.dboxinfo_uptime Uptime +extra.dboxinfo_use Use +extra.dboxinfo_used Used extra.east East extra.fec_1_2 1/2 extra.fec_2_3 2/3 +extra.fec_2_5 2/5 extra.fec_3_4 3/4 +extra.fec_3_5 3/5 +extra.fec_4_5 4/5 extra.fec_5_6 5/6 extra.fec_7_8 7/8 -extra.fec_auto Auto DVB-S -extra.fec_auto_s2 Auto DVB-S2 -extra.fec_s2_8psk_1_2 1/2 s2 8psk -extra.fec_s2_8psk_2_3 2/3 s2 8psk -extra.fec_s2_8psk_3_4 3/4 s2 8psk -extra.fec_s2_8psk_3_5 3/5 s2 8psk -extra.fec_s2_8psk_4_5 4/5 s2 8psk -extra.fec_s2_8psk_5_6 5/6 s2 8psk -extra.fec_s2_8psk_7_8 7/8 s2 8psk -extra.fec_s2_8psk_8_9 8/9 s2 8psk -extra.fec_s2_8psk_9_10 9/10 s2 8psk -extra.fec_s2_qpsk_1_2 1/2 s2 qpsk -extra.fec_s2_qpsk_2_3 2/3 s2 qpsk -extra.fec_s2_qpsk_3_4 3/4 s2 qpsk -extra.fec_s2_qpsk_3_5 3/5 s2 qpsk -extra.fec_s2_qpsk_4_5 4/5 s2 qpsk -extra.fec_s2_qpsk_5_6 5/6 s2 qpsk -extra.fec_s2_qpsk_7_8 7/8 s2 qpsk -extra.fec_s2_qpsk_8_9 8/9 s2 qpsk -extra.fec_s2_qpsk_9_10 9/10 s2 qpsk +extra.fec_8_9 8/9 +extra.fec_9_10 9/10 +extra.fec_auto Auto extra.key_current_transponder Current Transponder Key extra.key_format_mode Video format +extra.key_help Help key extra.key_list_end end extra.key_list_start home +extra.key_next43mode Next aspect ratio extra.key_pic_mode Screen format extra.key_pic_size 4:3 Display behavior extra.key_pip_close Stop/Start PiP extra.key_pip_setup Configure PiP extra.key_pip_swap Swap PiP/live extra.key_plugin One touch plugin +extra.key_record Record key extra.key_screenshot Screenshot key +extra.key_switchformat Next resolution extra.key_timeshift Timeshift extra.key_unlock Unlock key extra.ladirection LaDirection @@ -423,20 +433,76 @@ extra.south South extra.start_tostandby Startup to standby extra.temp_timeshift Temporary timeshift extra.timeshift_pause Timeshift pause -extra.tp.pol_v V +extra.tp_bandwidth Bandwidth +extra.tp_bandwidth_10mhz 10Mhz +extra.tp_bandwidth_1_712mhz 1.712Mhz +extra.tp_bandwidth_5mhz 5Mhz +extra.tp_bandwidth_6mhz 6Mhz +extra.tp_bandwidth_7mhz 7Mhz +extra.tp_bandwidth_8mhz 8Mhz +extra.tp_bandwidth_auto Auto +extra.tp_coderate_hp Coderate(HP) +extra.tp_coderate_lp Coderate(LP) +extra.tp_constellation Constellation +extra.tp_delsys Delivery system +extra.tp_delsys_dss DSS +extra.tp_delsys_dtmb DTMB +extra.tp_delsys_dvbc DVB-C +extra.tp_delsys_dvbc2 DVB-C2 +extra.tp_delsys_dvbs DVB-S +extra.tp_delsys_dvbs2 DVB-S2 +extra.tp_delsys_dvbt DVB-T +extra.tp_delsys_dvbt2 DVB-T2 +extra.tp_delsys_isdbc ISDB-C +extra.tp_delsys_isdbs ISDB-S +extra.tp_delsys_isdbt ISDB-T +extra.tp_delsys_turbo Turbo extra.tp_fec FEC extra.tp_freq Frequency +extra.tp_gi Guard interval +extra.tp_gi_19_128 19/128 +extra.tp_gi_19_256 19/256 +extra.tp_gi_1_128 1/128 +extra.tp_gi_1_16 1/16 +extra.tp_gi_1_32 1/32 +extra.tp_gi_1_4 1/4 +extra.tp_gi_1_8 1/8 +extra.tp_gi_auto Auto +extra.tp_gi_pn420 PN420 +extra.tp_gi_pn595 PN595 +extra.tp_gi_pn945 PN945 +extra.tp_hierarchy Hierarchy information +extra.tp_hierarchy_1 1 +extra.tp_hierarchy_2 2 +extra.tp_hierarchy_4 4 +extra.tp_hierarchy_auto Auto +extra.tp_hierarchy_none None extra.tp_mod Modulation extra.tp_mod_128 QAM/128 extra.tp_mod_16 QAM/16 extra.tp_mod_256 QAM/256 extra.tp_mod_32 QAM/32 +extra.tp_mod_4 QPSK +extra.tp_mod_4_nr QAM/4-NR extra.tp_mod_64 QAM/64 +extra.tp_mod_8 8PSK +extra.tp_mod_auto QAM/AUTO extra.tp_pol Polarization extra.tp_pol_h H extra.tp_pol_l L extra.tp_pol_r R +extra.tp_pol_v V extra.tp_rate Symbol rate +extra.tp_transmit_mode Transmit mode +extra.tp_transmit_mode_16k 16K +extra.tp_transmit_mode_1k 1K +extra.tp_transmit_mode_2k 2K +extra.tp_transmit_mode_32k 32K +extra.tp_transmit_mode_4k 4K +extra.tp_transmit_mode_8k 8K +extra.tp_transmit_mode_auto Auto +extra.tp_transmit_mode_c1 C1 +extra.tp_transmit_mode_c3780 C3780 extra.update_dir Local update directory extra.use_gotoxx Use gotoXX extra.volume_digits Volumebar digits @@ -474,8 +540,8 @@ filebrowser.scan Scaning folder filebrowser.select Select filebrowser.showrights Show file rights filebrowser.sort.date (date) -filebrowser.sort.name (filename) -filebrowser.sort.namedirsfirst (filename2) +filebrowser.sort.name (name) +filebrowser.sort.namedirsfirst (name, dir first) filebrowser.sort.size (Size) filebrowser.sort.type (type) filesystem.is.utf8 file system @@ -483,6 +549,7 @@ filesystem.is.utf8.option.iso8859.1 ISO-8859-1 filesystem.is.utf8.option.utf8 UTF-8 flashupdate.actionreadflash reading flashupdate.apply_settings Import current settings into new image? +flashupdate.autocheck Auto-check updates on boot flashupdate.cantopenfile can't open file flashupdate.cantopenmtd can't open MTD flashupdate.checkupdate_internet Check for online updates @@ -573,7 +640,6 @@ flashupdate.wrongbase Your Release cycle differs.\nTo continue? fontmenu.channellist Channellist fontmenu.epg EPG fontmenu.eventlist Eventlist -fontmenu.gamelist Gamelist fontmenu.head Font settings fontmenu.infobar Infobar fontmenu.menu Menu @@ -599,8 +665,6 @@ fontsize.eventlist_itemlarge Large fontsize.eventlist_itemsmall Small fontsize.eventlist_title Title fontsize.filebrowser_item Filebrowser items -fontsize.gamelist_itemlarge Large -fontsize.gamelist_itemsmall Small fontsize.hint Initialising font,\nplease wait... fontsize.infobar_channame Channel name fontsize.infobar_info info @@ -623,26 +687,30 @@ hdd_check_failed HDD-check failed! hdd_check_format_bad Checking of disks with format %s is not supported. hdd_extended_settings Extended HDD-Settings hdd_fast Fast -hdd_format Formating drive... +hdd_format Format device hdd_format_failed Formating failed! Make sure device not in use, reboot and try again hdd_format_warn All data on device will be lost ! Continue with format ? hdd_fs Filesystem used to format hdd_fs_unknown unknown -hdd_manage Manage drives +hdd_manage Manage device hdd_middle Mid hdd_mount Mount +hdd_mount_failed Failed to mount. hdd_mount_ok Device ready to use. -hdd_mount_failed Failed to mount, check HDD settings menu. hdd_mount_umount Mount/Unmount hdd_noise Acoustic-control (AAM) hdd_not_found No HDD found hdd_removable_device Removable device -hdd_settings Hard Disk Drive/USB +hdd_set_recdir Use device for recording ? +hdd_settings Data Storage hdd_sleep Switch off after... hdd_slow Slow +hdd_statfs Fill level query +hdd_statfs_always always +hdd_statfs_recording while recording only hdd_umount Unmount -hdd_umounted Device removed hdd_umount_warn unmount device +hdd_umounted Device removed imageinfo.creator Creator: imageinfo.date Date: imageinfo.dokumentation Docs: @@ -686,6 +754,7 @@ keybindingmenu.cancel close channellist keybindingmenu.channeldown channel down keybindingmenu.channellist Channellist keybindingmenu.channelup channel up +keybindingmenu.edit Edit keybindingmenu.head Edit Keybindings keybindingmenu.lastchannel Quick Zap keybindingmenu.longkeypress_duration Long key-press @@ -696,6 +765,7 @@ keybindingmenu.mode_left_right_key_tv_volume Volume Control keybindingmenu.mode_left_right_key_tv_vzap Virtual Zap keybindingmenu.mode_left_right_key_tv_zap Zap keybindingmenu.modechange Modechange +keybindingmenu.navigation Navigation keybindingmenu.pagedown page down keybindingmenu.pageup page up keybindingmenu.poweroff Power toggle @@ -715,6 +785,10 @@ keybindingmenu.special_active Special Keys keybindingmenu.subchanneldown subchannel down keybindingmenu.subchannelup subchannel up keybindingmenu.tvradiomode TV/Radio-mode +keybindingmenu.video Video +keybindingmenu.volume Volume +keybindingmenu.volumedown Decrease +keybindingmenu.volumeup Increase keybindingmenu.zaphistory Zapping History Bouquet keychooser.head Setup new Key keychooser.text1 Please press the new key @@ -752,7 +826,10 @@ ledcontroler.off Led1 & Led2 off ledcontroler.on.all Led1 & Led2 on ledcontroler.on.led1 Led1 on ledcontroler.on.led2 Led2 on -lua.function_deprecated1 Attention! +lua.boolparam_deprecated1 Caution! +lua.boolparam_deprecated2 The use of number or string +lua.boolparam_deprecated3 for a Boolean parameter is deprecated.\n Please use native bool values eg. +lua.function_deprecated1 Caution! lua.function_deprecated2 Function lua.function_deprecated3 is deprecated,\n please use mainmenu.audioplayer Audioplayer @@ -760,7 +837,7 @@ mainmenu.channels Channels mainmenu.clearsectionsd Clear EPG Cache mainmenu.games Games mainmenu.head Main Menu -mainmenu.lua Plugins +mainmenu.lua Lua Plugins mainmenu.media Media mainmenu.movieplayer Movieplayer mainmenu.pausesectionsd Read EPG @@ -787,6 +864,7 @@ mainsettings.language Language / Timezone mainsettings.lcd VFD-Display mainsettings.manage Manage settings mainsettings.misc Extended settings +mainsettings.multimedia Multimedia mainsettings.network Network mainsettings.osd OSD mainsettings.recording Recording @@ -808,6 +886,7 @@ menu.hint_audio_srs SRS TruVolume control volume jumps\nat content changes menu.hint_audio_srs_algo Amount of control, light or normal menu.hint_audio_srs_nmgr Noise manager menu.hint_audio_srs_volume Reference level to maintain +menu.hint_audio_volstart Always set selected volume value on boot menu.hint_audio_volstep Volume +/- keys increase/decrease step menu.hint_audioplayer_defdir Default audioplayer directory menu.hint_audioplayer_follow Move playlist selected pointer\nto current playing song @@ -839,7 +918,8 @@ menu.hint_channellist_foot Show additional information\nin bottom box menu.hint_channellist_mode Use the selected channel list mode on startup if last mode is TV menu.hint_channellist_mode_radio Use the selected channel list mode on startup if last mode is Radio menu.hint_channellist_setup Configure channel list GUI options -menu.hint_channellist_show_channellogo Show channellogos in channel list +menu.hint_channellist_show_channellogo Show channel logos in channel list +menu.hint_channellist_show_channelnumber Show channel number in channel list menu.hint_channels Open channel list menu.hint_ci Conditional access menu\nto setup your CI CAM or embeded Conax card menu.hint_clock_background Show clock with theme's background color @@ -847,6 +927,7 @@ menu.hint_clock_mode Switch clock on or off menu.hint_clock_seconds Show time format with seconds menu.hint_clock_size Set the size of the info clock menu.hint_clock_textcolor Configure digit colors +menu.hint_color_gradient Switches color gradients for various menu items on/off menu.hint_colors Configure GUI colors menu.hint_content_back Change GUI window background color menu.hint_content_textcolor Change GUI window text color @@ -862,8 +943,8 @@ menu.hint_epg_max_events Maximum events to cache. After reaching limit\nEPG cach menu.hint_epg_old_events Hours after event end time to consider\nevent old and remove it from cache menu.hint_epg_save Save cached EPG to harddisk or usb flash\nand load it after boot menu.hint_epg_save_standby Save EPG on soft standby mode -menu.hint_epg_scan Enable background epg scan using free tuner,\ncurrent bouquet or all favorites -menu.hint_epg_scan_mode Select box state to run epg scan +menu.hint_epg_scan Select bouquets to scan epg, current on zap,\nall or selected favorites +menu.hint_epg_scan_mode Enable background epg scan using free tuner menu.hint_event_textcolor Change event color for colored-event options\nin channel list and infobar menu.hint_eventlist_additional Show additional informations\nin main box menu.hint_eventlist_fonts Change event list font sizes @@ -880,15 +961,15 @@ menu.hint_font_gui Select font file to use for GUI menu.hint_font_scaling Set global vertical and horizontal\nGUI font scaling menu.hint_font_ttx Select font file to use for teletext menu.hint_fonts Configure GUI fonts and font sizes -menu.hint_gamelist_fonts Change games and scripts list font sizes menu.hint_games Show list of installed games -menu.hint_hdd Format / check hard disk drive +menu.hint_hdd Format / check data storage menu.hint_hdd_apply Apply sleep/noise parameters menu.hint_hdd_check Check filesystem (fsck) -menu.hint_hdd_fmt Select the disk format +menu.hint_hdd_fmt Select the data storage format menu.hint_hdd_format Create HDD partition and format it menu.hint_hdd_noise Set Automatic Acoustic Management\nnot all drives support this menu.hint_hdd_sleep Select time to stop hdd on inactivity +menu.hint_hdd_statfs Specify when the recording directory fill level in infoviewer and, if available, on VFD, may be updated menu.hint_hdd_tools Initialize HDD, check filesystem menu.hint_head_back Change GUI title background color menu.hint_head_textcolor Change GUI window title text color @@ -907,7 +988,6 @@ menu.hint_infobar_fonts Change infobar font sizes menu.hint_infobar_logo Logo / signal options menu.hint_infobar_logo_dir Select directory to search for channels logo menu.hint_infobar_on_epg Show infobar on current EPG event change -menu.hint_infobar_progressbar Selects the options of Progressbar in the Infobar menu.hint_infobar_radiotext Show radiotext window menu.hint_infobar_res Show channel resolution icons menu.hint_infobar_sat Show current satellite or cable provider @@ -958,6 +1038,7 @@ menu.hint_key_pip_swap Assign button to swap PiP and live channel menu.hint_key_plugin Assign button to execute the one touch plugin menu.hint_key_poweroff Assign button to switch power state\n (standby/deepstandby <-> running) menu.hint_key_quickzap Configure keybingdings for quick\nchannel switch +menu.hint_key_record Assign button to start a recording menu.hint_key_repeatblock Delay after button press and before\nfirst key repeat menu.hint_key_repeatblockgeneric Delay between key repeats\nwhile button pressed menu.hint_key_right Select 'right' function in live TV/Radio mode @@ -970,6 +1051,8 @@ menu.hint_key_subchannelup Assign button for fast switch\n to next subchannel menu.hint_key_transponder Assign button to show channel list\nfor current transponder menu.hint_key_tvradiomode Assign button to switch TV <> Radio mode menu.hint_key_unlock Assign button to unlock box if locked\nTo unlock press 'red', then in next 5 seconds this key +menu.hint_key_volumedown Assign button to decrease volume +menu.hint_key_volumeup Assign button to increase volume menu.hint_keys Remote control repeat rate\nEdit key bindings menu.hint_lang_pref Configure preferred audio, EPG\nand subtitle languages menu.hint_language OSD language, timezone\nPreffered audio and subtitles languages @@ -983,10 +1066,11 @@ menu.hint_leds_standby LEDs state in soft-standby mode menu.hint_leds_tv Working LEDs state menu.hint_load Load Neutrino-HD GUI settings from file menu.hint_longkeypress_duration A key press will be considered as "long key press" if it's pressed longer than the specified time. -menu.hint_lua Run Plugins +menu.hint_lua Run Lua Plugins menu.hint_make_hdlist Auto-create HD channel list based on\nchannel type and name menu.hint_make_newlist Create list of recently added channels menu.hint_make_removedlist Create list of recently removed channels +menu.hint_make_webtvlist Auto-create WebTV channel list based on\nchannel type and name menu.hint_manage_settings Backup, restore, revert to defaults\nFactory box reset menu.hint_mb Your recordings menu.hint_media Play movies, audio files\nWatch pictures @@ -1006,6 +1090,7 @@ menu.hint_movieplayer_plugin Choose a plugin that's executed with the one touch menu.hint_net_broadcast Enter broadcast address\nif unsure, use IP address with last .255 menu.hint_net_dhcp Use DHCP server to auto-configure menu.hint_net_djmount Mount UPnP devices as filesystem\nunder /media/00upnp +menu.hint_net_dropbear Enable ssh access to the box menu.hint_net_ftpd Enable file transfer using FTP menu.hint_net_gateway Enter gateway/router IP address menu.hint_net_hostname Change your box hostname @@ -1038,13 +1123,13 @@ menu.hint_net_xupnpd Share live channels over UPNP menu.hint_network IP address, gateway, DNS, Time sync\nNetwork shares and services menu.hint_new_zap_mode Allow channel switch while browsing\n(toggle mode with 'mute' in channel list) menu.hint_numeric_adjust Adjust channel list mode on numeric zap -menu.hint_onekey_plugin Choose a plugin that's executed with the one touch key menu.hint_opkg Install or update software packages menu.hint_opkg_upgrade Updates all installed packages to the most recent version available menu.hint_osd Colors, fonts, screen size\nGUI look and feel options menu.hint_osd_language Select OSD language menu.hint_osd_preset Pre-configured screen margins for CRT and LCD TV menu.hint_osd_timing After this time the OSD will be faded out +menu.hint_other_fonts Change other font sizes menu.hint_parentallock_changepin Change PIN code menu.hint_parentallock_lockage Select age allowed to watch menu.hint_parentallock_menu Lock menus with pin code @@ -1062,7 +1147,15 @@ menu.hint_plugins_hdd_dir Select directory to load\nplugins from menu.hint_power_leds Configure power-button LEDs behavior menu.hint_pref_lang Select preferred audio and EPG language\nselect 'none' to disable menu.hint_pref_subs Select preferred subtitle language\nselect 'none' to disable +menu.hint_progressbar Select the options for the progressbar menu.hint_progressbar_color Change appearance of progress bars +menu.hint_progressbar_gradient Add a vertical brightness gradient to progress bars +menu.hint_progressbar_infobar_position Selects the options of progressbar in the infobar +menu.hint_progressbar_preview Use OK to change the current progressbar state +menu.hint_progressbar_timescale_green Choose the green portion of colored progressbars +menu.hint_progressbar_timescale_invert Select your preferred color gradient +menu.hint_progressbar_timescale_red Choose the red portion of colored progressbars +menu.hint_progressbar_timescale_yellow Choose the yellow portion of colored progressbars menu.hint_protection Protect content by PIN code\nDefault PIN 0000 menu.hint_radiomode Switch box to radio mode menu.hint_reboot Reboot box\nNo confirmation @@ -1107,9 +1200,11 @@ menu.hint_scan_auto Auto-scan selected provider menu.hint_scan_autoall Scan several selected providers at once menu.hint_scan_autoall_select Add selected satellites to scan menu.hint_scan_bouquet Update: add to current bouquets, erase:\nremove old bouquets, leave: dont add or change +menu.hint_scan_bw Select the channel bandwidth menu.hint_scan_cable Select cable network to scan menu.hint_scan_cable_simple Cable scan with optional\nprovider channel numbering menu.hint_scan_commited Select commited input for\nthis satellite +menu.hint_scan_delsys Select delivery system for this channel/TP. menu.hint_scan_diseqc Select diseqc switch input for\nthis satellite menu.hint_scan_diseqcorder Diseqc command order for cascaded switches menu.hint_scan_diseqcrepeat Diseqc repeat for cascaded switches @@ -1126,6 +1221,8 @@ menu.hint_scan_fesetup Configure tuner(s) menu.hint_scan_fetimeout Time to wait for signal, in 1/10 of second menu.hint_scan_freq Enter transponder frequency menu.hint_scan_fta Add only free-to-air (not-scrambled) channels +menu.hint_scan_gi Select the guard interval for this terrestrial channel +menu.hint_scan_hierarchy Select the hierarchy for this terrestrial channel menu.hint_scan_ladirection Select latitude direction menu.hint_scan_latitude Enter your latitude menu.hint_scan_lnbconfig Configure LNB parameters for this satellite @@ -1162,6 +1259,7 @@ menu.hint_scan_setup_fe Configure selected frontend options menu.hint_scan_start Start scan. You can use 'exit' button to stop menu.hint_scan_test Test signal for this transponder menu.hint_scan_tpselect Select transponder to scan +menu.hint_scan_transmit_mode Select the transmission mode for this terrestrial channel menu.hint_scan_uncommited Select uncommited input for\nthis satellite menu.hint_scan_usals USALS options menu.hint_scan_usals_repeat Repeat usals move rotor commands\nif you expirience unstable rotor move @@ -1211,6 +1309,7 @@ menu.hint_timezone Select your timezone menu.hint_tools Run tools menu.hint_tvmode Switch box to TV mode menu.hint_tvradio_switch Switches between TV and Radio mode +menu.hint_upnp Universal Plug and Play Browser menu.hint_vfd Frontpanel LEDS, VFD options menu.hint_vfd_brightness Working brightness menu.hint_vfd_brightness_setup Configure frontpanel display brightness\nfor different modes @@ -1240,6 +1339,7 @@ menu.hint_volume Configure Volume GUI options menu.hint_volume_digits Numeric display of the volumebar on/off menu.hint_volume_pos Select volume indicator position menu.hint_volume_size Select volume indicator height +menu.hint_webtv_setup WebTV channels configured here will be available in the standard channel lists. menu.hint_window_size Channellist, EPG-infos and some other windows are scaled by this factor menu.hint_ytplay Play selected youtube feeds menu.hint_zap_cycle When swithing channels, stay in current bouquet @@ -1275,10 +1375,11 @@ miscsettings.epg_old_events_hint1 How long will EPG-Data be stored after they ti miscsettings.epg_old_events_hint2 Set in hours miscsettings.epg_save Save/Restore epg on reboot miscsettings.epg_save_standby Save epg on soft standby -miscsettings.epg_scan EPG scan +miscsettings.epg_scan EPG scan mode miscsettings.epg_scan_always Always -miscsettings.epg_scan_bq bouquet -miscsettings.epg_scan_fav favorites +miscsettings.epg_scan_bouquets EPG scan bouquets +miscsettings.epg_scan_bq Current +miscsettings.epg_scan_fav Favorites miscsettings.epg_scan_live Live miscsettings.epg_scan_sel Selected miscsettings.epg_scan_standby Standby @@ -1314,12 +1415,21 @@ miscsettings.progressbar_design_1 colored vertical lines miscsettings.progressbar_design_2 colored horizontal lines miscsettings.progressbar_design_3 colored bar miscsettings.progressbar_design_4 monochrome -miscsettings.progressbar_design_long Progressbardesign +miscsettings.progressbar_design_long Design +miscsettings.progressbar_gradient 3D effect miscsettings.progressbar_infobar_position Position miscsettings.progressbar_infobar_position_0 standard miscsettings.progressbar_infobar_position_1 below channel name miscsettings.progressbar_infobar_position_2 small below channel name miscsettings.progressbar_infobar_position_3 narrow between EPG-Events +miscsettings.progressbar_preview Preview +miscsettings.progressbar_timescale Time scale +miscsettings.progressbar_timescale_green green +miscsettings.progressbar_timescale_green_red from green to red +miscsettings.progressbar_timescale_invert Color gradient +miscsettings.progressbar_timescale_red red +miscsettings.progressbar_timescale_red_green from red to green +miscsettings.progressbar_timescale_yellow yellow miscsettings.radiotext Radiotext miscsettings.shutdown_count In standby, switch off after miscsettings.shutdown_count_hint1 time (in minutes) to switch from standby @@ -1384,6 +1494,7 @@ moviebrowser.browser_row_head Row settings moviebrowser.browser_row_item Row item moviebrowser.browser_row_nr Number of rows moviebrowser.browser_row_width Row width (% of screenwidth) +moviebrowser.cache_dir Cache directory moviebrowser.delete_info Delete files, please wait... moviebrowser.dir Path moviebrowser.dir_head Additional paths @@ -1414,6 +1525,7 @@ moviebrowser.hint_newbook_backward New jump back\n 'blue' for endposition moviebrowser.hint_newbook_forward New jump forward\n 'blue' for endposition moviebrowser.info_audio Audio moviebrowser.info_channel Channel +moviebrowser.info_file File moviebrowser.info_filename Name moviebrowser.info_genre_major Genre moviebrowser.info_genre_minor Genre @@ -1483,12 +1595,20 @@ moviebrowser.short_size MB moviebrowser.short_title Title moviebrowser.start_head Start movie from: moviebrowser.start_record_start Movie start +moviebrowser.ts_only Show recordings only moviebrowser.update_if_dest_empty_only Copy if destination is empty only moviebrowser.use_dir Use directory moviebrowser.use_movie_dir Use movie directory moviebrowser.use_rec_dir Use record directory +moviebrowser.yt_cache Downloads +moviebrowser.yt_cache_add Download of\n%s\nis scheduled. +moviebrowser.yt_cancel Cancel all +moviebrowser.yt_cancel_transfer Cancel download? +moviebrowser.yt_clear Clear +moviebrowser.yt_completed Completed downloads moviebrowser.yt_concurrent_connections Concurrent connections moviebrowser.yt_error Failed to load youtube feed +moviebrowser.yt_failed Failed downloads moviebrowser.yt_history Search history moviebrowser.yt_max_history Max search history size moviebrowser.yt_max_results Max results to fetch @@ -1500,6 +1620,7 @@ moviebrowser.yt_orderby.published publishing date moviebrowser.yt_orderby.rating rating moviebrowser.yt_orderby.relevance relevance moviebrowser.yt_orderby.viewcount view count +moviebrowser.yt_pending Pending downloads moviebrowser.yt_pref_quality Prefered quality moviebrowser.yt_prev_results Previous results moviebrowser.yt_recently_featured Recently featured @@ -1534,6 +1655,8 @@ movieplayer.ytplayback Youtube videoplayer mpkey.audio Audio track mpkey.bookmark save bookmark mpkey.forward Forward +mpkey.goto Enter playtime +mpkey.next_repeat_mode next repeat mode mpkey.pause Pause mpkey.play Play mpkey.plugin Movieplayer plugin @@ -1589,6 +1712,7 @@ nfs.mountnow mount now nfs.mountok mount successful nfs.mounttimeout mount error: timeout nfs.password password +nfs.refresh_mac look up MAC address nfs.remount remount directories nfs.type type nfs.type_cifs CIFS @@ -1618,6 +1742,7 @@ opkg.title Package Management opkg.upgrade Upgrade installed packages options.default Reset to defaults options.fb framebuffer +options.hint_default Reset the values to their defaults options.ntp_off DVB options.ntp_on NTP options.null null @@ -1721,6 +1846,11 @@ pinprotection.head Enter PIN code pinprotection.wrongcode PIN-Code was wrong! Try again. plugins.hdd_dir Plugin HDD dir. plugins.result plugin output +plugintype.disabled Disabled +plugintype.game Game +plugintype.lua Lua plugin +plugintype.script Script +plugintype.tool Tool rclock.lockmsg Your box remote control will be locked.\n To unlock it, press \n and on your remote control. rclock.menueadd Lock RC rclock.title Lock Remote Control @@ -1808,6 +1938,11 @@ satsetup.fastscan_prov_tvv_sd TV Vlaanderen (SD) satsetup.fastscan_sd SD only satsetup.fastscan_type Scan type satsetup.fastscan_update Auto update +satsetup.fe_delsys_mode Delivery system mode +satsetup.fe_delsys_mode_auto Auto +satsetup.fe_delsys_mode_cable Cable +satsetup.fe_delsys_mode_sat Satellite +satsetup.fe_delsys_mode_terrestrial Terrestrial satsetup.fe_mode Tuner mode satsetup.fe_mode_independent Independent satsetup.fe_mode_link_loop Loop @@ -1848,6 +1983,7 @@ sc.waiting Waing for card answer scants.abort_body Should the search really be aborted? scants.abort_header Abortion of channel scan scants.actcable Cable: +scants.acthybrid Hybrid: scants.actsatellite Satellite: scants.actterrestrial Terrestrial: scants.bouquet Bouquet @@ -1915,7 +2051,7 @@ settings.pos_top_left top left settings.pos_top_right top right settings.restore Image-Settings: Restore settings.restore_warn This will replace all settings and reboot\nContinue ? -shutdown.recoding_query You really want to to stop record ? +shutdown.recording_query You really want to to stop record ? shutdowntimer.announce Box will shutdown in 1 min.\nCancel Shutdown ? sleeptimerbox.announce Box will standby in 1 min.\nCancel Standby ? sleeptimerbox.hint1 Shutdown time in minutes (000 = off) @@ -1926,6 +2062,7 @@ sleeptimerbox.title2 Inactivity shutdown timer streaminfo.aratio Aspect Ratio streaminfo.aratio_unknown unknown streaminfo.audiotype Audiotype +streaminfo.audiotype_unknown unknown streaminfo.average_bitrate Average streaminfo.bitrate Bitrate streaminfo.framerate Framerate @@ -2034,6 +2171,7 @@ unicable.lnb Unicable Input unicable.qrg Unicable Frequency unicable.scr Unicable SCR unit.decimal . +unit.long.years years unit.short.hour h unit.short.millisecond ms unit.short.minute min @@ -2052,6 +2190,9 @@ usermenu.item_epg_misc EPG functions usermenu.item_none (empty) usermenu.item_plugin_types Plugin types usermenu.item_vtxt Videotext +usermenu.items Menu items +usermenu.key Key +usermenu.key_select Assign key usermenu.msg_info_is_empty You don't have definied a name for this menu!\nUsing default name:\n usermenu.msg_warning_name You have more than one items created for this menu,\nbut none new name for this menue defined.\nIt is recommended to enter a new name! usermenu.msg_warning_no_items No items defined!\nThe menu name is reset! @@ -2110,6 +2251,10 @@ videomenu.videoformat_149 14:9 videomenu.videoformat_169 16:9 videomenu.videoformat_43 4:3 videomenu.videomode Digital video mode +webtv.head WebTV +webtv.xml WebTV XML files +webtv.xml.add Add XML file +webtv.xml.del Remove XML file window_size Window size in % wizard.initial_settings Initial settings found wizard.install_settings Do you want to install channels for Astra 19.2°E? @@ -2121,6 +2266,7 @@ wizard.setup_type_hint Easy to setup for CanalDigitaal/TéléSAT/TV Vlaanderen p wizard.welcome_head Welcome to the Setup Wizard wizard.welcome_text Next steps will guide you through initial installation of the device.\nImportant: Your CST set-top box can be conveniently controlled\nwith the web interface for timer management or live TV on the Web browser.\nDo not make it accessible to untrusted networks!\nDo you want to continue? word.from from +word.in in zapit.scantype scan for services zapit.scantype.all all services zapit.scantype.radio only radio diff --git a/data/locale/nederlands.locale b/data/locale/nederlands.locale index 6688ca37b..3f229a66e 100644 --- a/data/locale/nederlands.locale +++ b/data/locale/nederlands.locale @@ -17,7 +17,6 @@ EPGPlus.record Opnemen EPGPlus.refresh_epg Herlaad EPG EPGPlus.remind Zap reservering EPGPlus.scroll_mode Scroll modus -EPGPlus.select_font_name Lettertype naam EPGPlus.stretch_mode Uitgestrekte modus EPGPlus.swap_mode Verwissel modus EPGPlus.view_mode Bekijk modus @@ -97,11 +96,10 @@ GENRE.TRAVEL_HOBBIES.5 Koken GENRE.TRAVEL_HOBBIES.6 Adverteren / Winkelen GENRE.TRAVEL_HOBBIES.7 Tuinieren GENRE.UNKNOWN Onbekend -U kunt uw ontvanger ook eenvoudig bedienen via de web-interface. Raadpleeg de handleiding\n -apids.hint_1 Geef APIDs om te streamen -apids.hint_2 in HEX in gescheiden door ' ' +adzap AdZap apidselector.head Selecteer taal audio.srs_algo Methode +audio.srs_algo_heavy Heavy audio.srs_algo_light Eenvoudig audio.srs_algo_normal Normaal audio.srs_iq SRS True-volume technologie @@ -130,6 +128,7 @@ audiomenu.pref_subs_head Voorkeuren ondertiteling audiomenu.spdif_dd DolbyDigital via SPDIF audiomenu.stereo Stereo audiomenu.volume_adjust Volumeniveau aanpassen in percentage +audiomenu.volume_start Start volume audiomenu.volume_step Volume stap audioplayer.add Toevoegen audioplayer.add_ic Icecast @@ -177,7 +176,6 @@ audioplayer.shuffle Shuffle audioplayer.spectrum LCD a-spectrum audioplayer.stop Stop audioplayer.title_artist Titel, Artiest -audioplayerpicsettings.general Audiospeler / Afbeeldingen bookmarkmanager.delete Wissen bookmarkmanager.name bookmarks bookmarkmanager.rename Hernoem @@ -203,6 +201,7 @@ bouquetname.hdtv HD zenders bouquetname.new Nieuwe Zenders bouquetname.other Onbekende provider bouquetname.removed Verwijderde zenders +bouquetname.webtv WebTV zenders buildinfo.compiled_on Build Host buildinfo.compiled_with Compiler Version buildinfo.compiler_flags Compiler Flags @@ -219,6 +218,8 @@ channellist.edit Bewerken channellist.epgtext_align_left links channellist.epgtext_align_right rechts channellist.extended Proces balk weergeven +channellist.extended_colored met gekleurde voortgangsbalk +channellist.extended_simple met simpele voortgangsbalk channellist.favs Favorieten channellist.foot Zender informatie channellist.foot_freq Sat/Freq Info @@ -234,15 +235,21 @@ channellist.keep_numbers Aanhoudende kanaalnummers channellist.make_hdlist Creeër HD favorietenlijst channellist.make_newlist Creeër lijst met nieuwe kanalen channellist.make_removedlist Creeër lijst met verwijderde kanalen +channellist.make_webtvlist Maak lijst van WebTV zenders channellist.new_zap_mode Quickzap in lijst channellist.new_zap_mode_active Actief channellist.new_zap_mode_allow Toestaan channellist.new_zap_mode_off Uit channellist.nonefound Geen kanalen gevonden.\nVoer een zenderscan uit. +channellist.numeric_adjust Numeric zap adjust channellist.provs Providers channellist.recording_not_possible Het maken van een opname\n is niet mogelijk. +channellist.remember Laatst gebruikt +channellist.reset_all Reset 'new' flag voor alle zenders channellist.reset_flags Reset 'nieuw' kanaal vlag channellist.sats Satellieten +channellist.show_channellogo Toon zender logos +channellist.show_channelnumber Toon zender nummers channellist.since sinds channellist.start start tijd ci.clock CI kloksnelheid (Mhz) @@ -257,13 +264,18 @@ ci.reset_standby Opnieuw instellen na stand-by ci.settings Conditional access ci.timeout Timeout wachten CI menu gereed ci.waiting Wachten op reactie... +clock_background Toon achtergrond +clock_seconds Toon secondes +clock_size_height Display hoogte clock_switch_off klok uit clock_switch_on klok aan +color.gradient Kleur gradient colorchooser.alpha Alpha colorchooser.blue Blauw colorchooser.green Groen colorchooser.red Rood colormenu.background Achtergrond +colormenu.clock_textcolor Digit kleur colormenu.contrast_fonts Contrast lettertype colormenu.fade Menu's vervagen colormenu.font Selecteer lettertype gebruikersinterface @@ -280,9 +292,6 @@ colormenusetup.menucontent_inactive Inactieve content colormenusetup.menucontent_selected Geselecteerde content colormenusetup.menuhead Menu kop colorstatusbar.text Infobalk -colorthememenu.classic_theme Klassiek Thema -colorthememenu.dblue_theme Donkerblauw Thema -colorthememenu.dvb2k_theme DVB2000 Thema colorthememenu.head Selecteer thema colorthememenu.head2 Thema's laden colorthememenu.name Naam thema @@ -326,19 +335,27 @@ epgextended.guests Gasten epgextended.original_title Originele Titel epgextended.presenter Presentator epgextended.year_of_production Productie jaar -epglist.head programma-gids- %s epglist.noevents EPG is niet beschikbaar... epgviewer.More_Screenings More Volgend scherm epgviewer.More_Screenings_short Volgend scherm +epgviewer.age_rating Age rating +epgviewer.audio Audio +epgviewer.genre Genre +epgviewer.length Length (min.) epgviewer.nodetailed Geen gedetailleerde informatie aanwezig epgviewer.notfound geen EPG gevonden eventfinder.head Zoeken in EPG +eventfinder.history Search history eventfinder.keyword Trefwoord zoeken +eventfinder.max_history Max results to fetch eventfinder.search Zoeken +eventfinder.search_all_epg whole eventfinder.search_within_epg Zoeken in eventfinder.search_within_list Zoeken in eventfinder.searching Zoek naar trefwoord in EPG... eventfinder.start_search Zoeken starten +eventlist.additional Additionele info +eventlist.name Eventlist eventlistbar.channelswitch Zap reservering eventlistbar.eventsort Sorteren eventlistbar.recordevent Opnemen @@ -346,55 +363,51 @@ extra.add_to_bouquet Toevoegen aan favorietenlijst extra.audio_run_player Audio key start player extra.auto_delete Automatisch verwijderen extra.auto_timeshift Automatische opname, sec (0 = uitgeschakeld) -extra.bigwindows Grote vensters extra.cache_txt Cache teletekst extra.chadded het huidige kanaal is toegevoegd aan de geselecteerde favorietenlijst...\n extra.chalreadyinbq het huidige kanaal bevindt zich al in de geselecteerde favorietenlijst...\n extra.dboxinfo Box Info -extra.dvbsnoop DVB Stream Info -extra.dvbsnoop_band Toon pid bandbreedte -extra.dvbsnoop_cat Toon CAT -extra.dvbsnoop_eit Toon EIT -extra.dvbsnoop_nit Toon NIT -extra.dvbsnoop_pat Toon PAT -extra.dvbsnoop_pid Toon manual PID -extra.dvbsnoop_rst Toon RST -extra.dvbsnoop_scan Scan PIDs -extra.dvbsnoop_sdt Toon SDT -extra.dvbsnoop_sit Toon SIT -extra.dvbsnoop_tdt Toon TDT -extra.dvbsnoop_tsdt Toon TSDT +extra.dboxinfo_available Beschikbaar +extra.dboxinfo_boottime Boot +extra.dboxinfo_filesystem Bestandssysteem +extra.dboxinfo_frontend Frontends +extra.dboxinfo_load Laad +extra.dboxinfo_memory Geheugen +extra.dboxinfo_ram RAM +extra.dboxinfo_size Totaal +extra.dboxinfo_swap Swap +extra.dboxinfo_time Tijd +extra.dboxinfo_timeformat %F, %H:%M:%S +extra.dboxinfo_uptime Uptime +extra.dboxinfo_use Gebruik +extra.dboxinfo_used Gebruikt extra.east Oost extra.fec_1_2 1/2 extra.fec_2_3 2/3 +extra.fec_2_5 2/5 extra.fec_3_4 3/4 +extra.fec_3_5 3/5 +extra.fec_4_5 4/5 extra.fec_5_6 5/6 extra.fec_7_8 7/8 +extra.fec_8_9 8/9 +extra.fec_9_10 9/10 extra.fec_auto Auto DVB-S -extra.fec_auto_s2 Auto DVB-S2 -extra.fec_s2_8psk_1_2 1/2 s2 8psk -extra.fec_s2_8psk_2_3 2/3 s2 8psk -extra.fec_s2_8psk_3_4 3/4 s2 8psk -extra.fec_s2_8psk_3_5 3/5 s2 8psk -extra.fec_s2_8psk_4_5 4/5 s2 8psk -extra.fec_s2_8psk_5_6 5/6 s2 8psk -extra.fec_s2_8psk_7_8 7/8 s2 8psk -extra.fec_s2_8psk_8_9 8/9 s2 8psk -extra.fec_s2_8psk_9_10 9/10 s2 8psk -extra.fec_s2_qpsk_1_2 1/2 s2 qpsk -extra.fec_s2_qpsk_2_3 2/3 s2 qpsk -extra.fec_s2_qpsk_3_4 3/4 s2 qpsk -extra.fec_s2_qpsk_3_5 3/5 s2 qpsk -extra.fec_s2_qpsk_4_5 4/5 s2 qpsk -extra.fec_s2_qpsk_5_6 5/6 s2 qpsk -extra.fec_s2_qpsk_7_8 7/8 s2 qpsk -extra.fec_s2_qpsk_8_9 8/9 s2 qpsk -extra.fec_s2_qpsk_9_10 9/10 s2 qpsk extra.key_current_transponder Huidige transponder toets +extra.key_format_mode Video formaat +extra.key_help Help toets extra.key_list_end Eind extra.key_list_start Begin +extra.key_next43mode Volgende aspect ratio +extra.key_pic_mode Scherm formaat +extra.key_pic_size 4:3 scherm gedrag +extra.key_pip_close Stop/Start PiP +extra.key_pip_setup Configureer PiP +extra.key_pip_swap Wissel PiP/live extra.key_plugin One touch plugin +extra.key_record Opname toets extra.key_screenshot Screenshot toets +extra.key_switchformat Volgende resolutie extra.key_timeshift Timeshift extra.key_unlock Ontgrendel toets extra.ladirection LA richting @@ -402,11 +415,11 @@ extra.latitude Breedtegraad (latitude) extra.loadconfig Neutrino-HD Settings: Laden van extra.loadkeys Toetsen laden van extra.lodirection LO richting -extra.logview Bekijk Log extra.longitude Lengtegraad (Longitude) extra.menu_left_exit "Links" = Terug extra.north Noord extra.record_time Max. opname tijd in uren +extra.record_time_ts Maximale timeshift duur extra.rotor_swap Schakelen rotor oost/west extra.rounded_corners Vorm van hoeken extra.rounded_corners_off Rechthoekig @@ -420,24 +433,81 @@ extra.south Zuid extra.start_tostandby Opstarten in stand-by modus extra.temp_timeshift Tijdelijke timeshift extra.timeshift_pause Timeshift pauzeren -extra.tp.pol_v V +extra.tp_bandwidth Bandbreedte +extra.tp_bandwidth_10mhz 10Mhz +extra.tp_bandwidth_1_712mhz 1.712Mhz +extra.tp_bandwidth_5mhz 5Mhz +extra.tp_bandwidth_6mhz 6Mhz +extra.tp_bandwidth_7mhz 7Mhz +extra.tp_bandwidth_8mhz 8Mhz +extra.tp_bandwidth_auto Auto +extra.tp_coderate_hp Coderate(HP) +extra.tp_coderate_lp Coderate(LP) +extra.tp_constellation Constellatie +extra.tp_delsys Delivery system +extra.tp_delsys_dss DSS +extra.tp_delsys_dtmb DTMB +extra.tp_delsys_dvbc DVB-C +extra.tp_delsys_dvbc2 DVB-C2 +extra.tp_delsys_dvbs DVB-S +extra.tp_delsys_dvbs2 DVB-S2 +extra.tp_delsys_dvbt DVB-T +extra.tp_delsys_dvbt2 DVB-T2 +extra.tp_delsys_isdbc ISDB-C +extra.tp_delsys_isdbs ISDB-S +extra.tp_delsys_isdbt ISDB-T +extra.tp_delsys_turbo Turbo extra.tp_fec FEC extra.tp_freq Frequentie +extra.tp_gi Guard interval +extra.tp_gi_19_128 19/128 +extra.tp_gi_19_256 19/256 +extra.tp_gi_1_128 1/128 +extra.tp_gi_1_16 1/16 +extra.tp_gi_1_32 1/32 +extra.tp_gi_1_4 1/4 +extra.tp_gi_1_8 1/8 +extra.tp_gi_auto Auto +extra.tp_gi_pn420 PN420 +extra.tp_gi_pn595 PN595 +extra.tp_gi_pn945 PN945 +extra.tp_hierarchy Hierarchy info +extra.tp_hierarchy_1 1 +extra.tp_hierarchy_2 2 +extra.tp_hierarchy_4 4 +extra.tp_hierarchy_auto Auto +extra.tp_hierarchy_none Geen extra.tp_mod Modulatie extra.tp_mod_128 QAM/128 extra.tp_mod_16 QAM/16 extra.tp_mod_256 QAM/256 extra.tp_mod_32 QAM/32 +extra.tp_mod_4 QPSK +extra.tp_mod_4_nr QAM/4-NR extra.tp_mod_64 QAM/64 +extra.tp_mod_8 8PSK +extra.tp_mod_auto QAM/AUTO extra.tp_pol Polarisatie extra.tp_pol_h H extra.tp_pol_l L extra.tp_pol_r R +extra.tp_pol_v V extra.tp_rate Symbool ratio +extra.tp_transmit_mode Transmit modus +extra.tp_transmit_mode_16k 16K +extra.tp_transmit_mode_1k 1K +extra.tp_transmit_mode_2k 2K +extra.tp_transmit_mode_32k 32K +extra.tp_transmit_mode_4k 4K +extra.tp_transmit_mode_8k 8K +extra.tp_transmit_mode_auto Auto +extra.tp_transmit_mode_c1 C1 +extra.tp_transmit_mode_c3780 C3780 extra.update_dir Lokale update directory extra.use_gotoxx Gebruik gotoXX extra.volume_digits Volumebar digits extra.volume_pos Volumebar +extra.volume_size Hoogte van display extra.west West extra.zap_cycle Zap cyclus extra.zapit_fe_timeout Tune timeout (1 = 10 msec) @@ -479,10 +549,21 @@ filesystem.is.utf8.option.iso8859.1 ISO-8859-1 filesystem.is.utf8.option.utf8 UTF-8 flashupdate.actionreadflash lezen flashupdate.apply_settings Importeer instellingen? +flashupdate.autocheck Controleer beschikbare updates bij opstarten flashupdate.cantopenfile Kan het bestand niet openen flashupdate.cantopenmtd Kan MTD niet openen flashupdate.checkupdate_internet Online updates zoeken flashupdate.checkupdate_local Lokaal updaten +flashupdate.createimage Bewaar image +flashupdate.createimage_add_env Voeg 'env' toe aan image +flashupdate.createimage_add_kernel Voeg 'kernel' toe aan image +flashupdate.createimage_add_spare Voeg 'spare' toe aan image +flashupdate.createimage_add_u_boot Voeg 'u-boot' toe aan image +flashupdate.createimage_add_uldr Voeg 'uldr' toe aan image +flashupdate.createimage_menu Bewaar huidige software +flashupdate.createimage_options Opties +flashupdate.createimage_other Maak image voor %s STB +flashupdate.createimage_warning Een image voor de %s STB is gemaakt\nDeze image werkt alleen op %s STB!\n \nToch doorgaan? flashupdate.currentversion_sep Huidige versie flashupdate.currentversiondate Datum flashupdate.currentversiontime Tijd @@ -501,9 +582,21 @@ flashupdate.globalprogress Globale voortgang: flashupdate.head Software Update flashupdate.md5check Firmware controleren flashupdate.md5sumerror Firmware bevat fouten +flashupdate.menu_apply_kernel Flashing kernel +flashupdate.menu_apply_settings Allow Instellingen toepassen +flashupdate.mkfs_create_image Maak image +flashupdate.mkfs_preparing_files Voorbereiden bestanden en mappen +flashupdate.mkfs_using_sumtool Gebruik sumtool flashupdate.msgbox Het volgende bestand is gevonden:\nDatum: %s, %s\nBaseImage: %s\nType: %s\n\nWilt u het bestand installeren? flashupdate.msgbox_manual De volgende firmware is gevonden:\nDatum: %s, %s\nBaseImage: %s\nImageType: %s\n\n Wilt u deze versie installeren? flashupdate.mtdselector Partitie-selector +flashupdate.namemode1 Filename instellingen bestand +flashupdate.namemode1_default +settings.img +flashupdate.namemode1_hostname_time +