diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2009-12-30 14:29:12 +0100 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2009-12-30 14:29:12 +0100 |
commit | 958739d6b84d31402b01ec1b7048cd5ccb59f5e4 (patch) | |
tree | ced0b248384a5485a9ffc162753841c335bcc29f | |
parent | 15d999894118c71926b62b5968f08c0ac9f092d2 (diff) | |
download | vdradmin-am-958739d6b84d31402b01ec1b7048cd5ccb59f5e4.tar.gz vdradmin-am-958739d6b84d31402b01ec1b7048cd5ccb59f5e4.tar.bz2 |
2009-12-30: 3.6.5v3.6.5
- Changed: use HTTP::Date for HTTP date/time formatting (Ville Skyttä).
- Improved: Create fewer SVDRP connections (Ville Skyttä).
- Fixed: some jslint warnings in javascript files (Ville Skyttä).
- Improved: Config file read/write error handling (Ville Skyttä).
- Improved: Send Last-Modified header for static resources (Ville Skyttä).
- Added: "-l" and "--log" parameter.
- Changed: "-nf" option to "-n".
- Changed: Logging.
- Added: "--ssl" switch to accept https instead of http.
- Added: Find VDR 1.7.2+ TS recordings.
- Updated: Italian translation (Submitted by Diego Pierotto).
- Fixed: epgsearch uses seconds in aux field of timers, not minutes (Reported by Rincewind99 @vdr-portal.de).
- Fix bug #507 "EPGsearch custom categories no longer show".
- Fixed: Saving the config showed error message "1".
- Reworked: Spanish translation (Submitted by Manuel Gomez).
- Fixed: failing check whether the process with our pid is a vdradmind (Ville Skyttä)
- Fixed: always exit with status 1 from --kill if no processes were killed (Ville Skyttä)
- Improved: pid file error handling (Ville Skyttä)
- Added: autotimer schedule change tracking option in UI (Ville Skyttä)
- Fixed: use text/javascript for JavaScript in HTTP headers (Ville Skyttä)
- Updated: required Perl module documentation (Ville Skyttä)
- Improved: template caching options (stat ttl, default cache dir is now /var/cache/vdradmin) (Ville Skyttä)
- Improved: error message when binding the server socket fails (Ville Skyttä)
- Improved: warn if log file cannot be written to (Ville Skyttä)
- Fixed: don't try to delete pid file in non-daemon mode.
- Improved: include reason in pid file deletion error message (Ville Skyttä).
- Added: ability to log to syslog ("LOGFILE = syslog" in config) (Ville Skyttä).
- Changed: non-daemon mode (-nf) always turns on logging to stderr (Ville Skyttä).
48 files changed, 11520 insertions, 10804 deletions
@@ -12,7 +12,7 @@ The translation team: - French: Trois Six, map, lobotomise, bads, Mickal Nival - German: Andreas Mair - Italian: Diego Pierotto -- Spanish: Rdiger Jung +- Spanish: Rdiger Jung, Manuel Gomez - Russian: Oleg Roitburd and Allrussian-forum translation team This package includes/uses: @@ -1,3 +1,382 @@ +2009-12-30 tag v3_6_5 + +2009-12-30 amair + + * HISTORY, vdradmind.pl, template/default/about.html: + + Updated for v3.6.5 release. + +2009-12-30 amair + + * po/cs.po, po/de.po, po/es.po, po/fi.po, po/fr.po, po/it.po, + po/nl.po, po/ru.po, po/vdradmin.pot: + + Updated. + +2009-12-30 scop + + * HISTORY, README, install.sh, vdradmind.pl: + + Use HTTP::Date for HTTP date/time formatting. + +2009-12-29 scop + + * vdradmind.pl: + + Remove unused variables flagged by perlcritic. + +2009-12-29 scop + + * vdradmind.pl: + + Fix numeric/string comparison issue flagged by perltidy. + +2009-12-29 scop + + * HISTORY, vdradmind.pl: + + Create fewer SVDRP connections. + +2009-10-11 amair + + * README: + + Updated link to VDR homepage. + +2009-08-06 amair + + * vdradmind.pl: + + Removed $DEBUG (IMHO it's easier to use "-n" and "-l" for debugging). + +2009-08-05 scop + + * vdradmind.pl, template/default/timeline.js: + + Cosmetic: trim trailing whitespace. + +2009-08-05 scop + + * template/default/library.js: + + Add jslint settings, fix some warnings. + +2009-08-05 scop + + * template/default/timeline.js: + + Add jslint settings, fix more warnings. + +2009-08-05 scop + + * HISTORY, template/default/timeline.js: + + Get rid of jslint "used before defined" warnings (big diff, just reordering functions, no other changes). + +2009-08-05 scop + + * vdradmind.pl: + + Migrate log level config. + +2009-08-05 scop + + * vdradmind.pl: + + Add warning log level, set default to it, replace warn() calls with appropriate logging calls. + +2009-08-05 scop + + * vdradmind.pl: + + Use DAEMON instead of USER syslog facility. + +2009-08-05 scop + + * vdradmind.pl: + + Turn off daemon mode with -h|--help, -c|--config, -k|--kill, -i|--displaycall, and -m|--message (affects logging). + +2009-08-05 scop + + * HISTORY, vdradmind.pl: + + Improve config file read/write error handling. + +2009-08-05 scop + + * vdradmind.pl: + + Drop dead code. + +2009-08-05 scop + + * HISTORY, vdradmind.pl: + + Send Last-Modified header for static resources. + +2009-08-05 scop + + * vdradmind.pl: + + Avoid some unnecessary stat() calls. + +2009-08-05 scop + + * vdradmind.pl: + + Fix syslog priority string for errors ("err", not "error"). + +2009-08-05 amair + + * vdradmind.pl: + + Don't stop reading parameters after "-n|--nofork". + +2009-08-05 amair + + * HISTORY, README, vdradmind.pl: + + Added "-l" and "--log" parameter. + +2009-08-05 amair + + * HISTORY, README, vdradmind.pl, vdradmind.pl.1: + + Changed "-nf" option to "-n". + +2009-08-05 amair + + * HISTORY, vdradmind.pl: + + Reworked logging. + +2009-07-23 amair + + * README: + + Updated. + +2009-07-23 amair + + * HISTORY, install.sh, vdradmind.pl: + + Added "--ssl" switch to accept https instead of http. + +2009-07-23 amair + + * HISTORY, vdradmind.pl: + + Find VDR 1.7.2+ TS recordings. + +2009-07-23 amair + + * HISTORY: + + Updated. + +2009-07-22 scop + + * vdradmind.pl: + + Note that -p is ignored with -nf. + +2009-07-22 scop + + * HISTORY, vdradmind.pl: + + Make non-daemon mode always turn on logging to stderr. + +2009-07-22 scop + + * HISTORY, README, install.sh, vdradmind.pl: + + Add ability to log to syslog ("LOGFILE = syslog" in config). + +2009-07-22 scop + + * vdradmind.pl: + + Simplify Log() a bit further. + +2009-07-22 scop + + * HISTORY, vdradmind.pl: + + Include reason in pid file deletion error message. + +2009-07-22 amair + + * vdradmind.pl: + + Delete pidfile only if running as daemon. + +2009-07-21 scop + + * vdradmind.pl: + + Log() code cleanups (3-argument open(), eliminate unnecessary sprintf()). + +2009-07-21 scop + + * HISTORY, vdradmind.pl: + + Warn if log file cannot be written to. + +2009-07-21 scop + + * HISTORY: + + Typo fix. + +2009-07-21 scop + + * .cvsignore: + + Ignore log and pid files. + +2009-07-21 scop + + * HISTORY, vdradmind.pl: + + Improve error message when binding the server socket fails. + +2009-07-21 scop + + * vdradmind.pl: + + Start without compiled template caching but warn if compile dir is not writable. + +2009-07-15 scop + + * HISTORY, install.sh, vdradmind.pl: + + Improve template caching defaults (remove useless CACHE_SIZE, set STAT_TTL to one hour, set CACHE_DIR to /var/cache/vdradmin). + +2009-07-15 scop + + * HISTORY, README, install.sh: + + Note that Template::Plugin::JavaScript is required. + +2009-07-15 scop + + * README: + + Note that Compress::Zlib is optional. + +2009-07-15 scop + + * README: + + Point to official VDR homepage URL, fix indentation. + +2009-07-15 scop + + * HISTORY, vdradmind.pl: + + Use text/javascript for JavaScript in HTTP headers. + +2009-07-14 scop + + * HISTORY, po/fi.po, po/vdradmin.pot, template/default/config.html: + + Add autotimer schedule change tracking option in UI. + +2009-02-09 amair + + * po/it.po: + + Updated. + +2009-01-21 amair + + * vdradmind.pl: + + Fixed: epgsearch uses seconds in aux field of timers, not minutes. + +2009-01-21 amair + + * vdradmind.pl: + + Fix bug #507 "EPGsearch custom categories no longer show". + +2009-01-03 scop + + * vdradmind.pl: + + use() fine tuning. + +2009-01-03 scop + + * vdradmind.pl: + + Improve pid file deletion logic, avoid warning noise. + +2009-01-03 amair + + * HISTORY, vdradmind.pl: + + Fixed: Saving the config showed error message "1". + +2009-01-03 amair + + * CREDITS, template/default/about.html: + + Added Manuel Gomez to list of translators. + +2008-12-31 scop + + * vdradmind.pl: + + Sanity check pid file contents on read. + +2008-12-31 scop + + * HISTORY, vdradmind.pl: + + Improve pid file error handling. + +2008-12-31 scop + + * HISTORY, vdradmind.pl: + + Always exit with status 1 from --kill if no processes were killed. + +2008-12-31 scop + + * HISTORY, vdradmind.pl: + + Fix "is the process with this pid a vdradmind" logic (outputs of "ps ax" differ); now uses/requires POSIX compliant "ps". + +2008-12-31 amair + + * po/es.po: + + Reworked by Manuel Gomez. + +2008-12-25 scop + + * po/cs.po, po/de.po, po/es.po, po/fi.po, po/fr.po, po/it.po, + po/nl.po, po/ru.po, po/vdradmin.pot, + template/default/help_at_timer_new.html, + template/default/help_config.html: + + Some English message fixes. + +2008-12-25 scop + + * po/.cvsignore: + + Ignore *.mo. + +2008-12-25 amair + + * po/cs.po, po/de.po, po/es.po, po/fi.po, po/fr.po, po/it.po, + po/nl.po, po/ru.po, po/vdradmin.pot, tools/tmplgettext: + + Sort HTML templates alphanumeric so that the ordering of the messages in the .po files doesn't change. + 2008-12-20 tag v3_6_4 2008-12-20 amair @@ -4,6 +4,36 @@ E-Mail: mail AT andreas DOT vdr-developer DOT org VDR-Portal: amair ----------------------------------------------------------- +2009-12-30: 3.6.5 +- Changed: use HTTP::Date for HTTP date/time formatting (Ville Skytt). +- Improved: Create fewer SVDRP connections (Ville Skytt). +- Fixed: some jslint warnings in javascript files (Ville Skytt). +- Improved: Config file read/write error handling (Ville Skytt). +- Improved: Send Last-Modified header for static resources (Ville Skytt). +- Added: "-l" and "--log" parameter. +- Changed: "-nf" option to "-n". +- Changed: Logging. +- Added: "--ssl" switch to accept https instead of http. +- Added: Find VDR 1.7.2+ TS recordings. +- Updated: Italian translation (Submitted by Diego Pierotto). +- Fixed: epgsearch uses seconds in aux field of timers, not minutes (Reported by Rincewind99 @vdr-portal.de). +- Fix bug #507 "EPGsearch custom categories no longer show". +- Fixed: Saving the config showed error message "1". +- Reworked: Spanish translation (Submitted by Manuel Gomez). +- Fixed: failing check whether the process with our pid is a vdradmind (Ville Skytt) +- Fixed: always exit with status 1 from --kill if no processes were killed (Ville Skytt) +- Improved: pid file error handling (Ville Skytt) +- Added: autotimer schedule change tracking option in UI (Ville Skytt) +- Fixed: use text/javascript for JavaScript in HTTP headers (Ville Skytt) +- Updated: required Perl module documentation (Ville Skytt) +- Improved: template caching options (stat ttl, default cache dir is now /var/cache/vdradmin) (Ville Skytt) +- Improved: error message when binding the server socket fails (Ville Skytt) +- Improved: warn if log file cannot be written to (Ville Skytt) +- Fixed: don't try to delete pid file in non-daemon mode. +- Improved: include reason in pid file deletion error message (Ville Skytt). +- Added: ability to log to syslog ("LOGFILE = syslog" in config) (Ville Skytt). +- Changed: non-daemon mode (-nf) always turns on logging to stderr (Ville Skytt). + 2008-12-20: 3.6.4 - Added: Use ".update" in VDR's video directory to check if recordings cache needs to be refreshed. - Added: CACHE_REC_ENABLED option in vdradmind.conf to enable (1) or disable (0) recordings caching. @@ -36,25 +36,33 @@ GNU GENERAL PUBLIC LICENSE Version 2 (GPLv2) *only*. Requirements ------------ -- VDR (http://www.cadsoft.de/people/kls/vdr/) +- VDR (http://www.tvdr.de/) - Some Perl modules (see "./install.sh -p"): - Required: - Template - - Compress::Zlib + - Template::Plugin::JavaScript - CGI + - HTTP::Date - IO::Socket - Time::Local - MIME::Base64 - File::Temp - URI::Escape - - Locale::gettext OR Locale::Messages + - Locale::gettext OR Locale::Messages - Optional: + - Required for built-in HTTP response compression: + - Compress::Zlib - Required for AutoTimer email notification: - Net::SMTP - Authen::SASL - Required for AutoTimer email notification and CRAM-MD5 authentication: - Digest::HMAC_MD5 - + - Required for syslog logging: + - Sys::Syslog + - Required for IPv6 support: + - IO::Socket::INET6 + - Required for SSL support (https): + - IO::Socket::SSL Description ----------- @@ -71,8 +79,8 @@ See "INSTALL" file. Options ------- - -nf, --nofork - don't fork. + -n, --nofork + don't fork, log to stderr. -c, --config run configuration dialog. @@ -86,6 +94,15 @@ Options -p [name], --pid [name] name of pidfile to use. + -6, --ipv6 + use IPv6. + + -s, --ssl + only accept https:// connections. + + -l [level], --log [level] + set log level for this session [0 - 7]. + -h, --help print usage information. @@ -14,6 +14,7 @@ BINDIR=${BINDIR:-$DESTDIR/usr/bin} LOCDIR=${LOCDIR:-$DESTDIR/usr/share/locale} MANDIR=${MANDIR:-$DESTDIR/usr/share/man/man1} LOGDIR=${LOGDIR:-$DESTDIR/var/log} +CACHEDIR=${CACHEDIR:-$DESTDIR/var/cache/vdradmin} PIDFILE=${PIDFILE:-$DESTDIR/var/run/vdradmind.pid} VIDEODIR=${VIDEODIR:-/video} EPGIMAGES=${EPGIMAGES:-$VIDEODIR/epgimages} @@ -78,7 +79,9 @@ function perlModules() checkPerlModule locale checkPerlModule Env checkPerlModule Template + checkPerlModule Template::Plugin::JavaScript checkPerlModule CGI + checkPerlModule HTTP::Date checkPerlModule IO::Socket checkPerlModule Time::Local checkPerlModule MIME::Base64 @@ -101,8 +104,12 @@ function perlModules() checkPerlModule Encode echo "* Required for IPv6 support" checkPerlModule IO::Socket::INET6 + echo "* Required for SSL support (https)" + checkPerlModule IO::Socket::SSL echo "* Required if you want to use gzip'ed HTTP responses" checkPerlModule Compress::Zlib + echo "* Required if you want to log to syslog" + checkPerlModule Sys::Syslog } function makeDir() @@ -165,6 +172,7 @@ function doInstall() -e "s:/usr/share/vdradmin/lib:${LIBDIR}/lib:" \ -e "s:/usr/share/vdradmin/template:${LIBDIR}/template:" \ -e "s:/var/log:${LOGDIR}:" \ + -e "s:/var/cache/vdradmin:${CACHEDIR}:" \ -e "s:/var/run/vdradmind.pid:${PIDFILE}:" \ -e "s:\(\$ETCDIR *= \)\"/etc/vdradmin\";:\1\"${ETCDIR}\";:" \ -e "s:/usr/share/locale:${LOCDIR}:" \ @@ -228,6 +236,9 @@ function doUninstall() if [ -d $LIBDIR ]; then rm -rf $LIBDIR fi + if [ -d $CACHEDIR ]; then + rm -rf $CACHEDIR + fi if [ -e $MANDIR/vdradmind.pl.1 ]; then rm -f $MANDIR/vdradmind.pl.1 fi diff --git a/locale/cs/LC_MESSAGES/vdradmin.mo b/locale/cs/LC_MESSAGES/vdradmin.mo Binary files differindex a657fda..9cae876 100644 --- a/locale/cs/LC_MESSAGES/vdradmin.mo +++ b/locale/cs/LC_MESSAGES/vdradmin.mo diff --git a/locale/cs_CZ.utf8/LC_MESSAGES/vdradmin.mo b/locale/cs_CZ.utf8/LC_MESSAGES/vdradmin.mo Binary files differindex 765ebc1..8166b1f 100644 --- a/locale/cs_CZ.utf8/LC_MESSAGES/vdradmin.mo +++ b/locale/cs_CZ.utf8/LC_MESSAGES/vdradmin.mo diff --git a/locale/de/LC_MESSAGES/vdradmin.mo b/locale/de/LC_MESSAGES/vdradmin.mo Binary files differindex 4c539b0..3feb8ee 100644 --- a/locale/de/LC_MESSAGES/vdradmin.mo +++ b/locale/de/LC_MESSAGES/vdradmin.mo diff --git a/locale/de_DE.utf8/LC_MESSAGES/vdradmin.mo b/locale/de_DE.utf8/LC_MESSAGES/vdradmin.mo Binary files differindex 16663af..9480e7f 100644 --- a/locale/de_DE.utf8/LC_MESSAGES/vdradmin.mo +++ b/locale/de_DE.utf8/LC_MESSAGES/vdradmin.mo diff --git a/locale/en_US.utf8/LC_MESSAGES/vdradmin.mo b/locale/en_US.utf8/LC_MESSAGES/vdradmin.mo Binary files differindex b8201b6..2ff89a2 100644 --- a/locale/en_US.utf8/LC_MESSAGES/vdradmin.mo +++ b/locale/en_US.utf8/LC_MESSAGES/vdradmin.mo diff --git a/locale/es/LC_MESSAGES/vdradmin.mo b/locale/es/LC_MESSAGES/vdradmin.mo Binary files differindex 596652c..78e9695 100644 --- a/locale/es/LC_MESSAGES/vdradmin.mo +++ b/locale/es/LC_MESSAGES/vdradmin.mo diff --git a/locale/es_ES.utf8/LC_MESSAGES/vdradmin.mo b/locale/es_ES.utf8/LC_MESSAGES/vdradmin.mo Binary files differindex 8859a45..eeaa485 100644 --- a/locale/es_ES.utf8/LC_MESSAGES/vdradmin.mo +++ b/locale/es_ES.utf8/LC_MESSAGES/vdradmin.mo diff --git a/locale/fi/LC_MESSAGES/vdradmin.mo b/locale/fi/LC_MESSAGES/vdradmin.mo Binary files differindex 3909ede..faefc90 100644 --- a/locale/fi/LC_MESSAGES/vdradmin.mo +++ b/locale/fi/LC_MESSAGES/vdradmin.mo diff --git a/locale/fi_FI.utf8/LC_MESSAGES/vdradmin.mo b/locale/fi_FI.utf8/LC_MESSAGES/vdradmin.mo Binary files differindex c2ab9db..fe04efb 100644 --- a/locale/fi_FI.utf8/LC_MESSAGES/vdradmin.mo +++ b/locale/fi_FI.utf8/LC_MESSAGES/vdradmin.mo diff --git a/locale/fr/LC_MESSAGES/vdradmin.mo b/locale/fr/LC_MESSAGES/vdradmin.mo Binary files differindex a2c0a07..8463798 100644 --- a/locale/fr/LC_MESSAGES/vdradmin.mo +++ b/locale/fr/LC_MESSAGES/vdradmin.mo diff --git a/locale/fr_FR.utf8/LC_MESSAGES/vdradmin.mo b/locale/fr_FR.utf8/LC_MESSAGES/vdradmin.mo Binary files differindex a775b1a..cf78d1d 100644 --- a/locale/fr_FR.utf8/LC_MESSAGES/vdradmin.mo +++ b/locale/fr_FR.utf8/LC_MESSAGES/vdradmin.mo diff --git a/locale/it/LC_MESSAGES/vdradmin.mo b/locale/it/LC_MESSAGES/vdradmin.mo Binary files differindex db1a119..97da879 100644 --- a/locale/it/LC_MESSAGES/vdradmin.mo +++ b/locale/it/LC_MESSAGES/vdradmin.mo diff --git a/locale/it_IT.utf8/LC_MESSAGES/vdradmin.mo b/locale/it_IT.utf8/LC_MESSAGES/vdradmin.mo Binary files differindex de41e76..b4c3c33 100644 --- a/locale/it_IT.utf8/LC_MESSAGES/vdradmin.mo +++ b/locale/it_IT.utf8/LC_MESSAGES/vdradmin.mo diff --git a/locale/nl/LC_MESSAGES/vdradmin.mo b/locale/nl/LC_MESSAGES/vdradmin.mo Binary files differindex 8dc68a3..0ed7a5a 100644 --- a/locale/nl/LC_MESSAGES/vdradmin.mo +++ b/locale/nl/LC_MESSAGES/vdradmin.mo diff --git a/locale/nl_NL.utf8/LC_MESSAGES/vdradmin.mo b/locale/nl_NL.utf8/LC_MESSAGES/vdradmin.mo Binary files differindex 2facef1..c270a86 100644 --- a/locale/nl_NL.utf8/LC_MESSAGES/vdradmin.mo +++ b/locale/nl_NL.utf8/LC_MESSAGES/vdradmin.mo diff --git a/locale/ru/LC_MESSAGES/vdradmin.mo b/locale/ru/LC_MESSAGES/vdradmin.mo Binary files differindex 84deccd..8278e11 100644 --- a/locale/ru/LC_MESSAGES/vdradmin.mo +++ b/locale/ru/LC_MESSAGES/vdradmin.mo diff --git a/locale/ru_RU.utf8/LC_MESSAGES/vdradmin.mo b/locale/ru_RU.utf8/LC_MESSAGES/vdradmin.mo Binary files differindex 092b7a5..5c29f5d 100644 --- a/locale/ru_RU.utf8/LC_MESSAGES/vdradmin.mo +++ b/locale/ru_RU.utf8/LC_MESSAGES/vdradmin.mo @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: cs\n" "Report-Msgid-Bugs-To: Andreas Mair <andreas@vdr-developer.org>\n" -"POT-Creation-Date: 2008-12-18 08:25+0100\n" +"POT-Creation-Date: 2009-12-30 13:26+0100\n" "PO-Revision-Date: 2006-09-23 13:14+0200\n" "Last-Translator: Karel Borkovec <her-ur@her-ur.org>\n" "Language-Team: <cs@li.org>\n" @@ -19,184 +19,113 @@ msgstr "" msgid "ISO-8859-1" msgstr "ISO-8859-2" -msgid "What's On Now?" -msgstr "Co b nyn?" - -#, fuzzy -msgid "Channel group:" -msgstr "Kanl" - -msgid "What's on:" -msgstr "Co b:" - -msgid "at" -msgstr "v" - -msgid "o'clock" -msgstr "hodin" - -msgid "More Information" -msgstr "Vce informac" - -msgid "Channels" -msgstr "Kanly" - -msgid "Stream" -msgstr "Stream" - -msgid "TV select" -msgstr "Naladit TV" +msgid "About" +msgstr "O programu" -msgid "Search for other show times" -msgstr "Hledat jin vyslac asy" +msgid "License" +msgstr "" #, fuzzy -msgid "No Information" -msgstr "Vce informac" - -msgid "Edit" -msgstr "Upravit" +msgid "Authors" +msgstr "Auto-asova" -msgid "Record" -msgstr "Nahrvn" +msgid "Current author (VDRAdmin-AM branch):" +msgstr "Souasn autor (VDRAdmin-AM):" #, fuzzy -msgid "No EPG information available" -msgstr "dn informace" +msgid "Original author (VDRAdmin):" +msgstr "Pvodn jmno nahrvky:" -#, fuzzy -msgid "Edit EPG" -msgstr "Upravit" +msgid "Translation Team" +msgstr "Pekladatelsk tm" -msgid "Help" -msgstr "Npovda" +msgid "English:" +msgstr "Anglitina:" -msgid "Channel" -msgstr "Kanl" +msgid "German:" +msgstr "Nmina:" -msgid "Time" -msgstr "as" +msgid "French:" +msgstr "Francouztina:" -msgid "Title" -msgstr "Nzev" +msgid "At the moment unmaintained, former translations by:" +msgstr "" -msgid "Subtitle" -msgstr "Titulky" +msgid "Spanish:" +msgstr "panltina:" -msgid "Description" -msgstr "Popis" +msgid "Finnish:" +msgstr "Fintina:" -msgid "VPS" -msgstr "VPS" +msgid "Dutch:" +msgstr "Holandtina:" -#, fuzzy -msgid "Video tracks" -msgstr "Video stopy:" +msgid "Russian:" +msgstr "Rutina:" #, fuzzy -msgid "Audio tracks" -msgstr "Audio stopy:" - -msgid "Save" -msgstr "Uloit" - -msgid "Cancel" -msgstr "Zruit" - -msgid "Edit Timer" -msgstr "Upravit asova" - -msgid "<p>Here you can edit a timer's settings.</p>" -msgstr "<p>Zde mete upravit nastaven asovae.</p>" - -msgid "Timer Active:" -msgstr "asova aktivn" - -msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." -msgstr "" - -msgid "AutoTimer Checking:" -msgstr "Kontrola Autoasova:" +msgid "Czech:" +msgstr "Francouztina:" -msgid "Depending on how this timer has been programmed you have up to three possible settings:" +msgid "Italian:" msgstr "" #, fuzzy -msgid "Transmission Identification" -msgstr "Identifikace" - -msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." -msgstr "" +msgid "Information" +msgstr "Informace" -msgid "Monitor this timer using the start and stop time." -msgstr "Sledovat tento asova pomoc zatku a konce nahrvn." +msgid "VDRAdmin-AM version:" +msgstr "Verze VDRAdminu-AM:" -msgid "off" -msgstr "off" +msgid "VDR version:" +msgstr "Verze VDR:" -msgid "Do not monitor this timer." -msgstr "Nesledovat tento asova." +msgid "Supported features in VDR:" +msgstr "Podporovan vlastnosti ve VDR:" -msgid "Channel:" -msgstr "Kanl" +#, fuzzy +msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgstr "TV streamovn (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgid "The channel to record." -msgstr "Kanl k nahrvn." +msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgstr "TV streamovn (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgid "Day Of Recording:" -msgstr "Den nahrvn" +msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgstr "Pejmenovn nahrvek (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." -msgstr "" +msgid "Getting Help and Reporting Bugs" +msgstr "Rady a nahlaovn chyb" -msgid "Start Time:" -msgstr "Zatek nahrvn:" +msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." +msgstr "Pokud si nevte rady, pouijte prosm nejdve on-line npovdu na rznch webech. Kliknte zde <img src=\"bilder/help.png\" alt=\"\" />." -msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Toto je as kdy by VDR mlo zat nahrvat. Prvn textov pole je pro \"hodinu\" a druh pro \"minutu\"." +msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" +msgstr "Jestlie tato npovda neobsahuje informace, kter potebujete zkuste se zeptat na nmeckm portlu <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> (nmeck jazyk je samozejmost, pop. anglitina). Vyuijte tzv. ANNOUNCE vlkno, hledat:" -msgid "End Time:" -msgstr "Konec asu:" +msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." +msgstr "Pokud si myslte, e jste nael chybu, prosm zkontrolujte zda ji nen nahlena, pop. ji nahlate zde: <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." -msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Toto je as kdy by VDR mlo ukonit nahrvn. Prvn textov pole je pro \"hodinu\" a druh pro \"minutu\"." +msgid "AutoTimer" +msgstr "Auto-asova" msgid "Priority:" msgstr "Priorita:" -msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." -msgstr "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." - msgid "Lifetime:" msgstr "" -msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." -msgstr "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." - -msgid "Title of Recording:" -msgstr "Nzev nahrvky:" - -msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." -msgstr "" - -msgid "Summary:" -msgstr "Souhrn:" - -msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." -msgstr "Libovoln text popisujc nahrvku z asovae. Jestlie pole nen przdn, tak text bude zapsn do souboru <span class=\"ref_file\">summary.vdr</span> nebo <span class=\"ref_file\">info.vdr</span>," - -msgid "Go!" -msgstr "Start!" - -msgid "AutoTimer" -msgstr "Auto-asova" - msgid "New AutoTimer" msgstr "Nov asovn" +msgid "Help" +msgstr "Npovda" + msgid "Active" msgstr "Aktivovat" +msgid "Channel" +msgstr "Kanl" + msgid "Start" msgstr "Start" @@ -215,6 +144,9 @@ msgstr "Ano" msgid "No" msgstr "Ne" +msgid "Edit" +msgstr "Upravit" + msgid "Delete timer?" msgstr "Smazat asova?" @@ -234,33 +166,6 @@ msgstr "Vymazat vechny vybran asovae?" msgid "No AutoTimers defined!" msgstr "Nov asovn" -msgid "VDR Commands" -msgstr "VDR pkazy" - -msgid "Export channels as playlist:" -msgstr "" - -msgid "Number of lines to show:" -msgstr "Poet zobrazench dk:" - -msgid "unlimited" -msgstr "neomezen" - -msgid "SVDRP commands:" -msgstr "SVDRP pkazy:" - -msgid "Run" -msgstr "Spustit" - -msgid "Really run this command?" -msgstr "Opravdu spustit tento pkaz?" - -msgid "Commands defined in commands.conf:" -msgstr "Pkazy definovan v commands.conf:" - -msgid "Output" -msgstr "Vstup" - msgid "Add New AutoTimer" msgstr "Pidat nov Autoasova" @@ -279,6 +184,15 @@ msgstr "Vyhledvac znaky:" msgid "Search in:" msgstr "Hledat v:" +msgid "Title" +msgstr "Nzev" + +msgid "Subtitle" +msgstr "Titulky" + +msgid "Description" +msgstr "Popis" + msgid "Search only on these days:" msgstr "Hledat pouze v tyto dny:" @@ -303,12 +217,18 @@ msgstr "Sobota" msgid "Sunday" msgstr "Nedle" +msgid "Channel:" +msgstr "Kanl" + msgid "all" msgstr "ve" msgid "Starts After:" msgstr "Zatek po:" +msgid "o'clock" +msgstr "hodin" + msgid "Ends Before:" msgstr "Konec ped:" @@ -333,9 +253,15 @@ msgstr "Zapamatovat naprogramovan asova:" msgid "Directory:" msgstr "Sloka:" +msgid "Save" +msgstr "Uloit" + msgid "Test" msgstr "Test:" +msgid "Cancel" +msgstr "Zruit" + msgid "Broadcasted" msgstr "Vyslno" @@ -346,148 +272,276 @@ msgstr "Uloeno v:" msgid "No matches found!" msgstr "Nefunguje" -msgid "About" -msgstr "O programu" +msgid "Configuration" +msgstr "Nastaven" -msgid "License" -msgstr "" +msgid "General Settings" +msgstr "Obecn nastaven" -#, fuzzy -msgid "Authors" -msgstr "Auto-asova" +msgid "Template:" +msgstr "ablona:" -msgid "Current author (VDRAdmin-AM branch):" -msgstr "Souasn autor (VDRAdmin-AM):" +msgid "Skin:" +msgstr "Skin:" -#, fuzzy -msgid "Original author (VDRAdmin):" -msgstr "Pvodn jmno nahrvky:" +msgid "Login Page:" +msgstr "vodn strana:" -msgid "Translation Team" -msgstr "Pekladatelsk tm" +msgid "Number of channels to use:" +msgstr "Poet kanl k pouit:" -msgid "English:" -msgstr "Anglitina:" +msgid "Local net (no login required):" +msgstr "Lokln s (login nen vyadovn):" -msgid "German:" -msgstr "Nmina:" +msgid "Language:" +msgstr "Jazyk:" -msgid "French:" -msgstr "Francouztina:" +msgid "Save settings on exit:" +msgstr "Uloit nastaven pi vypnut:" -msgid "At the moment unmaintained, former translations by:" -msgstr "" +msgid "VDR" +msgstr "VDR" -msgid "Spanish:" -msgstr "panltina:" +msgid "Number of DVB cards:" +msgstr "Poet DVB karet:" -msgid "Finnish:" -msgstr "Fintina:" +msgid "Path to recordings:" +msgstr "Sloka s nahrvkami:" -msgid "Dutch:" -msgstr "Holandtina:" +msgid "Path to configuration files:" +msgstr "Sloka s konfiguranmi soubory:" -msgid "Russian:" -msgstr "Rutina:" +msgid "Path to EPG images:" +msgstr "Cesta k EPG souborm:" -#, fuzzy -msgid "Czech:" -msgstr "Francouztina:" +msgid "Identification" +msgstr "Identifikace" -msgid "Italian:" -msgstr "" +msgid "Username:" +msgstr "Uiv. jmno:" -#, fuzzy -msgid "Information" -msgstr "Informace" +msgid "Password:" +msgstr "Heslo:" -msgid "VDRAdmin-AM version:" -msgstr "Verze VDRAdminu-AM:" +msgid "Guest Account:" +msgstr "Guest et:" -msgid "VDR version:" -msgstr "Verze VDR:" +msgid "Guest Username:" +msgstr "Guest uiv. jmno:" -msgid "Supported features in VDR:" -msgstr "Podporovan vlastnosti ve VDR:" +msgid "Guest Password:" +msgstr "Guest heslo:" -#, fuzzy -msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgstr "TV streamovn (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgid "Timeline" +msgstr "asov pmka" -msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgstr "TV streamovn (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgid "Hours:" +msgstr "Hodiny:" -msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgstr "Pejmenovn nahrvek (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgid "Times:" +msgstr "asy:" -msgid "Getting Help and Reporting Bugs" -msgstr "Rady a nahlaovn chyb" +msgid "Also used for other EPG views!" +msgstr "Pout pro ostatn EPG nhledy!" -msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." -msgstr "Pokud si nevte rady, pouijte prosm nejdve on-line npovdu na rznch webech. Kliknte zde <img src=\"bilder/help.png\" alt=\"\" />." +msgid "Tooltips:" +msgstr "Tipy:" -msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" -msgstr "Jestlie tato npovda neobsahuje informace, kter potebujete zkuste se zeptat na nmeckm portlu <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> (nmeck jazyk je samozejmost, pop. anglitina). Vyuijte tzv. ANNOUNCE vlkno, hledat:" +msgid "Active:" +msgstr "Aktivn:" -msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." -msgstr "Pokud si myslte, e jste nael chybu, prosm zkontrolujte zda ji nen nahlena, pop. ji nahlate zde: <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." +msgid "Send email after programming timer:" +msgstr "Poslat email po nastaven asovae:" -msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgid "Send email as:" +msgstr "Odeslatel emailu:" + +msgid "Send email to:" +msgstr "Komu:" + +msgid "Mail server:" +msgstr "Potovn server:" + +msgid "SMTPAuth user:" +msgstr "SMTPAuth uivatel:" + +msgid "SMTPAuth password:" +msgstr "SMTPAuth heslo:" + +msgid "Track schedule changes by:" msgstr "" -msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." +msgid "Broadcast time" msgstr "" -msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Only broadcasts will match if they contain <strong>all</strong> items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as Blacklist-string) or only one episode (when using \"Enterprise~Azati Prime\" as Blacklist-string)." +msgid "Event id" msgstr "" -#, fuzzy -msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." -msgstr "Zde mete nastavit jakou lokalizaci VDRAdmin-AM chcete pouvat." +msgid "Timer" +msgstr "asova" -msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." -msgstr "" +msgid "Tooltips in timeline:" +msgstr "Tipy v asov pmce:" -msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." +msgid "Tooltips in list:" +msgstr "Tipy v seznamu:" + +msgid "Streaming" +msgstr "Streamovn" + +msgid "Live Streaming:" +msgstr "Live Streamovn:" + +msgid "HTTP Port of Streamdev (also possible 3000/ts):" +msgstr "HTTP Port pro Streamdev (mono 3000/ts):" + +msgid "Recordings Streaming:" +msgstr "Nahrvn streamu:" + +msgid "Path to VDR Recordings on your workstation:" +msgstr "Cesta ke sloce s VDR nahrvkami na Vaem PC:" + +msgid "MIME type for live streaming:" +msgstr "MIME typ pro live streamovn:" + +msgid "Suffix for live streaming:" +msgstr "Ppona pro live streamovn:" + +msgid "MIME type for recordings streaming:" +msgstr "MIME typ pro nahrvky streamu:" + +msgid "Suffix for recordings streaming:" +msgstr "Ppona pro nahrvky streamu:" + +msgid "Bandwidth of Streams:" +msgstr "ka psma pro streamy:" + +#, fuzzy +msgid "External Search" +msgstr "hledat" + +msgid "URL:" msgstr "" #, fuzzy -msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Toto je as kdy by VDR mlo zat nahrvat. Prvn textov pole je pro \"hodinu\" a druh pro \"minutu\"." +msgid "Title:" +msgstr "Nzev" #, fuzzy -msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Toto je as kdy by VDR mlo zat nahrvat. Prvn textov pole je pro \"hodinu\" a druh pro \"minutu\"." +msgid "User-defined search:" +msgstr "dn asova nen definovn!" -msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." -msgstr "" +msgid "Expert" +msgstr "Expert:" -msgid "The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG." +msgid "Update EPG data in background:" msgstr "" -msgid "The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG." +msgid "Update EPG every:" msgstr "" -msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." -msgstr "" +msgid "Channel Selections" +msgstr "Vbr kanl" -msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." +msgid "Show channels without EPG information:" msgstr "" -msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." +msgid "In \"AutoTimer\"?" +msgstr "V \"Autoasovai\"?" + +msgid "Apply" +msgstr "Pouij" + +#, fuzzy +msgid "EPG Search Blacklists" +msgstr "hledat" + +#, fuzzy +msgid "New Blacklist" +msgstr "Pidat nov Autoasova" + +#, fuzzy +msgid "Search pattern" +msgstr "Vyhledvac znaky:" + +msgid "From" msgstr "" -msgid "Timer" -msgstr "asova" +#, fuzzy +msgid "To" +msgstr "Nahoru" -msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" +#, fuzzy +msgid "Delete blacklist?" +msgstr "Smazat asova?" + +#, fuzzy +msgid "Delete Selected Blacklists" +msgstr "Vymazat vybran asovae" + +#, fuzzy +msgid "Delete all selected blacklists?" +msgstr "Vymazat vechny vybran asovae?" + +#, fuzzy +msgid "EPG search" +msgstr "hledat" + +#, fuzzy +msgid "EPG Search" +msgstr "hledat" + +#, fuzzy +msgid "Use template" +msgstr "ablona:" + +#, fuzzy +msgid "New Search" +msgstr "hledat" + +#, fuzzy +msgid "Edit Template" +msgstr "ablona:" + +#, fuzzy +msgid "Settings" +msgstr "Obecn nastaven" + +#, fuzzy +msgid "Action" +msgstr "Aktivovat" + +#, fuzzy +msgid "Find" +msgstr "Ptek" + +msgid "Show Favorites" msgstr "" -msgid "Playing Today" -msgstr "B dnes" +#, fuzzy +msgid "Delete Selected Searches" +msgstr "Vymazat vybran asovae" -msgid "starting at" -msgstr "zan v" +#, fuzzy +msgid "Delete all selected searches?" +msgstr "Vymazat vechny vybran asovae?" + +#, fuzzy +msgid "Execute Selected Searches" +msgstr "Vymazat vybran asovae" + +#, fuzzy +msgid "Duration" +msgstr "Dlka:" + +msgid "More Information" +msgstr "Vce informac" + +msgid "Channels" +msgstr "Kanly" + +msgid "Record" +msgstr "Nahrvn" #, fuzzy msgid "Add New Blacklist" @@ -502,10 +556,6 @@ msgid "Add New Template" msgstr "Pidat nov Autoasova" #, fuzzy -msgid "Edit Template" -msgstr "ablona:" - -#, fuzzy msgid "Add New Search" msgstr "Pidat nov Autoasova" @@ -524,10 +574,6 @@ msgid "Hide results" msgstr "Hledat v:" #, fuzzy -msgid "Settings" -msgstr "Obecn nastaven" - -#, fuzzy msgid "Name:" msgstr "Jmno" @@ -738,268 +784,150 @@ msgstr "Smazat asova?" msgid "Save as template" msgstr "ablona:" -msgid "Create New Timer" -msgstr "Vytvoit nov asova" - -msgid "Buffer:" -msgstr "Zsobnk:" - -msgid "Use VPS:" -msgstr "Pout VPS:" - -msgid "readonly" -msgstr "Pouze pro ten" - -msgid "Timer has been set by AutoTimer pattern:" -msgstr "asova byl nastaven podle Autoasovae" - -msgid "No Help Available" -msgstr "Npovda nen dostupn" - -msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgstr "<p>Npovda zatm nen dostupn. Pro pidn nebo zmnu textu pite prosm sem: <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>. </p>" +msgid "Run" +msgstr "Spustit" msgid "Error!" msgstr "Chyba!" -msgid "TV" -msgstr "TV" - -msgid "Interval:" -msgstr "Interval:" - -msgid "sec." -msgstr "sec." - -msgid "G" -msgstr "G" - -msgid "Grab the picture!" -msgstr "Ulo obrzek!" - -msgid "Size:" -msgstr "Velikost:" +msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" +msgstr "<p>Seznam Autoasova ve VDRAdmin-AM.</p><p>Seznam zobrazuje nkter informace, lze mnit azen poloek dle hlaviek sloupc.</p><p>Pro kad asova mte k dispozici nsledujc monosti:<dl><dt>Nastaven stavu</dt><dd>Kliknutm na \"Ano\" nebo \"Ne\"v \"Aktivnm\" sloupci urujcm aktivitu.</dd><dt>Rychl pohled na prioritu a dobu trvn</dt><dd>Najetm kurzoru myi na nzev Autoasovae.</dd><dt>Upraven Autoasovae</dt><dd>Upravovat Autoasova lze kliknutm na <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Smazn Autoasovae</dt><dd>Smazat Autoasova lze kliknutm na <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Kad stav Autoasovae je indikovn rzn barevnmi obrzky <br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" />Autoasova je v podku a automaticky bude sputn.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" />Autoasova nen aktivn.</p><p>Navc k tmto funkcm lze jet pidat nov Autoasova kliknutm na <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> nahoe na strnce a tak lze smazat vce Autoasova zrove zakrtnutm box v poslednm sloupci a kliknutm na <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Kliknte zde <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> k vynucen re-connectu k VDR, sthnut aktulnho EPG a kontroly Autoasova.</p>" -msgid "Open in separate window" -msgstr "Otevi v samostatnm okn" +msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgstr "" -msgid "Playing Today?" -msgstr "Co pob dnes?" +msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." +msgstr "" -msgid "Timeline" -msgstr "asov pmka" +msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Broadcasts will match only if they match <strong>all</strong> configured search items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as blacklist string) or only one episode (when using \"Enterprise~Azati Prime\" as blacklist string)." +msgstr "" #, fuzzy -msgid "EPG Search" -msgstr "hledat" - -msgid "Recordings" -msgstr "Nahrvky" +msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." +msgstr "Zde mete nastavit jakou lokalizaci VDRAdmin-AM chcete pouvat." -msgid "Remote Control" -msgstr "Dlkov ovldn" +msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." +msgstr "" -msgid "Watch TV" -msgstr "Sleduj TV" +msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." +msgstr "" #, fuzzy -msgid "Commands" -msgstr "Pkazy:" - -msgid "Configuration" -msgstr "Nastaven" +msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Toto je as kdy by VDR mlo zat nahrvat. Prvn textov pole je pro \"hodinu\" a druh pro \"minutu\"." #, fuzzy -msgid "Search" -msgstr "hledat" +msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Toto je as kdy by VDR mlo zat nahrvat. Prvn textov pole je pro \"hodinu\" a druh pro \"minutu\"." -msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" -msgstr "<p>Zde mete zmnit obecn nastaven a zkladn nastaven pro asovae, Autoasovae, vbr kanl a parametry streamu.</p>" +msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." +msgstr "" -msgid "General Settings" -msgstr "Obecn nastaven" +msgid "The number of minutes VDRAdmin-AM subtracts from the broadcast's start time found in the EPG." +msgstr "" -msgid "VDR" -msgstr "VDR" +msgid "The number of minutes VDRAdmin-AM adds to the broadcast's stop time found in the EPG." +msgstr "" -msgid "Identification" -msgstr "Identifikace" +msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." +msgstr "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." -msgid "Streaming" -msgstr "Streamovn" +msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." +msgstr "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." -msgid "Expert" -msgstr "Expert:" +msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." +msgstr "" -#, fuzzy -msgid "External Search" -msgstr "hledat" +msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." +msgstr "" -msgid "Channel Selections" -msgstr "Vbr kanl" +msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." +msgstr "" -msgid "Skin:" -msgstr "Skin:" +msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" +msgstr "<p>Zde mete zmnit obecn nastaven a zkladn nastaven pro asovae, Autoasovae, vbr kanl a parametry streamu.</p>" msgid "The skin you want to use." msgstr "Skin, kter chcete pout:" -msgid "Login Page:" -msgstr "vodn strana:" - msgid "The page you want to see at first connect to VDRAdmin-AM." msgstr "Strnka, kterou chcete zobrazit jako prvn pi sputn VDRAdmin-AM." -msgid "Number of channels to use:" -msgstr "Poet kanl k pouit:" - msgid "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." msgstr "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." -msgid "Local net (no login required):" -msgstr "Lokln s (login nen vyadovn):" - msgid "Here you can specify an IP address or range that can login without providing login information. For example: \"192.168.0.0/24\" will include any IP starting with \"192.168.0\", \"192.168.0.123/32\" will only match \"192.168.0.123\"." msgstr "Zde mete zadat jednu nebo cel rozsah IP adres, kter se budou moci pihlsit bez pihlaovacch daj. Nap. \"192.168.0.0/24\" zahrnuje vechny IP z rozsahu \"192.168.0\", \"192.168.0.123/32\" vyhovuje pouze \"192.168.0.123\"." -msgid "Language:" -msgstr "Jazyk:" - msgid "Here you can set the localization VDRAdmin-AM should use." msgstr "Zde mete nastavit jakou lokalizaci VDRAdmin-AM chcete pouvat." -msgid "Save settings on exit:" -msgstr "Uloit nastaven pi vypnut:" - msgid "With this option the settings will be saved if VDRAdmin-AM exits. This will also save settings not available on the \"Configuration\" menu like interval and size in TV, sorting in the lists and current view in \"What's on now\"." msgstr "" msgid "Top" msgstr "Nahoru" -msgid "Number of DVB cards:" -msgstr "Poet DVB karet:" - msgid "The number of DVB cards VDR can access. Depending on this value VDRAdmin-AM will calculate critical timers in the <span class=\"ref_menu\">Timer</span> menu." msgstr "Poet DVB karet na kter lze pistupovat. Na tto hodnot zvis vpoet kritickch asova v <span class=\"ref_menu\">asova</span> menu." -msgid "Path to recordings:" -msgstr "Sloka s nahrvkami:" - msgid "The path to VDR's recordings. It's used so that VDRAdmin-AM can locate the recordings when using <span class=\"ref_label\">Recordings Streaming</span> and <span class=\"ref_file\">reccmds.conf</span> in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Cesta k VDR nahrvkm. Pouito, aby mohl VDRAdmin-AM najt nahrvky, kdy pouv <span class=\"ref_label\">Nahrvn Streamu</span> a <span class=\"ref_file\">reccmds.conf</span> v <span class=\"ref_menu\">Nahrvky</span> menu." -msgid "Path to configuration files:" -msgstr "Sloka s konfiguranmi soubory:" - msgid "The path where VDR's configuration files are located. If this directory contains the file <span class=\"ref_file\">reccmds.conf</span> its content is shown in a selectbox in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Cesta kde jsou uloeny konfiguran soubory VDR. Pokud tato sloka obsahuje soubor <span class=\"ref_file\">reccmds.conf</span>, jeho obsah je zobrazen v slectboxu v <span class=\"ref_menu\">Nahrvky</span> menu." -msgid "Path to EPG images:" -msgstr "Cesta k EPG souborm:" - msgid "The path where the EPG images are stored." msgstr "Cesta kde jsou uloeny EPG data." -msgid "Username:" -msgstr "Uiv. jmno:" - msgid "The username for the main user, i.e. the user having the most privileges." msgstr "Uivatelsk jmno hlavnho uivatele, toho kter m nejvt prva." -msgid "Password:" -msgstr "Heslo:" - msgid "The main user's password." msgstr "Heslo hlavnho uivatele." -msgid "Guest Account:" -msgstr "Guest et:" - msgid "If you want a user account having only limited privileges, this is for you. The guest user cannot modify anything, it's only allowed to view the EPG, timers, AutoTimers and recordings listings." msgstr "Pokud chcete mt et uivatele s limitovanmi prvy, je toto pro vs. Guest et neme nic mnit, pouze si me prohlet EPG, asovae, Autoasovae a koukat na nahrvky." -msgid "Guest Username:" -msgstr "Guest uiv. jmno:" - msgid "The username for the guest user." msgstr "Uivatelsk jmno pro guest et." -msgid "Guest Password:" -msgstr "Guest heslo:" - msgid "The guest user's password." msgstr "Guest heslo." -msgid "Hours:" -msgstr "Hodiny:" - msgid "The number of hours to show in the timeline." msgstr "Poet hodin zobrazovanch v asov pmce." -msgid "Times:" -msgstr "asy:" - msgid "A comma separated list of times in <strong>hh:mm</strong> format that appear in the selectbox placed at the top." msgstr "rkou oddlen seznam as v tomto formtu <strong>hh:mm</strong>, kter se bude zobrazovat v selectboxu ve vrchn sti strnky." -msgid "Tooltips:" -msgstr "Tipy:" - msgid "Here you can (de-)activate the tooltips." msgstr "Tady mete (de-)aktivovat nstrojov tipy." -msgid "Active:" -msgstr "Aktivn:" - msgid "Activate or deactivate the AutoTimer function." msgstr "Aktivace a Deaktivace funkce Autoasovae." -msgid "Send email after programming timer:" -msgstr "Poslat email po nastaven asovae:" - msgid "VDRAdmin-AM will send an email whenever an event matches an AutoTimer and a timer has been programmed if you enable this feature." msgstr "VDRAdmin-AM vm zale e-mail kdykoli, kdy se nastav asova, atd... pokud aktivujete tuto vlastnost." -msgid "Send email as:" -msgstr "Odeslatel emailu:" - msgid "Here you set the sending email address of the generated email." msgstr "Zde zapite e-mailovou adresu ze kter budou vygenerovan e-maily odchzet." -msgid "Send email to:" -msgstr "Komu:" - msgid "The email address the email is sent to." msgstr "Zde zapite e-mailovou adresu na kterou se budou zaslat vygenerovan e-maily." -msgid "Mail server:" -msgstr "Potovn server:" - msgid "The outgoing mail server." msgstr "Odchoz potovn server." -msgid "SMTPAuth user:" -msgstr "SMTPAuth uivatel:" - msgid "If you need to authenticate yourself at the outgoing mail server, you have to supply the username and the password below. Leaving this field empty will disable SMTPAuth." msgstr "Pokud potebujete pouvat SMTP autentifikaci tak vyplte jmno a heslo ne. Vynechn znamen vypnut tto funkce." -msgid "SMTPAuth password:" -msgstr "SMTPAuth heslo:" - msgid "The password for the SMTPAuth user." msgstr "Heslo pro SMTP autentifikaci." -msgid "Tooltips in timeline:" -msgstr "Tipy v asov pmce:" - msgid "Here you can (de-)activate the tooltips in the timeline." msgstr "Zde mete (de-)aktivovat nstrojov tipy v asov pmce." -msgid "Tooltips in list:" -msgstr "Tipy v seznamu:" - msgid "Here you can (de-)activate the tooltips in the list." msgstr "Zde mete (de-)aktivovat nstrojov tipy v seznamu." @@ -1009,51 +937,27 @@ msgstr "Pidat souhrn k novm asovam:" msgid "If you don't want VDRAdmin-AM to add the summary taken from EPG to new timers you can switch it off here." msgstr "Pokud nechcete aby VDRAdmin-AM pidval souhrn EPG k novm asovam, zde to mete vypnout." -msgid "Live Streaming:" -msgstr "Live Streamovn:" - msgid "Enable or disable live streaming using the <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. You also have to set the correct <span class=\"ref_label\">HTTP Port for Streamdev</span> below." msgstr "Zapnout nebo vypnout streamovn za pouit <a href=\"http://www.magoa.net/linux/\">streamdev pluginu</a>. Tak muste zadat sprvn <span class=\"ref_label\">HTTP Port pro Streamdev</span>" -msgid "HTTP Port of Streamdev (also possible 3000/ts):" -msgstr "HTTP Port pro Streamdev (mono 3000/ts):" - msgid "Here you have to set the port number your VDR's streamdev server listens for connections. Additionally you can also provide the stream type you like to use." msgstr "Zde muste zadat slo portu na kterm naslouch V streamdev server. Tak mete zadat typ streamu, kter by jste chtli pout." -msgid "Recordings Streaming:" -msgstr "Nahrvn streamu:" - msgid "Enable or disable streaming of recordings.<br />Well actually this is no real \"streaming\", but you have to setup your workstation so that it can access VDR's recordings. You can use for example Samba or NFS for this. VDRAdmin-AM simply generates a playlist that contains all parts of the recording and sends this to your browser. If your browser and media player are configured correctly you will see the recording on your workstation's display." msgstr "" -msgid "Path to VDR Recordings on your workstation:" -msgstr "Cesta ke sloce s VDR nahrvkami na Vaem PC:" - msgid "This is the path where your workstation can access VDR's recordings. This depends on your VDR and workstation setup, for example \"\\\\vdr\\videos\" or \"V:\\\" (on Windows) or \"/mnt/videos\" (on Linux)." msgstr "" -msgid "MIME type for live streaming:" -msgstr "MIME typ pro live streamovn:" - msgid "The MIME type to send when using live streaming. Defaults to \"video/x-mpegurl\"." msgstr "" -msgid "Suffix for live streaming:" -msgstr "Ppona pro live streamovn:" - msgid "The suffix to use for live streaming. Defaults to \"m3u\"." msgstr "" -msgid "MIME type for recordings streaming:" -msgstr "MIME typ pro nahrvky streamu:" - msgid "The MIME type to send when using recordings streaming. Defaults to \"video/x-mpegurl\"." msgstr "" -msgid "Suffix for recordings streaming:" -msgstr "Ppona pro nahrvky streamu:" - #, fuzzy msgid "The suffix to use for recordings streaming. Defaults to \"m3u\"." msgstr "Ppona pro nahrvky streamu:" @@ -1070,15 +974,9 @@ msgstr "" msgid "<p>This section is for experts <strong>only</strong>, i.e. you know what you are doing!</p>" msgstr "" -msgid "Update EPG data in background:" -msgstr "" - msgid "If set to \"yes\" VDRAdmin-AM will periodically refresh its local EPG cache. Else the EPG will be refreshed if the user accesses any EPG view at the web interface and the timeout set at \"Update EPG every\" has been reached." msgstr "" -msgid "Update EPG every:" -msgstr "" - #, fuzzy msgid "The interval, the EPG data is refreshed from VDR and AutoTimer updates are performed (if AutoTimer feature is used)." msgstr "Interval, ve kterm budou kontrolovna EPG data pro obnovu Autoasova." @@ -1086,35 +984,15 @@ msgstr "Interval, ve kterm budou kontrolovna EPG data pro obnovu Autoasova. msgid "<p>If you want to limit the number of channels used in some parts of VDRAdmin-AM, this is for you!</p><p>Use the radio buttons to activate or deactivate the wanted channels in the named menu.</p><p>To add channels to the list of wanted channels you have to select them in the left side selectbox and click <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. If you want to remove channels from the list of wanted channels you have to select them in the right side selectbox and click <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" msgstr "" -msgid "Show channels without EPG information:" -msgstr "" - msgid "Usually channels that don't have EPG information are hidden in all EPG views. If you don't want them to be hidden you have to set this option to \"yes\"." msgstr "" -msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" -msgstr "<p>Seznam Autoasova ve VDRAdmin-AM.</p><p>Seznam zobrazuje nkter informace, lze mnit azen poloek dle hlaviek sloupc.</p><p>Pro kad asova mte k dispozici nsledujc monosti:<dl><dt>Nastaven stavu</dt><dd>Kliknutm na \"Ano\" nebo \"Ne\"v \"Aktivnm\" sloupci urujcm aktivitu.</dd><dt>Rychl pohled na prioritu a dobu trvn</dt><dd>Najetm kurzoru myi na nzev Autoasovae.</dd><dt>Upraven Autoasovae</dt><dd>Upravovat Autoasova lze kliknutm na <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Smazn Autoasovae</dt><dd>Smazat Autoasova lze kliknutm na <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Kad stav Autoasovae je indikovn rzn barevnmi obrzky <br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" />Autoasova je v podku a automaticky bude sputn.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" />Autoasova nen aktivn.</p><p>Navc k tmto funkcm lze jet pidat nov Autoasova kliknutm na <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> nahoe na strnce a tak lze smazat vce Autoasova zrove zakrtnutm box v poslednm sloupci a kliknutm na <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Kliknte zde <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> k vynucen re-connectu k VDR, sthnut aktulnho EPG a kontroly Autoasova.</p>" - -msgid "Your Browser does not support frames!" -msgstr "V prohle nepodporuje rmy!" - -msgid "Rename Recording" -msgstr "Pejmenovat nahrvku" - -msgid "Original Name of Recording:" -msgstr "Pvodn jmno nahrvky:" - -msgid "New Name of Recording:" -msgstr "Nov jmno nahrvky:" - -msgid "Subtitle:" -msgstr "Titulky:" - -msgid "Rename" -msgstr "Pejmenovat" +msgid "Edit Timer" +msgstr "Upravit asova" -msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" -msgstr "" +#, fuzzy +msgid "Edit EPG" +msgstr "Upravit" #, fuzzy msgid "<p>Here you can edit the descriptive fields of an existing EPG entry.</p>" @@ -1164,152 +1042,119 @@ msgstr "Audio stopy:" msgid "If available this field shows the audio track(s). It cannot be changed." msgstr "" -msgid "Duration:" -msgstr "Dlka:" - -msgid "min" -msgstr "min" - -msgid "Transponder:" -msgstr "Transponder:" +msgid "No Help Available" +msgstr "Npovda nen dostupn" -msgid "CA-System:" -msgstr "CA-System:" +msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgstr "<p>Npovda zatm nen dostupn. Pro pidn nebo zmnu textu pite prosm sem: <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>. </p>" -msgid "New Timer" -msgstr "Nov asova" +msgid "Recordings" +msgstr "Nahrvky" -msgid "Date" -msgstr "Datum" +msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" +msgstr "" -msgid "Edit timer status?" -msgstr "Upravit asova?" +msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" +msgstr "" -msgid "This timer is inactive!" -msgstr "asova nen aktivn!" +msgid "<p>Here you can edit a timer's settings.</p>" +msgstr "<p>Zde mete upravit nastaven asovae.</p>" -msgid "This timer is impossible!" -msgstr "Tento asova nen mon nastavit!" +msgid "Timer Active:" +msgstr "asova aktivn" -msgid "No more timers on other transponders possible!" -msgstr "dn dal asovae na ostatnch transpondrech nejsou mon!" +msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." +msgstr "" -msgid "Timer OK." -msgstr "asova je v cajku." +msgid "AutoTimer Checking:" +msgstr "Kontrola Autoasova:" -msgid "Auto" -msgstr "Auto" +msgid "Depending on how this timer has been programmed you have up to three possible settings:" +msgstr "" -msgid "activate" -msgstr "aktivn" +#, fuzzy +msgid "Transmission Identification" +msgstr "Identifikace" -msgid "inactivate" -msgstr "deaktivovat" +msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." +msgstr "" -msgid "selected timers" -msgstr "vybran asovae" +msgid "Time" +msgstr "as" -msgid "Delete Selected Timers" -msgstr "Vymazat vybran asovae" +msgid "Monitor this timer using the start and stop time." +msgstr "Sledovat tento asova pomoc zatku a konce nahrvn." -msgid "No timers defined!" -msgstr "dn asova nen definovn!" +msgid "off" +msgstr "off" -#, fuzzy -msgid "EPG Search Blacklists" -msgstr "hledat" +msgid "Do not monitor this timer." +msgstr "Nesledovat tento asova." -#, fuzzy -msgid "New Blacklist" -msgstr "Pidat nov Autoasova" +msgid "The channel to record." +msgstr "Kanl k nahrvn." -#, fuzzy -msgid "Search pattern" -msgstr "Vyhledvac znaky:" +msgid "Day Of Recording:" +msgstr "Den nahrvn" -msgid "From" +msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." msgstr "" -#, fuzzy -msgid "To" -msgstr "Nahoru" - -#, fuzzy -msgid "Delete blacklist?" -msgstr "Smazat asova?" - -#, fuzzy -msgid "Delete Selected Blacklists" -msgstr "Vymazat vybran asovae" - -#, fuzzy -msgid "Delete all selected blacklists?" -msgstr "Vymazat vechny vybran asovae?" - -#, fuzzy -msgid "EPG search" -msgstr "hledat" +msgid "Start Time:" +msgstr "Zatek nahrvn:" -#, fuzzy -msgid "Use template" -msgstr "ablona:" +msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Toto je as kdy by VDR mlo zat nahrvat. Prvn textov pole je pro \"hodinu\" a druh pro \"minutu\"." -#, fuzzy -msgid "New Search" -msgstr "hledat" +msgid "End Time:" +msgstr "Konec asu:" -#, fuzzy -msgid "Action" -msgstr "Aktivovat" +msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Toto je as kdy by VDR mlo ukonit nahrvn. Prvn textov pole je pro \"hodinu\" a druh pro \"minutu\"." -#, fuzzy -msgid "Find" -msgstr "Ptek" +msgid "Title of Recording:" +msgstr "Nzev nahrvky:" -msgid "Show Favorites" +msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." msgstr "" -#, fuzzy -msgid "Delete Selected Searches" -msgstr "Vymazat vybran asovae" - -#, fuzzy -msgid "Delete all selected searches?" -msgstr "Vymazat vechny vybran asovae?" +msgid "Summary:" +msgstr "Souhrn:" -#, fuzzy -msgid "Execute Selected Searches" -msgstr "Vymazat vybran asovae" +msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." +msgstr "Libovoln text popisujc nahrvku z asovae. Jestlie pole nen przdn, tak text bude zapsn do souboru <span class=\"ref_file\">summary.vdr</span> nebo <span class=\"ref_file\">info.vdr</span>," -#, fuzzy -msgid "Duration" -msgstr "Dlka:" +msgid "Your Browser does not support frames!" +msgstr "V prohle nepodporuje rmy!" -msgid "Template:" -msgstr "ablona:" +msgid "What's On Now?" +msgstr "Co b nyn?" -msgid "Also used for other EPG views!" -msgstr "Pout pro ostatn EPG nhledy!" +msgid "Playing Today?" +msgstr "Co pob dnes?" -msgid "Bandwidth of Streams:" -msgstr "ka psma pro streamy:" +msgid "Remote Control" +msgstr "Dlkov ovldn" -msgid "URL:" -msgstr "" +msgid "Watch TV" +msgstr "Sleduj TV" #, fuzzy -msgid "Title:" -msgstr "Nzev" +msgid "Commands" +msgstr "Pkazy:" #, fuzzy -msgid "User-defined search:" -msgstr "dn asova nen definovn!" +msgid "Search" +msgstr "hledat" -msgid "In \"AutoTimer\"?" -msgstr "V \"Autoasovai\"?" +msgid "Authorization Required" +msgstr "Autentifikace je nutn" -msgid "Apply" -msgstr "Pouij" +msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." +msgstr "Server nemohl rozpoznat, zda jste autorizovn k pstupu k tomuto dokumentu. Bu jste vloil patn daje (nap. heslo) nebo V prohle nepodporuje pedvn parametr, kter jsou vyadovan." + +msgid "VPS" +msgstr "VPS" msgid "close" msgstr "zavt" @@ -1331,23 +1176,82 @@ msgstr "Video stopy:" msgid "Audio tracks:" msgstr "Audio stopy:" +#, fuzzy +msgid "Video tracks" +msgstr "Video stopy:" + +#, fuzzy +msgid "Audio tracks" +msgstr "Audio stopy:" + +msgid "TV select" +msgstr "Naladit TV" + +msgid "Stream" +msgstr "Stream" + +#, fuzzy +msgid "Channel group:" +msgstr "Kanl" + +msgid "Go!" +msgstr "Start!" + +msgid "Search for other show times" +msgstr "Hledat jin vyslac asy" + +#, fuzzy +msgid "No Information" +msgstr "Vce informac" + +#, fuzzy +msgid "No EPG information available" +msgstr "dn informace" + +msgid "Playing Today" +msgstr "B dnes" + +msgid "starting at" +msgstr "zan v" + +msgid "What's on:" +msgstr "Co b:" + +msgid "at" +msgstr "v" + msgid "now" msgstr "nyn" msgid "to" msgstr "do" +msgid "Duration:" +msgstr "Dlka:" + +msgid "min" +msgstr "min" + msgid "at:" msgstr "v:" msgid "You need JavaScript to use the timeline!" msgstr "K pouvn asov linie potebujete JavaScript!" -msgid "Authorization Required" -msgstr "Autentifikace je nutn" +msgid "Rename Recording" +msgstr "Pejmenovat nahrvku" -msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." -msgstr "Server nemohl rozpoznat, zda jste autorizovn k pstupu k tomuto dokumentu. Bu jste vloil patn daje (nap. heslo) nebo V prohle nepodporuje pedvn parametr, kter jsou vyadovan." +msgid "Original Name of Recording:" +msgstr "Pvodn jmno nahrvky:" + +msgid "New Name of Recording:" +msgstr "Nov jmno nahrvky:" + +msgid "Subtitle:" +msgstr "Titulky:" + +msgid "Rename" +msgstr "Pejmenovat" msgid "Total:" msgstr "Celkov:" @@ -1358,6 +1262,9 @@ msgstr "h" msgid "Free:" msgstr "Volno:" +msgid "Date" +msgstr "Datum" + msgid "Total" msgstr "Celkem" @@ -1379,6 +1286,9 @@ msgstr "Obnovit" msgid "Commands:" msgstr "Pkazy:" +msgid "Really run this command?" +msgstr "Opravdu spustit tento pkaz?" + msgid "Delete Selected Recordings" msgstr "Smazat oznaen nahrvky" @@ -1389,6 +1299,105 @@ msgstr "Smazat vechny oznaen nahrvky?" msgid "No recordings available" msgstr "Npovda nen dostupn" +msgid "Transponder:" +msgstr "Transponder:" + +msgid "CA-System:" +msgstr "CA-System:" + +msgid "New Timer" +msgstr "Nov asova" + +msgid "Edit timer status?" +msgstr "Upravit asova?" + +msgid "This timer is inactive!" +msgstr "asova nen aktivn!" + +msgid "This timer is impossible!" +msgstr "Tento asova nen mon nastavit!" + +msgid "No more timers on other transponders possible!" +msgstr "dn dal asovae na ostatnch transpondrech nejsou mon!" + +msgid "Timer OK." +msgstr "asova je v cajku." + +msgid "Auto" +msgstr "Auto" + +msgid "activate" +msgstr "aktivn" + +msgid "inactivate" +msgstr "deaktivovat" + +msgid "selected timers" +msgstr "vybran asovae" + +msgid "Delete Selected Timers" +msgstr "Vymazat vybran asovae" + +msgid "No timers defined!" +msgstr "dn asova nen definovn!" + +msgid "Create New Timer" +msgstr "Vytvoit nov asova" + +msgid "Buffer:" +msgstr "Zsobnk:" + +msgid "Use VPS:" +msgstr "Pout VPS:" + +msgid "readonly" +msgstr "Pouze pro ten" + +msgid "Timer has been set by AutoTimer pattern:" +msgstr "asova byl nastaven podle Autoasovae" + +msgid "TV" +msgstr "TV" + +msgid "Interval:" +msgstr "Interval:" + +msgid "sec." +msgstr "sec." + +msgid "G" +msgstr "G" + +msgid "Grab the picture!" +msgstr "Ulo obrzek!" + +msgid "Size:" +msgstr "Velikost:" + +msgid "Open in separate window" +msgstr "Otevi v samostatnm okn" + +msgid "VDR Commands" +msgstr "VDR pkazy" + +msgid "Export channels as playlist:" +msgstr "" + +msgid "Number of lines to show:" +msgstr "Poet zobrazench dk:" + +msgid "unlimited" +msgstr "neomezen" + +msgid "SVDRP commands:" +msgstr "SVDRP pkazy:" + +msgid "Commands defined in commands.conf:" +msgstr "Pkazy definovan v commands.conf:" + +msgid "Output" +msgstr "Vstup" + msgid "What's your VDR hostname (e.g video.intra.net)?" msgstr "Jak je Vae VDR hostname?" diff --git a/po/cs_CZ.utf8.po b/po/cs_CZ.utf8.po index 31c8e61..3149167 100644 --- a/po/cs_CZ.utf8.po +++ b/po/cs_CZ.utf8.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: cs\n" "Report-Msgid-Bugs-To: Andreas Mair <andreas@vdr-developer.org>\n" -"POT-Creation-Date: 2008-12-18 08:25+0100\n" +"POT-Creation-Date: 2009-12-30 13:26+0100\n" "PO-Revision-Date: 2006-09-23 13:14+0200\n" "Last-Translator: Karel Borkovec <her-ur@her-ur.org>\n" "Language-Team: <cs@li.org>\n" @@ -19,184 +19,113 @@ msgstr "" msgid "ISO-8859-1" msgstr "UTF-8" -msgid "What's On Now?" -msgstr "Co běží nyní?" - -#, fuzzy -msgid "Channel group:" -msgstr "Kanál" - -msgid "What's on:" -msgstr "Co běží:" - -msgid "at" -msgstr "v" - -msgid "o'clock" -msgstr "hodin" - -msgid "More Information" -msgstr "Více informací" - -msgid "Channels" -msgstr "Kanály" - -msgid "Stream" -msgstr "Stream" - -msgid "TV select" -msgstr "Naladit TV" +msgid "About" +msgstr "O programu" -msgid "Search for other show times" -msgstr "Hledat jiné vysílací časy" +msgid "License" +msgstr "" #, fuzzy -msgid "No Information" -msgstr "Více informací" - -msgid "Edit" -msgstr "Upravit" +msgid "Authors" +msgstr "Auto-Časovač" -msgid "Record" -msgstr "Nahrávání" +msgid "Current author (VDRAdmin-AM branch):" +msgstr "Současný autor (VDRAdmin-AM):" #, fuzzy -msgid "No EPG information available" -msgstr "Žádné informace" +msgid "Original author (VDRAdmin):" +msgstr "Původní jméno nahrávky:" -#, fuzzy -msgid "Edit EPG" -msgstr "Upravit" +msgid "Translation Team" +msgstr "Překladatelský tým" -msgid "Help" -msgstr "Nápověda" +msgid "English:" +msgstr "Angličtina:" -msgid "Channel" -msgstr "Kanál" +msgid "German:" +msgstr "Němčina:" -msgid "Time" -msgstr "Čas" +msgid "French:" +msgstr "Francouzština:" -msgid "Title" -msgstr "Název" +msgid "At the moment unmaintained, former translations by:" +msgstr "" -msgid "Subtitle" -msgstr "Titulky" +msgid "Spanish:" +msgstr "Španělština:" -msgid "Description" -msgstr "Popis" +msgid "Finnish:" +msgstr "Finština:" -msgid "VPS" -msgstr "VPS" +msgid "Dutch:" +msgstr "Holandština:" -#, fuzzy -msgid "Video tracks" -msgstr "Video stopy:" +msgid "Russian:" +msgstr "Ruština:" #, fuzzy -msgid "Audio tracks" -msgstr "Audio stopy:" - -msgid "Save" -msgstr "Uložit" - -msgid "Cancel" -msgstr "Zrušit" - -msgid "Edit Timer" -msgstr "Upravit časovač" - -msgid "<p>Here you can edit a timer's settings.</p>" -msgstr "<p>Zde můžete upravit nastavení Časovače.</p>" - -msgid "Timer Active:" -msgstr "Časovač aktivní" - -msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." -msgstr "" - -msgid "AutoTimer Checking:" -msgstr "Kontrola AutoČasovačů:" +msgid "Czech:" +msgstr "Francouzština:" -msgid "Depending on how this timer has been programmed you have up to three possible settings:" +msgid "Italian:" msgstr "" #, fuzzy -msgid "Transmission Identification" -msgstr "Identifikace" - -msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." -msgstr "" +msgid "Information" +msgstr "Informace" -msgid "Monitor this timer using the start and stop time." -msgstr "Sledovat tento časovač pomocí začátku a konce nahrávání." +msgid "VDRAdmin-AM version:" +msgstr "Verze VDRAdminu-AM:" -msgid "off" -msgstr "off" +msgid "VDR version:" +msgstr "Verze VDR:" -msgid "Do not monitor this timer." -msgstr "Nesledovat tento Časovač." +msgid "Supported features in VDR:" +msgstr "Podporované vlastnosti ve VDR:" -msgid "Channel:" -msgstr "Kanál" +#, fuzzy +msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgstr "TV streamování (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgid "The channel to record." -msgstr "Kanál k nahrávání." +msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgstr "TV streamování (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgid "Day Of Recording:" -msgstr "Den nahrávání" +msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgstr "Přejmenování nahrávek (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." -msgstr "" +msgid "Getting Help and Reporting Bugs" +msgstr "Rady a nahlašování chyb" -msgid "Start Time:" -msgstr "Začátek nahrávání:" +msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." +msgstr "Pokud si nevíte rady, použijte prosím nejdříve on-line nápovědu na různých webech. Klikněte zde <img src=\"bilder/help.png\" alt=\"\" />." -msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Toto je čas kdy by VDR mělo začít nahrávat. První textové pole je pro \"hodinu\" a druhé pro \"minutu\"." +msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" +msgstr "Jestliže tato nápověda neobsahuje informace, které potřebujete zkuste se zeptat na německém portálu <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> (německý jazyk je samozřejmostí, popř. angličtina). Využijte tzv. ANNOUNCE vlákno, hledat:" -msgid "End Time:" -msgstr "Konec času:" +msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." +msgstr "Pokud si myslíte, že jste našel chybu, prosím zkontrolujte zda již není nahlášena, popř. ji nahlašte zde: <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." -msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Toto je čas kdy by VDR mělo ukončit nahrávání. První textové pole je pro \"hodinu\" a druhé pro \"minutu\"." +msgid "AutoTimer" +msgstr "Auto-Časovač" msgid "Priority:" msgstr "Priorita:" -msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." -msgstr "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." - msgid "Lifetime:" msgstr "" -msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." -msgstr "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." - -msgid "Title of Recording:" -msgstr "Název nahrávky:" - -msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." -msgstr "" - -msgid "Summary:" -msgstr "Souhrn:" - -msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." -msgstr "Libovolný text popisující nahrávku z časovače. Jestliže pole není prázdné, tak text bude zapsán do souboru <span class=\"ref_file\">summary.vdr</span> nebo <span class=\"ref_file\">info.vdr</span>," - -msgid "Go!" -msgstr "Start!" - -msgid "AutoTimer" -msgstr "Auto-Časovač" - msgid "New AutoTimer" msgstr "Nové časování" +msgid "Help" +msgstr "Nápověda" + msgid "Active" msgstr "Aktivovat" +msgid "Channel" +msgstr "Kanál" + msgid "Start" msgstr "Start" @@ -215,6 +144,9 @@ msgstr "Ano" msgid "No" msgstr "Ne" +msgid "Edit" +msgstr "Upravit" + msgid "Delete timer?" msgstr "Smazat časovač?" @@ -234,33 +166,6 @@ msgstr "Vymazat všechny vybrané časovače?" msgid "No AutoTimers defined!" msgstr "Nové časování" -msgid "VDR Commands" -msgstr "VDR příkazy" - -msgid "Export channels as playlist:" -msgstr "" - -msgid "Number of lines to show:" -msgstr "Počet zobrazených řádků:" - -msgid "unlimited" -msgstr "neomezený" - -msgid "SVDRP commands:" -msgstr "SVDRP příkazy:" - -msgid "Run" -msgstr "Spustit" - -msgid "Really run this command?" -msgstr "Opravdu spustit tento příkaz?" - -msgid "Commands defined in commands.conf:" -msgstr "Příkazy definované v commands.conf:" - -msgid "Output" -msgstr "Výstup" - msgid "Add New AutoTimer" msgstr "Přidat nový AutoČasovač" @@ -279,6 +184,15 @@ msgstr "Vyhledávací znaky:" msgid "Search in:" msgstr "Hledat v:" +msgid "Title" +msgstr "Název" + +msgid "Subtitle" +msgstr "Titulky" + +msgid "Description" +msgstr "Popis" + msgid "Search only on these days:" msgstr "Hledat pouze v tyto dny:" @@ -303,12 +217,18 @@ msgstr "Sobota" msgid "Sunday" msgstr "Neděle" +msgid "Channel:" +msgstr "Kanál" + msgid "all" msgstr "vše" msgid "Starts After:" msgstr "Začátek po:" +msgid "o'clock" +msgstr "hodin" + msgid "Ends Before:" msgstr "Konec před:" @@ -333,9 +253,15 @@ msgstr "Zapamatovat naprogramovaný časovač:" msgid "Directory:" msgstr "Složka:" +msgid "Save" +msgstr "Uložit" + msgid "Test" msgstr "Test:" +msgid "Cancel" +msgstr "Zrušit" + msgid "Broadcasted" msgstr "Vysíláno" @@ -346,148 +272,276 @@ msgstr "Uloženo v:" msgid "No matches found!" msgstr "Nefunguje" -msgid "About" -msgstr "O programu" +msgid "Configuration" +msgstr "Nastavení" -msgid "License" -msgstr "" +msgid "General Settings" +msgstr "Obecné nastavení" -#, fuzzy -msgid "Authors" -msgstr "Auto-Časovač" +msgid "Template:" +msgstr "Šablona:" -msgid "Current author (VDRAdmin-AM branch):" -msgstr "Současný autor (VDRAdmin-AM):" +msgid "Skin:" +msgstr "Skin:" -#, fuzzy -msgid "Original author (VDRAdmin):" -msgstr "Původní jméno nahrávky:" +msgid "Login Page:" +msgstr "Úvodní strana:" -msgid "Translation Team" -msgstr "Překladatelský tým" +msgid "Number of channels to use:" +msgstr "Počet kanálů k použití:" -msgid "English:" -msgstr "Angličtina:" +msgid "Local net (no login required):" +msgstr "Lokální síť (login není vyžadován):" -msgid "German:" -msgstr "Němčina:" +msgid "Language:" +msgstr "Jazyk:" -msgid "French:" -msgstr "Francouzština:" +msgid "Save settings on exit:" +msgstr "Uložit nastavení při vypnutí:" -msgid "At the moment unmaintained, former translations by:" -msgstr "" +msgid "VDR" +msgstr "VDR" -msgid "Spanish:" -msgstr "Španělština:" +msgid "Number of DVB cards:" +msgstr "Počet DVB karet:" -msgid "Finnish:" -msgstr "Finština:" +msgid "Path to recordings:" +msgstr "Složka s nahrávkami:" -msgid "Dutch:" -msgstr "Holandština:" +msgid "Path to configuration files:" +msgstr "Složka s konfiguračními soubory:" -msgid "Russian:" -msgstr "Ruština:" +msgid "Path to EPG images:" +msgstr "Cesta k EPG souborům:" -#, fuzzy -msgid "Czech:" -msgstr "Francouzština:" +msgid "Identification" +msgstr "Identifikace" -msgid "Italian:" -msgstr "" +msgid "Username:" +msgstr "Uživ. jméno:" -#, fuzzy -msgid "Information" -msgstr "Informace" +msgid "Password:" +msgstr "Heslo:" -msgid "VDRAdmin-AM version:" -msgstr "Verze VDRAdminu-AM:" +msgid "Guest Account:" +msgstr "Guest účet:" -msgid "VDR version:" -msgstr "Verze VDR:" +msgid "Guest Username:" +msgstr "Guest uživ. jméno:" -msgid "Supported features in VDR:" -msgstr "Podporované vlastnosti ve VDR:" +msgid "Guest Password:" +msgstr "Guest heslo:" -#, fuzzy -msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgstr "TV streamování (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgid "Timeline" +msgstr "Časová přímka" -msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgstr "TV streamování (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgid "Hours:" +msgstr "Hodiny:" -msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgstr "Přejmenování nahrávek (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgid "Times:" +msgstr "Časy:" -msgid "Getting Help and Reporting Bugs" -msgstr "Rady a nahlašování chyb" +msgid "Also used for other EPG views!" +msgstr "Použít pro ostatní EPG náhledy!" -msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." -msgstr "Pokud si nevíte rady, použijte prosím nejdříve on-line nápovědu na různých webech. Klikněte zde <img src=\"bilder/help.png\" alt=\"\" />." +msgid "Tooltips:" +msgstr "Tipy:" -msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" -msgstr "Jestliže tato nápověda neobsahuje informace, které potřebujete zkuste se zeptat na německém portálu <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> (německý jazyk je samozřejmostí, popř. angličtina). Využijte tzv. ANNOUNCE vlákno, hledat:" +msgid "Active:" +msgstr "Aktivní:" -msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." -msgstr "Pokud si myslíte, že jste našel chybu, prosím zkontrolujte zda již není nahlášena, popř. ji nahlašte zde: <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." +msgid "Send email after programming timer:" +msgstr "Poslat email po nastavení časovače:" -msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgid "Send email as:" +msgstr "Odesílatel emailu:" + +msgid "Send email to:" +msgstr "Komu:" + +msgid "Mail server:" +msgstr "Poštovní server:" + +msgid "SMTPAuth user:" +msgstr "SMTPAuth uživatel:" + +msgid "SMTPAuth password:" +msgstr "SMTPAuth heslo:" + +msgid "Track schedule changes by:" msgstr "" -msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." +msgid "Broadcast time" msgstr "" -msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Only broadcasts will match if they contain <strong>all</strong> items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as Blacklist-string) or only one episode (when using \"Enterprise~Azati Prime\" as Blacklist-string)." +msgid "Event id" msgstr "" -#, fuzzy -msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." -msgstr "Zde můžete nastavit jakou lokalizaci VDRAdmin-AM chcete používat." +msgid "Timer" +msgstr "Časovač" -msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." -msgstr "" +msgid "Tooltips in timeline:" +msgstr "Tipy v časové přímce:" -msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." +msgid "Tooltips in list:" +msgstr "Tipy v seznamu:" + +msgid "Streaming" +msgstr "Streamování" + +msgid "Live Streaming:" +msgstr "Live Streamování:" + +msgid "HTTP Port of Streamdev (also possible 3000/ts):" +msgstr "HTTP Port pro Streamdev (možno 3000/ts):" + +msgid "Recordings Streaming:" +msgstr "Nahrávání streamu:" + +msgid "Path to VDR Recordings on your workstation:" +msgstr "Cesta ke složce s VDR nahrávkami na Vašem PC:" + +msgid "MIME type for live streaming:" +msgstr "MIME typ pro live streamování:" + +msgid "Suffix for live streaming:" +msgstr "Přípona pro live streamování:" + +msgid "MIME type for recordings streaming:" +msgstr "MIME typ pro nahrávky streamu:" + +msgid "Suffix for recordings streaming:" +msgstr "Přípona pro nahrávky streamu:" + +msgid "Bandwidth of Streams:" +msgstr "Šířka pásma pro streamy:" + +#, fuzzy +msgid "External Search" +msgstr "hledat" + +msgid "URL:" msgstr "" #, fuzzy -msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Toto je čas kdy by VDR mělo začít nahrávat. První textové pole je pro \"hodinu\" a druhé pro \"minutu\"." +msgid "Title:" +msgstr "Název" #, fuzzy -msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Toto je čas kdy by VDR mělo začít nahrávat. První textové pole je pro \"hodinu\" a druhé pro \"minutu\"." +msgid "User-defined search:" +msgstr "Žádný časovač není definován!" -msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." -msgstr "" +msgid "Expert" +msgstr "Expert:" -msgid "The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG." +msgid "Update EPG data in background:" msgstr "" -msgid "The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG." +msgid "Update EPG every:" msgstr "" -msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." -msgstr "" +msgid "Channel Selections" +msgstr "Výběr kanálů" -msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." +msgid "Show channels without EPG information:" msgstr "" -msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." +msgid "In \"AutoTimer\"?" +msgstr "V \"AutoČasovači\"?" + +msgid "Apply" +msgstr "Použij" + +#, fuzzy +msgid "EPG Search Blacklists" +msgstr "hledat" + +#, fuzzy +msgid "New Blacklist" +msgstr "Přidat nový AutoČasovač" + +#, fuzzy +msgid "Search pattern" +msgstr "Vyhledávací znaky:" + +msgid "From" msgstr "" -msgid "Timer" -msgstr "Časovač" +#, fuzzy +msgid "To" +msgstr "Nahoru" -msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" +#, fuzzy +msgid "Delete blacklist?" +msgstr "Smazat časovač?" + +#, fuzzy +msgid "Delete Selected Blacklists" +msgstr "Vymazat vybrané časovače" + +#, fuzzy +msgid "Delete all selected blacklists?" +msgstr "Vymazat všechny vybrané časovače?" + +#, fuzzy +msgid "EPG search" +msgstr "hledat" + +#, fuzzy +msgid "EPG Search" +msgstr "hledat" + +#, fuzzy +msgid "Use template" +msgstr "Šablona:" + +#, fuzzy +msgid "New Search" +msgstr "hledat" + +#, fuzzy +msgid "Edit Template" +msgstr "Šablona:" + +#, fuzzy +msgid "Settings" +msgstr "Obecné nastavení" + +#, fuzzy +msgid "Action" +msgstr "Aktivovat" + +#, fuzzy +msgid "Find" +msgstr "Pátek" + +msgid "Show Favorites" msgstr "" -msgid "Playing Today" -msgstr "Běží dnes" +#, fuzzy +msgid "Delete Selected Searches" +msgstr "Vymazat vybrané časovače" -msgid "starting at" -msgstr "začíná v" +#, fuzzy +msgid "Delete all selected searches?" +msgstr "Vymazat všechny vybrané časovače?" + +#, fuzzy +msgid "Execute Selected Searches" +msgstr "Vymazat vybrané časovače" + +#, fuzzy +msgid "Duration" +msgstr "Délka:" + +msgid "More Information" +msgstr "Více informací" + +msgid "Channels" +msgstr "Kanály" + +msgid "Record" +msgstr "Nahrávání" #, fuzzy msgid "Add New Blacklist" @@ -502,10 +556,6 @@ msgid "Add New Template" msgstr "Přidat nový AutoČasovač" #, fuzzy -msgid "Edit Template" -msgstr "Šablona:" - -#, fuzzy msgid "Add New Search" msgstr "Přidat nový AutoČasovač" @@ -524,10 +574,6 @@ msgid "Hide results" msgstr "Hledat v:" #, fuzzy -msgid "Settings" -msgstr "Obecné nastavení" - -#, fuzzy msgid "Name:" msgstr "Jméno" @@ -738,268 +784,150 @@ msgstr "Smazat časovač?" msgid "Save as template" msgstr "Šablona:" -msgid "Create New Timer" -msgstr "Vytvořit nový časovač" - -msgid "Buffer:" -msgstr "Zásobník:" - -msgid "Use VPS:" -msgstr "Použít VPS:" - -msgid "readonly" -msgstr "Pouze pro čtení" - -msgid "Timer has been set by AutoTimer pattern:" -msgstr "Časovač byl nastaven podle AutoČasovače" - -msgid "No Help Available" -msgstr "Nápověda není dostupná" - -msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgstr "<p>Nápověda zatím není dostupná. Pro přidání nebo změnu textu pište prosím sem: <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>. </p>" +msgid "Run" +msgstr "Spustit" msgid "Error!" msgstr "Chyba!" -msgid "TV" -msgstr "TV" - -msgid "Interval:" -msgstr "Interval:" - -msgid "sec." -msgstr "sec." - -msgid "G" -msgstr "G" - -msgid "Grab the picture!" -msgstr "Ulož obrázek!" - -msgid "Size:" -msgstr "Velikost:" +msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" +msgstr "<p>Seznam AutoČasovačů ve VDRAdmin-AM.</p><p>Seznam zobrazuje některé informace, lze měnit řazení položek dle hlaviček sloupců.</p><p>Pro každý časovač máte k dispozici následující možnosti:<dl><dt>Nastavení stavu</dt><dd>Kliknutím na \"Ano\" nebo \"Ne\"v \"Aktivním\" sloupci určujícím aktivitu.</dd><dt>Rychlý pohled na prioritu a dobu trvání</dt><dd>Najetím kurzoru myši na název AutoČasovače.</dd><dt>Upravení AutoČasovače</dt><dd>Upravovat Autočasovač lze kliknutím na <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Smazání AutoČasovače</dt><dd>Smazat AutoČasovač lze kliknutím na <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Každý stav Autočasovače je indikován různě barevnými obrázky <br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" />Autočasovač je v pořádku a automaticky bude spuštěn.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" />AutoČasovač není aktivní.</p><p>Navíc k těmto funkcím lze ještě přidat nový AutoČasovač kliknutím na <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> nahoře na stránce a také lze smazat více AutoČasovačů zároveň zaškrtnutím boxů v posledním sloupci a kliknutím na <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Klikněte zde <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> k vynucení re-connectu k VDR, stáhnutí aktuálního EPG a kontroly AutoČasovačů.</p>" -msgid "Open in separate window" -msgstr "Otevři v samostatném okně" +msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgstr "" -msgid "Playing Today?" -msgstr "Co poběží dnes?" +msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." +msgstr "" -msgid "Timeline" -msgstr "Časová přímka" +msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Broadcasts will match only if they match <strong>all</strong> configured search items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as blacklist string) or only one episode (when using \"Enterprise~Azati Prime\" as blacklist string)." +msgstr "" #, fuzzy -msgid "EPG Search" -msgstr "hledat" - -msgid "Recordings" -msgstr "Nahrávky" +msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." +msgstr "Zde můžete nastavit jakou lokalizaci VDRAdmin-AM chcete používat." -msgid "Remote Control" -msgstr "Dálkové ovládání" +msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." +msgstr "" -msgid "Watch TV" -msgstr "Sleduj TV" +msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." +msgstr "" #, fuzzy -msgid "Commands" -msgstr "Příkazy:" - -msgid "Configuration" -msgstr "Nastavení" +msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Toto je čas kdy by VDR mělo začít nahrávat. První textové pole je pro \"hodinu\" a druhé pro \"minutu\"." #, fuzzy -msgid "Search" -msgstr "hledat" +msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Toto je čas kdy by VDR mělo začít nahrávat. První textové pole je pro \"hodinu\" a druhé pro \"minutu\"." -msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" -msgstr "<p>Zde můžete změnit obecné nastavení a základní nastavení pro časovače, AutoČasovače, výběr kanálů a parametry streamu.</p>" +msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." +msgstr "" -msgid "General Settings" -msgstr "Obecné nastavení" +msgid "The number of minutes VDRAdmin-AM subtracts from the broadcast's start time found in the EPG." +msgstr "" -msgid "VDR" -msgstr "VDR" +msgid "The number of minutes VDRAdmin-AM adds to the broadcast's stop time found in the EPG." +msgstr "" -msgid "Identification" -msgstr "Identifikace" +msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." +msgstr "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." -msgid "Streaming" -msgstr "Streamování" +msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." +msgstr "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." -msgid "Expert" -msgstr "Expert:" +msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." +msgstr "" -#, fuzzy -msgid "External Search" -msgstr "hledat" +msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." +msgstr "" -msgid "Channel Selections" -msgstr "Výběr kanálů" +msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." +msgstr "" -msgid "Skin:" -msgstr "Skin:" +msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" +msgstr "<p>Zde můžete změnit obecné nastavení a základní nastavení pro časovače, AutoČasovače, výběr kanálů a parametry streamu.</p>" msgid "The skin you want to use." msgstr "Skin, který chcete použít:" -msgid "Login Page:" -msgstr "Úvodní strana:" - msgid "The page you want to see at first connect to VDRAdmin-AM." msgstr "Stránka, kterou chcete zobrazit jako první při spuštění VDRAdmin-AM." -msgid "Number of channels to use:" -msgstr "Počet kanálů k použití:" - msgid "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." msgstr "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." -msgid "Local net (no login required):" -msgstr "Lokální síť (login není vyžadován):" - msgid "Here you can specify an IP address or range that can login without providing login information. For example: \"192.168.0.0/24\" will include any IP starting with \"192.168.0\", \"192.168.0.123/32\" will only match \"192.168.0.123\"." msgstr "Zde můžete zadat jednu nebo celý rozsah IP adres, které se budou moci přihlásit bez přihlašovacích údajů. Např. \"192.168.0.0/24\" zahrnuje všechny IP z rozsahu \"192.168.0\", \"192.168.0.123/32\" vyhovuje pouze \"192.168.0.123\"." -msgid "Language:" -msgstr "Jazyk:" - msgid "Here you can set the localization VDRAdmin-AM should use." msgstr "Zde můžete nastavit jakou lokalizaci VDRAdmin-AM chcete používat." -msgid "Save settings on exit:" -msgstr "Uložit nastavení při vypnutí:" - msgid "With this option the settings will be saved if VDRAdmin-AM exits. This will also save settings not available on the \"Configuration\" menu like interval and size in TV, sorting in the lists and current view in \"What's on now\"." msgstr "" msgid "Top" msgstr "Nahoru" -msgid "Number of DVB cards:" -msgstr "Počet DVB karet:" - msgid "The number of DVB cards VDR can access. Depending on this value VDRAdmin-AM will calculate critical timers in the <span class=\"ref_menu\">Timer</span> menu." msgstr "Počet DVB karet na které lze přistupovat. Na této hodnotě závisí výpočet kritických časovačů v <span class=\"ref_menu\">Časovač</span> menu." -msgid "Path to recordings:" -msgstr "Složka s nahrávkami:" - msgid "The path to VDR's recordings. It's used so that VDRAdmin-AM can locate the recordings when using <span class=\"ref_label\">Recordings Streaming</span> and <span class=\"ref_file\">reccmds.conf</span> in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Cesta k VDR nahrávkám. Použito, aby mohl VDRAdmin-AM najít nahrávky, když používá <span class=\"ref_label\">Nahrávání Streamu</span> a <span class=\"ref_file\">reccmds.conf</span> v <span class=\"ref_menu\">Nahrávky</span> menu." -msgid "Path to configuration files:" -msgstr "Složka s konfiguračními soubory:" - msgid "The path where VDR's configuration files are located. If this directory contains the file <span class=\"ref_file\">reccmds.conf</span> its content is shown in a selectbox in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Cesta kde jsou uloženy konfigurační soubory VDR. Pokud tato složka obsahuje soubor <span class=\"ref_file\">reccmds.conf</span>, jeho obsah je zobrazen v slectboxu v <span class=\"ref_menu\">Nahrávky</span> menu." -msgid "Path to EPG images:" -msgstr "Cesta k EPG souborům:" - msgid "The path where the EPG images are stored." msgstr "Cesta kde jsou uloženy EPG data." -msgid "Username:" -msgstr "Uživ. jméno:" - msgid "The username for the main user, i.e. the user having the most privileges." msgstr "Uživatelské jméno hlavního uživatele, toho který má největší práva." -msgid "Password:" -msgstr "Heslo:" - msgid "The main user's password." msgstr "Heslo hlavního uživatele." -msgid "Guest Account:" -msgstr "Guest účet:" - msgid "If you want a user account having only limited privileges, this is for you. The guest user cannot modify anything, it's only allowed to view the EPG, timers, AutoTimers and recordings listings." msgstr "Pokud chcete mít účet uživatele s limitovanými právy, je toto pro vás. Guest účet nemůže nic měnit, pouze si může prohlížet EPG, časovače, AutoČasovače a koukat na nahrávky." -msgid "Guest Username:" -msgstr "Guest uživ. jméno:" - msgid "The username for the guest user." msgstr "Uživatelské jméno pro guest účet." -msgid "Guest Password:" -msgstr "Guest heslo:" - msgid "The guest user's password." msgstr "Guest heslo." -msgid "Hours:" -msgstr "Hodiny:" - msgid "The number of hours to show in the timeline." msgstr "Počet hodin zobrazovaných v časové přímce." -msgid "Times:" -msgstr "Časy:" - msgid "A comma separated list of times in <strong>hh:mm</strong> format that appear in the selectbox placed at the top." msgstr "Čárkou oddělený seznam časů v tomto formátu <strong>hh:mm</strong>, který se bude zobrazovat v selectboxu ve vrchní části stránky." -msgid "Tooltips:" -msgstr "Tipy:" - msgid "Here you can (de-)activate the tooltips." msgstr "Tady můžete (de-)aktivovat nástrojové tipy." -msgid "Active:" -msgstr "Aktivní:" - msgid "Activate or deactivate the AutoTimer function." msgstr "Aktivace a Deaktivace funkce AutoČasovače." -msgid "Send email after programming timer:" -msgstr "Poslat email po nastavení časovače:" - msgid "VDRAdmin-AM will send an email whenever an event matches an AutoTimer and a timer has been programmed if you enable this feature." msgstr "VDRAdmin-AM vám zašle e-mail kdykoli, když se nastaví Časovač, atd... pokud aktivujete tuto vlastnost." -msgid "Send email as:" -msgstr "Odesílatel emailu:" - msgid "Here you set the sending email address of the generated email." msgstr "Zde zapište e-mailovou adresu ze které budou vygenerované e-maily odcházet." -msgid "Send email to:" -msgstr "Komu:" - msgid "The email address the email is sent to." msgstr "Zde zapište e-mailovou adresu na kterou se budou zasílat vygenerované e-maily." -msgid "Mail server:" -msgstr "Poštovní server:" - msgid "The outgoing mail server." msgstr "Odchozí poštovní server." -msgid "SMTPAuth user:" -msgstr "SMTPAuth uživatel:" - msgid "If you need to authenticate yourself at the outgoing mail server, you have to supply the username and the password below. Leaving this field empty will disable SMTPAuth." msgstr "Pokud potřebujete používat SMTP autentifikaci tak vyplňte jméno a heslo níže. Vynechání znamená vypnutí této funkce." -msgid "SMTPAuth password:" -msgstr "SMTPAuth heslo:" - msgid "The password for the SMTPAuth user." msgstr "Heslo pro SMTP autentifikaci." -msgid "Tooltips in timeline:" -msgstr "Tipy v časové přímce:" - msgid "Here you can (de-)activate the tooltips in the timeline." msgstr "Zde můžete (de-)aktivovat nástrojové tipy v časové přímce." -msgid "Tooltips in list:" -msgstr "Tipy v seznamu:" - msgid "Here you can (de-)activate the tooltips in the list." msgstr "Zde můžete (de-)aktivovat nástrojové tipy v seznamu." @@ -1009,51 +937,27 @@ msgstr "Přidat souhrn k novým časovačům:" msgid "If you don't want VDRAdmin-AM to add the summary taken from EPG to new timers you can switch it off here." msgstr "Pokud nechcete aby VDRAdmin-AM přidával souhrn EPG k novým Časovačům, zde to můžete vypnout." -msgid "Live Streaming:" -msgstr "Live Streamování:" - msgid "Enable or disable live streaming using the <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. You also have to set the correct <span class=\"ref_label\">HTTP Port for Streamdev</span> below." msgstr "Zapnout nebo vypnout streamování za použití <a href=\"http://www.magoa.net/linux/\">streamdev pluginu</a>. Také musíte zadat správný <span class=\"ref_label\">HTTP Port pro Streamdev</span>" -msgid "HTTP Port of Streamdev (also possible 3000/ts):" -msgstr "HTTP Port pro Streamdev (možno 3000/ts):" - msgid "Here you have to set the port number your VDR's streamdev server listens for connections. Additionally you can also provide the stream type you like to use." msgstr "Zde musíte zadat číslo portu na kterém naslouchá Váš streamdev server. Také můžete zadat typ streamu, který by jste chtěli použít." -msgid "Recordings Streaming:" -msgstr "Nahrávání streamu:" - msgid "Enable or disable streaming of recordings.<br />Well actually this is no real \"streaming\", but you have to setup your workstation so that it can access VDR's recordings. You can use for example Samba or NFS for this. VDRAdmin-AM simply generates a playlist that contains all parts of the recording and sends this to your browser. If your browser and media player are configured correctly you will see the recording on your workstation's display." msgstr "" -msgid "Path to VDR Recordings on your workstation:" -msgstr "Cesta ke složce s VDR nahrávkami na Vašem PC:" - msgid "This is the path where your workstation can access VDR's recordings. This depends on your VDR and workstation setup, for example \"\\\\vdr\\videos\" or \"V:\\\" (on Windows) or \"/mnt/videos\" (on Linux)." msgstr "" -msgid "MIME type for live streaming:" -msgstr "MIME typ pro live streamování:" - msgid "The MIME type to send when using live streaming. Defaults to \"video/x-mpegurl\"." msgstr "" -msgid "Suffix for live streaming:" -msgstr "Přípona pro live streamování:" - msgid "The suffix to use for live streaming. Defaults to \"m3u\"." msgstr "" -msgid "MIME type for recordings streaming:" -msgstr "MIME typ pro nahrávky streamu:" - msgid "The MIME type to send when using recordings streaming. Defaults to \"video/x-mpegurl\"." msgstr "" -msgid "Suffix for recordings streaming:" -msgstr "Přípona pro nahrávky streamu:" - #, fuzzy msgid "The suffix to use for recordings streaming. Defaults to \"m3u\"." msgstr "Přípona pro nahrávky streamu:" @@ -1070,15 +974,9 @@ msgstr "" msgid "<p>This section is for experts <strong>only</strong>, i.e. you know what you are doing!</p>" msgstr "" -msgid "Update EPG data in background:" -msgstr "" - msgid "If set to \"yes\" VDRAdmin-AM will periodically refresh its local EPG cache. Else the EPG will be refreshed if the user accesses any EPG view at the web interface and the timeout set at \"Update EPG every\" has been reached." msgstr "" -msgid "Update EPG every:" -msgstr "" - #, fuzzy msgid "The interval, the EPG data is refreshed from VDR and AutoTimer updates are performed (if AutoTimer feature is used)." msgstr "Interval, ve kterém budou kontrolována EPG data pro obnovu AutoČasovačů." @@ -1086,35 +984,15 @@ msgstr "Interval, ve kterém budou kontrolována EPG data pro obnovu AutoČasova msgid "<p>If you want to limit the number of channels used in some parts of VDRAdmin-AM, this is for you!</p><p>Use the radio buttons to activate or deactivate the wanted channels in the named menu.</p><p>To add channels to the list of wanted channels you have to select them in the left side selectbox and click <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. If you want to remove channels from the list of wanted channels you have to select them in the right side selectbox and click <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" msgstr "" -msgid "Show channels without EPG information:" -msgstr "" - msgid "Usually channels that don't have EPG information are hidden in all EPG views. If you don't want them to be hidden you have to set this option to \"yes\"." msgstr "" -msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" -msgstr "<p>Seznam AutoČasovačů ve VDRAdmin-AM.</p><p>Seznam zobrazuje některé informace, lze měnit řazení položek dle hlaviček sloupců.</p><p>Pro každý časovač máte k dispozici následující možnosti:<dl><dt>Nastavení stavu</dt><dd>Kliknutím na \"Ano\" nebo \"Ne\"v \"Aktivním\" sloupci určujícím aktivitu.</dd><dt>Rychlý pohled na prioritu a dobu trvání</dt><dd>Najetím kurzoru myši na název AutoČasovače.</dd><dt>Upravení AutoČasovače</dt><dd>Upravovat Autočasovač lze kliknutím na <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Smazání AutoČasovače</dt><dd>Smazat AutoČasovač lze kliknutím na <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Každý stav Autočasovače je indikován různě barevnými obrázky <br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" />Autočasovač je v pořádku a automaticky bude spuštěn.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" />AutoČasovač není aktivní.</p><p>Navíc k těmto funkcím lze ještě přidat nový AutoČasovač kliknutím na <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> nahoře na stránce a také lze smazat více AutoČasovačů zároveň zaškrtnutím boxů v posledním sloupci a kliknutím na <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Klikněte zde <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> k vynucení re-connectu k VDR, stáhnutí aktuálního EPG a kontroly AutoČasovačů.</p>" - -msgid "Your Browser does not support frames!" -msgstr "Váš prohlížeč nepodporuje rámy!" - -msgid "Rename Recording" -msgstr "Přejmenovat nahrávku" - -msgid "Original Name of Recording:" -msgstr "Původní jméno nahrávky:" - -msgid "New Name of Recording:" -msgstr "Nové jméno nahrávky:" - -msgid "Subtitle:" -msgstr "Titulky:" - -msgid "Rename" -msgstr "Přejmenovat" +msgid "Edit Timer" +msgstr "Upravit časovač" -msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" -msgstr "" +#, fuzzy +msgid "Edit EPG" +msgstr "Upravit" #, fuzzy msgid "<p>Here you can edit the descriptive fields of an existing EPG entry.</p>" @@ -1164,152 +1042,119 @@ msgstr "Audio stopy:" msgid "If available this field shows the audio track(s). It cannot be changed." msgstr "" -msgid "Duration:" -msgstr "Délka:" - -msgid "min" -msgstr "min" - -msgid "Transponder:" -msgstr "Transponder:" +msgid "No Help Available" +msgstr "Nápověda není dostupná" -msgid "CA-System:" -msgstr "CA-System:" +msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgstr "<p>Nápověda zatím není dostupná. Pro přidání nebo změnu textu pište prosím sem: <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>. </p>" -msgid "New Timer" -msgstr "Nový časovač" +msgid "Recordings" +msgstr "Nahrávky" -msgid "Date" -msgstr "Datum" +msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" +msgstr "" -msgid "Edit timer status?" -msgstr "Upravit časovač?" +msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" +msgstr "" -msgid "This timer is inactive!" -msgstr "Časovač není aktivní!" +msgid "<p>Here you can edit a timer's settings.</p>" +msgstr "<p>Zde můžete upravit nastavení Časovače.</p>" -msgid "This timer is impossible!" -msgstr "Tento časovač není možné nastavit!" +msgid "Timer Active:" +msgstr "Časovač aktivní" -msgid "No more timers on other transponders possible!" -msgstr "Žádné další časovače na ostatních transpondérech nejsou možné!" +msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." +msgstr "" -msgid "Timer OK." -msgstr "Časovač je v cajku." +msgid "AutoTimer Checking:" +msgstr "Kontrola AutoČasovačů:" -msgid "Auto" -msgstr "Auto" +msgid "Depending on how this timer has been programmed you have up to three possible settings:" +msgstr "" -msgid "activate" -msgstr "aktivní" +#, fuzzy +msgid "Transmission Identification" +msgstr "Identifikace" -msgid "inactivate" -msgstr "deaktivovat" +msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." +msgstr "" -msgid "selected timers" -msgstr "vybrané časovače" +msgid "Time" +msgstr "Čas" -msgid "Delete Selected Timers" -msgstr "Vymazat vybrané časovače" +msgid "Monitor this timer using the start and stop time." +msgstr "Sledovat tento časovač pomocí začátku a konce nahrávání." -msgid "No timers defined!" -msgstr "Žádný časovač není definován!" +msgid "off" +msgstr "off" -#, fuzzy -msgid "EPG Search Blacklists" -msgstr "hledat" +msgid "Do not monitor this timer." +msgstr "Nesledovat tento Časovač." -#, fuzzy -msgid "New Blacklist" -msgstr "Přidat nový AutoČasovač" +msgid "The channel to record." +msgstr "Kanál k nahrávání." -#, fuzzy -msgid "Search pattern" -msgstr "Vyhledávací znaky:" +msgid "Day Of Recording:" +msgstr "Den nahrávání" -msgid "From" +msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." msgstr "" -#, fuzzy -msgid "To" -msgstr "Nahoru" - -#, fuzzy -msgid "Delete blacklist?" -msgstr "Smazat časovač?" - -#, fuzzy -msgid "Delete Selected Blacklists" -msgstr "Vymazat vybrané časovače" - -#, fuzzy -msgid "Delete all selected blacklists?" -msgstr "Vymazat všechny vybrané časovače?" - -#, fuzzy -msgid "EPG search" -msgstr "hledat" +msgid "Start Time:" +msgstr "Začátek nahrávání:" -#, fuzzy -msgid "Use template" -msgstr "Šablona:" +msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Toto je čas kdy by VDR mělo začít nahrávat. První textové pole je pro \"hodinu\" a druhé pro \"minutu\"." -#, fuzzy -msgid "New Search" -msgstr "hledat" +msgid "End Time:" +msgstr "Konec času:" -#, fuzzy -msgid "Action" -msgstr "Aktivovat" +msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Toto je čas kdy by VDR mělo ukončit nahrávání. První textové pole je pro \"hodinu\" a druhé pro \"minutu\"." -#, fuzzy -msgid "Find" -msgstr "Pátek" +msgid "Title of Recording:" +msgstr "Název nahrávky:" -msgid "Show Favorites" +msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." msgstr "" -#, fuzzy -msgid "Delete Selected Searches" -msgstr "Vymazat vybrané časovače" - -#, fuzzy -msgid "Delete all selected searches?" -msgstr "Vymazat všechny vybrané časovače?" +msgid "Summary:" +msgstr "Souhrn:" -#, fuzzy -msgid "Execute Selected Searches" -msgstr "Vymazat vybrané časovače" +msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." +msgstr "Libovolný text popisující nahrávku z časovače. Jestliže pole není prázdné, tak text bude zapsán do souboru <span class=\"ref_file\">summary.vdr</span> nebo <span class=\"ref_file\">info.vdr</span>," -#, fuzzy -msgid "Duration" -msgstr "Délka:" +msgid "Your Browser does not support frames!" +msgstr "Váš prohlížeč nepodporuje rámy!" -msgid "Template:" -msgstr "Šablona:" +msgid "What's On Now?" +msgstr "Co běží nyní?" -msgid "Also used for other EPG views!" -msgstr "Použít pro ostatní EPG náhledy!" +msgid "Playing Today?" +msgstr "Co poběží dnes?" -msgid "Bandwidth of Streams:" -msgstr "Šířka pásma pro streamy:" +msgid "Remote Control" +msgstr "Dálkové ovládání" -msgid "URL:" -msgstr "" +msgid "Watch TV" +msgstr "Sleduj TV" #, fuzzy -msgid "Title:" -msgstr "Název" +msgid "Commands" +msgstr "Příkazy:" #, fuzzy -msgid "User-defined search:" -msgstr "Žádný časovač není definován!" +msgid "Search" +msgstr "hledat" -msgid "In \"AutoTimer\"?" -msgstr "V \"AutoČasovači\"?" +msgid "Authorization Required" +msgstr "Autentifikace je nutná" -msgid "Apply" -msgstr "Použij" +msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." +msgstr "Server nemohl rozpoznat, zda jste autorizován k přístupu k tomuto dokumentu. Buď jste vložil špatná údaje (např. heslo) nebo Váš prohlížeč nepodporuje předávání parametrů, které jsou vyžadované." + +msgid "VPS" +msgstr "VPS" msgid "close" msgstr "zavřít" @@ -1331,23 +1176,82 @@ msgstr "Video stopy:" msgid "Audio tracks:" msgstr "Audio stopy:" +#, fuzzy +msgid "Video tracks" +msgstr "Video stopy:" + +#, fuzzy +msgid "Audio tracks" +msgstr "Audio stopy:" + +msgid "TV select" +msgstr "Naladit TV" + +msgid "Stream" +msgstr "Stream" + +#, fuzzy +msgid "Channel group:" +msgstr "Kanál" + +msgid "Go!" +msgstr "Start!" + +msgid "Search for other show times" +msgstr "Hledat jiné vysílací časy" + +#, fuzzy +msgid "No Information" +msgstr "Více informací" + +#, fuzzy +msgid "No EPG information available" +msgstr "Žádné informace" + +msgid "Playing Today" +msgstr "Běží dnes" + +msgid "starting at" +msgstr "začíná v" + +msgid "What's on:" +msgstr "Co běží:" + +msgid "at" +msgstr "v" + msgid "now" msgstr "nyní" msgid "to" msgstr "do" +msgid "Duration:" +msgstr "Délka:" + +msgid "min" +msgstr "min" + msgid "at:" msgstr "v:" msgid "You need JavaScript to use the timeline!" msgstr "K používání časové linie potřebujete JavaScript!" -msgid "Authorization Required" -msgstr "Autentifikace je nutná" +msgid "Rename Recording" +msgstr "Přejmenovat nahrávku" -msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." -msgstr "Server nemohl rozpoznat, zda jste autorizován k přístupu k tomuto dokumentu. Buď jste vložil špatná údaje (např. heslo) nebo Váš prohlížeč nepodporuje předávání parametrů, které jsou vyžadované." +msgid "Original Name of Recording:" +msgstr "Původní jméno nahrávky:" + +msgid "New Name of Recording:" +msgstr "Nové jméno nahrávky:" + +msgid "Subtitle:" +msgstr "Titulky:" + +msgid "Rename" +msgstr "Přejmenovat" msgid "Total:" msgstr "Celkové:" @@ -1358,6 +1262,9 @@ msgstr "h" msgid "Free:" msgstr "Volno:" +msgid "Date" +msgstr "Datum" + msgid "Total" msgstr "Celkem" @@ -1379,6 +1286,9 @@ msgstr "Obnovit" msgid "Commands:" msgstr "Příkazy:" +msgid "Really run this command?" +msgstr "Opravdu spustit tento příkaz?" + msgid "Delete Selected Recordings" msgstr "Smazat označené nahrávky" @@ -1389,6 +1299,105 @@ msgstr "Smazat všechny označené nahrávky?" msgid "No recordings available" msgstr "Nápověda není dostupná" +msgid "Transponder:" +msgstr "Transponder:" + +msgid "CA-System:" +msgstr "CA-System:" + +msgid "New Timer" +msgstr "Nový časovač" + +msgid "Edit timer status?" +msgstr "Upravit časovač?" + +msgid "This timer is inactive!" +msgstr "Časovač není aktivní!" + +msgid "This timer is impossible!" +msgstr "Tento časovač není možné nastavit!" + +msgid "No more timers on other transponders possible!" +msgstr "Žádné další časovače na ostatních transpondérech nejsou možné!" + +msgid "Timer OK." +msgstr "Časovač je v cajku." + +msgid "Auto" +msgstr "Auto" + +msgid "activate" +msgstr "aktivní" + +msgid "inactivate" +msgstr "deaktivovat" + +msgid "selected timers" +msgstr "vybrané časovače" + +msgid "Delete Selected Timers" +msgstr "Vymazat vybrané časovače" + +msgid "No timers defined!" +msgstr "Žádný časovač není definován!" + +msgid "Create New Timer" +msgstr "Vytvořit nový časovač" + +msgid "Buffer:" +msgstr "Zásobník:" + +msgid "Use VPS:" +msgstr "Použít VPS:" + +msgid "readonly" +msgstr "Pouze pro čtení" + +msgid "Timer has been set by AutoTimer pattern:" +msgstr "Časovač byl nastaven podle AutoČasovače" + +msgid "TV" +msgstr "TV" + +msgid "Interval:" +msgstr "Interval:" + +msgid "sec." +msgstr "sec." + +msgid "G" +msgstr "G" + +msgid "Grab the picture!" +msgstr "Ulož obrázek!" + +msgid "Size:" +msgstr "Velikost:" + +msgid "Open in separate window" +msgstr "Otevři v samostatném okně" + +msgid "VDR Commands" +msgstr "VDR příkazy" + +msgid "Export channels as playlist:" +msgstr "" + +msgid "Number of lines to show:" +msgstr "Počet zobrazených řádků:" + +msgid "unlimited" +msgstr "neomezený" + +msgid "SVDRP commands:" +msgstr "SVDRP příkazy:" + +msgid "Commands defined in commands.conf:" +msgstr "Příkazy definované v commands.conf:" + +msgid "Output" +msgstr "Výstup" + msgid "What's your VDR hostname (e.g video.intra.net)?" msgstr "Jaké je Vaše VDR hostname?" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDRAdmin-AM-3.6.2+cvs\n" "Report-Msgid-Bugs-To: Andreas Mair <andreas@vdr-developer.org>\n" -"POT-Creation-Date: 2008-12-18 08:25+0100\n" +"POT-Creation-Date: 2009-12-30 13:26+0100\n" "PO-Revision-Date: 2007-07-26 14:49+0100\n" "Last-Translator: Andreas Mair <mail@andreas.vdr-developer.org>\n" "Language-Team: Andreas Mair <mail@andreas.vdr-developer.org>\n" @@ -18,177 +18,108 @@ msgstr "" msgid "ISO-8859-1" msgstr "ISO-8859-15" -msgid "What's On Now?" -msgstr "Was luft jetzt?" - -msgid "Channel group:" -msgstr "Kanalgruppe:" - -msgid "What's on:" -msgstr "Was luft:" - -msgid "at" -msgstr "um" - -msgid "o'clock" -msgstr "Uhr" - -msgid "More Information" -msgstr "mehr Infos" - -msgid "Channels" -msgstr "Programmbersicht" - -msgid "Stream" -msgstr "Stream" - -msgid "TV select" -msgstr "TV umschalten" - -msgid "Search for other show times" -msgstr "Nach Wiederholungen suchen" - -msgid "No Information" -msgstr "keine Infos" - -msgid "Edit" -msgstr "Bearbeiten" - -msgid "Record" -msgstr "Sendung aufnehmen" - -msgid "No EPG information available" -msgstr "Es sind keine EPG Informationen vorhanden" - -msgid "Edit EPG" -msgstr "EPG bearbeiten" - -msgid "Help" -msgstr "Hilfe" - -msgid "Channel" -msgstr "Kanal" - -msgid "Time" -msgstr "Uhrzeit" +msgid "About" +msgstr "ber" -msgid "Title" -msgstr "Titel" +msgid "License" +msgstr "Lizenz" -msgid "Subtitle" -msgstr "Untertitel" +msgid "Authors" +msgstr "Autoren" -msgid "Description" -msgstr "Beschreibung" +msgid "Current author (VDRAdmin-AM branch):" +msgstr "Derzeitiger Autor (VDRAdmin-AM):" -msgid "VPS" -msgstr "VPS" +msgid "Original author (VDRAdmin):" +msgstr "Ursprnglicher Autor (VDRAdmin):" -msgid "Video tracks" -msgstr "Videospuren" +msgid "Translation Team" +msgstr "bersetzungsteam" -msgid "Audio tracks" -msgstr "Audiospuren" +msgid "English:" +msgstr "Englisch:" -msgid "Save" -msgstr "Speichern" +msgid "German:" +msgstr "Deutsch:" -msgid "Cancel" -msgstr "Abbrechen" +msgid "French:" +msgstr "Franzsisch:" -msgid "Edit Timer" -msgstr "Timer editieren" +msgid "At the moment unmaintained, former translations by:" +msgstr "Wird zurzeit nicht aktualisiert, ltere bersetzungen von:" -msgid "<p>Here you can edit a timer's settings.</p>" -msgstr "<p>Hier knnen Sie die Einstellungen eines Timers bearbeiten.</p>" +msgid "Spanish:" +msgstr "Spanisch:" -msgid "Timer Active:" -msgstr "Timer aktiv:" +msgid "Finnish:" +msgstr "Finnisch:" -msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." -msgstr "Aktivieren bzw. Deaktivieren des Timers. Deaktivierte Timer werden weiterhin in der Liste der verfgbaren Timer gefhrt, so dass sie spter wieder aktiviert werden knnen. In der Zwischenzeit nehmen Sie dann aber nichts auf." +msgid "Dutch:" +msgstr "Hollndisch:" -msgid "AutoTimer Checking:" -msgstr "Automatische Timer-berwachung:" +msgid "Russian:" +msgstr "Russisch:" -msgid "Depending on how this timer has been programmed you have up to three possible settings:" -msgstr "Die mglichen Optionen sind abhngig davon, wie der Timer programmiert wurde:" +msgid "Czech:" +msgstr "Tschechisch:" -msgid "Transmission Identification" -msgstr "Sendungskennung" +msgid "Italian:" +msgstr "Italienisch:" -msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." -msgstr "Der Timer wird anhand der Identifikation, die die zugehrige Sendung im EPG besitzt, berwacht. Bitte beachten Sie, dass dies nur funktioniert, wenn die Identifikation im EPG fest und eindeutig ist! Diese Option ist nicht verfgbar, wenn der Timer im VDR programmiert wurde." +msgid "Information" +msgstr "Informationen" -msgid "Monitor this timer using the start and stop time." -msgstr "Der Timer wird anhand seiner Start- und Stoppzeit berwacht." +msgid "VDRAdmin-AM version:" +msgstr "VDRAdmin-AM Version:" -msgid "off" -msgstr "aus" +msgid "VDR version:" +msgstr "VDR Version:" -msgid "Do not monitor this timer." -msgstr "Der Timer wird nicht berwacht." +msgid "Supported features in VDR:" +msgstr "Untersttzte Funktionen im VDR:" -msgid "Channel:" -msgstr "Kanal:" +msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgstr "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgid "The channel to record." -msgstr "Der aufzunehmende Kanal." +msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgstr "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgid "Day Of Recording:" -msgstr "Tag der Aufnahme:" +msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgstr "Aufnahmen umbenennen (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." -msgstr "Der Tag an dem der Timer aktiv werden soll. Der Tag kann in zwei Formaten eingegeben werden:<ul><li>Zwei Ziffern (TT). Es wird der aktuelle Monat und das aktuelle Jahr verwendet.</li><li>ISO-Norm (JJJJ-MM-TT). Damit knnen Sie Timer soweit in der Zukunft programmieren wie Sie wollen.</li></ul>Fr den Fall, dass Sie wiederkehrende Timer programmieren wollen, knnen Sie die sieben Schaltflchen unterhalb des Textfeldes verwenden. Markieren Sie einfach das Feld des Tages an dem der Timer aktiv werden soll." +msgid "Getting Help and Reporting Bugs" +msgstr "Hilfe bekommen und Fehler melden" -msgid "Start Time:" -msgstr "Startzeit:" +msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." +msgstr "Wenn Sie Hilfe bentigen, dann werfen Sie bitte zuerst einen Blick in die Online-Hilfe, die fr einige Seiten verfgbar ist. Sie knnen Sie aufrufen indem Sie <img src=\"bilder/help.png\" alt=\"\" /> anklicken." -msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Dies ist die Startzeit der Aufnahme. Das erste Textfeld ist fr die Stunde, das zweite fr die Minuten." +msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" +msgstr "Wenn dies nicht die bentigte Information liefert, dann knnen Sie versuchen Hilfe im <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> zu bekommen. Bitte verwenden Sie hierfr wenn mglich den Ankndigungsthread, suchen Sie dafr nach:" -msgid "End Time:" -msgstr "Endzeit:" +msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." +msgstr "Wenn Sie meinen, dass Sie einen Fehler gefunden haben, dann berprfen Sie im <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking System</a>, ob es sich um einen neuen Fehler handelt und legen Sie gegebenenfalls einen neuen Fehlerbericht an." -msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Die Uhrzeit zu der die Aufnahme gestoppt werden soll. Das erste Textfeld ist fr die Stunde, das zweite fr die Minuten." +msgid "AutoTimer" +msgstr "AutoTimer" msgid "Priority:" msgstr "Prioritt:" -msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." -msgstr "Eine Zahl im Bereich <strong>0...99</strong>, die die <strong>Prioritt</strong> dieses Timers und der von ihm programmierten Aufnahmen angibt. <strong>0</strong> ist die geringste Prioritt und <strong>99</strong> die hchste. Die Prioritt wird verwendet um zu entscheiden, welcher Timer gestartet werden soll fr den Fall, dass zwei oder mehr Timer mit exakt der gleichen <strong>Startzeit</strong> existieren. Der erste Timer in der Liste mit den hchsten Prioritten wird verwendet.<br /><br />Dieser Wert wird ebenso zusammen mit der Aufnahme gespeichert und wird spter verwendet um zu entscheiden, welche Aufnahme gelscht werden soll, fr den Fall, dass kein Pattenplatz mehr fr eine neue Aufnahme ist. Wenn die Platte voll luft und eine Aufnahme mehr Plattenplatz bentigt, wird eine existierende Aufnahme mit der geringsten Prioritt (und deren garantierte <strong>Lebenszeit</strong> berschritten wurde) gelscht. <br /><br />Wenn alle verfgbaren DVB-Karten belegt sind unterbricht ein Timer mit einer hheren Prioritt den Timer mit der niedrigsten Prioritt um die Aufnahme zu starten." - msgid "Lifetime:" msgstr "Lebenszeit:" -msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." -msgstr "Die <strong>garantierte</strong> Lebenszeit (in Tagen) einer Aufnahme, die von diesem Timer erstellt wurde. <strong>0</strong> bedeutet, dass diese Aufnahme jederzeit von einer Aufnahme mit hherer Prioritt automatisch gelscht werden kann. <strong>99</strong> heit. dass diese Aufnahme nie automatisch gelscht wird. Eine Zahl im Bereich <strong>1...98</strong> gibt an, dass die Aufnahme automatisch gelscht werden kann, wenn die angegebene Anzahl von Tagen seit der <strong>Startzeit</strong> abgelaufen ist und Plattenplatz fr eine neue Aufnahme bentigt wird." - -msgid "Title of Recording:" -msgstr "Titel der Aufnahme:" - -msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." -msgstr "Der <strong>Dateiname</strong> den dieser Timer der Aufnahme geben wird. Sollen Unterverzeichnisse angegeben werden, so mssen diese mit '~' getrennt werden, da '/' auch Teil eines regulren Programmnamens sein kann.<br /><br />Die Schlsselwrter <strong>TITLE</strong> und <strong>EPISODE</strong> werden, falls vorhanden, mit der Titel- bzw. Untertitel-Information aus dem EPG zur Zeit der Aufnahme ersetzt, wenn diese Daten im EPG vorhanden sind. Sollten diese Informationen nicht verfgbar sein, so wird fr <strong>TITLE</strong> der Kanalname und fr <strong>EPISODE</strong> ein Leerzeichen verwendet." - -msgid "Summary:" -msgstr "Zusammenfassung:" - -msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." -msgstr "Beliebiger Text, der die von diesem Timer erstellte Aufnahme beschreibt. Wenn dieses Feld nicht leer ist wird der Text in die <span class=\"ref_file\">summary.vdr</span> bzw. <span class=\"ref_file\">info.vdr</span> der Aufnahme geschrieben." - -msgid "Go!" -msgstr "Go!" - -msgid "AutoTimer" -msgstr "AutoTimer" - msgid "New AutoTimer" msgstr "Neuer AutoTimer" +msgid "Help" +msgstr "Hilfe" + msgid "Active" msgstr "Aktiv" +msgid "Channel" +msgstr "Kanal" + msgid "Start" msgstr "Beginn" @@ -207,6 +138,9 @@ msgstr "Ja" msgid "No" msgstr "Nein" +msgid "Edit" +msgstr "Bearbeiten" + msgid "Delete timer?" msgstr "Timer lschen?" @@ -225,33 +159,6 @@ msgstr "Ausgewhlte Timer wirklich lschen?" msgid "No AutoTimers defined!" msgstr "Es wurden noch keine AutoTimer definiert!" -msgid "VDR Commands" -msgstr "VDR Befehle" - -msgid "Export channels as playlist:" -msgstr "Kanle als Playlist exportieren:" - -msgid "Number of lines to show:" -msgstr "Anzahl der anzuzeigenden Zeilen:" - -msgid "unlimited" -msgstr "alle" - -msgid "SVDRP commands:" -msgstr "SVDRP Befehle:" - -msgid "Run" -msgstr "Ausfhren" - -msgid "Really run this command?" -msgstr "Diesen Befehl wirklich ausfhren?" - -msgid "Commands defined in commands.conf:" -msgstr "In commands.conf definierte Befehle:" - -msgid "Output" -msgstr "Ausgabe" - msgid "Add New AutoTimer" msgstr "Neuen AutoTimer anlegen" @@ -270,6 +177,15 @@ msgstr "Suchbegriffe:" msgid "Search in:" msgstr "zu suchen in:" +msgid "Title" +msgstr "Titel" + +msgid "Subtitle" +msgstr "Untertitel" + +msgid "Description" +msgstr "Beschreibung" + msgid "Search only on these days:" msgstr "Nur an diesen Tagen suchen:" @@ -294,12 +210,18 @@ msgstr "Samstag" msgid "Sunday" msgstr "Sonntag" +msgid "Channel:" +msgstr "Kanal:" + msgid "all" msgstr "alle" msgid "Starts After:" msgstr "Beginnt frhestens:" +msgid "o'clock" +msgstr "Uhr" + msgid "Ends Before:" msgstr "Endet sptestens:" @@ -324,9 +246,15 @@ msgstr "Programmierte Timer merken:" msgid "Directory:" msgstr "Ordner:" +msgid "Save" +msgstr "Speichern" + msgid "Test" msgstr "Testen" +msgid "Cancel" +msgstr "Abbrechen" + msgid "Broadcasted" msgstr "Ausgestrahlt" @@ -336,142 +264,254 @@ msgstr "Abgelegt in" msgid "No matches found!" msgstr "Nichts gefunden!" -msgid "About" -msgstr "ber" +msgid "Configuration" +msgstr "Konfiguration" -msgid "License" -msgstr "Lizenz" +msgid "General Settings" +msgstr "Allgemeine Einstellungen" -msgid "Authors" -msgstr "Autoren" +msgid "Template:" +msgstr "Template:" -msgid "Current author (VDRAdmin-AM branch):" -msgstr "Derzeitiger Autor (VDRAdmin-AM):" +msgid "Skin:" +msgstr "Skin:" -msgid "Original author (VDRAdmin):" -msgstr "Ursprnglicher Autor (VDRAdmin):" +msgid "Login Page:" +msgstr "Startseite:" -msgid "Translation Team" -msgstr "bersetzungsteam" +msgid "Number of channels to use:" +msgstr "Anzahl der zu verwendenden Kanle:" -msgid "English:" -msgstr "Englisch:" +msgid "Local net (no login required):" +msgstr "Lokales Netz (kein Login notwendig):" -msgid "German:" -msgstr "Deutsch:" +msgid "Language:" +msgstr "Sprache:" -msgid "French:" -msgstr "Franzsisch:" +msgid "Save settings on exit:" +msgstr "Einstellungen beim Beenden speichern:" -msgid "At the moment unmaintained, former translations by:" -msgstr "Wird zurzeit nicht aktualisiert, ltere bersetzungen von:" +msgid "VDR" +msgstr "VDR" -msgid "Spanish:" -msgstr "Spanisch:" +msgid "Number of DVB cards:" +msgstr "Anzahl der DVB-Karten:" -msgid "Finnish:" -msgstr "Finnisch:" +msgid "Path to recordings:" +msgstr "Pfad der Aufnahmen:" -msgid "Dutch:" -msgstr "Hollndisch:" +msgid "Path to configuration files:" +msgstr "Pfad zu den Konfigurationsdateien:" -msgid "Russian:" -msgstr "Russisch:" +msgid "Path to EPG images:" +msgstr "Pfad zu den EPG-Bildern:" -msgid "Czech:" -msgstr "Tschechisch:" +msgid "Identification" +msgstr "Identifikation" -msgid "Italian:" -msgstr "Italienisch:" +msgid "Username:" +msgstr "Benutzername:" -msgid "Information" -msgstr "Informationen" +msgid "Password:" +msgstr "Passwort:" -msgid "VDRAdmin-AM version:" -msgstr "VDRAdmin-AM Version:" +msgid "Guest Account:" +msgstr "Gast-Zugang:" -msgid "VDR version:" -msgstr "VDR Version:" +msgid "Guest Username:" +msgstr "Gast Benutzername:" -msgid "Supported features in VDR:" -msgstr "Untersttzte Funktionen im VDR:" +msgid "Guest Password:" +msgstr "Gast Passwort:" -msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgstr "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgid "Timeline" +msgstr "Zeitleiste" -msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgstr "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgid "Hours:" +msgstr "Stunden:" -msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgstr "Aufnahmen umbenennen (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgid "Times:" +msgstr "Zeiten:" -msgid "Getting Help and Reporting Bugs" -msgstr "Hilfe bekommen und Fehler melden" +msgid "Also used for other EPG views!" +msgstr "Wird auch fr andere EPG-Ansichten verwendet!" -msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." -msgstr "Wenn Sie Hilfe bentigen, dann werfen Sie bitte zuerst einen Blick in die Online-Hilfe, die fr einige Seiten verfgbar ist. Sie knnen Sie aufrufen indem Sie <img src=\"bilder/help.png\" alt=\"\" /> anklicken." +msgid "Tooltips:" +msgstr "Tooltips:" -msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" -msgstr "Wenn dies nicht die bentigte Information liefert, dann knnen Sie versuchen Hilfe im <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> zu bekommen. Bitte verwenden Sie hierfr wenn mglich den Ankndigungsthread, suchen Sie dafr nach:" +msgid "Active:" +msgstr "Aktiv:" -msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." -msgstr "Wenn Sie meinen, dass Sie einen Fehler gefunden haben, dann berprfen Sie im <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking System</a>, ob es sich um einen neuen Fehler handelt und legen Sie gegebenenfalls einen neuen Fehlerbericht an." +msgid "Send email after programming timer:" +msgstr "Nach programmiertem Timer E-Mail verschicken:" -msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" -msgstr "<p>Hier knnen Sie die Einstellungen der automatischen Timer (AutoTimer) bearbeiten.</p><p>Die AutoTimer sind eine Schlsselfunktion des VDRAdmin-AM. Ein AutoTimer besteht aus einem oder mehreren Suchbegriffen und einigen anderen Einstellungen, die regelmig im Electronic Program Guide (EPG, elektronischer Programmfhrer) gesucht werden. Bei einer bereinstimmung legt AutoTimer automatisch einen neuen Timer fr diese Sendung im VDR an. Das ist sehr komfortable fr unregelmig ausgestrahlte Serien oder Spielfilmen, die Sie nicht vermissen wollen.</p>" +msgid "Send email as:" +msgstr "E-Mail verschicken als:" -msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." -msgstr "Diesen AutoTimer aktivieren oder deaktivieren. Deaktivierte AutoTimer werden weiterhin in der Liste der verfgbaren AutoTimer gefhrt, so dass sie spter wieder aktiviert werden knnen. In der Zwischenzeit nehmen Sie dann aber nichts auf. Darberhinaus knnen Sie dies auch auf \"einmal\" setzen, so dass dieser AutoTimer nur die als nchstes bereinstimmende Sendung (eine einzige!) programmiert." +msgid "Send email to:" +msgstr "E-Mail schicken an:" -msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Only broadcasts will match if they contain <strong>all</strong> items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as Blacklist-string) or only one episode (when using \"Enterprise~Azati Prime\" as Blacklist-string)." -msgstr "Die Auswahl der richtigen Suchbegriffe entscheidet darber ob nur die gewnschten Sendungen oder Sendungen mit hnlichen Namen oder berhaupt nichts aufgenommen wird.<br />Gro-/Kleinschreibung spielt keine Rolle, d.h. \"Akte X\" findet das gleiche wie \"akte x\". Sie knnen mehrere Suchbegriffe durch Leerzeichen getrennt angeben. Diese mssen dann <strong>alle</strong> in den gewnschten Feldern der Sendung enthalten sein, um gefunden zu werden.<br />Es empfiehlt sich nur Buchstaben und Zahlen in den Suchbegriffen zu verwenden, da im EPG oft Doppelpunkte, Klammern und andere Zeichen fehlen.<br />Experten knnen auch \"regular expressions\" verwenden. Zu deren Einsatz mssen Sie jedoch einen Blick in den Quelltext von VDRAdmin-AM werfen (nicht dokumentierte Funktion).<br /><br />Sie knnen auch Sendungen, die eigentlich passen wrden, ausschliessen indem Sie diese Titel der Datei <i>vdradmind.bl</i> hinzufgen, pro Zeile eine Sendung. Diese Datei muss sich im Konfigurationsverzeichnis von VDRAdmin-AM befinden. Wenn eine Zeile entweder auf <u>title</u> oder <u>title~subtitle</u> aus dem EPG der Sendung pat, so wird diese Sendung nicht automatisch programmiert. Somit knnen Sie eine komplette Serie (z.B. mit \"Enterprise\" als Blacklist-Eintrag) oder nur eine bestimmte Episode (z.B. \"Enterprise~Azati Prime\") ausschliessen." +msgid "Mail server:" +msgstr "Mail-Server:" -msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." -msgstr "Hier geben Sie die Abschnitte aus dem EPG an, den VDRAdmin-AM nach den Suchbegriffen durchsuchen soll." +msgid "SMTPAuth user:" +msgstr "Benutzername fr SMTPAuth:" -msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." -msgstr "Haken Sie die Tage an, an denen Sendungen gesucht werden sollen." +msgid "SMTPAuth password:" +msgstr "Passwort fr SMTPAuth:" -msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." -msgstr "Der Kanal, der auf bereinstimmende Sendungen durchsucht werden soll. Mit \"alle\" werden alle bekannten oder erwnschten Kanle durchsucht. Die erwnschten Kanle fr den AutoTimer knnen auf der \"Konfiguration\" Seite eingestellt werden." +msgid "Track schedule changes by:" +msgstr "Verfolge Ausstrahlungsnderungen anhand:" -msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Eine Sendung darf frhestens zu der hier eingestellten Uhrzeit beginnen. Das erste Textfeld gibt die Stunden, das zweite die Minuten an." +msgid "Broadcast time" +msgstr "Ausstrahlungszeit" -msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Eine Sendung darf sptestens zu der hier eingestellten Uhrzeit aufhren. Das erste Textfeld gibt die Stunden, das zweite die Minuten an." +msgid "Event id" +msgstr "Event-ID" -msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." -msgstr "Setzen Sie diese Option auf \"Ja\" wenn die von diesem AutoTimer programmierten Timer individuelle Zeitpuffer bekommen sollen. Die entsprechenden Werte knnen Sie in den zwei folgenden Textfeldern angeben." +msgid "Timer" +msgstr "Timer" -msgid "The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG." -msgstr "Die Anzahl von Minuten, die VDRAdmin-AM von der Startzeit der Sendung im EPG abzieht." +msgid "Tooltips in timeline:" +msgstr "Tooltips in der Zeitleiste:" -msgid "The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG." -msgstr "Die Anzahl von Minuten, die VDRAdmin-AM zur Stoppzeit der Sendung im EPG addiert." +msgid "Tooltips in list:" +msgstr "Tooltips in der Liste:" -msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." -msgstr "Aktivieren Sie diese Option, wenn Sie wollen, dass VDRAdmin-AM den Untertitel der Sendung aus dem EPG an den Namen der Aufnahme anhngt." +msgid "Streaming" +msgstr "Streaming" -msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." -msgstr "Wenn Sie diese Option aktivieren merkt sich VDRAdmin-AM die Timer, die er bereits automatisch programmiert hat. Dies ist ntzlich, wenn automatisch programmierte Timer in der Timerliste deaktiviert oder gelscht werden sollen." +msgid "Live Streaming:" +msgstr "LiveTV streamen:" -msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." -msgstr "Hier geben Sie das Verzeichnis an, in dem dieser AutoTimer die Aufnahmen ablegen soll. Sollen Unterverzeichnisse angegeben werden, dann mssen diese mit '~' getrennt werden (da '/' auch Teil des Programmnamens sein kann).<br />VDRAdmin-AM wird automatisch den Titel un den Untertitel (wenn das Hkchen bei \"Serie\" gesetzt ist) anhngen.<br /><br />Sie knnen auch die folgenden Schlsselwrter verwenden, die dann im endgltigen Dateinamen mit den Werten ersetzt werden, die z.B. von <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a> bereitgestellt wurden:<ul><li>%Title% - der Titel der Sendung.</li><li>%Subtitle% - der Untertitel der Sendung.</li><li>%Director% - der Regisseur der Sendung.</li><li>%Date% - das Datum der Aufnahme.</li><li>%Category% - die Kategorie der Aufnahme (Spielfilm/Serie/...).</li><li>%Genre% - das Genre der Aufnahme (Drama/Krimi/..).</li><li>%Year% - das Produktionsjahr.</li><li>%Country% - das Produktionsland.</li><li>%Originaltitle% - der Originaltitel der Sendung.</li><li>%FSK% - die FSK-Freigabe der Sendung.</li><li>%Episode% - der Titel der Episode einer Serie.</li><li>%Rating% - die Bewertung der Sendung vom Bereitsteller des EPG.</li></ul><h4>Achtung:</h4>Wenn Sie die oben genannten Schlsselwrter verwenden, liegt es in Ihrer Verantwortung den <strong>kompletten Dateinamen</strong> der Aufnahme anzugeben! VDRAdmin-AM wird nichts mehr anhngen." +msgid "HTTP Port of Streamdev (also possible 3000/ts):" +msgstr "HTTP-Port von Streamdev (auch mglich 3000/ts):" -msgid "Timer" -msgstr "Timer" +msgid "Recordings Streaming:" +msgstr "Aufnahmen streamen:" -msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" -msgstr "" -"<p>Hier finden Sie eine Liste von allen Timern, die VDR kennt.</p><p>Im oberen Bereich finden Sie eine grafische Reprsentation der Timer fr einen Tag. Dies vermittelt Ihnen einen schnellen berblick darber, was an einem Tag programmiert wurde und hilft Ihnen beim Erkennen von berschneidenden Timern. Wenn Sie den Mauszeiger ber einen farbigen Bereich bewegen erfahren Sie seinen Namen, die Prioritt und Lebenszeit sowie seine Dauer.</p><p>Unterhalb der grafischen Anzeige sehen Sie eine Liste der programmierten Timer. Sie knnen die Sortierung der Liste ndern indem Sie auf die gewnschte Spaltenberschrift klicken.</p><p>Fr jeden Timer haben Sie die folgenden Mglichkeiten:<dl><dt>Setzen seines Zustands</dt><dd>Dies erfolgt durch Anklicken von \"Ja\", \"Nein\", \"VPS\" oder \"Auto\" in der \"Aktiv\" Spalte.</dd><dt>Schnellanzeige seiner Prioritt und Lebenszeit</dt><dd>Der Mauszeiger muss dazu ber den Namen des Timers bewegt werden.</dd><dt>Anzeigen seinen EPG Eintrags</dt><dd>Bei Timern, bei denen die Option <span class=\"ref_label\">Automatische Timer-berwachung</span> auf \"Sendungskennung\" gesetzt ist, kann durch Anklicken des Timernamens der zugehrige EPG Eintrag angezeigt werden.</dd><dt>Bearbeiten eines Timers</dt><dd>Sie knnen einen Timer bearbeiten indem Sie auf <img src=\"bilder/edit.png\" alt=\"edit\" /> klicken.</dd><dt>Lschen eines Timers</dt><dd>Um einen Timer zu lschen klicken Sie bitte auf <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Der Status eines jeden Timers wird durch eine bestimmte Farbe angezeigt:<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Der Timer ist OK und wird aufnehmen.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Der Timer berschneidet sich mit anderen Timern. Das ist nicht kritisch, wenn gengend DVB-Karten fr die parallelen Aufnahmen vorhanden sind.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Der Timer ist kritisch und wird hchst wahrscheinlich <strong>nicht</strong> aufnehmen.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Der Timer ist nicht aktiv.\n" -"</p><p>Zustzlich zu diesen Funktionen knnen Sie einen neuen Timer programmieren indem Sie die Schaltflche <input type=\"submit\" class=\"submit\" value=\"Neuer Timer\"/>am oberen Bildschirmrand anklicken. Am unteren Bildschirmrand finden Sie die Schaltflche <input type=\"submit\" class=\"submit\" value=\"Ausgewhlte Timer lschen\"/>, mit der Sie alle Timer, die Sie in der Liste in der letzten Spalte mit einem Haken versehen haben, auf einmal lschen knnen.</p><p>Sie knnen alle ausgewhlten Timer mit den entsprechenden Schaltflchen auch aktivieren bzw. deaktivieren.</p>" +msgid "Path to VDR Recordings on your workstation:" +msgstr "Pfad zu den VDR-Aufnahmen auf Ihrem PC:" -msgid "Playing Today" -msgstr "Was luft heute" +msgid "MIME type for live streaming:" +msgstr "MIME-Typ fr das Streamen von LiveTV:" -msgid "starting at" -msgstr "ab" +msgid "Suffix for live streaming:" +msgstr "Dateierweiterung fr das Streamen von LiveTV:" + +msgid "MIME type for recordings streaming:" +msgstr "MIME-Typ fr das Streamen von Aufnahmen:" + +msgid "Suffix for recordings streaming:" +msgstr "Dateierweiterung fr das Streamen von Aufnahmen:" + +msgid "Bandwidth of Streams:" +msgstr "Bandbreite des Streams:" + +msgid "External Search" +msgstr "Externe Suche" + +msgid "URL:" +msgstr "URL:" + +msgid "Title:" +msgstr "Titel:" + +msgid "User-defined search:" +msgstr "Benutzerdefinierte Suche:" + +msgid "Expert" +msgstr "Expertenmodus" + +msgid "Update EPG data in background:" +msgstr "EPG-Daten im Hintergrund aktualisieren:" + +msgid "Update EPG every:" +msgstr "EPG aktualisieren alle:" + +msgid "Channel Selections" +msgstr "Kanalauswahl" + +msgid "Show channels without EPG information:" +msgstr "Kanle ohne EPG Informationen anzeigen:" + +msgid "In \"AutoTimer\"?" +msgstr "Bei \"AutoTimer\"?" + +msgid "Apply" +msgstr "Anwenden" + +msgid "EPG Search Blacklists" +msgstr "EPG Search Ausschlusslisten" + +msgid "New Blacklist" +msgstr "Neue Ausschlussliste" + +msgid "Search pattern" +msgstr "Suchbegriff" + +msgid "From" +msgstr "Von" + +msgid "To" +msgstr "Bis" + +msgid "Delete blacklist?" +msgstr "Ausschlussliste lschen?" + +msgid "Delete Selected Blacklists" +msgstr "Ausgewhlte Ausschlusslisten lschen" + +msgid "Delete all selected blacklists?" +msgstr "Alle ausgewhlten Ausschlusslisten wirklich lschen?" + +msgid "EPG search" +msgstr "EPG search" + +msgid "EPG Search" +msgstr "EPG Search" + +msgid "Use template" +msgstr "Von Vorlage" + +msgid "New Search" +msgstr "Neue Suche" + +msgid "Edit Template" +msgstr "Suchvorlage bearbeiten" + +msgid "Settings" +msgstr "Einstellungen" + +msgid "Action" +msgstr "Aktion" + +msgid "Find" +msgstr "Suche starten" + +msgid "Show Favorites" +msgstr "Favoriten anzeigen" + +msgid "Delete Selected Searches" +msgstr "Ausgewhlte Suchen lschen" + +msgid "Delete all selected searches?" +msgstr "Alle ausgewhlten Suchen wirklich lschen?" + +msgid "Execute Selected Searches" +msgstr "Ausgewhlte Suchen ausfhren" + +msgid "Duration" +msgstr "Dauer" + +msgid "More Information" +msgstr "mehr Infos" + +msgid "Channels" +msgstr "Programmbersicht" + +msgid "Record" +msgstr "Sendung aufnehmen" msgid "Add New Blacklist" msgstr "Neue Ausschlussliste anlegen" @@ -482,9 +522,6 @@ msgstr "Ausschlussliste bearbeiten" msgid "Add New Template" msgstr "Neue Suchvorlage anlegen" -msgid "Edit Template" -msgstr "Suchvorlage bearbeiten" - msgid "Add New Search" msgstr "Neuen Suche anlegen" @@ -500,9 +537,6 @@ msgstr "Sie haben zum Durchsuchen weder\\nTitel noch Untertitel noch Beschreibun msgid "Hide results" msgstr "Ergebnis ausblenden" -msgid "Settings" -msgstr "Einstellungen" - msgid "Name:" msgstr "Name:" @@ -680,264 +714,147 @@ msgstr "Diese Suchvorlage lschen?" msgid "Save as template" msgstr "Als Vorlage speichern" -msgid "Create New Timer" -msgstr "Neuen Timer anlegen" - -msgid "Buffer:" -msgstr "Puffer:" - -msgid "Use VPS:" -msgstr "VPS verwenden:" - -msgid "readonly" -msgstr "unvernderbar" - -msgid "Timer has been set by AutoTimer pattern:" -msgstr "Timer wurde gesetzt vom AutoTimer Muster:" - -msgid "No Help Available" -msgstr "Keine Hilfe verfgbar" - -msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgstr "Bisher keine Hilfe vorhanden. Zum Hinzufgen oder ndern eines Textes bitte an <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a> wenden." +msgid "Run" +msgstr "Ausfhren" msgid "Error!" msgstr "Fehler!" -msgid "TV" -msgstr "Fernseher" +msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" +msgstr "<p>Hier finden Sie eine Liste aller AutoTimer, die VDRAdmin-AM kennt.</p><p>Die Liste zeigt Ihnen einige Informationen zu den AutoTimern. Sie knnen die Sortierung dieser Liste ndern indem Sie auf die Spaltenberschriften klicken.</p><p>Fr jeden AutoTimer haben Sie die folgenden Mglichkeiten:<dl><dt>Setzen seines Zustands</dt><dd>Durch klicken auf \"Ja\" oder \"Nein\" in der \"Aktiv\" Spalte knnen Sie den AutoTimer aktivieren bzw. deaktivieren.</dd><dt>Schnellanzeige seiner Prioritt und Lebenszeit</dt><dd>Der Mauszeiger muss dazu ber den Namen des AutoTimers bewegt werden.</dd><dt>Bearbeiten eines AutoTimers</dt><dd>Sie knnen einen AutoTimer bearbeiten indem Sie auf <img src=\"bilder/edit.png\" alt=\"edit\" /> klicken.</dd><dt>Lschen eines AutoTimers</dt><dd>Um einen Timer zu lschen klicken Sie bitte auf <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Der Status eines jeden AutoTimers wird durch eine bestimmte Farbe angezeigt:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Der AutoTimer ist OK und wird automatisch bereinstimmende Sendungen programmieren.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Der AutoTimer ist nicht aktiv.</p><p>Zustzlich zu diesen Funktionen knnen Sie einen neuen AutoTimer anlegen indem Sie die Schaltflche <input type=\"submit\" class=\"submit\" value=\"Neuer AutoTimer\"/> am oberen Rand anklicken. Am unteren Bildschirmrand finden Sie die Schaltflche <input type=\"submit\" class=\"submit\" value=\"Ausgewhlte AutoTimer lschen\"/>, mit der Sie alle AutoTimer, die Sie in der Liste in der letzten Spalte mit einem Haken versehen haben, auf einmal lschen knnen.</p><p>Mit der Schaltflche <input type=\"submit\" class=\"submit\" value=\"Manuelles Update\"/> knnen Sie VDRAdmin-AM veranlassen sich mit dem VDR zu verbinden, die aktuellen EPG Daten zu holen und anschliessend nach bereinstimmenden AutoTimern zu suchen.</p>" -msgid "Interval:" -msgstr "Intervall:" +msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgstr "<p>Hier knnen Sie die Einstellungen der automatischen Timer (AutoTimer) bearbeiten.</p><p>Die AutoTimer sind eine Schlsselfunktion des VDRAdmin-AM. Ein AutoTimer besteht aus einem oder mehreren Suchbegriffen und einigen anderen Einstellungen, die regelmig im Electronic Program Guide (EPG, elektronischer Programmfhrer) gesucht werden. Bei einer bereinstimmung legt AutoTimer automatisch einen neuen Timer fr diese Sendung im VDR an. Das ist sehr komfortable fr unregelmig ausgestrahlte Serien oder Spielfilmen, die Sie nicht vermissen wollen.</p>" -msgid "sec." -msgstr "sek" +msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." +msgstr "Diesen AutoTimer aktivieren oder deaktivieren. Deaktivierte AutoTimer werden weiterhin in der Liste der verfgbaren AutoTimer gefhrt, so dass sie spter wieder aktiviert werden knnen. In der Zwischenzeit nehmen Sie dann aber nichts auf. Darberhinaus knnen Sie dies auch auf \"einmal\" setzen, so dass dieser AutoTimer nur die als nchstes bereinstimmende Sendung (eine einzige!) programmiert." -msgid "G" -msgstr "G" +msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Broadcasts will match only if they match <strong>all</strong> configured search items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as blacklist string) or only one episode (when using \"Enterprise~Azati Prime\" as blacklist string)." +msgstr "Die Auswahl der richtigen Suchbegriffe entscheidet darber ob nur die gewnschten Sendungen oder Sendungen mit hnlichen Namen oder berhaupt nichts aufgenommen wird.<br />Gro-/Kleinschreibung spielt keine Rolle, d.h. \"Akte X\" findet das gleiche wie \"akte x\". Sie knnen mehrere Suchbegriffe durch Leerzeichen getrennt angeben. Diese mssen dann <strong>alle</strong> in den gewnschten Feldern der Sendung enthalten sein, um gefunden zu werden.<br />Es empfiehlt sich nur Buchstaben und Zahlen in den Suchbegriffen zu verwenden, da im EPG oft Doppelpunkte, Klammern und andere Zeichen fehlen.<br />Experten knnen auch \"regular expressions\" verwenden. Zu deren Einsatz mssen Sie jedoch einen Blick in den Quelltext von VDRAdmin-AM werfen (nicht dokumentierte Funktion).<br /><br />Sie knnen auch Sendungen, die eigentlich passen wrden, ausschliessen indem Sie diese Titel der Datei <i>vdradmind.bl</i> hinzufgen, pro Zeile eine Sendung. Diese Datei muss sich im Konfigurationsverzeichnis von VDRAdmin-AM befinden. Wenn eine Zeile entweder auf <u>title</u> oder <u>title~subtitle</u> aus dem EPG der Sendung pat, so wird diese Sendung nicht automatisch programmiert. Somit knnen Sie eine komplette Serie (z.B. mit \"Enterprise\" als Blacklist-Eintrag) oder nur eine bestimmte Episode (z.B. \"Enterprise~Azati Prime\") ausschliessen." -msgid "Grab the picture!" -msgstr "Hole das Bild!" +msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." +msgstr "Hier geben Sie die Abschnitte aus dem EPG an, den VDRAdmin-AM nach den Suchbegriffen durchsuchen soll." -msgid "Size:" -msgstr "Gre:" +msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." +msgstr "Haken Sie die Tage an, an denen Sendungen gesucht werden sollen." -msgid "Open in separate window" -msgstr "ffne eigenes Fenster" +msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." +msgstr "Der Kanal, der auf bereinstimmende Sendungen durchsucht werden soll. Mit \"alle\" werden alle bekannten oder erwnschten Kanle durchsucht. Die erwnschten Kanle fr den AutoTimer knnen auf der \"Konfiguration\" Seite eingestellt werden." -msgid "Playing Today?" -msgstr "Was luft heute?" +msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Eine Sendung darf frhestens zu der hier eingestellten Uhrzeit beginnen. Das erste Textfeld gibt die Stunden, das zweite die Minuten an." -msgid "Timeline" -msgstr "Zeitleiste" +msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Eine Sendung darf sptestens zu der hier eingestellten Uhrzeit aufhren. Das erste Textfeld gibt die Stunden, das zweite die Minuten an." -msgid "EPG Search" -msgstr "EPG Search" +msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." +msgstr "Setzen Sie diese Option auf \"Ja\" wenn die von diesem AutoTimer programmierten Timer individuelle Zeitpuffer bekommen sollen. Die entsprechenden Werte knnen Sie in den zwei folgenden Textfeldern angeben." -msgid "Recordings" -msgstr "Aufnahmen" +msgid "The number of minutes VDRAdmin-AM subtracts from the broadcast's start time found in the EPG." +msgstr "Die Anzahl von Minuten, die VDRAdmin-AM von der Startzeit der Sendung im EPG abzieht." -msgid "Remote Control" -msgstr "Fernbedienung" +msgid "The number of minutes VDRAdmin-AM adds to the broadcast's stop time found in the EPG." +msgstr "Die Anzahl von Minuten, die VDRAdmin-AM zur Stoppzeit der Sendung im EPG addiert." -msgid "Watch TV" -msgstr "Fernseher" +msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." +msgstr "Eine Zahl im Bereich <strong>0...99</strong>, die die <strong>Prioritt</strong> dieses Timers und der von ihm programmierten Aufnahmen angibt. <strong>0</strong> ist die geringste Prioritt und <strong>99</strong> die hchste. Die Prioritt wird verwendet um zu entscheiden, welcher Timer gestartet werden soll fr den Fall, dass zwei oder mehr Timer mit exakt der gleichen <strong>Startzeit</strong> existieren. Der erste Timer in der Liste mit den hchsten Prioritten wird verwendet.<br /><br />Dieser Wert wird ebenso zusammen mit der Aufnahme gespeichert und wird spter verwendet um zu entscheiden, welche Aufnahme gelscht werden soll, fr den Fall, dass kein Pattenplatz mehr fr eine neue Aufnahme ist. Wenn die Platte voll luft und eine Aufnahme mehr Plattenplatz bentigt, wird eine existierende Aufnahme mit der geringsten Prioritt (und deren garantierte <strong>Lebenszeit</strong> berschritten wurde) gelscht. <br /><br />Wenn alle verfgbaren DVB-Karten belegt sind unterbricht ein Timer mit einer hheren Prioritt den Timer mit der niedrigsten Prioritt um die Aufnahme zu starten." -msgid "Commands" -msgstr "Befehle" +msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." +msgstr "Die <strong>garantierte</strong> Lebenszeit (in Tagen) einer Aufnahme, die von diesem Timer erstellt wurde. <strong>0</strong> bedeutet, dass diese Aufnahme jederzeit von einer Aufnahme mit hherer Prioritt automatisch gelscht werden kann. <strong>99</strong> heit. dass diese Aufnahme nie automatisch gelscht wird. Eine Zahl im Bereich <strong>1...98</strong> gibt an, dass die Aufnahme automatisch gelscht werden kann, wenn die angegebene Anzahl von Tagen seit der <strong>Startzeit</strong> abgelaufen ist und Plattenplatz fr eine neue Aufnahme bentigt wird." -msgid "Configuration" -msgstr "Konfiguration" +msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." +msgstr "Aktivieren Sie diese Option, wenn Sie wollen, dass VDRAdmin-AM den Untertitel der Sendung aus dem EPG an den Namen der Aufnahme anhngt." -msgid "Search" -msgstr "Suchen" +msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." +msgstr "Wenn Sie diese Option aktivieren merkt sich VDRAdmin-AM die Timer, die er bereits automatisch programmiert hat. Dies ist ntzlich, wenn automatisch programmierte Timer in der Timerliste deaktiviert oder gelscht werden sollen." + +msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." +msgstr "Hier geben Sie das Verzeichnis an, in dem dieser AutoTimer die Aufnahmen ablegen soll. Sollen Unterverzeichnisse angegeben werden, dann mssen diese mit '~' getrennt werden (da '/' auch Teil des Programmnamens sein kann).<br />VDRAdmin-AM wird automatisch den Titel un den Untertitel (wenn das Hkchen bei \"Serie\" gesetzt ist) anhngen.<br /><br />Sie knnen auch die folgenden Schlsselwrter verwenden, die dann im endgltigen Dateinamen mit den Werten ersetzt werden, die z.B. von <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a> bereitgestellt wurden:<ul><li>%Title% - der Titel der Sendung.</li><li>%Subtitle% - der Untertitel der Sendung.</li><li>%Director% - der Regisseur der Sendung.</li><li>%Date% - das Datum der Aufnahme.</li><li>%Category% - die Kategorie der Aufnahme (Spielfilm/Serie/...).</li><li>%Genre% - das Genre der Aufnahme (Drama/Krimi/..).</li><li>%Year% - das Produktionsjahr.</li><li>%Country% - das Produktionsland.</li><li>%Originaltitle% - der Originaltitel der Sendung.</li><li>%FSK% - die FSK-Freigabe der Sendung.</li><li>%Episode% - der Titel der Episode einer Serie.</li><li>%Rating% - die Bewertung der Sendung vom Bereitsteller des EPG.</li></ul><h4>Achtung:</h4>Wenn Sie die oben genannten Schlsselwrter verwenden, liegt es in Ihrer Verantwortung den <strong>kompletten Dateinamen</strong> der Aufnahme anzugeben! VDRAdmin-AM wird nichts mehr anhngen." msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" msgstr "<p>Hier knnen Sie allgemeine Einstellungen und Grundeinstellungen fr Timer und AutoTimer, sowie die Kanalauswahl und die Streaming Einstellungen vornehmen.</p>" -msgid "General Settings" -msgstr "Allgemeine Einstellungen" - -msgid "VDR" -msgstr "VDR" - -msgid "Identification" -msgstr "Identifikation" - -msgid "Streaming" -msgstr "Streaming" - -msgid "Expert" -msgstr "Expertenmodus" - -msgid "External Search" -msgstr "Externe Suche" - -msgid "Channel Selections" -msgstr "Kanalauswahl" - -msgid "Skin:" -msgstr "Skin:" - msgid "The skin you want to use." msgstr "Der zu verwendende Skin (=grafische Oberflchenreprsentation)." -msgid "Login Page:" -msgstr "Startseite:" - msgid "The page you want to see at first connect to VDRAdmin-AM." msgstr "Die Seite, die angezeigt werden soll, wenn Sie sich das erste Mal mit VDRAdmin-AM verbinden." -msgid "Number of channels to use:" -msgstr "Anzahl der zu verwendenden Kanle:" - msgid "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." msgstr "VDRAdmin-AM wird nur die hier eingestellte Anzahl an Kanlen vom VDR laden und nur diese an allen Stellen, die die Kanle anzeigen, anbieten. Dies beschrnkt auch die EPG Informationen, die VDRAdmin-AM lesen wird und vermindert somit auch den Speicherbedarf von VDRAdmin-AM und erhht seine Verarbeitungsgeschwindigkeit. <strong>0</strong> schaltet diese Funktion ab und VDRAdmin-AM wird alle verfgbaren Kanle verwenden." -msgid "Local net (no login required):" -msgstr "Lokales Netz (kein Login notwendig):" - msgid "Here you can specify an IP address or range that can login without providing login information. For example: \"192.168.0.0/24\" will include any IP starting with \"192.168.0\", \"192.168.0.123/32\" will only match \"192.168.0.123\"." msgstr "Hier geben Sie die IP-Adresse oder den IP-Bereich an von dem aus man sich anmelden kann, ohne dass Login-Informationen eingegeben werden mssen. Z.B. \"192.168.0.0/24\" beinhaltet jede IP, die mit \"192.168.0\" beginnt. \"192.168.0.123/32\" beinhaltet nur die IP \"192.168.0.123\"." -msgid "Language:" -msgstr "Sprache:" - msgid "Here you can set the localization VDRAdmin-AM should use." msgstr "Hier stellen Sie die Lokalisierung ein, die VDRAdmin-AM verwenden soll." -msgid "Save settings on exit:" -msgstr "Einstellungen beim Beenden speichern:" - msgid "With this option the settings will be saved if VDRAdmin-AM exits. This will also save settings not available on the \"Configuration\" menu like interval and size in TV, sorting in the lists and current view in \"What's on now\"." msgstr "Mit dieser Option werden die Einstellungen gespeichert, wenn VDRAdmin-AM beendet wird. Damit werden dann auch Einstellungen gespeichert, die nicht im \"Konfiguration\" Men enthalten sind, wie z.B. Interfall und Gre im Fernseher, die Sortierung in den Listen und die aktuelle Ansicht bei \"Was luft jetzt\"." msgid "Top" msgstr "nach oben" -msgid "Number of DVB cards:" -msgstr "Anzahl der DVB-Karten:" - msgid "The number of DVB cards VDR can access. Depending on this value VDRAdmin-AM will calculate critical timers in the <span class=\"ref_menu\">Timer</span> menu." msgstr "Die Anzahl der DVB-Karten, die der VDR ansprechen kann. In Abhngigkeit von diesem Wert berechnet VDRAdmin-AM die kritischen Timer auf der <span class=\"ref_menu\">Timer</span> Seite" -msgid "Path to recordings:" -msgstr "Pfad der Aufnahmen:" - msgid "The path to VDR's recordings. It's used so that VDRAdmin-AM can locate the recordings when using <span class=\"ref_label\">Recordings Streaming</span> and <span class=\"ref_file\">reccmds.conf</span> in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Der Pfad zu den Aufnahmen des VDR. Dieser wird verwendet um die Aufnahmen zu finden, wenn die Funktionen <span class=\"ref_label\">Aufnahmen streamen</span> und <span class=\"ref_file\">reccmds.conf</span> auf der <span class=\"ref_menu\">Aufnahmen</span> Seite verwendet werden." -msgid "Path to configuration files:" -msgstr "Pfad zu den Konfigurationsdateien:" - msgid "The path where VDR's configuration files are located. If this directory contains the file <span class=\"ref_file\">reccmds.conf</span> its content is shown in a selectbox in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Der Pfad zu den Konfigurationsdateien des VDR. Wenn dieses Verzeichnis die Datei <span class=\"ref_file\">reccmds.conf</span> enthlt wird der Inhalt dieser Datei auf der <span class=\"ref_menu\">Aufnahmen</span> Seite zur Auswahl angezeigt." -msgid "Path to EPG images:" -msgstr "Pfad zu den EPG-Bildern:" - msgid "The path where the EPG images are stored." msgstr "Der Pfad, wo die EPG Bilder abgelegt sind." -msgid "Username:" -msgstr "Benutzername:" - msgid "The username for the main user, i.e. the user having the most privileges." msgstr "Der Benutzername fr den Hauptbenutzer, d.h. dem Benutzer mit den meisten Rechten." -msgid "Password:" -msgstr "Passwort:" - msgid "The main user's password." msgstr "Das Passwort des Hauptbenutzers." -msgid "Guest Account:" -msgstr "Gast-Zugang:" - msgid "If you want a user account having only limited privileges, this is for you. The guest user cannot modify anything, it's only allowed to view the EPG, timers, AutoTimers and recordings listings." msgstr "Wenn Sie einen Benutzer wnschen, der nur eingeschrnkte Rechte besitzt, dann aktivieren Sie diese Option. Der Gastbenutzer kann nichts ndern, es ist nur erlaubt den EPG, die Timer, AutoTimer und Aufnahmen aufzulisten." -msgid "Guest Username:" -msgstr "Gast Benutzername:" - msgid "The username for the guest user." msgstr "Der Benutzername fr den Gastbenutzer." -msgid "Guest Password:" -msgstr "Gast Passwort:" - msgid "The guest user's password." msgstr "Das Passwort des Gastbenutzers." -msgid "Hours:" -msgstr "Stunden:" - msgid "The number of hours to show in the timeline." msgstr "Die Anzahl der Stunden, die in der Zeitleiste angezeigt wird." -msgid "Times:" -msgstr "Zeiten:" - msgid "A comma separated list of times in <strong>hh:mm</strong> format that appear in the selectbox placed at the top." msgstr "Eine durch Kommas getrennte Liste von Uhrzeiten im Format <strong>hh:mm</strong>, die in der Auswahlliste am Seitenanfang angezeigt wird." -msgid "Tooltips:" -msgstr "Tooltips:" - msgid "Here you can (de-)activate the tooltips." msgstr "Hier knnen Sie die Tooltips ein- oder ausschalten." -msgid "Active:" -msgstr "Aktiv:" - msgid "Activate or deactivate the AutoTimer function." msgstr "Die AutoTimer-Funktionalitt aktivieren oder deaktivieren." -msgid "Send email after programming timer:" -msgstr "Nach programmiertem Timer E-Mail verschicken:" - msgid "VDRAdmin-AM will send an email whenever an event matches an AutoTimer and a timer has been programmed if you enable this feature." msgstr "Wenn Sie diese Funktion aktivieren, dann schickt Ihnen VDRAdmin-AM immer wenn ein AutoTimer eine passende Sendung findet eine E-Mail." -msgid "Send email as:" -msgstr "E-Mail verschicken als:" - msgid "Here you set the sending email address of the generated email." msgstr "Hier geben Sie die Absende-Adresse der erzeugten E-Mail an." -msgid "Send email to:" -msgstr "E-Mail schicken an:" - msgid "The email address the email is sent to." msgstr "Die E-Mail-Adresse an die die E-Mail geschickt werden soll." -msgid "Mail server:" -msgstr "Mail-Server:" - msgid "The outgoing mail server." msgstr "Der Server fr ausgehende E-Mails." -msgid "SMTPAuth user:" -msgstr "Benutzername fr SMTPAuth:" - msgid "If you need to authenticate yourself at the outgoing mail server, you have to supply the username and the password below. Leaving this field empty will disable SMTPAuth." msgstr "Wenn Sie sich am Server fr ausgehende E-Mails anmelden mssen, dann geben Sie hier den Benutzernamen und unten das Passwort an. Lassen Sie dieses Feld leer um SMTPAuth nicht zu verwenden." -msgid "SMTPAuth password:" -msgstr "Passwort fr SMTPAuth:" - msgid "The password for the SMTPAuth user." msgstr "Das Passwort fr den SMTPAuth Benutzer." -msgid "Tooltips in timeline:" -msgstr "Tooltips in der Zeitleiste:" - msgid "Here you can (de-)activate the tooltips in the timeline." msgstr "Hier knnen Sie die Tooltips in der Zeitleiste ein- oder ausschalten." -msgid "Tooltips in list:" -msgstr "Tooltips in der Liste:" - msgid "Here you can (de-)activate the tooltips in the list." msgstr "Hier knnen Sie die Tooltips in der Liste ein- oder ausschalten." @@ -947,51 +864,27 @@ msgstr "Beschreibung aus dem EPG fr neue Timer verwenden:" msgid "If you don't want VDRAdmin-AM to add the summary taken from EPG to new timers you can switch it off here." msgstr "Wenn Sie nicht wollen, dass VDRAdmin-AM die Beschreibung einer Sendung aus dem EPG fr neue Timer setzt, dann knnen Sie dies hiermit unterbinden." -msgid "Live Streaming:" -msgstr "LiveTV streamen:" - msgid "Enable or disable live streaming using the <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. You also have to set the correct <span class=\"ref_label\">HTTP Port for Streamdev</span> below." msgstr "Aktivieren oder deaktivieren des Streamens vom LiveTV. Dazu bentigen Sie das <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. Auerdem muss noch der <span class=\"ref_label\">HTTP-Port von Streamdev</span> korrekt gesetzt sein." -msgid "HTTP Port of Streamdev (also possible 3000/ts):" -msgstr "HTTP-Port von Streamdev (auch mglich 3000/ts):" - msgid "Here you have to set the port number your VDR's streamdev server listens for connections. Additionally you can also provide the stream type you like to use." msgstr "Hier geben Sie die Portnummer des Streamdev-Servers im VDR an. Sie knnen auch den zu verwendenden Streamtyp angeben." -msgid "Recordings Streaming:" -msgstr "Aufnahmen streamen:" - msgid "Enable or disable streaming of recordings.<br />Well actually this is no real \"streaming\", but you have to setup your workstation so that it can access VDR's recordings. You can use for example Samba or NFS for this. VDRAdmin-AM simply generates a playlist that contains all parts of the recording and sends this to your browser. If your browser and media player are configured correctly you will see the recording on your workstation's display." msgstr "Streamen von Aufnahmen aktivieren oder deaktivieren.<br />Es ist eigentlich kein richtiges \"Streamen\", Sie mssen nmlich Ihren PC so konfigurieren, dass dieser auf die Aufnahmen des VDR zugreifen kann. Sie knnen dies z.B. mit Samba oder NFS erreichen. VDRAdmin-AM erstellt eine Abspielliste (Playlist), die alle Teile der ausgewhlten Aufnahme enthlt, und sendet diese dann zum Browser. Wenn nun der Browser und das Medienabspielprogramm korrekt konfiguriert sind wird die Aufnahme am PC abgespielt." -msgid "Path to VDR Recordings on your workstation:" -msgstr "Pfad zu den VDR-Aufnahmen auf Ihrem PC:" - msgid "This is the path where your workstation can access VDR's recordings. This depends on your VDR and workstation setup, for example \"\\\\vdr\\videos\" or \"V:\\\" (on Windows) or \"/mnt/videos\" (on Linux)." msgstr "Der Pfad, ber den Ihr PC auf die Aufnahmen des VDR zugreifen kann. Dieser ist abhngig von der Konfiguration des VDR und des PC und kann z.B. \"\\\\vdr\\videos\" oder \"V:\\\" (unter Windows) oder \"/mnt/videos\" (unter Linux) sein." -msgid "MIME type for live streaming:" -msgstr "MIME-Typ fr das Streamen von LiveTV:" - msgid "The MIME type to send when using live streaming. Defaults to \"video/x-mpegurl\"." msgstr "Der zu sendende MIME-Type fr das Streamen von LiveTV. Vorgabe ist \"video/x-mpegurl\"." -msgid "Suffix for live streaming:" -msgstr "Dateierweiterung fr das Streamen von LiveTV:" - msgid "The suffix to use for live streaming. Defaults to \"m3u\"." msgstr "Die zu verwendende Dateierweiterung fr das Streamen von LiveTV. Vorgabe ist \"m3u\"." -msgid "MIME type for recordings streaming:" -msgstr "MIME-Typ fr das Streamen von Aufnahmen:" - msgid "The MIME type to send when using recordings streaming. Defaults to \"video/x-mpegurl\"." msgstr "Der zu sendende MIME-Type fr das Streamen von Aufnahmen. Vorgabe ist \"video/x-mpegurl\"." -msgid "Suffix for recordings streaming:" -msgstr "Dateierweiterung fr das Streamen von Aufnahmen:" - msgid "The suffix to use for recordings streaming. Defaults to \"m3u\"." msgstr "Dateierweiterung fr das Streamen von Aufnahmen. Vorgabe ist \"m3u\"." @@ -1007,50 +900,23 @@ msgstr "Bitte passen Sie den Rechnernamen an Ihre lokale Umgebung an!" msgid "<p>This section is for experts <strong>only</strong>, i.e. you know what you are doing!</p>" msgstr "<p>Dieser Bereich ist <strong>nur</strong> fr Experten, d.h. Sie wissen was Sie tun!</p>" -msgid "Update EPG data in background:" -msgstr "EPG-Daten im Hintergrund aktualisieren:" - msgid "If set to \"yes\" VDRAdmin-AM will periodically refresh its local EPG cache. Else the EPG will be refreshed if the user accesses any EPG view at the web interface and the timeout set at \"Update EPG every\" has been reached." msgstr "Wenn dies aktiviert ist, dann aktualisiert VDRAdmin-AM seine lokalen EPG-Daten peridoisch im Hintergrund. Andernfalls werden die EPG-Daten aktualisiert wenn der Benutzer eine EPG-Ansicht auf der Web-Oberflche ffnet und die bei \"EPG aktualisieren alle\" eingestellt Zeitspanne abgelaufen ist." -msgid "Update EPG every:" -msgstr "EPG aktualisieren alle:" - msgid "The interval, the EPG data is refreshed from VDR and AutoTimer updates are performed (if AutoTimer feature is used)." msgstr "Das Intervall indem die EPG Daten aktualisiert werden und nach neuen AutoTimern gesucht wird, falls die AutoTimer-Funktion genutzt wird." msgid "<p>If you want to limit the number of channels used in some parts of VDRAdmin-AM, this is for you!</p><p>Use the radio buttons to activate or deactivate the wanted channels in the named menu.</p><p>To add channels to the list of wanted channels you have to select them in the left side selectbox and click <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. If you want to remove channels from the list of wanted channels you have to select them in the right side selectbox and click <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" msgstr "<p>Hiermit knnen Sie die Anzahl der Kanle fr einige Teilbereiche von VDRAdmin-AM einschrnken.</p><p>Verwenden Sie die \"Ja\"/\"Nein\"-Knpfe um die Kanalauswahl fr das angegebene Men zu aktivieren oder deaktivieren.</p><p>Zum Hinzufgen von Kanlen zu der Liste der ausgewhlten Kanle mssen Sie die gewnschten Kanle im linken Auswahlfeld markieren und die Schaltflche <input type=\"submit\" class=\"submit\" value=\">>>>>\"/> anklicken. Um Kanle aus dieser Liste wieder zu entfernen mssen diese im rechten Auswahlfeld markiert werden und danach die Schaltflche <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/> angeklickt werden.</p>" -msgid "Show channels without EPG information:" -msgstr "Kanle ohne EPG Informationen anzeigen:" - msgid "Usually channels that don't have EPG information are hidden in all EPG views. If you don't want them to be hidden you have to set this option to \"yes\"." msgstr "Normalerweise werden Kanle, die keine EPG Information haben, in den EPG Ansichten ausgeblendet. Wenn diese Option auf \"ja\" steht, dann werden diese auch angezeigt." -msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" -msgstr "<p>Hier finden Sie eine Liste aller AutoTimer, die VDRAdmin-AM kennt.</p><p>Die Liste zeigt Ihnen einige Informationen zu den AutoTimern. Sie knnen die Sortierung dieser Liste ndern indem Sie auf die Spaltenberschriften klicken.</p><p>Fr jeden AutoTimer haben Sie die folgenden Mglichkeiten:<dl><dt>Setzen seines Zustands</dt><dd>Durch klicken auf \"Ja\" oder \"Nein\" in der \"Aktiv\" Spalte knnen Sie den AutoTimer aktivieren bzw. deaktivieren.</dd><dt>Schnellanzeige seiner Prioritt und Lebenszeit</dt><dd>Der Mauszeiger muss dazu ber den Namen des AutoTimers bewegt werden.</dd><dt>Bearbeiten eines AutoTimers</dt><dd>Sie knnen einen AutoTimer bearbeiten indem Sie auf <img src=\"bilder/edit.png\" alt=\"edit\" /> klicken.</dd><dt>Lschen eines AutoTimers</dt><dd>Um einen Timer zu lschen klicken Sie bitte auf <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Der Status eines jeden AutoTimers wird durch eine bestimmte Farbe angezeigt:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Der AutoTimer ist OK und wird automatisch bereinstimmende Sendungen programmieren.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Der AutoTimer ist nicht aktiv.</p><p>Zustzlich zu diesen Funktionen knnen Sie einen neuen AutoTimer anlegen indem Sie die Schaltflche <input type=\"submit\" class=\"submit\" value=\"Neuer AutoTimer\"/> am oberen Rand anklicken. Am unteren Bildschirmrand finden Sie die Schaltflche <input type=\"submit\" class=\"submit\" value=\"Ausgewhlte AutoTimer lschen\"/>, mit der Sie alle AutoTimer, die Sie in der Liste in der letzten Spalte mit einem Haken versehen haben, auf einmal lschen knnen.</p><p>Mit der Schaltflche <input type=\"submit\" class=\"submit\" value=\"Manuelles Update\"/> knnen Sie VDRAdmin-AM veranlassen sich mit dem VDR zu verbinden, die aktuellen EPG Daten zu holen und anschliessend nach bereinstimmenden AutoTimern zu suchen.</p>" - -msgid "Your Browser does not support frames!" -msgstr "Ihr Browser untersttzt keine Frames!" - -msgid "Rename Recording" -msgstr "Aufnahme umbenennen" - -msgid "Original Name of Recording:" -msgstr "Alter Titel der Aufnahme:" - -msgid "New Name of Recording:" -msgstr "Neuer Titel der Aufnahme:" - -msgid "Subtitle:" -msgstr "Untertitel:" - -msgid "Rename" -msgstr "Umbenennen" +msgid "Edit Timer" +msgstr "Timer editieren" -msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" -msgstr "<p>Hier sehen Sie eine Liste aller Aufnahmen, die auf dem VDR bereit stehen. In der Kopfzeile knnen Sie den gesamten und den freien Plattenplatz des VDR ablesen.</p><p>Dies Liste zeigt Ihnen einige Informationen zu den Aufnahmen. Sie knnen die Sortierung ndern indem Sie auf die Spaltenberschriften klicken. ber der Liste sehen Sie den Navigationspfad. Wenn Sie den Inhalt eines zuvor besuchten Verzeichnisses sehen wollen, dann klicken Sie einfach auf den Namen des Verzeichnisses in diesem Pfad.</p><p>Jede Zeile enthlt folgende Information:<dl><dt>Datum</dt><dd>Das Datum an dem die Aufnahme stattgefunden hat. Im Falle eines Verzeichnisses wird hier die Anzahl der enthaltenen Aufnahmen angezeigt.</dd><dt>Uhrzeit</dt><dd>Die Uhrzeit zu der die Aufnahme stattgefunden hat. Im Falle eines Verzeichnisses wird hier die Anzahl der <strong>neuen</strong> Aufnahmen in diesem Verzeichnis angezeigt.</dd><dt>Name</dt><dd>Der Name der Aufnahme oder des Verzeichnisses. Klicken Sie ihn an um die Zusammenfassung der Aufnahme anzuzeigen oder um in das Verzeichnis zu wechseln.</dd><dt>Umbenennen (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Umbenennen einer Aufnahme.<br /><h4>Achtung:</h4>Dies funktioniert nur, wenn der VDR das <u>RENR</u> SVDRPort Kommando versteht. Dieses ist nicht im Standard-VDR enthalten sondern kann durch einen Patch hinzugefgt werden. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> und <span class=\"ref_file\">enAIO-v2.2+</span> bieten dieses Kommando.</dd><dt>Lschen (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Lschen einer Aufnahme.</dd><dt>Streamen (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>Diese Spalte wird nur angezeigt, wenn Sie auf der <span class=\"ref_menu\">Konfiguration</span> Seite <span class=\"ref_label\">Aufnahmen streamen</span> aktiviert und konfiguriert haben. Sie knnen dann die Aufnahme auf Ihrem PC anschauen.</dd></dl></p><p>Zustzlich zu diesen Funktionen knnen Sie mehrere Aufnahmen auf einmal lschen, indem Sie ein Hkchen in der vorletzten Spalte dieser Aufnahmen setzen und dann die Schaltflche <input type=\"submit\" class=\"submit\" value=\"Ausgewhlte Aufnahmen lschen\"/> anklicken.</p><p>Wenn Sie den Pfad zu den VDR Konfigurationsdateien eingestellt haben und es dort die Datei <span class=\"ref_file\">reccmds.conf</span> gibt, knnen Sie die darin enthaltenen Befehle fr die ausgewhlten Aufnahmen ausfhren. Dazu whlen Sie den gewnschten Befehl in der Schaltflche neben <span class=\"ref_label\">Befehle:</span> aus und klicken dann auf <input type=\"submit\" class=\"submit\" value=\"Ausfhren\"/>.</p><p>Mit der Schaltflche <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> knnen Sie das Neuladen der VDR-Aufnahmenliste forcieren.</p>" +msgid "Edit EPG" +msgstr "EPG bearbeiten" msgid "<p>Here you can edit the descriptive fields of an existing EPG entry.</p>" msgstr "<p>Hier knnen Sie die Beschreibung eines existierenden EPG-Eintrags bearbeiten.</p>" @@ -1094,134 +960,118 @@ msgstr "Audiospuren (unvernderbar)" msgid "If available this field shows the audio track(s). It cannot be changed." msgstr "Die verfgbaren Audiospuren. Das Feld kann nicht verndert werden." -msgid "Duration:" -msgstr "Dauer:" - -msgid "min" -msgstr "min" - -msgid "Transponder:" -msgstr "Transponder:" - -msgid "CA-System:" -msgstr "CA-System:" - -msgid "New Timer" -msgstr "Neuer Timer" - -msgid "Date" -msgstr "Datum" - -msgid "Edit timer status?" -msgstr "Timerstatus ndern?" +msgid "No Help Available" +msgstr "Keine Hilfe verfgbar" -msgid "This timer is inactive!" -msgstr "Diese Aufnahme ist deaktiviert!" +msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgstr "Bisher keine Hilfe vorhanden. Zum Hinzufgen oder ndern eines Textes bitte an <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a> wenden." -msgid "This timer is impossible!" -msgstr "Diese Aufnahme ist nicht mglich!" +msgid "Recordings" +msgstr "Aufnahmen" -msgid "No more timers on other transponders possible!" -msgstr "Keine weiteren Aufnahmen auf anderen Transpondern mehr mglich!" +msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" +msgstr "<p>Hier sehen Sie eine Liste aller Aufnahmen, die auf dem VDR bereit stehen. In der Kopfzeile knnen Sie den gesamten und den freien Plattenplatz des VDR ablesen.</p><p>Dies Liste zeigt Ihnen einige Informationen zu den Aufnahmen. Sie knnen die Sortierung ndern indem Sie auf die Spaltenberschriften klicken. ber der Liste sehen Sie den Navigationspfad. Wenn Sie den Inhalt eines zuvor besuchten Verzeichnisses sehen wollen, dann klicken Sie einfach auf den Namen des Verzeichnisses in diesem Pfad.</p><p>Jede Zeile enthlt folgende Information:<dl><dt>Datum</dt><dd>Das Datum an dem die Aufnahme stattgefunden hat. Im Falle eines Verzeichnisses wird hier die Anzahl der enthaltenen Aufnahmen angezeigt.</dd><dt>Uhrzeit</dt><dd>Die Uhrzeit zu der die Aufnahme stattgefunden hat. Im Falle eines Verzeichnisses wird hier die Anzahl der <strong>neuen</strong> Aufnahmen in diesem Verzeichnis angezeigt.</dd><dt>Name</dt><dd>Der Name der Aufnahme oder des Verzeichnisses. Klicken Sie ihn an um die Zusammenfassung der Aufnahme anzuzeigen oder um in das Verzeichnis zu wechseln.</dd><dt>Umbenennen (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Umbenennen einer Aufnahme.<br /><h4>Achtung:</h4>Dies funktioniert nur, wenn der VDR das <u>RENR</u> SVDRPort Kommando versteht. Dieses ist nicht im Standard-VDR enthalten sondern kann durch einen Patch hinzugefgt werden. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> und <span class=\"ref_file\">enAIO-v2.2+</span> bieten dieses Kommando.</dd><dt>Lschen (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Lschen einer Aufnahme.</dd><dt>Streamen (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>Diese Spalte wird nur angezeigt, wenn Sie auf der <span class=\"ref_menu\">Konfiguration</span> Seite <span class=\"ref_label\">Aufnahmen streamen</span> aktiviert und konfiguriert haben. Sie knnen dann die Aufnahme auf Ihrem PC anschauen.</dd></dl></p><p>Zustzlich zu diesen Funktionen knnen Sie mehrere Aufnahmen auf einmal lschen, indem Sie ein Hkchen in der vorletzten Spalte dieser Aufnahmen setzen und dann die Schaltflche <input type=\"submit\" class=\"submit\" value=\"Ausgewhlte Aufnahmen lschen\"/> anklicken.</p><p>Wenn Sie den Pfad zu den VDR Konfigurationsdateien eingestellt haben und es dort die Datei <span class=\"ref_file\">reccmds.conf</span> gibt, knnen Sie die darin enthaltenen Befehle fr die ausgewhlten Aufnahmen ausfhren. Dazu whlen Sie den gewnschten Befehl in der Schaltflche neben <span class=\"ref_label\">Befehle:</span> aus und klicken dann auf <input type=\"submit\" class=\"submit\" value=\"Ausfhren\"/>.</p><p>Mit der Schaltflche <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> knnen Sie das Neuladen der VDR-Aufnahmenliste forcieren.</p>" -msgid "Timer OK." -msgstr "Diese Aufnahme ist mglich." +msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" +msgstr "" +"<p>Hier finden Sie eine Liste von allen Timern, die VDR kennt.</p><p>Im oberen Bereich finden Sie eine grafische Reprsentation der Timer fr einen Tag. Dies vermittelt Ihnen einen schnellen berblick darber, was an einem Tag programmiert wurde und hilft Ihnen beim Erkennen von berschneidenden Timern. Wenn Sie den Mauszeiger ber einen farbigen Bereich bewegen erfahren Sie seinen Namen, die Prioritt und Lebenszeit sowie seine Dauer.</p><p>Unterhalb der grafischen Anzeige sehen Sie eine Liste der programmierten Timer. Sie knnen die Sortierung der Liste ndern indem Sie auf die gewnschte Spaltenberschrift klicken.</p><p>Fr jeden Timer haben Sie die folgenden Mglichkeiten:<dl><dt>Setzen seines Zustands</dt><dd>Dies erfolgt durch Anklicken von \"Ja\", \"Nein\", \"VPS\" oder \"Auto\" in der \"Aktiv\" Spalte.</dd><dt>Schnellanzeige seiner Prioritt und Lebenszeit</dt><dd>Der Mauszeiger muss dazu ber den Namen des Timers bewegt werden.</dd><dt>Anzeigen seinen EPG Eintrags</dt><dd>Bei Timern, bei denen die Option <span class=\"ref_label\">Automatische Timer-berwachung</span> auf \"Sendungskennung\" gesetzt ist, kann durch Anklicken des Timernamens der zugehrige EPG Eintrag angezeigt werden.</dd><dt>Bearbeiten eines Timers</dt><dd>Sie knnen einen Timer bearbeiten indem Sie auf <img src=\"bilder/edit.png\" alt=\"edit\" /> klicken.</dd><dt>Lschen eines Timers</dt><dd>Um einen Timer zu lschen klicken Sie bitte auf <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Der Status eines jeden Timers wird durch eine bestimmte Farbe angezeigt:<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Der Timer ist OK und wird aufnehmen.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Der Timer berschneidet sich mit anderen Timern. Das ist nicht kritisch, wenn gengend DVB-Karten fr die parallelen Aufnahmen vorhanden sind.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Der Timer ist kritisch und wird hchst wahrscheinlich <strong>nicht</strong> aufnehmen.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Der Timer ist nicht aktiv.\n" +"</p><p>Zustzlich zu diesen Funktionen knnen Sie einen neuen Timer programmieren indem Sie die Schaltflche <input type=\"submit\" class=\"submit\" value=\"Neuer Timer\"/>am oberen Bildschirmrand anklicken. Am unteren Bildschirmrand finden Sie die Schaltflche <input type=\"submit\" class=\"submit\" value=\"Ausgewhlte Timer lschen\"/>, mit der Sie alle Timer, die Sie in der Liste in der letzten Spalte mit einem Haken versehen haben, auf einmal lschen knnen.</p><p>Sie knnen alle ausgewhlten Timer mit den entsprechenden Schaltflchen auch aktivieren bzw. deaktivieren.</p>" -msgid "Auto" -msgstr "Auto" +msgid "<p>Here you can edit a timer's settings.</p>" +msgstr "<p>Hier knnen Sie die Einstellungen eines Timers bearbeiten.</p>" -msgid "activate" -msgstr "Aktiviere" +msgid "Timer Active:" +msgstr "Timer aktiv:" -msgid "inactivate" -msgstr "Deaktiviere" +msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." +msgstr "Aktivieren bzw. Deaktivieren des Timers. Deaktivierte Timer werden weiterhin in der Liste der verfgbaren Timer gefhrt, so dass sie spter wieder aktiviert werden knnen. In der Zwischenzeit nehmen Sie dann aber nichts auf." -msgid "selected timers" -msgstr "ausgewhlte Timer" +msgid "AutoTimer Checking:" +msgstr "Automatische Timer-berwachung:" -msgid "Delete Selected Timers" -msgstr "Ausgewhlte Timer lschen" +msgid "Depending on how this timer has been programmed you have up to three possible settings:" +msgstr "Die mglichen Optionen sind abhngig davon, wie der Timer programmiert wurde:" -msgid "No timers defined!" -msgstr "Es wurden noch keine Timer angelegt!" +msgid "Transmission Identification" +msgstr "Sendungskennung" -msgid "EPG Search Blacklists" -msgstr "EPG Search Ausschlusslisten" +msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." +msgstr "Der Timer wird anhand der Identifikation, die die zugehrige Sendung im EPG besitzt, berwacht. Bitte beachten Sie, dass dies nur funktioniert, wenn die Identifikation im EPG fest und eindeutig ist! Diese Option ist nicht verfgbar, wenn der Timer im VDR programmiert wurde." -msgid "New Blacklist" -msgstr "Neue Ausschlussliste" +msgid "Time" +msgstr "Uhrzeit" -msgid "Search pattern" -msgstr "Suchbegriff" +msgid "Monitor this timer using the start and stop time." +msgstr "Der Timer wird anhand seiner Start- und Stoppzeit berwacht." -msgid "From" -msgstr "Von" +msgid "off" +msgstr "aus" -msgid "To" -msgstr "Bis" +msgid "Do not monitor this timer." +msgstr "Der Timer wird nicht berwacht." -msgid "Delete blacklist?" -msgstr "Ausschlussliste lschen?" +msgid "The channel to record." +msgstr "Der aufzunehmende Kanal." -msgid "Delete Selected Blacklists" -msgstr "Ausgewhlte Ausschlusslisten lschen" +msgid "Day Of Recording:" +msgstr "Tag der Aufnahme:" -msgid "Delete all selected blacklists?" -msgstr "Alle ausgewhlten Ausschlusslisten wirklich lschen?" +msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." +msgstr "Der Tag an dem der Timer aktiv werden soll. Der Tag kann in zwei Formaten eingegeben werden:<ul><li>Zwei Ziffern (TT). Es wird der aktuelle Monat und das aktuelle Jahr verwendet.</li><li>ISO-Norm (JJJJ-MM-TT). Damit knnen Sie Timer soweit in der Zukunft programmieren wie Sie wollen.</li></ul>Fr den Fall, dass Sie wiederkehrende Timer programmieren wollen, knnen Sie die sieben Schaltflchen unterhalb des Textfeldes verwenden. Markieren Sie einfach das Feld des Tages an dem der Timer aktiv werden soll." -msgid "EPG search" -msgstr "EPG search" +msgid "Start Time:" +msgstr "Startzeit:" -msgid "Use template" -msgstr "Von Vorlage" +msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Dies ist die Startzeit der Aufnahme. Das erste Textfeld ist fr die Stunde, das zweite fr die Minuten." -msgid "New Search" -msgstr "Neue Suche" +msgid "End Time:" +msgstr "Endzeit:" -msgid "Action" -msgstr "Aktion" +msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Die Uhrzeit zu der die Aufnahme gestoppt werden soll. Das erste Textfeld ist fr die Stunde, das zweite fr die Minuten." -msgid "Find" -msgstr "Suche starten" +msgid "Title of Recording:" +msgstr "Titel der Aufnahme:" -msgid "Show Favorites" -msgstr "Favoriten anzeigen" +msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." +msgstr "Der <strong>Dateiname</strong> den dieser Timer der Aufnahme geben wird. Sollen Unterverzeichnisse angegeben werden, so mssen diese mit '~' getrennt werden, da '/' auch Teil eines regulren Programmnamens sein kann.<br /><br />Die Schlsselwrter <strong>TITLE</strong> und <strong>EPISODE</strong> werden, falls vorhanden, mit der Titel- bzw. Untertitel-Information aus dem EPG zur Zeit der Aufnahme ersetzt, wenn diese Daten im EPG vorhanden sind. Sollten diese Informationen nicht verfgbar sein, so wird fr <strong>TITLE</strong> der Kanalname und fr <strong>EPISODE</strong> ein Leerzeichen verwendet." -msgid "Delete Selected Searches" -msgstr "Ausgewhlte Suchen lschen" +msgid "Summary:" +msgstr "Zusammenfassung:" -msgid "Delete all selected searches?" -msgstr "Alle ausgewhlten Suchen wirklich lschen?" +msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." +msgstr "Beliebiger Text, der die von diesem Timer erstellte Aufnahme beschreibt. Wenn dieses Feld nicht leer ist wird der Text in die <span class=\"ref_file\">summary.vdr</span> bzw. <span class=\"ref_file\">info.vdr</span> der Aufnahme geschrieben." -msgid "Execute Selected Searches" -msgstr "Ausgewhlte Suchen ausfhren" +msgid "Your Browser does not support frames!" +msgstr "Ihr Browser untersttzt keine Frames!" -msgid "Duration" -msgstr "Dauer" +msgid "What's On Now?" +msgstr "Was luft jetzt?" -msgid "Template:" -msgstr "Template:" +msgid "Playing Today?" +msgstr "Was luft heute?" -msgid "Also used for other EPG views!" -msgstr "Wird auch fr andere EPG-Ansichten verwendet!" +msgid "Remote Control" +msgstr "Fernbedienung" -msgid "Bandwidth of Streams:" -msgstr "Bandbreite des Streams:" +msgid "Watch TV" +msgstr "Fernseher" -msgid "URL:" -msgstr "URL:" +msgid "Commands" +msgstr "Befehle" -msgid "Title:" -msgstr "Titel:" +msgid "Search" +msgstr "Suchen" -msgid "User-defined search:" -msgstr "Benutzerdefinierte Suche:" +msgid "Authorization Required" +msgstr "Autorisierung erforderlich" -msgid "In \"AutoTimer\"?" -msgstr "Bei \"AutoTimer\"?" +msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." +msgstr "Dieser Server kann nicht besttigen, dass Sie berechtigt sind, auf das angeforderte Dokument zuzugreifen. Entweder haben Sie falsche Anmeldedaten angegeben (z.B. falsches Passwort) oder Ihr Browser kann die Anmeldedaten nicht bermitteln." -msgid "Apply" -msgstr "Anwenden" +msgid "VPS" +msgstr "VPS" msgid "close" msgstr "schlieen" @@ -1241,23 +1091,77 @@ msgstr "Videospuren:" msgid "Audio tracks:" msgstr "Audiospuren:" +msgid "Video tracks" +msgstr "Videospuren" + +msgid "Audio tracks" +msgstr "Audiospuren" + +msgid "TV select" +msgstr "TV umschalten" + +msgid "Stream" +msgstr "Stream" + +msgid "Channel group:" +msgstr "Kanalgruppe:" + +msgid "Go!" +msgstr "Go!" + +msgid "Search for other show times" +msgstr "Nach Wiederholungen suchen" + +msgid "No Information" +msgstr "keine Infos" + +msgid "No EPG information available" +msgstr "Es sind keine EPG Informationen vorhanden" + +msgid "Playing Today" +msgstr "Was luft heute" + +msgid "starting at" +msgstr "ab" + +msgid "What's on:" +msgstr "Was luft:" + +msgid "at" +msgstr "um" + msgid "now" msgstr "jetzt" msgid "to" msgstr "bis" +msgid "Duration:" +msgstr "Dauer:" + +msgid "min" +msgstr "min" + msgid "at:" msgstr "um:" msgid "You need JavaScript to use the timeline!" msgstr "Fr die Zeitleiste muss JavaScript aktiviert sein!" -msgid "Authorization Required" -msgstr "Autorisierung erforderlich" +msgid "Rename Recording" +msgstr "Aufnahme umbenennen" -msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." -msgstr "Dieser Server kann nicht besttigen, dass Sie berechtigt sind, auf das angeforderte Dokument zuzugreifen. Entweder haben Sie falsche Anmeldedaten angegeben (z.B. falsches Passwort) oder Ihr Browser kann die Anmeldedaten nicht bermitteln." +msgid "Original Name of Recording:" +msgstr "Alter Titel der Aufnahme:" + +msgid "New Name of Recording:" +msgstr "Neuer Titel der Aufnahme:" + +msgid "Subtitle:" +msgstr "Untertitel:" + +msgid "Rename" +msgstr "Umbenennen" msgid "Total:" msgstr "Total:" @@ -1268,6 +1172,9 @@ msgstr "h" msgid "Free:" msgstr "Frei:" +msgid "Date" +msgstr "Datum" + msgid "Total" msgstr "Gesamt" @@ -1289,6 +1196,9 @@ msgstr "Neu einlesen" msgid "Commands:" msgstr "Befehle:" +msgid "Really run this command?" +msgstr "Diesen Befehl wirklich ausfhren?" + msgid "Delete Selected Recordings" msgstr "Ausgewhlte Aufnahmen lschen" @@ -1298,6 +1208,105 @@ msgstr "Ausgewhlte Aufnahmen wirklich lschen?" msgid "No recordings available" msgstr "Es sind keine Aufnahmen vorhanden" +msgid "Transponder:" +msgstr "Transponder:" + +msgid "CA-System:" +msgstr "CA-System:" + +msgid "New Timer" +msgstr "Neuer Timer" + +msgid "Edit timer status?" +msgstr "Timerstatus ndern?" + +msgid "This timer is inactive!" +msgstr "Diese Aufnahme ist deaktiviert!" + +msgid "This timer is impossible!" +msgstr "Diese Aufnahme ist nicht mglich!" + +msgid "No more timers on other transponders possible!" +msgstr "Keine weiteren Aufnahmen auf anderen Transpondern mehr mglich!" + +msgid "Timer OK." +msgstr "Diese Aufnahme ist mglich." + +msgid "Auto" +msgstr "Auto" + +msgid "activate" +msgstr "Aktiviere" + +msgid "inactivate" +msgstr "Deaktiviere" + +msgid "selected timers" +msgstr "ausgewhlte Timer" + +msgid "Delete Selected Timers" +msgstr "Ausgewhlte Timer lschen" + +msgid "No timers defined!" +msgstr "Es wurden noch keine Timer angelegt!" + +msgid "Create New Timer" +msgstr "Neuen Timer anlegen" + +msgid "Buffer:" +msgstr "Puffer:" + +msgid "Use VPS:" +msgstr "VPS verwenden:" + +msgid "readonly" +msgstr "unvernderbar" + +msgid "Timer has been set by AutoTimer pattern:" +msgstr "Timer wurde gesetzt vom AutoTimer Muster:" + +msgid "TV" +msgstr "Fernseher" + +msgid "Interval:" +msgstr "Intervall:" + +msgid "sec." +msgstr "sek" + +msgid "G" +msgstr "G" + +msgid "Grab the picture!" +msgstr "Hole das Bild!" + +msgid "Size:" +msgstr "Gre:" + +msgid "Open in separate window" +msgstr "ffne eigenes Fenster" + +msgid "VDR Commands" +msgstr "VDR Befehle" + +msgid "Export channels as playlist:" +msgstr "Kanle als Playlist exportieren:" + +msgid "Number of lines to show:" +msgstr "Anzahl der anzuzeigenden Zeilen:" + +msgid "unlimited" +msgstr "alle" + +msgid "SVDRP commands:" +msgstr "SVDRP Befehle:" + +msgid "Commands defined in commands.conf:" +msgstr "In commands.conf definierte Befehle:" + +msgid "Output" +msgstr "Ausgabe" + msgid "What's your VDR hostname (e.g video.intra.net)?" msgstr "Wie lautet der Hostname des VDR (z.B. video.intra.net)?" diff --git a/po/de_DE.utf8.po b/po/de_DE.utf8.po index 7b5df9a..56ebdea 100644 --- a/po/de_DE.utf8.po +++ b/po/de_DE.utf8.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDRAdmin-AM-3.6.2+cvs\n" "Report-Msgid-Bugs-To: Andreas Mair <andreas@vdr-developer.org>\n" -"POT-Creation-Date: 2008-12-18 08:25+0100\n" +"POT-Creation-Date: 2009-12-30 13:26+0100\n" "PO-Revision-Date: 2007-07-26 14:49+0100\n" "Last-Translator: Andreas Mair <mail@andreas.vdr-developer.org>\n" "Language-Team: Andreas Mair <mail@andreas.vdr-developer.org>\n" @@ -18,177 +18,108 @@ msgstr "" msgid "ISO-8859-1" msgstr "UTF-8" -msgid "What's On Now?" -msgstr "Was läuft jetzt?" - -msgid "Channel group:" -msgstr "Kanalgruppe:" - -msgid "What's on:" -msgstr "Was läuft:" - -msgid "at" -msgstr "um" - -msgid "o'clock" -msgstr "Uhr" - -msgid "More Information" -msgstr "mehr Infos" - -msgid "Channels" -msgstr "Programmübersicht" - -msgid "Stream" -msgstr "Stream" - -msgid "TV select" -msgstr "TV umschalten" - -msgid "Search for other show times" -msgstr "Nach Wiederholungen suchen" - -msgid "No Information" -msgstr "keine Infos" - -msgid "Edit" -msgstr "Bearbeiten" - -msgid "Record" -msgstr "Sendung aufnehmen" - -msgid "No EPG information available" -msgstr "Es sind keine EPG Informationen vorhanden" - -msgid "Edit EPG" -msgstr "EPG bearbeiten" - -msgid "Help" -msgstr "Hilfe" - -msgid "Channel" -msgstr "Kanal" - -msgid "Time" -msgstr "Uhrzeit" +msgid "About" +msgstr "Über" -msgid "Title" -msgstr "Titel" +msgid "License" +msgstr "Lizenz" -msgid "Subtitle" -msgstr "Untertitel" +msgid "Authors" +msgstr "Autoren" -msgid "Description" -msgstr "Beschreibung" +msgid "Current author (VDRAdmin-AM branch):" +msgstr "Derzeitiger Autor (VDRAdmin-AM):" -msgid "VPS" -msgstr "VPS" +msgid "Original author (VDRAdmin):" +msgstr "Ursprünglicher Autor (VDRAdmin):" -msgid "Video tracks" -msgstr "Videospuren" +msgid "Translation Team" +msgstr "Übersetzungsteam" -msgid "Audio tracks" -msgstr "Audiospuren" +msgid "English:" +msgstr "Englisch:" -msgid "Save" -msgstr "Speichern" +msgid "German:" +msgstr "Deutsch:" -msgid "Cancel" -msgstr "Abbrechen" +msgid "French:" +msgstr "Französisch:" -msgid "Edit Timer" -msgstr "Timer editieren" +msgid "At the moment unmaintained, former translations by:" +msgstr "Wird zurzeit nicht aktualisiert, ältere Übersetzungen von:" -msgid "<p>Here you can edit a timer's settings.</p>" -msgstr "<p>Hier können Sie die Einstellungen eines Timers bearbeiten.</p>" +msgid "Spanish:" +msgstr "Spanisch:" -msgid "Timer Active:" -msgstr "Timer aktiv:" +msgid "Finnish:" +msgstr "Finnisch:" -msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." -msgstr "Aktivieren bzw. Deaktivieren des Timers. Deaktivierte Timer werden weiterhin in der Liste der verfügbaren Timer geführt, so dass sie später wieder aktiviert werden können. In der Zwischenzeit nehmen Sie dann aber nichts auf." +msgid "Dutch:" +msgstr "Holländisch:" -msgid "AutoTimer Checking:" -msgstr "Automatische Timer-Überwachung:" +msgid "Russian:" +msgstr "Russisch:" -msgid "Depending on how this timer has been programmed you have up to three possible settings:" -msgstr "Die möglichen Optionen sind abhängig davon, wie der Timer programmiert wurde:" +msgid "Czech:" +msgstr "Tschechisch:" -msgid "Transmission Identification" -msgstr "Sendungskennung" +msgid "Italian:" +msgstr "Italienisch:" -msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." -msgstr "Der Timer wird anhand der Identifikation, die die zugehörige Sendung im EPG besitzt, überwacht. Bitte beachten Sie, dass dies nur funktioniert, wenn die Identifikation im EPG fest und eindeutig ist! Diese Option ist nicht verfügbar, wenn der Timer im VDR programmiert wurde." +msgid "Information" +msgstr "Informationen" -msgid "Monitor this timer using the start and stop time." -msgstr "Der Timer wird anhand seiner Start- und Stoppzeit überwacht." +msgid "VDRAdmin-AM version:" +msgstr "VDRAdmin-AM Version:" -msgid "off" -msgstr "aus" +msgid "VDR version:" +msgstr "VDR Version:" -msgid "Do not monitor this timer." -msgstr "Der Timer wird nicht überwacht." +msgid "Supported features in VDR:" +msgstr "Unterstützte Funktionen im VDR:" -msgid "Channel:" -msgstr "Kanal:" +msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgstr "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgid "The channel to record." -msgstr "Der aufzunehmende Kanal." +msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgstr "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgid "Day Of Recording:" -msgstr "Tag der Aufnahme:" +msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgstr "Aufnahmen umbenennen (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." -msgstr "Der Tag an dem der Timer aktiv werden soll. Der Tag kann in zwei Formaten eingegeben werden:<ul><li>Zwei Ziffern (TT). Es wird der aktuelle Monat und das aktuelle Jahr verwendet.</li><li>ISO-Norm (JJJJ-MM-TT). Damit können Sie Timer soweit in der Zukunft programmieren wie Sie wollen.</li></ul>Für den Fall, dass Sie wiederkehrende Timer programmieren wollen, können Sie die sieben Schaltflächen unterhalb des Textfeldes verwenden. Markieren Sie einfach das Feld des Tages an dem der Timer aktiv werden soll." +msgid "Getting Help and Reporting Bugs" +msgstr "Hilfe bekommen und Fehler melden" -msgid "Start Time:" -msgstr "Startzeit:" +msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." +msgstr "Wenn Sie Hilfe benötigen, dann werfen Sie bitte zuerst einen Blick in die Online-Hilfe, die für einige Seiten verfügbar ist. Sie können Sie aufrufen indem Sie <img src=\"bilder/help.png\" alt=\"\" /> anklicken." -msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Dies ist die Startzeit der Aufnahme. Das erste Textfeld ist für die Stunde, das zweite für die Minuten." +msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" +msgstr "Wenn dies nicht die benötigte Information liefert, dann können Sie versuchen Hilfe im <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> zu bekommen. Bitte verwenden Sie hierfür wenn möglich den Ankündigungsthread, suchen Sie dafür nach:" -msgid "End Time:" -msgstr "Endzeit:" +msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." +msgstr "Wenn Sie meinen, dass Sie einen Fehler gefunden haben, dann überprüfen Sie im <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking System</a>, ob es sich um einen neuen Fehler handelt und legen Sie gegebenenfalls einen neuen Fehlerbericht an." -msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Die Uhrzeit zu der die Aufnahme gestoppt werden soll. Das erste Textfeld ist für die Stunde, das zweite für die Minuten." +msgid "AutoTimer" +msgstr "AutoTimer" msgid "Priority:" msgstr "Priorität:" -msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." -msgstr "Eine Zahl im Bereich <strong>0...99</strong>, die die <strong>Priorität</strong> dieses Timers und der von ihm programmierten Aufnahmen angibt. <strong>0</strong> ist die geringste Priorität und <strong>99</strong> die höchste. Die Priorität wird verwendet um zu entscheiden, welcher Timer gestartet werden soll für den Fall, dass zwei oder mehr Timer mit exakt der gleichen <strong>Startzeit</strong> existieren. Der erste Timer in der Liste mit den höchsten Prioritäten wird verwendet.<br /><br />Dieser Wert wird ebenso zusammen mit der Aufnahme gespeichert und wird später verwendet um zu entscheiden, welche Aufnahme gelöscht werden soll, für den Fall, dass kein Pattenplatz mehr für eine neue Aufnahme ist. Wenn die Platte voll läuft und eine Aufnahme mehr Plattenplatz benötigt, wird eine existierende Aufnahme mit der geringsten Priorität (und deren garantierte <strong>Lebenszeit</strong> überschritten wurde) gelöscht. <br /><br />Wenn alle verfügbaren DVB-Karten belegt sind unterbricht ein Timer mit einer höheren Priorität den Timer mit der niedrigsten Priorität um die Aufnahme zu starten." - msgid "Lifetime:" msgstr "Lebenszeit:" -msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." -msgstr "Die <strong>garantierte</strong> Lebenszeit (in Tagen) einer Aufnahme, die von diesem Timer erstellt wurde. <strong>0</strong> bedeutet, dass diese Aufnahme jederzeit von einer Aufnahme mit höherer Priorität automatisch gelöscht werden kann. <strong>99</strong> heißt. dass diese Aufnahme nie automatisch gelöscht wird. Eine Zahl im Bereich <strong>1...98</strong> gibt an, dass die Aufnahme automatisch gelöscht werden kann, wenn die angegebene Anzahl von Tagen seit der <strong>Startzeit</strong> abgelaufen ist und Plattenplatz für eine neue Aufnahme benötigt wird." - -msgid "Title of Recording:" -msgstr "Titel der Aufnahme:" - -msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." -msgstr "Der <strong>Dateiname</strong> den dieser Timer der Aufnahme geben wird. Sollen Unterverzeichnisse angegeben werden, so müssen diese mit '~' getrennt werden, da '/' auch Teil eines regulären Programmnamens sein kann.<br /><br />Die Schlüsselwörter <strong>TITLE</strong> und <strong>EPISODE</strong> werden, falls vorhanden, mit der Titel- bzw. Untertitel-Information aus dem EPG zur Zeit der Aufnahme ersetzt, wenn diese Daten im EPG vorhanden sind. Sollten diese Informationen nicht verfügbar sein, so wird für <strong>TITLE</strong> der Kanalname und für <strong>EPISODE</strong> ein Leerzeichen verwendet." - -msgid "Summary:" -msgstr "Zusammenfassung:" - -msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." -msgstr "Beliebiger Text, der die von diesem Timer erstellte Aufnahme beschreibt. Wenn dieses Feld nicht leer ist wird der Text in die <span class=\"ref_file\">summary.vdr</span> bzw. <span class=\"ref_file\">info.vdr</span> der Aufnahme geschrieben." - -msgid "Go!" -msgstr "Go!" - -msgid "AutoTimer" -msgstr "AutoTimer" - msgid "New AutoTimer" msgstr "Neuer AutoTimer" +msgid "Help" +msgstr "Hilfe" + msgid "Active" msgstr "Aktiv" +msgid "Channel" +msgstr "Kanal" + msgid "Start" msgstr "Beginn" @@ -207,6 +138,9 @@ msgstr "Ja" msgid "No" msgstr "Nein" +msgid "Edit" +msgstr "Bearbeiten" + msgid "Delete timer?" msgstr "Timer löschen?" @@ -225,33 +159,6 @@ msgstr "Ausgewählte Timer wirklich löschen?" msgid "No AutoTimers defined!" msgstr "Es wurden noch keine AutoTimer definiert!" -msgid "VDR Commands" -msgstr "VDR Befehle" - -msgid "Export channels as playlist:" -msgstr "Kanäle als Playlist exportieren:" - -msgid "Number of lines to show:" -msgstr "Anzahl der anzuzeigenden Zeilen:" - -msgid "unlimited" -msgstr "alle" - -msgid "SVDRP commands:" -msgstr "SVDRP Befehle:" - -msgid "Run" -msgstr "Ausführen" - -msgid "Really run this command?" -msgstr "Diesen Befehl wirklich ausführen?" - -msgid "Commands defined in commands.conf:" -msgstr "In commands.conf definierte Befehle:" - -msgid "Output" -msgstr "Ausgabe" - msgid "Add New AutoTimer" msgstr "Neuen AutoTimer anlegen" @@ -270,6 +177,15 @@ msgstr "Suchbegriffe:" msgid "Search in:" msgstr "zu suchen in:" +msgid "Title" +msgstr "Titel" + +msgid "Subtitle" +msgstr "Untertitel" + +msgid "Description" +msgstr "Beschreibung" + msgid "Search only on these days:" msgstr "Nur an diesen Tagen suchen:" @@ -294,12 +210,18 @@ msgstr "Samstag" msgid "Sunday" msgstr "Sonntag" +msgid "Channel:" +msgstr "Kanal:" + msgid "all" msgstr "alle" msgid "Starts After:" msgstr "Beginnt frühestens:" +msgid "o'clock" +msgstr "Uhr" + msgid "Ends Before:" msgstr "Endet spätestens:" @@ -324,9 +246,15 @@ msgstr "Programmierte Timer merken:" msgid "Directory:" msgstr "Ordner:" +msgid "Save" +msgstr "Speichern" + msgid "Test" msgstr "Testen" +msgid "Cancel" +msgstr "Abbrechen" + msgid "Broadcasted" msgstr "Ausgestrahlt" @@ -336,142 +264,254 @@ msgstr "Abgelegt in" msgid "No matches found!" msgstr "Nichts gefunden!" -msgid "About" -msgstr "Über" +msgid "Configuration" +msgstr "Konfiguration" -msgid "License" -msgstr "Lizenz" +msgid "General Settings" +msgstr "Allgemeine Einstellungen" -msgid "Authors" -msgstr "Autoren" +msgid "Template:" +msgstr "Template:" -msgid "Current author (VDRAdmin-AM branch):" -msgstr "Derzeitiger Autor (VDRAdmin-AM):" +msgid "Skin:" +msgstr "Skin:" -msgid "Original author (VDRAdmin):" -msgstr "Ursprünglicher Autor (VDRAdmin):" +msgid "Login Page:" +msgstr "Startseite:" -msgid "Translation Team" -msgstr "Übersetzungsteam" +msgid "Number of channels to use:" +msgstr "Anzahl der zu verwendenden Kanäle:" -msgid "English:" -msgstr "Englisch:" +msgid "Local net (no login required):" +msgstr "Lokales Netz (kein Login notwendig):" -msgid "German:" -msgstr "Deutsch:" +msgid "Language:" +msgstr "Sprache:" -msgid "French:" -msgstr "Französisch:" +msgid "Save settings on exit:" +msgstr "Einstellungen beim Beenden speichern:" -msgid "At the moment unmaintained, former translations by:" -msgstr "Wird zurzeit nicht aktualisiert, ältere Übersetzungen von:" +msgid "VDR" +msgstr "VDR" -msgid "Spanish:" -msgstr "Spanisch:" +msgid "Number of DVB cards:" +msgstr "Anzahl der DVB-Karten:" -msgid "Finnish:" -msgstr "Finnisch:" +msgid "Path to recordings:" +msgstr "Pfad der Aufnahmen:" -msgid "Dutch:" -msgstr "Holländisch:" +msgid "Path to configuration files:" +msgstr "Pfad zu den Konfigurationsdateien:" -msgid "Russian:" -msgstr "Russisch:" +msgid "Path to EPG images:" +msgstr "Pfad zu den EPG-Bildern:" -msgid "Czech:" -msgstr "Tschechisch:" +msgid "Identification" +msgstr "Identifikation" -msgid "Italian:" -msgstr "Italienisch:" +msgid "Username:" +msgstr "Benutzername:" -msgid "Information" -msgstr "Informationen" +msgid "Password:" +msgstr "Passwort:" -msgid "VDRAdmin-AM version:" -msgstr "VDRAdmin-AM Version:" +msgid "Guest Account:" +msgstr "Gast-Zugang:" -msgid "VDR version:" -msgstr "VDR Version:" +msgid "Guest Username:" +msgstr "Gast Benutzername:" -msgid "Supported features in VDR:" -msgstr "Unterstützte Funktionen im VDR:" +msgid "Guest Password:" +msgstr "Gast Passwort:" -msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgstr "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgid "Timeline" +msgstr "Zeitleiste" -msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgstr "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgid "Hours:" +msgstr "Stunden:" -msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgstr "Aufnahmen umbenennen (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgid "Times:" +msgstr "Zeiten:" -msgid "Getting Help and Reporting Bugs" -msgstr "Hilfe bekommen und Fehler melden" +msgid "Also used for other EPG views!" +msgstr "Wird auch für andere EPG-Ansichten verwendet!" -msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." -msgstr "Wenn Sie Hilfe benötigen, dann werfen Sie bitte zuerst einen Blick in die Online-Hilfe, die für einige Seiten verfügbar ist. Sie können Sie aufrufen indem Sie <img src=\"bilder/help.png\" alt=\"\" /> anklicken." +msgid "Tooltips:" +msgstr "Tooltips:" -msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" -msgstr "Wenn dies nicht die benötigte Information liefert, dann können Sie versuchen Hilfe im <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> zu bekommen. Bitte verwenden Sie hierfür wenn möglich den Ankündigungsthread, suchen Sie dafür nach:" +msgid "Active:" +msgstr "Aktiv:" -msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." -msgstr "Wenn Sie meinen, dass Sie einen Fehler gefunden haben, dann überprüfen Sie im <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking System</a>, ob es sich um einen neuen Fehler handelt und legen Sie gegebenenfalls einen neuen Fehlerbericht an." +msgid "Send email after programming timer:" +msgstr "Nach programmiertem Timer E-Mail verschicken:" -msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" -msgstr "<p>Hier können Sie die Einstellungen der automatischen Timer (AutoTimer) bearbeiten.</p><p>Die AutoTimer sind eine Schlüsselfunktion des VDRAdmin-AM. Ein AutoTimer besteht aus einem oder mehreren Suchbegriffen und einigen anderen Einstellungen, die regelmäßig im Electronic Program Guide (EPG, elektronischer Programmführer) gesucht werden. Bei einer Übereinstimmung legt AutoTimer automatisch einen neuen Timer für diese Sendung im VDR an. Das ist sehr komfortable für unregelmäßig ausgestrahlte Serien oder Spielfilmen, die Sie nicht vermissen wollen.</p>" +msgid "Send email as:" +msgstr "E-Mail verschicken als:" -msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." -msgstr "Diesen AutoTimer aktivieren oder deaktivieren. Deaktivierte AutoTimer werden weiterhin in der Liste der verfügbaren AutoTimer geführt, so dass sie später wieder aktiviert werden können. In der Zwischenzeit nehmen Sie dann aber nichts auf. Darüberhinaus können Sie dies auch auf \"einmal\" setzen, so dass dieser AutoTimer nur die als nächstes übereinstimmende Sendung (eine einzige!) programmiert." +msgid "Send email to:" +msgstr "E-Mail schicken an:" -msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Only broadcasts will match if they contain <strong>all</strong> items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as Blacklist-string) or only one episode (when using \"Enterprise~Azati Prime\" as Blacklist-string)." -msgstr "Die Auswahl der richtigen Suchbegriffe entscheidet darüber ob nur die gewünschten Sendungen oder Sendungen mit ähnlichen Namen oder überhaupt nichts aufgenommen wird.<br />Groß-/Kleinschreibung spielt keine Rolle, d.h. \"Akte X\" findet das gleiche wie \"akte x\". Sie können mehrere Suchbegriffe durch Leerzeichen getrennt angeben. Diese müssen dann <strong>alle</strong> in den gewünschten Feldern der Sendung enthalten sein, um gefunden zu werden.<br />Es empfiehlt sich nur Buchstaben und Zahlen in den Suchbegriffen zu verwenden, da im EPG oft Doppelpunkte, Klammern und andere Zeichen fehlen.<br />Experten können auch \"regular expressions\" verwenden. Zu deren Einsatz müssen Sie jedoch einen Blick in den Quelltext von VDRAdmin-AM werfen (nicht dokumentierte Funktion).<br /><br />Sie können auch Sendungen, die eigentlich passen würden, ausschliessen indem Sie diese Titel der Datei <i>vdradmind.bl</i> hinzufügen, pro Zeile eine Sendung. Diese Datei muss sich im Konfigurationsverzeichnis von VDRAdmin-AM befinden. Wenn eine Zeile entweder auf <u>title</u> oder <u>title~subtitle</u> aus dem EPG der Sendung paßt, so wird diese Sendung nicht automatisch programmiert. Somit können Sie eine komplette Serie (z.B. mit \"Enterprise\" als Blacklist-Eintrag) oder nur eine bestimmte Episode (z.B. \"Enterprise~Azati Prime\") ausschliessen." +msgid "Mail server:" +msgstr "Mail-Server:" -msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." -msgstr "Hier geben Sie die Abschnitte aus dem EPG an, den VDRAdmin-AM nach den Suchbegriffen durchsuchen soll." +msgid "SMTPAuth user:" +msgstr "Benutzername für SMTPAuth:" -msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." -msgstr "Haken Sie die Tage an, an denen Sendungen gesucht werden sollen." +msgid "SMTPAuth password:" +msgstr "Passwort für SMTPAuth:" -msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." -msgstr "Der Kanal, der auf übereinstimmende Sendungen durchsucht werden soll. Mit \"alle\" werden alle bekannten oder erwünschten Kanäle durchsucht. Die erwünschten Kanäle für den AutoTimer können auf der \"Konfiguration\" Seite eingestellt werden." +msgid "Track schedule changes by:" +msgstr "Verfolge Ausstrahlungsänderungen anhand:" -msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Eine Sendung darf frühestens zu der hier eingestellten Uhrzeit beginnen. Das erste Textfeld gibt die Stunden, das zweite die Minuten an." +msgid "Broadcast time" +msgstr "Ausstrahlungszeit" -msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Eine Sendung darf spätestens zu der hier eingestellten Uhrzeit aufhören. Das erste Textfeld gibt die Stunden, das zweite die Minuten an." +msgid "Event id" +msgstr "Event-ID" -msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." -msgstr "Setzen Sie diese Option auf \"Ja\" wenn die von diesem AutoTimer programmierten Timer individuelle Zeitpuffer bekommen sollen. Die entsprechenden Werte können Sie in den zwei folgenden Textfeldern angeben." +msgid "Timer" +msgstr "Timer" -msgid "The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG." -msgstr "Die Anzahl von Minuten, die VDRAdmin-AM von der Startzeit der Sendung im EPG abzieht." +msgid "Tooltips in timeline:" +msgstr "Tooltips in der Zeitleiste:" -msgid "The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG." -msgstr "Die Anzahl von Minuten, die VDRAdmin-AM zur Stoppzeit der Sendung im EPG addiert." +msgid "Tooltips in list:" +msgstr "Tooltips in der Liste:" -msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." -msgstr "Aktivieren Sie diese Option, wenn Sie wollen, dass VDRAdmin-AM den Untertitel der Sendung aus dem EPG an den Namen der Aufnahme anhängt." +msgid "Streaming" +msgstr "Streaming" -msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." -msgstr "Wenn Sie diese Option aktivieren merkt sich VDRAdmin-AM die Timer, die er bereits automatisch programmiert hat. Dies ist nützlich, wenn automatisch programmierte Timer in der Timerliste deaktiviert oder gelöscht werden sollen." +msgid "Live Streaming:" +msgstr "LiveTV streamen:" -msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." -msgstr "Hier geben Sie das Verzeichnis an, in dem dieser AutoTimer die Aufnahmen ablegen soll. Sollen Unterverzeichnisse angegeben werden, dann müssen diese mit '~' getrennt werden (da '/' auch Teil des Programmnamens sein kann).<br />VDRAdmin-AM wird automatisch den Titel un den Untertitel (wenn das Häkchen bei \"Serie\" gesetzt ist) anhängen.<br /><br />Sie können auch die folgenden Schlüsselwörter verwenden, die dann im endgültigen Dateinamen mit den Werten ersetzt werden, die z.B. von <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a> bereitgestellt wurden:<ul><li>%Title% - der Titel der Sendung.</li><li>%Subtitle% - der Untertitel der Sendung.</li><li>%Director% - der Regisseur der Sendung.</li><li>%Date% - das Datum der Aufnahme.</li><li>%Category% - die Kategorie der Aufnahme (Spielfilm/Serie/...).</li><li>%Genre% - das Genre der Aufnahme (Drama/Krimi/..).</li><li>%Year% - das Produktionsjahr.</li><li>%Country% - das Produktionsland.</li><li>%Originaltitle% - der Originaltitel der Sendung.</li><li>%FSK% - die FSK-Freigabe der Sendung.</li><li>%Episode% - der Titel der Episode einer Serie.</li><li>%Rating% - die Bewertung der Sendung vom Bereitsteller des EPG.</li></ul><h4>Achtung:</h4>Wenn Sie die oben genannten Schlüsselwörter verwenden, liegt es in Ihrer Verantwortung den <strong>kompletten Dateinamen</strong> der Aufnahme anzugeben! VDRAdmin-AM wird nichts mehr anhängen." +msgid "HTTP Port of Streamdev (also possible 3000/ts):" +msgstr "HTTP-Port von Streamdev (auch möglich 3000/ts):" -msgid "Timer" -msgstr "Timer" +msgid "Recordings Streaming:" +msgstr "Aufnahmen streamen:" -msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" -msgstr "" -"<p>Hier finden Sie eine Liste von allen Timern, die VDR kennt.</p><p>Im oberen Bereich finden Sie eine grafische Repräsentation der Timer für einen Tag. Dies vermittelt Ihnen einen schnellen Überblick darüber, was an einem Tag programmiert wurde und hilft Ihnen beim Erkennen von überschneidenden Timern. Wenn Sie den Mauszeiger über einen farbigen Bereich bewegen erfahren Sie seinen Namen, die Priorität und Lebenszeit sowie seine Dauer.</p><p>Unterhalb der grafischen Anzeige sehen Sie eine Liste der programmierten Timer. Sie können die Sortierung der Liste ändern indem Sie auf die gewünschte Spaltenüberschrift klicken.</p><p>Für jeden Timer haben Sie die folgenden Möglichkeiten:<dl><dt>Setzen seines Zustands</dt><dd>Dies erfolgt durch Anklicken von \"Ja\", \"Nein\", \"VPS\" oder \"Auto\" in der \"Aktiv\" Spalte.</dd><dt>Schnellanzeige seiner Priorität und Lebenszeit</dt><dd>Der Mauszeiger muss dazu über den Namen des Timers bewegt werden.</dd><dt>Anzeigen seinen EPG Eintrags</dt><dd>Bei Timern, bei denen die Option <span class=\"ref_label\">Automatische Timer-Überwachung</span> auf \"Sendungskennung\" gesetzt ist, kann durch Anklicken des Timernamens der zugehörige EPG Eintrag angezeigt werden.</dd><dt>Bearbeiten eines Timers</dt><dd>Sie können einen Timer bearbeiten indem Sie auf <img src=\"bilder/edit.png\" alt=\"edit\" /> klicken.</dd><dt>Löschen eines Timers</dt><dd>Um einen Timer zu löschen klicken Sie bitte auf <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Der Status eines jeden Timers wird durch eine bestimmte Farbe angezeigt:<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Der Timer ist OK und wird aufnehmen.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Der Timer überschneidet sich mit anderen Timern. Das ist nicht kritisch, wenn genügend DVB-Karten für die parallelen Aufnahmen vorhanden sind.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Der Timer ist kritisch und wird höchst wahrscheinlich <strong>nicht</strong> aufnehmen.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Der Timer ist nicht aktiv.\n" -"</p><p>Zusätzlich zu diesen Funktionen können Sie einen neuen Timer programmieren indem Sie die Schaltfläche <input type=\"submit\" class=\"submit\" value=\"Neuer Timer\"/>am oberen Bildschirmrand anklicken. Am unteren Bildschirmrand finden Sie die Schaltfläche <input type=\"submit\" class=\"submit\" value=\"Ausgewählte Timer löschen\"/>, mit der Sie alle Timer, die Sie in der Liste in der letzten Spalte mit einem Haken versehen haben, auf einmal löschen können.</p><p>Sie können alle ausgewählten Timer mit den entsprechenden Schaltflächen auch aktivieren bzw. deaktivieren.</p>" +msgid "Path to VDR Recordings on your workstation:" +msgstr "Pfad zu den VDR-Aufnahmen auf Ihrem PC:" -msgid "Playing Today" -msgstr "Was läuft heute" +msgid "MIME type for live streaming:" +msgstr "MIME-Typ für das Streamen von LiveTV:" -msgid "starting at" -msgstr "ab" +msgid "Suffix for live streaming:" +msgstr "Dateierweiterung für das Streamen von LiveTV:" + +msgid "MIME type for recordings streaming:" +msgstr "MIME-Typ für das Streamen von Aufnahmen:" + +msgid "Suffix for recordings streaming:" +msgstr "Dateierweiterung für das Streamen von Aufnahmen:" + +msgid "Bandwidth of Streams:" +msgstr "Bandbreite des Streams:" + +msgid "External Search" +msgstr "Externe Suche" + +msgid "URL:" +msgstr "URL:" + +msgid "Title:" +msgstr "Titel:" + +msgid "User-defined search:" +msgstr "Benutzerdefinierte Suche:" + +msgid "Expert" +msgstr "Expertenmodus" + +msgid "Update EPG data in background:" +msgstr "EPG-Daten im Hintergrund aktualisieren:" + +msgid "Update EPG every:" +msgstr "EPG aktualisieren alle:" + +msgid "Channel Selections" +msgstr "Kanalauswahl" + +msgid "Show channels without EPG information:" +msgstr "Kanäle ohne EPG Informationen anzeigen:" + +msgid "In \"AutoTimer\"?" +msgstr "Bei \"AutoTimer\"?" + +msgid "Apply" +msgstr "Anwenden" + +msgid "EPG Search Blacklists" +msgstr "EPG Search Ausschlusslisten" + +msgid "New Blacklist" +msgstr "Neue Ausschlussliste" + +msgid "Search pattern" +msgstr "Suchbegriff" + +msgid "From" +msgstr "Von" + +msgid "To" +msgstr "Bis" + +msgid "Delete blacklist?" +msgstr "Ausschlussliste löschen?" + +msgid "Delete Selected Blacklists" +msgstr "Ausgewählte Ausschlusslisten löschen" + +msgid "Delete all selected blacklists?" +msgstr "Alle ausgewählten Ausschlusslisten wirklich löschen?" + +msgid "EPG search" +msgstr "EPG search" + +msgid "EPG Search" +msgstr "EPG Search" + +msgid "Use template" +msgstr "Von Vorlage" + +msgid "New Search" +msgstr "Neue Suche" + +msgid "Edit Template" +msgstr "Suchvorlage bearbeiten" + +msgid "Settings" +msgstr "Einstellungen" + +msgid "Action" +msgstr "Aktion" + +msgid "Find" +msgstr "Suche starten" + +msgid "Show Favorites" +msgstr "Favoriten anzeigen" + +msgid "Delete Selected Searches" +msgstr "Ausgewählte Suchen löschen" + +msgid "Delete all selected searches?" +msgstr "Alle ausgewählten Suchen wirklich löschen?" + +msgid "Execute Selected Searches" +msgstr "Ausgewählte Suchen ausführen" + +msgid "Duration" +msgstr "Dauer" + +msgid "More Information" +msgstr "mehr Infos" + +msgid "Channels" +msgstr "Programmübersicht" + +msgid "Record" +msgstr "Sendung aufnehmen" msgid "Add New Blacklist" msgstr "Neue Ausschlussliste anlegen" @@ -482,9 +522,6 @@ msgstr "Ausschlussliste bearbeiten" msgid "Add New Template" msgstr "Neue Suchvorlage anlegen" -msgid "Edit Template" -msgstr "Suchvorlage bearbeiten" - msgid "Add New Search" msgstr "Neuen Suche anlegen" @@ -500,9 +537,6 @@ msgstr "Sie haben zum Durchsuchen weder\\nTitel noch Untertitel noch Beschreibun msgid "Hide results" msgstr "Ergebnis ausblenden" -msgid "Settings" -msgstr "Einstellungen" - msgid "Name:" msgstr "Name:" @@ -680,264 +714,147 @@ msgstr "Diese Suchvorlage löschen?" msgid "Save as template" msgstr "Als Vorlage speichern" -msgid "Create New Timer" -msgstr "Neuen Timer anlegen" - -msgid "Buffer:" -msgstr "Puffer:" - -msgid "Use VPS:" -msgstr "VPS verwenden:" - -msgid "readonly" -msgstr "unveränderbar" - -msgid "Timer has been set by AutoTimer pattern:" -msgstr "Timer wurde gesetzt vom AutoTimer Muster:" - -msgid "No Help Available" -msgstr "Keine Hilfe verfügbar" - -msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgstr "Bisher keine Hilfe vorhanden. Zum Hinzufügen oder Ändern eines Textes bitte an <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a> wenden." +msgid "Run" +msgstr "Ausführen" msgid "Error!" msgstr "Fehler!" -msgid "TV" -msgstr "Fernseher" +msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" +msgstr "<p>Hier finden Sie eine Liste aller AutoTimer, die VDRAdmin-AM kennt.</p><p>Die Liste zeigt Ihnen einige Informationen zu den AutoTimern. Sie können die Sortierung dieser Liste ändern indem Sie auf die Spaltenüberschriften klicken.</p><p>Für jeden AutoTimer haben Sie die folgenden Möglichkeiten:<dl><dt>Setzen seines Zustands</dt><dd>Durch klicken auf \"Ja\" oder \"Nein\" in der \"Aktiv\" Spalte können Sie den AutoTimer aktivieren bzw. deaktivieren.</dd><dt>Schnellanzeige seiner Priorität und Lebenszeit</dt><dd>Der Mauszeiger muss dazu über den Namen des AutoTimers bewegt werden.</dd><dt>Bearbeiten eines AutoTimers</dt><dd>Sie können einen AutoTimer bearbeiten indem Sie auf <img src=\"bilder/edit.png\" alt=\"edit\" /> klicken.</dd><dt>Löschen eines AutoTimers</dt><dd>Um einen Timer zu löschen klicken Sie bitte auf <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Der Status eines jeden AutoTimers wird durch eine bestimmte Farbe angezeigt:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Der AutoTimer ist OK und wird automatisch übereinstimmende Sendungen programmieren.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Der AutoTimer ist nicht aktiv.</p><p>Zusätzlich zu diesen Funktionen können Sie einen neuen AutoTimer anlegen indem Sie die Schaltfläche <input type=\"submit\" class=\"submit\" value=\"Neuer AutoTimer\"/> am oberen Rand anklicken. Am unteren Bildschirmrand finden Sie die Schaltfläche <input type=\"submit\" class=\"submit\" value=\"Ausgewählte AutoTimer löschen\"/>, mit der Sie alle AutoTimer, die Sie in der Liste in der letzten Spalte mit einem Haken versehen haben, auf einmal löschen können.</p><p>Mit der Schaltfläche <input type=\"submit\" class=\"submit\" value=\"Manuelles Update\"/> können Sie VDRAdmin-AM veranlassen sich mit dem VDR zu verbinden, die aktuellen EPG Daten zu holen und anschliessend nach übereinstimmenden AutoTimern zu suchen.</p>" -msgid "Interval:" -msgstr "Intervall:" +msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgstr "<p>Hier können Sie die Einstellungen der automatischen Timer (AutoTimer) bearbeiten.</p><p>Die AutoTimer sind eine Schlüsselfunktion des VDRAdmin-AM. Ein AutoTimer besteht aus einem oder mehreren Suchbegriffen und einigen anderen Einstellungen, die regelmäßig im Electronic Program Guide (EPG, elektronischer Programmführer) gesucht werden. Bei einer Übereinstimmung legt AutoTimer automatisch einen neuen Timer für diese Sendung im VDR an. Das ist sehr komfortable für unregelmäßig ausgestrahlte Serien oder Spielfilmen, die Sie nicht vermissen wollen.</p>" -msgid "sec." -msgstr "sek" +msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." +msgstr "Diesen AutoTimer aktivieren oder deaktivieren. Deaktivierte AutoTimer werden weiterhin in der Liste der verfügbaren AutoTimer geführt, so dass sie später wieder aktiviert werden können. In der Zwischenzeit nehmen Sie dann aber nichts auf. Darüberhinaus können Sie dies auch auf \"einmal\" setzen, so dass dieser AutoTimer nur die als nächstes übereinstimmende Sendung (eine einzige!) programmiert." -msgid "G" -msgstr "G" +msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Broadcasts will match only if they match <strong>all</strong> configured search items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as blacklist string) or only one episode (when using \"Enterprise~Azati Prime\" as blacklist string)." +msgstr "Die Auswahl der richtigen Suchbegriffe entscheidet darüber ob nur die gewünschten Sendungen oder Sendungen mit ähnlichen Namen oder überhaupt nichts aufgenommen wird.<br />Groß-/Kleinschreibung spielt keine Rolle, d.h. \"Akte X\" findet das gleiche wie \"akte x\". Sie können mehrere Suchbegriffe durch Leerzeichen getrennt angeben. Diese müssen dann <strong>alle</strong> in den gewünschten Feldern der Sendung enthalten sein, um gefunden zu werden.<br />Es empfiehlt sich nur Buchstaben und Zahlen in den Suchbegriffen zu verwenden, da im EPG oft Doppelpunkte, Klammern und andere Zeichen fehlen.<br />Experten können auch \"regular expressions\" verwenden. Zu deren Einsatz müssen Sie jedoch einen Blick in den Quelltext von VDRAdmin-AM werfen (nicht dokumentierte Funktion).<br /><br />Sie können auch Sendungen, die eigentlich passen würden, ausschliessen indem Sie diese Titel der Datei <i>vdradmind.bl</i> hinzufügen, pro Zeile eine Sendung. Diese Datei muss sich im Konfigurationsverzeichnis von VDRAdmin-AM befinden. Wenn eine Zeile entweder auf <u>title</u> oder <u>title~subtitle</u> aus dem EPG der Sendung paßt, so wird diese Sendung nicht automatisch programmiert. Somit können Sie eine komplette Serie (z.B. mit \"Enterprise\" als Blacklist-Eintrag) oder nur eine bestimmte Episode (z.B. \"Enterprise~Azati Prime\") ausschliessen." -msgid "Grab the picture!" -msgstr "Hole das Bild!" +msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." +msgstr "Hier geben Sie die Abschnitte aus dem EPG an, den VDRAdmin-AM nach den Suchbegriffen durchsuchen soll." -msgid "Size:" -msgstr "Größe:" +msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." +msgstr "Haken Sie die Tage an, an denen Sendungen gesucht werden sollen." -msgid "Open in separate window" -msgstr "Öffne eigenes Fenster" +msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." +msgstr "Der Kanal, der auf übereinstimmende Sendungen durchsucht werden soll. Mit \"alle\" werden alle bekannten oder erwünschten Kanäle durchsucht. Die erwünschten Kanäle für den AutoTimer können auf der \"Konfiguration\" Seite eingestellt werden." -msgid "Playing Today?" -msgstr "Was läuft heute?" +msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Eine Sendung darf frühestens zu der hier eingestellten Uhrzeit beginnen. Das erste Textfeld gibt die Stunden, das zweite die Minuten an." -msgid "Timeline" -msgstr "Zeitleiste" +msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Eine Sendung darf spätestens zu der hier eingestellten Uhrzeit aufhören. Das erste Textfeld gibt die Stunden, das zweite die Minuten an." -msgid "EPG Search" -msgstr "EPG Search" +msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." +msgstr "Setzen Sie diese Option auf \"Ja\" wenn die von diesem AutoTimer programmierten Timer individuelle Zeitpuffer bekommen sollen. Die entsprechenden Werte können Sie in den zwei folgenden Textfeldern angeben." -msgid "Recordings" -msgstr "Aufnahmen" +msgid "The number of minutes VDRAdmin-AM subtracts from the broadcast's start time found in the EPG." +msgstr "Die Anzahl von Minuten, die VDRAdmin-AM von der Startzeit der Sendung im EPG abzieht." -msgid "Remote Control" -msgstr "Fernbedienung" +msgid "The number of minutes VDRAdmin-AM adds to the broadcast's stop time found in the EPG." +msgstr "Die Anzahl von Minuten, die VDRAdmin-AM zur Stoppzeit der Sendung im EPG addiert." -msgid "Watch TV" -msgstr "Fernseher" +msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." +msgstr "Eine Zahl im Bereich <strong>0...99</strong>, die die <strong>Priorität</strong> dieses Timers und der von ihm programmierten Aufnahmen angibt. <strong>0</strong> ist die geringste Priorität und <strong>99</strong> die höchste. Die Priorität wird verwendet um zu entscheiden, welcher Timer gestartet werden soll für den Fall, dass zwei oder mehr Timer mit exakt der gleichen <strong>Startzeit</strong> existieren. Der erste Timer in der Liste mit den höchsten Prioritäten wird verwendet.<br /><br />Dieser Wert wird ebenso zusammen mit der Aufnahme gespeichert und wird später verwendet um zu entscheiden, welche Aufnahme gelöscht werden soll, für den Fall, dass kein Pattenplatz mehr für eine neue Aufnahme ist. Wenn die Platte voll läuft und eine Aufnahme mehr Plattenplatz benötigt, wird eine existierende Aufnahme mit der geringsten Priorität (und deren garantierte <strong>Lebenszeit</strong> überschritten wurde) gelöscht. <br /><br />Wenn alle verfügbaren DVB-Karten belegt sind unterbricht ein Timer mit einer höheren Priorität den Timer mit der niedrigsten Priorität um die Aufnahme zu starten." -msgid "Commands" -msgstr "Befehle" +msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." +msgstr "Die <strong>garantierte</strong> Lebenszeit (in Tagen) einer Aufnahme, die von diesem Timer erstellt wurde. <strong>0</strong> bedeutet, dass diese Aufnahme jederzeit von einer Aufnahme mit höherer Priorität automatisch gelöscht werden kann. <strong>99</strong> heißt. dass diese Aufnahme nie automatisch gelöscht wird. Eine Zahl im Bereich <strong>1...98</strong> gibt an, dass die Aufnahme automatisch gelöscht werden kann, wenn die angegebene Anzahl von Tagen seit der <strong>Startzeit</strong> abgelaufen ist und Plattenplatz für eine neue Aufnahme benötigt wird." -msgid "Configuration" -msgstr "Konfiguration" +msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." +msgstr "Aktivieren Sie diese Option, wenn Sie wollen, dass VDRAdmin-AM den Untertitel der Sendung aus dem EPG an den Namen der Aufnahme anhängt." -msgid "Search" -msgstr "Suchen" +msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." +msgstr "Wenn Sie diese Option aktivieren merkt sich VDRAdmin-AM die Timer, die er bereits automatisch programmiert hat. Dies ist nützlich, wenn automatisch programmierte Timer in der Timerliste deaktiviert oder gelöscht werden sollen." + +msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." +msgstr "Hier geben Sie das Verzeichnis an, in dem dieser AutoTimer die Aufnahmen ablegen soll. Sollen Unterverzeichnisse angegeben werden, dann müssen diese mit '~' getrennt werden (da '/' auch Teil des Programmnamens sein kann).<br />VDRAdmin-AM wird automatisch den Titel un den Untertitel (wenn das Häkchen bei \"Serie\" gesetzt ist) anhängen.<br /><br />Sie können auch die folgenden Schlüsselwörter verwenden, die dann im endgültigen Dateinamen mit den Werten ersetzt werden, die z.B. von <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a> bereitgestellt wurden:<ul><li>%Title% - der Titel der Sendung.</li><li>%Subtitle% - der Untertitel der Sendung.</li><li>%Director% - der Regisseur der Sendung.</li><li>%Date% - das Datum der Aufnahme.</li><li>%Category% - die Kategorie der Aufnahme (Spielfilm/Serie/...).</li><li>%Genre% - das Genre der Aufnahme (Drama/Krimi/..).</li><li>%Year% - das Produktionsjahr.</li><li>%Country% - das Produktionsland.</li><li>%Originaltitle% - der Originaltitel der Sendung.</li><li>%FSK% - die FSK-Freigabe der Sendung.</li><li>%Episode% - der Titel der Episode einer Serie.</li><li>%Rating% - die Bewertung der Sendung vom Bereitsteller des EPG.</li></ul><h4>Achtung:</h4>Wenn Sie die oben genannten Schlüsselwörter verwenden, liegt es in Ihrer Verantwortung den <strong>kompletten Dateinamen</strong> der Aufnahme anzugeben! VDRAdmin-AM wird nichts mehr anhängen." msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" msgstr "<p>Hier können Sie allgemeine Einstellungen und Grundeinstellungen für Timer und AutoTimer, sowie die Kanalauswahl und die Streaming Einstellungen vornehmen.</p>" -msgid "General Settings" -msgstr "Allgemeine Einstellungen" - -msgid "VDR" -msgstr "VDR" - -msgid "Identification" -msgstr "Identifikation" - -msgid "Streaming" -msgstr "Streaming" - -msgid "Expert" -msgstr "Expertenmodus" - -msgid "External Search" -msgstr "Externe Suche" - -msgid "Channel Selections" -msgstr "Kanalauswahl" - -msgid "Skin:" -msgstr "Skin:" - msgid "The skin you want to use." msgstr "Der zu verwendende Skin (=grafische Oberflächenrepräsentation)." -msgid "Login Page:" -msgstr "Startseite:" - msgid "The page you want to see at first connect to VDRAdmin-AM." msgstr "Die Seite, die angezeigt werden soll, wenn Sie sich das erste Mal mit VDRAdmin-AM verbinden." -msgid "Number of channels to use:" -msgstr "Anzahl der zu verwendenden Kanäle:" - msgid "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." msgstr "VDRAdmin-AM wird nur die hier eingestellte Anzahl an Kanälen vom VDR laden und nur diese an allen Stellen, die die Kanäle anzeigen, anbieten. Dies beschränkt auch die EPG Informationen, die VDRAdmin-AM lesen wird und vermindert somit auch den Speicherbedarf von VDRAdmin-AM und erhöht seine Verarbeitungsgeschwindigkeit. <strong>0</strong> schaltet diese Funktion ab und VDRAdmin-AM wird alle verfügbaren Kanäle verwenden." -msgid "Local net (no login required):" -msgstr "Lokales Netz (kein Login notwendig):" - msgid "Here you can specify an IP address or range that can login without providing login information. For example: \"192.168.0.0/24\" will include any IP starting with \"192.168.0\", \"192.168.0.123/32\" will only match \"192.168.0.123\"." msgstr "Hier geben Sie die IP-Adresse oder den IP-Bereich an von dem aus man sich anmelden kann, ohne dass Login-Informationen eingegeben werden müssen. Z.B. \"192.168.0.0/24\" beinhaltet jede IP, die mit \"192.168.0\" beginnt. \"192.168.0.123/32\" beinhaltet nur die IP \"192.168.0.123\"." -msgid "Language:" -msgstr "Sprache:" - msgid "Here you can set the localization VDRAdmin-AM should use." msgstr "Hier stellen Sie die Lokalisierung ein, die VDRAdmin-AM verwenden soll." -msgid "Save settings on exit:" -msgstr "Einstellungen beim Beenden speichern:" - msgid "With this option the settings will be saved if VDRAdmin-AM exits. This will also save settings not available on the \"Configuration\" menu like interval and size in TV, sorting in the lists and current view in \"What's on now\"." msgstr "Mit dieser Option werden die Einstellungen gespeichert, wenn VDRAdmin-AM beendet wird. Damit werden dann auch Einstellungen gespeichert, die nicht im \"Konfiguration\" Menü enthalten sind, wie z.B. Interfall und Größe im Fernseher, die Sortierung in den Listen und die aktuelle Ansicht bei \"Was läuft jetzt\"." msgid "Top" msgstr "nach oben" -msgid "Number of DVB cards:" -msgstr "Anzahl der DVB-Karten:" - msgid "The number of DVB cards VDR can access. Depending on this value VDRAdmin-AM will calculate critical timers in the <span class=\"ref_menu\">Timer</span> menu." msgstr "Die Anzahl der DVB-Karten, die der VDR ansprechen kann. In Abhängigkeit von diesem Wert berechnet VDRAdmin-AM die kritischen Timer auf der <span class=\"ref_menu\">Timer</span> Seite" -msgid "Path to recordings:" -msgstr "Pfad der Aufnahmen:" - msgid "The path to VDR's recordings. It's used so that VDRAdmin-AM can locate the recordings when using <span class=\"ref_label\">Recordings Streaming</span> and <span class=\"ref_file\">reccmds.conf</span> in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Der Pfad zu den Aufnahmen des VDR. Dieser wird verwendet um die Aufnahmen zu finden, wenn die Funktionen <span class=\"ref_label\">Aufnahmen streamen</span> und <span class=\"ref_file\">reccmds.conf</span> auf der <span class=\"ref_menu\">Aufnahmen</span> Seite verwendet werden." -msgid "Path to configuration files:" -msgstr "Pfad zu den Konfigurationsdateien:" - msgid "The path where VDR's configuration files are located. If this directory contains the file <span class=\"ref_file\">reccmds.conf</span> its content is shown in a selectbox in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Der Pfad zu den Konfigurationsdateien des VDR. Wenn dieses Verzeichnis die Datei <span class=\"ref_file\">reccmds.conf</span> enthält wird der Inhalt dieser Datei auf der <span class=\"ref_menu\">Aufnahmen</span> Seite zur Auswahl angezeigt." -msgid "Path to EPG images:" -msgstr "Pfad zu den EPG-Bildern:" - msgid "The path where the EPG images are stored." msgstr "Der Pfad, wo die EPG Bilder abgelegt sind." -msgid "Username:" -msgstr "Benutzername:" - msgid "The username for the main user, i.e. the user having the most privileges." msgstr "Der Benutzername für den Hauptbenutzer, d.h. dem Benutzer mit den meisten Rechten." -msgid "Password:" -msgstr "Passwort:" - msgid "The main user's password." msgstr "Das Passwort des Hauptbenutzers." -msgid "Guest Account:" -msgstr "Gast-Zugang:" - msgid "If you want a user account having only limited privileges, this is for you. The guest user cannot modify anything, it's only allowed to view the EPG, timers, AutoTimers and recordings listings." msgstr "Wenn Sie einen Benutzer wünschen, der nur eingeschränkte Rechte besitzt, dann aktivieren Sie diese Option. Der Gastbenutzer kann nichts ändern, es ist nur erlaubt den EPG, die Timer, AutoTimer und Aufnahmen aufzulisten." -msgid "Guest Username:" -msgstr "Gast Benutzername:" - msgid "The username for the guest user." msgstr "Der Benutzername für den Gastbenutzer." -msgid "Guest Password:" -msgstr "Gast Passwort:" - msgid "The guest user's password." msgstr "Das Passwort des Gastbenutzers." -msgid "Hours:" -msgstr "Stunden:" - msgid "The number of hours to show in the timeline." msgstr "Die Anzahl der Stunden, die in der Zeitleiste angezeigt wird." -msgid "Times:" -msgstr "Zeiten:" - msgid "A comma separated list of times in <strong>hh:mm</strong> format that appear in the selectbox placed at the top." msgstr "Eine durch Kommas getrennte Liste von Uhrzeiten im Format <strong>hh:mm</strong>, die in der Auswahlliste am Seitenanfang angezeigt wird." -msgid "Tooltips:" -msgstr "Tooltips:" - msgid "Here you can (de-)activate the tooltips." msgstr "Hier können Sie die Tooltips ein- oder ausschalten." -msgid "Active:" -msgstr "Aktiv:" - msgid "Activate or deactivate the AutoTimer function." msgstr "Die AutoTimer-Funktionalität aktivieren oder deaktivieren." -msgid "Send email after programming timer:" -msgstr "Nach programmiertem Timer E-Mail verschicken:" - msgid "VDRAdmin-AM will send an email whenever an event matches an AutoTimer and a timer has been programmed if you enable this feature." msgstr "Wenn Sie diese Funktion aktivieren, dann schickt Ihnen VDRAdmin-AM immer wenn ein AutoTimer eine passende Sendung findet eine E-Mail." -msgid "Send email as:" -msgstr "E-Mail verschicken als:" - msgid "Here you set the sending email address of the generated email." msgstr "Hier geben Sie die Absende-Adresse der erzeugten E-Mail an." -msgid "Send email to:" -msgstr "E-Mail schicken an:" - msgid "The email address the email is sent to." msgstr "Die E-Mail-Adresse an die die E-Mail geschickt werden soll." -msgid "Mail server:" -msgstr "Mail-Server:" - msgid "The outgoing mail server." msgstr "Der Server für ausgehende E-Mails." -msgid "SMTPAuth user:" -msgstr "Benutzername für SMTPAuth:" - msgid "If you need to authenticate yourself at the outgoing mail server, you have to supply the username and the password below. Leaving this field empty will disable SMTPAuth." msgstr "Wenn Sie sich am Server für ausgehende E-Mails anmelden müssen, dann geben Sie hier den Benutzernamen und unten das Passwort an. Lassen Sie dieses Feld leer um SMTPAuth nicht zu verwenden." -msgid "SMTPAuth password:" -msgstr "Passwort für SMTPAuth:" - msgid "The password for the SMTPAuth user." msgstr "Das Passwort für den SMTPAuth Benutzer." -msgid "Tooltips in timeline:" -msgstr "Tooltips in der Zeitleiste:" - msgid "Here you can (de-)activate the tooltips in the timeline." msgstr "Hier können Sie die Tooltips in der Zeitleiste ein- oder ausschalten." -msgid "Tooltips in list:" -msgstr "Tooltips in der Liste:" - msgid "Here you can (de-)activate the tooltips in the list." msgstr "Hier können Sie die Tooltips in der Liste ein- oder ausschalten." @@ -947,51 +864,27 @@ msgstr "Beschreibung aus dem EPG für neue Timer verwenden:" msgid "If you don't want VDRAdmin-AM to add the summary taken from EPG to new timers you can switch it off here." msgstr "Wenn Sie nicht wollen, dass VDRAdmin-AM die Beschreibung einer Sendung aus dem EPG für neue Timer setzt, dann können Sie dies hiermit unterbinden." -msgid "Live Streaming:" -msgstr "LiveTV streamen:" - msgid "Enable or disable live streaming using the <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. You also have to set the correct <span class=\"ref_label\">HTTP Port for Streamdev</span> below." msgstr "Aktivieren oder deaktivieren des Streamens vom LiveTV. Dazu benötigen Sie das <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. Außerdem muss noch der <span class=\"ref_label\">HTTP-Port von Streamdev</span> korrekt gesetzt sein." -msgid "HTTP Port of Streamdev (also possible 3000/ts):" -msgstr "HTTP-Port von Streamdev (auch möglich 3000/ts):" - msgid "Here you have to set the port number your VDR's streamdev server listens for connections. Additionally you can also provide the stream type you like to use." msgstr "Hier geben Sie die Portnummer des Streamdev-Servers im VDR an. Sie können auch den zu verwendenden Streamtyp angeben." -msgid "Recordings Streaming:" -msgstr "Aufnahmen streamen:" - msgid "Enable or disable streaming of recordings.<br />Well actually this is no real \"streaming\", but you have to setup your workstation so that it can access VDR's recordings. You can use for example Samba or NFS for this. VDRAdmin-AM simply generates a playlist that contains all parts of the recording and sends this to your browser. If your browser and media player are configured correctly you will see the recording on your workstation's display." msgstr "Streamen von Aufnahmen aktivieren oder deaktivieren.<br />Es ist eigentlich kein richtiges \"Streamen\", Sie müssen nämlich Ihren PC so konfigurieren, dass dieser auf die Aufnahmen des VDR zugreifen kann. Sie können dies z.B. mit Samba oder NFS erreichen. VDRAdmin-AM erstellt eine Abspielliste (Playlist), die alle Teile der ausgewählten Aufnahme enthält, und sendet diese dann zum Browser. Wenn nun der Browser und das Medienabspielprogramm korrekt konfiguriert sind wird die Aufnahme am PC abgespielt." -msgid "Path to VDR Recordings on your workstation:" -msgstr "Pfad zu den VDR-Aufnahmen auf Ihrem PC:" - msgid "This is the path where your workstation can access VDR's recordings. This depends on your VDR and workstation setup, for example \"\\\\vdr\\videos\" or \"V:\\\" (on Windows) or \"/mnt/videos\" (on Linux)." msgstr "Der Pfad, über den Ihr PC auf die Aufnahmen des VDR zugreifen kann. Dieser ist abhängig von der Konfiguration des VDR und des PC und kann z.B. \"\\\\vdr\\videos\" oder \"V:\\\" (unter Windows) oder \"/mnt/videos\" (unter Linux) sein." -msgid "MIME type for live streaming:" -msgstr "MIME-Typ für das Streamen von LiveTV:" - msgid "The MIME type to send when using live streaming. Defaults to \"video/x-mpegurl\"." msgstr "Der zu sendende MIME-Type für das Streamen von LiveTV. Vorgabe ist \"video/x-mpegurl\"." -msgid "Suffix for live streaming:" -msgstr "Dateierweiterung für das Streamen von LiveTV:" - msgid "The suffix to use for live streaming. Defaults to \"m3u\"." msgstr "Die zu verwendende Dateierweiterung für das Streamen von LiveTV. Vorgabe ist \"m3u\"." -msgid "MIME type for recordings streaming:" -msgstr "MIME-Typ für das Streamen von Aufnahmen:" - msgid "The MIME type to send when using recordings streaming. Defaults to \"video/x-mpegurl\"." msgstr "Der zu sendende MIME-Type für das Streamen von Aufnahmen. Vorgabe ist \"video/x-mpegurl\"." -msgid "Suffix for recordings streaming:" -msgstr "Dateierweiterung für das Streamen von Aufnahmen:" - msgid "The suffix to use for recordings streaming. Defaults to \"m3u\"." msgstr "Dateierweiterung für das Streamen von Aufnahmen. Vorgabe ist \"m3u\"." @@ -1007,50 +900,23 @@ msgstr "Bitte passen Sie den Rechnernamen an Ihre lokale Umgebung an!" msgid "<p>This section is for experts <strong>only</strong>, i.e. you know what you are doing!</p>" msgstr "<p>Dieser Bereich ist <strong>nur</strong> für Experten, d.h. Sie wissen was Sie tun!</p>" -msgid "Update EPG data in background:" -msgstr "EPG-Daten im Hintergrund aktualisieren:" - msgid "If set to \"yes\" VDRAdmin-AM will periodically refresh its local EPG cache. Else the EPG will be refreshed if the user accesses any EPG view at the web interface and the timeout set at \"Update EPG every\" has been reached." msgstr "Wenn dies aktiviert ist, dann aktualisiert VDRAdmin-AM seine lokalen EPG-Daten peridoisch im Hintergrund. Andernfalls werden die EPG-Daten aktualisiert wenn der Benutzer eine EPG-Ansicht auf der Web-Oberfläche öffnet und die bei \"EPG aktualisieren alle\" eingestellt Zeitspanne abgelaufen ist." -msgid "Update EPG every:" -msgstr "EPG aktualisieren alle:" - msgid "The interval, the EPG data is refreshed from VDR and AutoTimer updates are performed (if AutoTimer feature is used)." msgstr "Das Intervall indem die EPG Daten aktualisiert werden und nach neuen AutoTimern gesucht wird, falls die AutoTimer-Funktion genutzt wird." msgid "<p>If you want to limit the number of channels used in some parts of VDRAdmin-AM, this is for you!</p><p>Use the radio buttons to activate or deactivate the wanted channels in the named menu.</p><p>To add channels to the list of wanted channels you have to select them in the left side selectbox and click <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. If you want to remove channels from the list of wanted channels you have to select them in the right side selectbox and click <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" msgstr "<p>Hiermit können Sie die Anzahl der Kanäle für einige Teilbereiche von VDRAdmin-AM einschränken.</p><p>Verwenden Sie die \"Ja\"/\"Nein\"-Knöpfe um die Kanalauswahl für das angegebene Menü zu aktivieren oder deaktivieren.</p><p>Zum Hinzufügen von Kanälen zu der Liste der ausgewählten Kanäle müssen Sie die gewünschten Kanäle im linken Auswahlfeld markieren und die Schaltfläche <input type=\"submit\" class=\"submit\" value=\">>>>>\"/> anklicken. Um Kanäle aus dieser Liste wieder zu entfernen müssen diese im rechten Auswahlfeld markiert werden und danach die Schaltfläche <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/> angeklickt werden.</p>" -msgid "Show channels without EPG information:" -msgstr "Kanäle ohne EPG Informationen anzeigen:" - msgid "Usually channels that don't have EPG information are hidden in all EPG views. If you don't want them to be hidden you have to set this option to \"yes\"." msgstr "Normalerweise werden Kanäle, die keine EPG Information haben, in den EPG Ansichten ausgeblendet. Wenn diese Option auf \"ja\" steht, dann werden diese auch angezeigt." -msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" -msgstr "<p>Hier finden Sie eine Liste aller AutoTimer, die VDRAdmin-AM kennt.</p><p>Die Liste zeigt Ihnen einige Informationen zu den AutoTimern. Sie können die Sortierung dieser Liste ändern indem Sie auf die Spaltenüberschriften klicken.</p><p>Für jeden AutoTimer haben Sie die folgenden Möglichkeiten:<dl><dt>Setzen seines Zustands</dt><dd>Durch klicken auf \"Ja\" oder \"Nein\" in der \"Aktiv\" Spalte können Sie den AutoTimer aktivieren bzw. deaktivieren.</dd><dt>Schnellanzeige seiner Priorität und Lebenszeit</dt><dd>Der Mauszeiger muss dazu über den Namen des AutoTimers bewegt werden.</dd><dt>Bearbeiten eines AutoTimers</dt><dd>Sie können einen AutoTimer bearbeiten indem Sie auf <img src=\"bilder/edit.png\" alt=\"edit\" /> klicken.</dd><dt>Löschen eines AutoTimers</dt><dd>Um einen Timer zu löschen klicken Sie bitte auf <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Der Status eines jeden AutoTimers wird durch eine bestimmte Farbe angezeigt:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Der AutoTimer ist OK und wird automatisch übereinstimmende Sendungen programmieren.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Der AutoTimer ist nicht aktiv.</p><p>Zusätzlich zu diesen Funktionen können Sie einen neuen AutoTimer anlegen indem Sie die Schaltfläche <input type=\"submit\" class=\"submit\" value=\"Neuer AutoTimer\"/> am oberen Rand anklicken. Am unteren Bildschirmrand finden Sie die Schaltfläche <input type=\"submit\" class=\"submit\" value=\"Ausgewählte AutoTimer löschen\"/>, mit der Sie alle AutoTimer, die Sie in der Liste in der letzten Spalte mit einem Haken versehen haben, auf einmal löschen können.</p><p>Mit der Schaltfläche <input type=\"submit\" class=\"submit\" value=\"Manuelles Update\"/> können Sie VDRAdmin-AM veranlassen sich mit dem VDR zu verbinden, die aktuellen EPG Daten zu holen und anschliessend nach übereinstimmenden AutoTimern zu suchen.</p>" - -msgid "Your Browser does not support frames!" -msgstr "Ihr Browser unterstützt keine Frames!" - -msgid "Rename Recording" -msgstr "Aufnahme umbenennen" - -msgid "Original Name of Recording:" -msgstr "Alter Titel der Aufnahme:" - -msgid "New Name of Recording:" -msgstr "Neuer Titel der Aufnahme:" - -msgid "Subtitle:" -msgstr "Untertitel:" - -msgid "Rename" -msgstr "Umbenennen" +msgid "Edit Timer" +msgstr "Timer editieren" -msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" -msgstr "<p>Hier sehen Sie eine Liste aller Aufnahmen, die auf dem VDR bereit stehen. In der Kopfzeile können Sie den gesamten und den freien Plattenplatz des VDR ablesen.</p><p>Dies Liste zeigt Ihnen einige Informationen zu den Aufnahmen. Sie können die Sortierung ändern indem Sie auf die Spaltenüberschriften klicken. Über der Liste sehen Sie den Navigationspfad. Wenn Sie den Inhalt eines zuvor besuchten Verzeichnisses sehen wollen, dann klicken Sie einfach auf den Namen des Verzeichnisses in diesem Pfad.</p><p>Jede Zeile enthält folgende Information:<dl><dt>Datum</dt><dd>Das Datum an dem die Aufnahme stattgefunden hat. Im Falle eines Verzeichnisses wird hier die Anzahl der enthaltenen Aufnahmen angezeigt.</dd><dt>Uhrzeit</dt><dd>Die Uhrzeit zu der die Aufnahme stattgefunden hat. Im Falle eines Verzeichnisses wird hier die Anzahl der <strong>neuen</strong> Aufnahmen in diesem Verzeichnis angezeigt.</dd><dt>Name</dt><dd>Der Name der Aufnahme oder des Verzeichnisses. Klicken Sie ihn an um die Zusammenfassung der Aufnahme anzuzeigen oder um in das Verzeichnis zu wechseln.</dd><dt>Umbenennen (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Umbenennen einer Aufnahme.<br /><h4>Achtung:</h4>Dies funktioniert nur, wenn der VDR das <u>RENR</u> SVDRPort Kommando versteht. Dieses ist nicht im Standard-VDR enthalten sondern kann durch einen Patch hinzugefügt werden. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> und <span class=\"ref_file\">enAIO-v2.2+</span> bieten dieses Kommando.</dd><dt>Löschen (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Löschen einer Aufnahme.</dd><dt>Streamen (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>Diese Spalte wird nur angezeigt, wenn Sie auf der <span class=\"ref_menu\">Konfiguration</span> Seite <span class=\"ref_label\">Aufnahmen streamen</span> aktiviert und konfiguriert haben. Sie können dann die Aufnahme auf Ihrem PC anschauen.</dd></dl></p><p>Zusätzlich zu diesen Funktionen können Sie mehrere Aufnahmen auf einmal löschen, indem Sie ein Häkchen in der vorletzten Spalte dieser Aufnahmen setzen und dann die Schaltfläche <input type=\"submit\" class=\"submit\" value=\"Ausgewählte Aufnahmen löschen\"/> anklicken.</p><p>Wenn Sie den Pfad zu den VDR Konfigurationsdateien eingestellt haben und es dort die Datei <span class=\"ref_file\">reccmds.conf</span> gibt, können Sie die darin enthaltenen Befehle für die ausgewählten Aufnahmen ausführen. Dazu wählen Sie den gewünschten Befehl in der Schaltfläche neben <span class=\"ref_label\">Befehle:</span> aus und klicken dann auf <input type=\"submit\" class=\"submit\" value=\"Ausführen\"/>.</p><p>Mit der Schaltfläche <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> können Sie das Neuladen der VDR-Aufnahmenliste forcieren.</p>" +msgid "Edit EPG" +msgstr "EPG bearbeiten" msgid "<p>Here you can edit the descriptive fields of an existing EPG entry.</p>" msgstr "<p>Hier können Sie die Beschreibung eines existierenden EPG-Eintrags bearbeiten.</p>" @@ -1094,134 +960,118 @@ msgstr "Audiospuren (unveränderbar)" msgid "If available this field shows the audio track(s). It cannot be changed." msgstr "Die verfügbaren Audiospuren. Das Feld kann nicht verändert werden." -msgid "Duration:" -msgstr "Dauer:" - -msgid "min" -msgstr "min" - -msgid "Transponder:" -msgstr "Transponder:" - -msgid "CA-System:" -msgstr "CA-System:" - -msgid "New Timer" -msgstr "Neuer Timer" - -msgid "Date" -msgstr "Datum" - -msgid "Edit timer status?" -msgstr "Timerstatus ändern?" +msgid "No Help Available" +msgstr "Keine Hilfe verfügbar" -msgid "This timer is inactive!" -msgstr "Diese Aufnahme ist deaktiviert!" +msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgstr "Bisher keine Hilfe vorhanden. Zum Hinzufügen oder Ändern eines Textes bitte an <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a> wenden." -msgid "This timer is impossible!" -msgstr "Diese Aufnahme ist nicht möglich!" +msgid "Recordings" +msgstr "Aufnahmen" -msgid "No more timers on other transponders possible!" -msgstr "Keine weiteren Aufnahmen auf anderen Transpondern mehr möglich!" +msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" +msgstr "<p>Hier sehen Sie eine Liste aller Aufnahmen, die auf dem VDR bereit stehen. In der Kopfzeile können Sie den gesamten und den freien Plattenplatz des VDR ablesen.</p><p>Dies Liste zeigt Ihnen einige Informationen zu den Aufnahmen. Sie können die Sortierung ändern indem Sie auf die Spaltenüberschriften klicken. Über der Liste sehen Sie den Navigationspfad. Wenn Sie den Inhalt eines zuvor besuchten Verzeichnisses sehen wollen, dann klicken Sie einfach auf den Namen des Verzeichnisses in diesem Pfad.</p><p>Jede Zeile enthält folgende Information:<dl><dt>Datum</dt><dd>Das Datum an dem die Aufnahme stattgefunden hat. Im Falle eines Verzeichnisses wird hier die Anzahl der enthaltenen Aufnahmen angezeigt.</dd><dt>Uhrzeit</dt><dd>Die Uhrzeit zu der die Aufnahme stattgefunden hat. Im Falle eines Verzeichnisses wird hier die Anzahl der <strong>neuen</strong> Aufnahmen in diesem Verzeichnis angezeigt.</dd><dt>Name</dt><dd>Der Name der Aufnahme oder des Verzeichnisses. Klicken Sie ihn an um die Zusammenfassung der Aufnahme anzuzeigen oder um in das Verzeichnis zu wechseln.</dd><dt>Umbenennen (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Umbenennen einer Aufnahme.<br /><h4>Achtung:</h4>Dies funktioniert nur, wenn der VDR das <u>RENR</u> SVDRPort Kommando versteht. Dieses ist nicht im Standard-VDR enthalten sondern kann durch einen Patch hinzugefügt werden. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> und <span class=\"ref_file\">enAIO-v2.2+</span> bieten dieses Kommando.</dd><dt>Löschen (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Löschen einer Aufnahme.</dd><dt>Streamen (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>Diese Spalte wird nur angezeigt, wenn Sie auf der <span class=\"ref_menu\">Konfiguration</span> Seite <span class=\"ref_label\">Aufnahmen streamen</span> aktiviert und konfiguriert haben. Sie können dann die Aufnahme auf Ihrem PC anschauen.</dd></dl></p><p>Zusätzlich zu diesen Funktionen können Sie mehrere Aufnahmen auf einmal löschen, indem Sie ein Häkchen in der vorletzten Spalte dieser Aufnahmen setzen und dann die Schaltfläche <input type=\"submit\" class=\"submit\" value=\"Ausgewählte Aufnahmen löschen\"/> anklicken.</p><p>Wenn Sie den Pfad zu den VDR Konfigurationsdateien eingestellt haben und es dort die Datei <span class=\"ref_file\">reccmds.conf</span> gibt, können Sie die darin enthaltenen Befehle für die ausgewählten Aufnahmen ausführen. Dazu wählen Sie den gewünschten Befehl in der Schaltfläche neben <span class=\"ref_label\">Befehle:</span> aus und klicken dann auf <input type=\"submit\" class=\"submit\" value=\"Ausführen\"/>.</p><p>Mit der Schaltfläche <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> können Sie das Neuladen der VDR-Aufnahmenliste forcieren.</p>" -msgid "Timer OK." -msgstr "Diese Aufnahme ist möglich." +msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" +msgstr "" +"<p>Hier finden Sie eine Liste von allen Timern, die VDR kennt.</p><p>Im oberen Bereich finden Sie eine grafische Repräsentation der Timer für einen Tag. Dies vermittelt Ihnen einen schnellen Überblick darüber, was an einem Tag programmiert wurde und hilft Ihnen beim Erkennen von überschneidenden Timern. Wenn Sie den Mauszeiger über einen farbigen Bereich bewegen erfahren Sie seinen Namen, die Priorität und Lebenszeit sowie seine Dauer.</p><p>Unterhalb der grafischen Anzeige sehen Sie eine Liste der programmierten Timer. Sie können die Sortierung der Liste ändern indem Sie auf die gewünschte Spaltenüberschrift klicken.</p><p>Für jeden Timer haben Sie die folgenden Möglichkeiten:<dl><dt>Setzen seines Zustands</dt><dd>Dies erfolgt durch Anklicken von \"Ja\", \"Nein\", \"VPS\" oder \"Auto\" in der \"Aktiv\" Spalte.</dd><dt>Schnellanzeige seiner Priorität und Lebenszeit</dt><dd>Der Mauszeiger muss dazu über den Namen des Timers bewegt werden.</dd><dt>Anzeigen seinen EPG Eintrags</dt><dd>Bei Timern, bei denen die Option <span class=\"ref_label\">Automatische Timer-Überwachung</span> auf \"Sendungskennung\" gesetzt ist, kann durch Anklicken des Timernamens der zugehörige EPG Eintrag angezeigt werden.</dd><dt>Bearbeiten eines Timers</dt><dd>Sie können einen Timer bearbeiten indem Sie auf <img src=\"bilder/edit.png\" alt=\"edit\" /> klicken.</dd><dt>Löschen eines Timers</dt><dd>Um einen Timer zu löschen klicken Sie bitte auf <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Der Status eines jeden Timers wird durch eine bestimmte Farbe angezeigt:<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Der Timer ist OK und wird aufnehmen.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Der Timer überschneidet sich mit anderen Timern. Das ist nicht kritisch, wenn genügend DVB-Karten für die parallelen Aufnahmen vorhanden sind.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Der Timer ist kritisch und wird höchst wahrscheinlich <strong>nicht</strong> aufnehmen.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Der Timer ist nicht aktiv.\n" +"</p><p>Zusätzlich zu diesen Funktionen können Sie einen neuen Timer programmieren indem Sie die Schaltfläche <input type=\"submit\" class=\"submit\" value=\"Neuer Timer\"/>am oberen Bildschirmrand anklicken. Am unteren Bildschirmrand finden Sie die Schaltfläche <input type=\"submit\" class=\"submit\" value=\"Ausgewählte Timer löschen\"/>, mit der Sie alle Timer, die Sie in der Liste in der letzten Spalte mit einem Haken versehen haben, auf einmal löschen können.</p><p>Sie können alle ausgewählten Timer mit den entsprechenden Schaltflächen auch aktivieren bzw. deaktivieren.</p>" -msgid "Auto" -msgstr "Auto" +msgid "<p>Here you can edit a timer's settings.</p>" +msgstr "<p>Hier können Sie die Einstellungen eines Timers bearbeiten.</p>" -msgid "activate" -msgstr "Aktiviere" +msgid "Timer Active:" +msgstr "Timer aktiv:" -msgid "inactivate" -msgstr "Deaktiviere" +msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." +msgstr "Aktivieren bzw. Deaktivieren des Timers. Deaktivierte Timer werden weiterhin in der Liste der verfügbaren Timer geführt, so dass sie später wieder aktiviert werden können. In der Zwischenzeit nehmen Sie dann aber nichts auf." -msgid "selected timers" -msgstr "ausgewählte Timer" +msgid "AutoTimer Checking:" +msgstr "Automatische Timer-Überwachung:" -msgid "Delete Selected Timers" -msgstr "Ausgewählte Timer löschen" +msgid "Depending on how this timer has been programmed you have up to three possible settings:" +msgstr "Die möglichen Optionen sind abhängig davon, wie der Timer programmiert wurde:" -msgid "No timers defined!" -msgstr "Es wurden noch keine Timer angelegt!" +msgid "Transmission Identification" +msgstr "Sendungskennung" -msgid "EPG Search Blacklists" -msgstr "EPG Search Ausschlusslisten" +msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." +msgstr "Der Timer wird anhand der Identifikation, die die zugehörige Sendung im EPG besitzt, überwacht. Bitte beachten Sie, dass dies nur funktioniert, wenn die Identifikation im EPG fest und eindeutig ist! Diese Option ist nicht verfügbar, wenn der Timer im VDR programmiert wurde." -msgid "New Blacklist" -msgstr "Neue Ausschlussliste" +msgid "Time" +msgstr "Uhrzeit" -msgid "Search pattern" -msgstr "Suchbegriff" +msgid "Monitor this timer using the start and stop time." +msgstr "Der Timer wird anhand seiner Start- und Stoppzeit überwacht." -msgid "From" -msgstr "Von" +msgid "off" +msgstr "aus" -msgid "To" -msgstr "Bis" +msgid "Do not monitor this timer." +msgstr "Der Timer wird nicht überwacht." -msgid "Delete blacklist?" -msgstr "Ausschlussliste löschen?" +msgid "The channel to record." +msgstr "Der aufzunehmende Kanal." -msgid "Delete Selected Blacklists" -msgstr "Ausgewählte Ausschlusslisten löschen" +msgid "Day Of Recording:" +msgstr "Tag der Aufnahme:" -msgid "Delete all selected blacklists?" -msgstr "Alle ausgewählten Ausschlusslisten wirklich löschen?" +msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." +msgstr "Der Tag an dem der Timer aktiv werden soll. Der Tag kann in zwei Formaten eingegeben werden:<ul><li>Zwei Ziffern (TT). Es wird der aktuelle Monat und das aktuelle Jahr verwendet.</li><li>ISO-Norm (JJJJ-MM-TT). Damit können Sie Timer soweit in der Zukunft programmieren wie Sie wollen.</li></ul>Für den Fall, dass Sie wiederkehrende Timer programmieren wollen, können Sie die sieben Schaltflächen unterhalb des Textfeldes verwenden. Markieren Sie einfach das Feld des Tages an dem der Timer aktiv werden soll." -msgid "EPG search" -msgstr "EPG search" +msgid "Start Time:" +msgstr "Startzeit:" -msgid "Use template" -msgstr "Von Vorlage" +msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Dies ist die Startzeit der Aufnahme. Das erste Textfeld ist für die Stunde, das zweite für die Minuten." -msgid "New Search" -msgstr "Neue Suche" +msgid "End Time:" +msgstr "Endzeit:" -msgid "Action" -msgstr "Aktion" +msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Die Uhrzeit zu der die Aufnahme gestoppt werden soll. Das erste Textfeld ist für die Stunde, das zweite für die Minuten." -msgid "Find" -msgstr "Suche starten" +msgid "Title of Recording:" +msgstr "Titel der Aufnahme:" -msgid "Show Favorites" -msgstr "Favoriten anzeigen" +msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." +msgstr "Der <strong>Dateiname</strong> den dieser Timer der Aufnahme geben wird. Sollen Unterverzeichnisse angegeben werden, so müssen diese mit '~' getrennt werden, da '/' auch Teil eines regulären Programmnamens sein kann.<br /><br />Die Schlüsselwörter <strong>TITLE</strong> und <strong>EPISODE</strong> werden, falls vorhanden, mit der Titel- bzw. Untertitel-Information aus dem EPG zur Zeit der Aufnahme ersetzt, wenn diese Daten im EPG vorhanden sind. Sollten diese Informationen nicht verfügbar sein, so wird für <strong>TITLE</strong> der Kanalname und für <strong>EPISODE</strong> ein Leerzeichen verwendet." -msgid "Delete Selected Searches" -msgstr "Ausgewählte Suchen löschen" +msgid "Summary:" +msgstr "Zusammenfassung:" -msgid "Delete all selected searches?" -msgstr "Alle ausgewählten Suchen wirklich löschen?" +msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." +msgstr "Beliebiger Text, der die von diesem Timer erstellte Aufnahme beschreibt. Wenn dieses Feld nicht leer ist wird der Text in die <span class=\"ref_file\">summary.vdr</span> bzw. <span class=\"ref_file\">info.vdr</span> der Aufnahme geschrieben." -msgid "Execute Selected Searches" -msgstr "Ausgewählte Suchen ausführen" +msgid "Your Browser does not support frames!" +msgstr "Ihr Browser unterstützt keine Frames!" -msgid "Duration" -msgstr "Dauer" +msgid "What's On Now?" +msgstr "Was läuft jetzt?" -msgid "Template:" -msgstr "Template:" +msgid "Playing Today?" +msgstr "Was läuft heute?" -msgid "Also used for other EPG views!" -msgstr "Wird auch für andere EPG-Ansichten verwendet!" +msgid "Remote Control" +msgstr "Fernbedienung" -msgid "Bandwidth of Streams:" -msgstr "Bandbreite des Streams:" +msgid "Watch TV" +msgstr "Fernseher" -msgid "URL:" -msgstr "URL:" +msgid "Commands" +msgstr "Befehle" -msgid "Title:" -msgstr "Titel:" +msgid "Search" +msgstr "Suchen" -msgid "User-defined search:" -msgstr "Benutzerdefinierte Suche:" +msgid "Authorization Required" +msgstr "Autorisierung erforderlich" -msgid "In \"AutoTimer\"?" -msgstr "Bei \"AutoTimer\"?" +msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." +msgstr "Dieser Server kann nicht bestätigen, dass Sie berechtigt sind, auf das angeforderte Dokument zuzugreifen. Entweder haben Sie falsche Anmeldedaten angegeben (z.B. falsches Passwort) oder Ihr Browser kann die Anmeldedaten nicht übermitteln." -msgid "Apply" -msgstr "Anwenden" +msgid "VPS" +msgstr "VPS" msgid "close" msgstr "schließen" @@ -1241,23 +1091,77 @@ msgstr "Videospuren:" msgid "Audio tracks:" msgstr "Audiospuren:" +msgid "Video tracks" +msgstr "Videospuren" + +msgid "Audio tracks" +msgstr "Audiospuren" + +msgid "TV select" +msgstr "TV umschalten" + +msgid "Stream" +msgstr "Stream" + +msgid "Channel group:" +msgstr "Kanalgruppe:" + +msgid "Go!" +msgstr "Go!" + +msgid "Search for other show times" +msgstr "Nach Wiederholungen suchen" + +msgid "No Information" +msgstr "keine Infos" + +msgid "No EPG information available" +msgstr "Es sind keine EPG Informationen vorhanden" + +msgid "Playing Today" +msgstr "Was läuft heute" + +msgid "starting at" +msgstr "ab" + +msgid "What's on:" +msgstr "Was läuft:" + +msgid "at" +msgstr "um" + msgid "now" msgstr "jetzt" msgid "to" msgstr "bis" +msgid "Duration:" +msgstr "Dauer:" + +msgid "min" +msgstr "min" + msgid "at:" msgstr "um:" msgid "You need JavaScript to use the timeline!" msgstr "Für die Zeitleiste muss JavaScript aktiviert sein!" -msgid "Authorization Required" -msgstr "Autorisierung erforderlich" +msgid "Rename Recording" +msgstr "Aufnahme umbenennen" -msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." -msgstr "Dieser Server kann nicht bestätigen, dass Sie berechtigt sind, auf das angeforderte Dokument zuzugreifen. Entweder haben Sie falsche Anmeldedaten angegeben (z.B. falsches Passwort) oder Ihr Browser kann die Anmeldedaten nicht übermitteln." +msgid "Original Name of Recording:" +msgstr "Alter Titel der Aufnahme:" + +msgid "New Name of Recording:" +msgstr "Neuer Titel der Aufnahme:" + +msgid "Subtitle:" +msgstr "Untertitel:" + +msgid "Rename" +msgstr "Umbenennen" msgid "Total:" msgstr "Total:" @@ -1268,6 +1172,9 @@ msgstr "h" msgid "Free:" msgstr "Frei:" +msgid "Date" +msgstr "Datum" + msgid "Total" msgstr "Gesamt" @@ -1289,6 +1196,9 @@ msgstr "Neu einlesen" msgid "Commands:" msgstr "Befehle:" +msgid "Really run this command?" +msgstr "Diesen Befehl wirklich ausführen?" + msgid "Delete Selected Recordings" msgstr "Ausgewählte Aufnahmen löschen" @@ -1298,6 +1208,105 @@ msgstr "Ausgewählte Aufnahmen wirklich löschen?" msgid "No recordings available" msgstr "Es sind keine Aufnahmen vorhanden" +msgid "Transponder:" +msgstr "Transponder:" + +msgid "CA-System:" +msgstr "CA-System:" + +msgid "New Timer" +msgstr "Neuer Timer" + +msgid "Edit timer status?" +msgstr "Timerstatus ändern?" + +msgid "This timer is inactive!" +msgstr "Diese Aufnahme ist deaktiviert!" + +msgid "This timer is impossible!" +msgstr "Diese Aufnahme ist nicht möglich!" + +msgid "No more timers on other transponders possible!" +msgstr "Keine weiteren Aufnahmen auf anderen Transpondern mehr möglich!" + +msgid "Timer OK." +msgstr "Diese Aufnahme ist möglich." + +msgid "Auto" +msgstr "Auto" + +msgid "activate" +msgstr "Aktiviere" + +msgid "inactivate" +msgstr "Deaktiviere" + +msgid "selected timers" +msgstr "ausgewählte Timer" + +msgid "Delete Selected Timers" +msgstr "Ausgewählte Timer löschen" + +msgid "No timers defined!" +msgstr "Es wurden noch keine Timer angelegt!" + +msgid "Create New Timer" +msgstr "Neuen Timer anlegen" + +msgid "Buffer:" +msgstr "Puffer:" + +msgid "Use VPS:" +msgstr "VPS verwenden:" + +msgid "readonly" +msgstr "unveränderbar" + +msgid "Timer has been set by AutoTimer pattern:" +msgstr "Timer wurde gesetzt vom AutoTimer Muster:" + +msgid "TV" +msgstr "Fernseher" + +msgid "Interval:" +msgstr "Intervall:" + +msgid "sec." +msgstr "sek" + +msgid "G" +msgstr "G" + +msgid "Grab the picture!" +msgstr "Hole das Bild!" + +msgid "Size:" +msgstr "Größe:" + +msgid "Open in separate window" +msgstr "Öffne eigenes Fenster" + +msgid "VDR Commands" +msgstr "VDR Befehle" + +msgid "Export channels as playlist:" +msgstr "Kanäle als Playlist exportieren:" + +msgid "Number of lines to show:" +msgstr "Anzahl der anzuzeigenden Zeilen:" + +msgid "unlimited" +msgstr "alle" + +msgid "SVDRP commands:" +msgstr "SVDRP Befehle:" + +msgid "Commands defined in commands.conf:" +msgstr "In commands.conf definierte Befehle:" + +msgid "Output" +msgstr "Ausgabe" + msgid "What's your VDR hostname (e.g video.intra.net)?" msgstr "Wie lautet der Hostname des VDR (z.B. video.intra.net)?" diff --git a/po/en_US.utf8.po b/po/en_US.utf8.po index 46afe67..a0ef908 100644 --- a/po/en_US.utf8.po +++ b/po/en_US.utf8.po @@ -1,7 +1,7 @@ # Copyright (C) Andreas Mair <andreas@vdr-developer.org> # This file is distributed under the same license as the VDRAdmin-AM package. # -# TRANSLATOR <EMAIL>, 2008 +# TRANSLATOR <EMAIL>, 2009 # # # Translators, if you are not familiar with the PO format, gettext @@ -18,10 +18,10 @@ # msgid "" msgstr "" -"Project-Id-Version: VDRAdmin-AM 3.6.3\n" +"Project-Id-Version: VDRAdmin-AM 3.6.5\n" "Report-Msgid-Bugs-To: Andreas Mair <andreas@vdr-developer.org>\n" -"POT-Creation-Date: 2008-12-18 08:25+0100\n" -"PO-Revision-Date: 2008-12-18 08:25+0100\n" +"POT-Creation-Date: 2009-12-30 13:26+0100\n" +"PO-Revision-Date: 2009-12-30 13:26+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "MIME-Version: 1.0\n" @@ -32,177 +32,108 @@ msgstr "" msgid "ISO-8859-1" msgstr "UTF-8" -msgid "What's On Now?" -msgstr "What's On Now?" - -msgid "Channel group:" -msgstr "Channel group:" - -msgid "What's on:" -msgstr "What's on:" - -msgid "at" -msgstr "at" - -msgid "o'clock" -msgstr "o'clock" - -msgid "More Information" -msgstr "More Information" - -msgid "Channels" -msgstr "Channels" - -msgid "Stream" -msgstr "Stream" - -msgid "TV select" -msgstr "TV select" - -msgid "Search for other show times" -msgstr "Search for other show times" - -msgid "No Information" -msgstr "No Information" - -msgid "Edit" -msgstr "Edit" - -msgid "Record" -msgstr "Record" - -msgid "No EPG information available" -msgstr "No EPG information available" - -msgid "Edit EPG" -msgstr "Edit EPG" - -msgid "Help" -msgstr "Help" - -msgid "Channel" -msgstr "Channel" - -msgid "Time" -msgstr "Time" +msgid "About" +msgstr "About" -msgid "Title" -msgstr "Title" +msgid "License" +msgstr "License" -msgid "Subtitle" -msgstr "Subtitle" +msgid "Authors" +msgstr "Authors" -msgid "Description" -msgstr "Description" +msgid "Current author (VDRAdmin-AM branch):" +msgstr "Current author (VDRAdmin-AM branch):" -msgid "VPS" -msgstr "VPS" +msgid "Original author (VDRAdmin):" +msgstr "Original author (VDRAdmin):" -msgid "Video tracks" -msgstr "Video tracks" +msgid "Translation Team" +msgstr "Translation Team" -msgid "Audio tracks" -msgstr "Audio tracks" +msgid "English:" +msgstr "English:" -msgid "Save" -msgstr "Save" +msgid "German:" +msgstr "German:" -msgid "Cancel" -msgstr "Cancel" +msgid "French:" +msgstr "French:" -msgid "Edit Timer" -msgstr "Edit Timer" +msgid "At the moment unmaintained, former translations by:" +msgstr "At the moment unmaintained, former translations by:" -msgid "<p>Here you can edit a timer's settings.</p>" -msgstr "<p>Here you can edit a timer's settings.</p>" +msgid "Spanish:" +msgstr "Spanish:" -msgid "Timer Active:" -msgstr "Timer Active:" +msgid "Finnish:" +msgstr "Finnish:" -msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." -msgstr "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." +msgid "Dutch:" +msgstr "Dutch:" -msgid "AutoTimer Checking:" -msgstr "AutoTimer Checking:" +msgid "Russian:" +msgstr "Russian:" -msgid "Depending on how this timer has been programmed you have up to three possible settings:" -msgstr "Depending on how this timer has been programmed you have up to three possible settings:" +msgid "Czech:" +msgstr "Czech:" -msgid "Transmission Identification" -msgstr "Transmission Identification" +msgid "Italian:" +msgstr "Italian:" -msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." -msgstr "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." +msgid "Information" +msgstr "Information" -msgid "Monitor this timer using the start and stop time." -msgstr "Monitor this timer using the start and stop time." +msgid "VDRAdmin-AM version:" +msgstr "VDRAdmin-AM version:" -msgid "off" -msgstr "off" +msgid "VDR version:" +msgstr "VDR version:" -msgid "Do not monitor this timer." -msgstr "Do not monitor this timer." +msgid "Supported features in VDR:" +msgstr "Supported features in VDR:" -msgid "Channel:" -msgstr "Channel:" +msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgstr "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgid "The channel to record." -msgstr "The channel to record." +msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgstr "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgid "Day Of Recording:" -msgstr "Day Of Recording:" +msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgstr "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." -msgstr "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." +msgid "Getting Help and Reporting Bugs" +msgstr "Getting Help and Reporting Bugs" -msgid "Start Time:" -msgstr "Start Time:" +msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." +msgstr "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." -msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." +msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" +msgstr "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" -msgid "End Time:" -msgstr "End Time:" +msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." +msgstr "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." -msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." +msgid "AutoTimer" +msgstr "AutoTimer" msgid "Priority:" msgstr "Priority:" -msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." -msgstr "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." - msgid "Lifetime:" msgstr "Lifetime:" -msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." -msgstr "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." - -msgid "Title of Recording:" -msgstr "Title of Recording:" - -msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." -msgstr "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." - -msgid "Summary:" -msgstr "Summary:" - -msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." -msgstr "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." - -msgid "Go!" -msgstr "Go!" - -msgid "AutoTimer" -msgstr "AutoTimer" - msgid "New AutoTimer" msgstr "New AutoTimer" +msgid "Help" +msgstr "Help" + msgid "Active" msgstr "Active" +msgid "Channel" +msgstr "Channel" + msgid "Start" msgstr "Start" @@ -221,6 +152,9 @@ msgstr "Yes" msgid "No" msgstr "No" +msgid "Edit" +msgstr "Edit" + msgid "Delete timer?" msgstr "Delete timer?" @@ -239,33 +173,6 @@ msgstr "Delete all selected timers?" msgid "No AutoTimers defined!" msgstr "No AutoTimers defined!" -msgid "VDR Commands" -msgstr "VDR Commands" - -msgid "Export channels as playlist:" -msgstr "Export channels as playlist:" - -msgid "Number of lines to show:" -msgstr "Number of lines to show:" - -msgid "unlimited" -msgstr "unlimited" - -msgid "SVDRP commands:" -msgstr "SVDRP commands:" - -msgid "Run" -msgstr "Run" - -msgid "Really run this command?" -msgstr "Really run this command?" - -msgid "Commands defined in commands.conf:" -msgstr "Commands defined in commands.conf:" - -msgid "Output" -msgstr "Output" - msgid "Add New AutoTimer" msgstr "Add New AutoTimer" @@ -284,6 +191,15 @@ msgstr "Search Patterns:" msgid "Search in:" msgstr "Search in:" +msgid "Title" +msgstr "Title" + +msgid "Subtitle" +msgstr "Subtitle" + +msgid "Description" +msgstr "Description" + msgid "Search only on these days:" msgstr "Search only on these days:" @@ -308,12 +224,18 @@ msgstr "Saturday" msgid "Sunday" msgstr "Sunday" +msgid "Channel:" +msgstr "Channel:" + msgid "all" msgstr "all" msgid "Starts After:" msgstr "Starts After:" +msgid "o'clock" +msgstr "o'clock" + msgid "Ends Before:" msgstr "Ends Before:" @@ -338,9 +260,15 @@ msgstr "Remember programmed timers:" msgid "Directory:" msgstr "Directory:" +msgid "Save" +msgstr "Save" + msgid "Test" msgstr "Test" +msgid "Cancel" +msgstr "Cancel" + msgid "Broadcasted" msgstr "Broadcasted" @@ -350,140 +278,254 @@ msgstr "Stored in" msgid "No matches found!" msgstr "No matches found!" -msgid "About" -msgstr "About" +msgid "Configuration" +msgstr "Configuration" -msgid "License" -msgstr "License" +msgid "General Settings" +msgstr "General Settings" -msgid "Authors" -msgstr "Authors" +msgid "Template:" +msgstr "Template:" -msgid "Current author (VDRAdmin-AM branch):" -msgstr "Current author (VDRAdmin-AM branch):" +msgid "Skin:" +msgstr "Skin:" -msgid "Original author (VDRAdmin):" -msgstr "Original author (VDRAdmin):" +msgid "Login Page:" +msgstr "Login Page:" -msgid "Translation Team" -msgstr "Translation Team" +msgid "Number of channels to use:" +msgstr "Number of channels to use:" -msgid "English:" -msgstr "English:" +msgid "Local net (no login required):" +msgstr "Local net (no login required):" -msgid "German:" -msgstr "German:" +msgid "Language:" +msgstr "Language:" -msgid "French:" -msgstr "French:" +msgid "Save settings on exit:" +msgstr "Save settings on exit:" -msgid "At the moment unmaintained, former translations by:" -msgstr "At the moment unmaintained, former translations by:" +msgid "VDR" +msgstr "VDR" -msgid "Spanish:" -msgstr "Spanish:" +msgid "Number of DVB cards:" +msgstr "Number of DVB cards:" -msgid "Finnish:" -msgstr "Finnish:" +msgid "Path to recordings:" +msgstr "Path to recordings:" -msgid "Dutch:" -msgstr "Dutch:" +msgid "Path to configuration files:" +msgstr "Path to configuration files:" -msgid "Russian:" -msgstr "Russian:" +msgid "Path to EPG images:" +msgstr "Path to EPG images:" -msgid "Czech:" -msgstr "Czech:" +msgid "Identification" +msgstr "Identification" -msgid "Italian:" -msgstr "Italian:" +msgid "Username:" +msgstr "Username:" -msgid "Information" -msgstr "Information" +msgid "Password:" +msgstr "Password:" -msgid "VDRAdmin-AM version:" -msgstr "VDRAdmin-AM version:" +msgid "Guest Account:" +msgstr "Guest Account:" -msgid "VDR version:" -msgstr "VDR version:" +msgid "Guest Username:" +msgstr "Guest Username:" -msgid "Supported features in VDR:" -msgstr "Supported features in VDR:" +msgid "Guest Password:" +msgstr "Guest Password:" -msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgstr "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgid "Timeline" +msgstr "Timeline" -msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgstr "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgid "Hours:" +msgstr "Hours:" -msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgstr "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgid "Times:" +msgstr "Times:" -msgid "Getting Help and Reporting Bugs" -msgstr "Getting Help and Reporting Bugs" +msgid "Also used for other EPG views!" +msgstr "Also used for other EPG views!" -msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." -msgstr "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." +msgid "Tooltips:" +msgstr "Tooltips:" -msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" -msgstr "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" +msgid "Active:" +msgstr "Active:" -msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." -msgstr "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." +msgid "Send email after programming timer:" +msgstr "Send email after programming timer:" -msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" -msgstr "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgid "Send email as:" +msgstr "Send email as:" -msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." -msgstr "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." +msgid "Send email to:" +msgstr "Send email to:" -msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Only broadcasts will match if they contain <strong>all</strong> items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as Blacklist-string) or only one episode (when using \"Enterprise~Azati Prime\" as Blacklist-string)." -msgstr "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Only broadcasts will match if they contain <strong>all</strong> items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as Blacklist-string) or only one episode (when using \"Enterprise~Azati Prime\" as Blacklist-string)." +msgid "Mail server:" +msgstr "Mail server:" -msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." -msgstr "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." +msgid "SMTPAuth user:" +msgstr "SMTPAuth user:" -msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." -msgstr "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." +msgid "SMTPAuth password:" +msgstr "SMTPAuth password:" -msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." -msgstr "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." +msgid "Track schedule changes by:" +msgstr "Track schedule changes by:" -msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgid "Broadcast time" +msgstr "Broadcast time" -msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgid "Event id" +msgstr "Event id" -msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." -msgstr "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." +msgid "Timer" +msgstr "Timer" -msgid "The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG." -msgstr "The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG." +msgid "Tooltips in timeline:" +msgstr "Tooltips in timeline:" -msgid "The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG." -msgstr "The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG." +msgid "Tooltips in list:" +msgstr "Tooltips in list:" -msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." -msgstr "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." +msgid "Streaming" +msgstr "Streaming" -msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." -msgstr "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." +msgid "Live Streaming:" +msgstr "Live Streaming:" -msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." -msgstr "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." +msgid "HTTP Port of Streamdev (also possible 3000/ts):" +msgstr "HTTP Port of Streamdev (also possible 3000/ts):" -msgid "Timer" -msgstr "Timer" +msgid "Recordings Streaming:" +msgstr "Recordings Streaming:" -msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" -msgstr "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" +msgid "Path to VDR Recordings on your workstation:" +msgstr "Path to VDR Recordings on your workstation:" -msgid "Playing Today" -msgstr "Playing Today" +msgid "MIME type for live streaming:" +msgstr "MIME type for live streaming:" -msgid "starting at" -msgstr "starting at" +msgid "Suffix for live streaming:" +msgstr "Suffix for live streaming:" + +msgid "MIME type for recordings streaming:" +msgstr "MIME type for recordings streaming:" + +msgid "Suffix for recordings streaming:" +msgstr "Suffix for recordings streaming:" + +msgid "Bandwidth of Streams:" +msgstr "Bandwidth of Streams:" + +msgid "External Search" +msgstr "External Search" + +msgid "URL:" +msgstr "URL:" + +msgid "Title:" +msgstr "Title:" + +msgid "User-defined search:" +msgstr "User-defined search:" + +msgid "Expert" +msgstr "Expert" + +msgid "Update EPG data in background:" +msgstr "Update EPG data in background:" + +msgid "Update EPG every:" +msgstr "Update EPG every:" + +msgid "Channel Selections" +msgstr "Channel Selections" + +msgid "Show channels without EPG information:" +msgstr "Show channels without EPG information:" + +msgid "In \"AutoTimer\"?" +msgstr "In \"AutoTimer\"?" + +msgid "Apply" +msgstr "Apply" + +msgid "EPG Search Blacklists" +msgstr "EPG Search Blacklists" + +msgid "New Blacklist" +msgstr "New Blacklist" + +msgid "Search pattern" +msgstr "Search pattern" + +msgid "From" +msgstr "From" + +msgid "To" +msgstr "To" + +msgid "Delete blacklist?" +msgstr "Delete blacklist?" + +msgid "Delete Selected Blacklists" +msgstr "Delete Selected Blacklists" + +msgid "Delete all selected blacklists?" +msgstr "Delete all selected blacklists?" + +msgid "EPG search" +msgstr "EPG search" + +msgid "EPG Search" +msgstr "EPG Search" + +msgid "Use template" +msgstr "Use template" + +msgid "New Search" +msgstr "New Search" + +msgid "Edit Template" +msgstr "Edit Template" + +msgid "Settings" +msgstr "Settings" + +msgid "Action" +msgstr "Action" + +msgid "Find" +msgstr "Find" + +msgid "Show Favorites" +msgstr "Show Favorites" + +msgid "Delete Selected Searches" +msgstr "Delete Selected Searches" + +msgid "Delete all selected searches?" +msgstr "Delete all selected searches?" + +msgid "Execute Selected Searches" +msgstr "Execute Selected Searches" + +msgid "Duration" +msgstr "Duration" + +msgid "More Information" +msgstr "More Information" + +msgid "Channels" +msgstr "Channels" + +msgid "Record" +msgstr "Record" msgid "Add New Blacklist" msgstr "Add New Blacklist" @@ -494,9 +536,6 @@ msgstr "Edit Blacklist" msgid "Add New Template" msgstr "Add New Template" -msgid "Edit Template" -msgstr "Edit Template" - msgid "Add New Search" msgstr "Add New Search" @@ -512,9 +551,6 @@ msgstr "You didn't select at least one of\\ntitle, subtitle or description.\\nDo msgid "Hide results" msgstr "Hide results" -msgid "Settings" -msgstr "Settings" - msgid "Name:" msgstr "Name:" @@ -692,264 +728,147 @@ msgstr "Delete this template?" msgid "Save as template" msgstr "Save as template" -msgid "Create New Timer" -msgstr "Create New Timer" - -msgid "Buffer:" -msgstr "Buffer:" - -msgid "Use VPS:" -msgstr "Use VPS:" - -msgid "readonly" -msgstr "readonly" - -msgid "Timer has been set by AutoTimer pattern:" -msgstr "Timer has been set by AutoTimer pattern:" - -msgid "No Help Available" -msgstr "No Help Available" - -msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgstr "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgid "Run" +msgstr "Run" msgid "Error!" msgstr "Error!" -msgid "TV" -msgstr "TV" +msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" +msgstr "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" -msgid "Interval:" -msgstr "Interval:" +msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgstr "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" -msgid "sec." -msgstr "sec." +msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." +msgstr "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." -msgid "G" -msgstr "G" +msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Broadcasts will match only if they match <strong>all</strong> configured search items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as blacklist string) or only one episode (when using \"Enterprise~Azati Prime\" as blacklist string)." +msgstr "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Broadcasts will match only if they match <strong>all</strong> configured search items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as blacklist string) or only one episode (when using \"Enterprise~Azati Prime\" as blacklist string)." -msgid "Grab the picture!" -msgstr "Grab the picture!" +msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." +msgstr "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." -msgid "Size:" -msgstr "Size:" +msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." +msgstr "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." -msgid "Open in separate window" -msgstr "Open in separate window" +msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." +msgstr "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." -msgid "Playing Today?" -msgstr "Playing Today?" +msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgid "Timeline" -msgstr "Timeline" +msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgid "EPG Search" -msgstr "EPG Search" +msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." +msgstr "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." -msgid "Recordings" -msgstr "Recordings" +msgid "The number of minutes VDRAdmin-AM subtracts from the broadcast's start time found in the EPG." +msgstr "The number of minutes VDRAdmin-AM subtracts from the broadcast's start time found in the EPG." -msgid "Remote Control" -msgstr "Remote Control" +msgid "The number of minutes VDRAdmin-AM adds to the broadcast's stop time found in the EPG." +msgstr "The number of minutes VDRAdmin-AM adds to the broadcast's stop time found in the EPG." -msgid "Watch TV" -msgstr "Watch TV" +msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." +msgstr "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." -msgid "Commands" -msgstr "Commands" +msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." +msgstr "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." -msgid "Configuration" -msgstr "Configuration" +msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." +msgstr "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." -msgid "Search" -msgstr "Search" +msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." +msgstr "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." + +msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." +msgstr "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" msgstr "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" -msgid "General Settings" -msgstr "General Settings" - -msgid "VDR" -msgstr "VDR" - -msgid "Identification" -msgstr "Identification" - -msgid "Streaming" -msgstr "Streaming" - -msgid "Expert" -msgstr "Expert" - -msgid "External Search" -msgstr "External Search" - -msgid "Channel Selections" -msgstr "Channel Selections" - -msgid "Skin:" -msgstr "Skin:" - msgid "The skin you want to use." msgstr "The skin you want to use." -msgid "Login Page:" -msgstr "Login Page:" - msgid "The page you want to see at first connect to VDRAdmin-AM." msgstr "The page you want to see at first connect to VDRAdmin-AM." -msgid "Number of channels to use:" -msgstr "Number of channels to use:" - msgid "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." msgstr "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." -msgid "Local net (no login required):" -msgstr "Local net (no login required):" - msgid "Here you can specify an IP address or range that can login without providing login information. For example: \"192.168.0.0/24\" will include any IP starting with \"192.168.0\", \"192.168.0.123/32\" will only match \"192.168.0.123\"." msgstr "Here you can specify an IP address or range that can login without providing login information. For example: \"192.168.0.0/24\" will include any IP starting with \"192.168.0\", \"192.168.0.123/32\" will only match \"192.168.0.123\"." -msgid "Language:" -msgstr "Language:" - msgid "Here you can set the localization VDRAdmin-AM should use." msgstr "Here you can set the localization VDRAdmin-AM should use." -msgid "Save settings on exit:" -msgstr "Save settings on exit:" - msgid "With this option the settings will be saved if VDRAdmin-AM exits. This will also save settings not available on the \"Configuration\" menu like interval and size in TV, sorting in the lists and current view in \"What's on now\"." msgstr "With this option the settings will be saved if VDRAdmin-AM exits. This will also save settings not available on the \"Configuration\" menu like interval and size in TV, sorting in the lists and current view in \"What's on now\"." msgid "Top" msgstr "Top" -msgid "Number of DVB cards:" -msgstr "Number of DVB cards:" - msgid "The number of DVB cards VDR can access. Depending on this value VDRAdmin-AM will calculate critical timers in the <span class=\"ref_menu\">Timer</span> menu." msgstr "The number of DVB cards VDR can access. Depending on this value VDRAdmin-AM will calculate critical timers in the <span class=\"ref_menu\">Timer</span> menu." -msgid "Path to recordings:" -msgstr "Path to recordings:" - msgid "The path to VDR's recordings. It's used so that VDRAdmin-AM can locate the recordings when using <span class=\"ref_label\">Recordings Streaming</span> and <span class=\"ref_file\">reccmds.conf</span> in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "The path to VDR's recordings. It's used so that VDRAdmin-AM can locate the recordings when using <span class=\"ref_label\">Recordings Streaming</span> and <span class=\"ref_file\">reccmds.conf</span> in the <span class=\"ref_menu\">Recordings</span> menu." -msgid "Path to configuration files:" -msgstr "Path to configuration files:" - msgid "The path where VDR's configuration files are located. If this directory contains the file <span class=\"ref_file\">reccmds.conf</span> its content is shown in a selectbox in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "The path where VDR's configuration files are located. If this directory contains the file <span class=\"ref_file\">reccmds.conf</span> its content is shown in a selectbox in the <span class=\"ref_menu\">Recordings</span> menu." -msgid "Path to EPG images:" -msgstr "Path to EPG images:" - msgid "The path where the EPG images are stored." msgstr "The path where the EPG images are stored." -msgid "Username:" -msgstr "Username:" - msgid "The username for the main user, i.e. the user having the most privileges." msgstr "The username for the main user, i.e. the user having the most privileges." -msgid "Password:" -msgstr "Password:" - msgid "The main user's password." msgstr "The main user's password." -msgid "Guest Account:" -msgstr "Guest Account:" - msgid "If you want a user account having only limited privileges, this is for you. The guest user cannot modify anything, it's only allowed to view the EPG, timers, AutoTimers and recordings listings." msgstr "If you want a user account having only limited privileges, this is for you. The guest user cannot modify anything, it's only allowed to view the EPG, timers, AutoTimers and recordings listings." -msgid "Guest Username:" -msgstr "Guest Username:" - msgid "The username for the guest user." msgstr "The username for the guest user." -msgid "Guest Password:" -msgstr "Guest Password:" - msgid "The guest user's password." msgstr "The guest user's password." -msgid "Hours:" -msgstr "Hours:" - msgid "The number of hours to show in the timeline." msgstr "The number of hours to show in the timeline." -msgid "Times:" -msgstr "Times:" - msgid "A comma separated list of times in <strong>hh:mm</strong> format that appear in the selectbox placed at the top." msgstr "A comma separated list of times in <strong>hh:mm</strong> format that appear in the selectbox placed at the top." -msgid "Tooltips:" -msgstr "Tooltips:" - msgid "Here you can (de-)activate the tooltips." msgstr "Here you can (de-)activate the tooltips." -msgid "Active:" -msgstr "Active:" - msgid "Activate or deactivate the AutoTimer function." msgstr "Activate or deactivate the AutoTimer function." -msgid "Send email after programming timer:" -msgstr "Send email after programming timer:" - msgid "VDRAdmin-AM will send an email whenever an event matches an AutoTimer and a timer has been programmed if you enable this feature." msgstr "VDRAdmin-AM will send an email whenever an event matches an AutoTimer and a timer has been programmed if you enable this feature." -msgid "Send email as:" -msgstr "Send email as:" - msgid "Here you set the sending email address of the generated email." msgstr "Here you set the sending email address of the generated email." -msgid "Send email to:" -msgstr "Send email to:" - msgid "The email address the email is sent to." msgstr "The email address the email is sent to." -msgid "Mail server:" -msgstr "Mail server:" - msgid "The outgoing mail server." msgstr "The outgoing mail server." -msgid "SMTPAuth user:" -msgstr "SMTPAuth user:" - msgid "If you need to authenticate yourself at the outgoing mail server, you have to supply the username and the password below. Leaving this field empty will disable SMTPAuth." msgstr "If you need to authenticate yourself at the outgoing mail server, you have to supply the username and the password below. Leaving this field empty will disable SMTPAuth." -msgid "SMTPAuth password:" -msgstr "SMTPAuth password:" - msgid "The password for the SMTPAuth user." msgstr "The password for the SMTPAuth user." -msgid "Tooltips in timeline:" -msgstr "Tooltips in timeline:" - msgid "Here you can (de-)activate the tooltips in the timeline." msgstr "Here you can (de-)activate the tooltips in the timeline." -msgid "Tooltips in list:" -msgstr "Tooltips in list:" - msgid "Here you can (de-)activate the tooltips in the list." msgstr "Here you can (de-)activate the tooltips in the list." @@ -959,51 +878,27 @@ msgstr "Add summary to new timers:" msgid "If you don't want VDRAdmin-AM to add the summary taken from EPG to new timers you can switch it off here." msgstr "If you don't want VDRAdmin-AM to add the summary taken from EPG to new timers you can switch it off here." -msgid "Live Streaming:" -msgstr "Live Streaming:" - msgid "Enable or disable live streaming using the <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. You also have to set the correct <span class=\"ref_label\">HTTP Port for Streamdev</span> below." msgstr "Enable or disable live streaming using the <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. You also have to set the correct <span class=\"ref_label\">HTTP Port for Streamdev</span> below." -msgid "HTTP Port of Streamdev (also possible 3000/ts):" -msgstr "HTTP Port of Streamdev (also possible 3000/ts):" - msgid "Here you have to set the port number your VDR's streamdev server listens for connections. Additionally you can also provide the stream type you like to use." msgstr "Here you have to set the port number your VDR's streamdev server listens for connections. Additionally you can also provide the stream type you like to use." -msgid "Recordings Streaming:" -msgstr "Recordings Streaming:" - msgid "Enable or disable streaming of recordings.<br />Well actually this is no real \"streaming\", but you have to setup your workstation so that it can access VDR's recordings. You can use for example Samba or NFS for this. VDRAdmin-AM simply generates a playlist that contains all parts of the recording and sends this to your browser. If your browser and media player are configured correctly you will see the recording on your workstation's display." msgstr "Enable or disable streaming of recordings.<br />Well actually this is no real \"streaming\", but you have to setup your workstation so that it can access VDR's recordings. You can use for example Samba or NFS for this. VDRAdmin-AM simply generates a playlist that contains all parts of the recording and sends this to your browser. If your browser and media player are configured correctly you will see the recording on your workstation's display." -msgid "Path to VDR Recordings on your workstation:" -msgstr "Path to VDR Recordings on your workstation:" - msgid "This is the path where your workstation can access VDR's recordings. This depends on your VDR and workstation setup, for example \"\\\\vdr\\videos\" or \"V:\\\" (on Windows) or \"/mnt/videos\" (on Linux)." msgstr "This is the path where your workstation can access VDR's recordings. This depends on your VDR and workstation setup, for example \"\\\\vdr\\videos\" or \"V:\\\" (on Windows) or \"/mnt/videos\" (on Linux)." -msgid "MIME type for live streaming:" -msgstr "MIME type for live streaming:" - msgid "The MIME type to send when using live streaming. Defaults to \"video/x-mpegurl\"." msgstr "The MIME type to send when using live streaming. Defaults to \"video/x-mpegurl\"." -msgid "Suffix for live streaming:" -msgstr "Suffix for live streaming:" - msgid "The suffix to use for live streaming. Defaults to \"m3u\"." msgstr "The suffix to use for live streaming. Defaults to \"m3u\"." -msgid "MIME type for recordings streaming:" -msgstr "MIME type for recordings streaming:" - msgid "The MIME type to send when using recordings streaming. Defaults to \"video/x-mpegurl\"." msgstr "The MIME type to send when using recordings streaming. Defaults to \"video/x-mpegurl\"." -msgid "Suffix for recordings streaming:" -msgstr "Suffix for recordings streaming:" - msgid "The suffix to use for recordings streaming. Defaults to \"m3u\"." msgstr "The suffix to use for recordings streaming. Defaults to \"m3u\"." @@ -1019,50 +914,23 @@ msgstr "Please change the hostname to your local needs!" msgid "<p>This section is for experts <strong>only</strong>, i.e. you know what you are doing!</p>" msgstr "<p>This section is for experts <strong>only</strong>, i.e. you know what you are doing!</p>" -msgid "Update EPG data in background:" -msgstr "Update EPG data in background:" - msgid "If set to \"yes\" VDRAdmin-AM will periodically refresh its local EPG cache. Else the EPG will be refreshed if the user accesses any EPG view at the web interface and the timeout set at \"Update EPG every\" has been reached." msgstr "If set to \"yes\" VDRAdmin-AM will periodically refresh its local EPG cache. Else the EPG will be refreshed if the user accesses any EPG view at the web interface and the timeout set at \"Update EPG every\" has been reached." -msgid "Update EPG every:" -msgstr "Update EPG every:" - msgid "The interval, the EPG data is refreshed from VDR and AutoTimer updates are performed (if AutoTimer feature is used)." msgstr "The interval, the EPG data is refreshed from VDR and AutoTimer updates are performed (if AutoTimer feature is used)." msgid "<p>If you want to limit the number of channels used in some parts of VDRAdmin-AM, this is for you!</p><p>Use the radio buttons to activate or deactivate the wanted channels in the named menu.</p><p>To add channels to the list of wanted channels you have to select them in the left side selectbox and click <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. If you want to remove channels from the list of wanted channels you have to select them in the right side selectbox and click <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" msgstr "<p>If you want to limit the number of channels used in some parts of VDRAdmin-AM, this is for you!</p><p>Use the radio buttons to activate or deactivate the wanted channels in the named menu.</p><p>To add channels to the list of wanted channels you have to select them in the left side selectbox and click <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. If you want to remove channels from the list of wanted channels you have to select them in the right side selectbox and click <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" -msgid "Show channels without EPG information:" -msgstr "Show channels without EPG information:" - msgid "Usually channels that don't have EPG information are hidden in all EPG views. If you don't want them to be hidden you have to set this option to \"yes\"." msgstr "Usually channels that don't have EPG information are hidden in all EPG views. If you don't want them to be hidden you have to set this option to \"yes\"." -msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" -msgstr "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" - -msgid "Your Browser does not support frames!" -msgstr "Your Browser does not support frames!" - -msgid "Rename Recording" -msgstr "Rename Recording" - -msgid "Original Name of Recording:" -msgstr "Original Name of Recording:" - -msgid "New Name of Recording:" -msgstr "New Name of Recording:" - -msgid "Subtitle:" -msgstr "Subtitle:" - -msgid "Rename" -msgstr "Rename" +msgid "Edit Timer" +msgstr "Edit Timer" -msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" -msgstr "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" +msgid "Edit EPG" +msgstr "Edit EPG" msgid "<p>Here you can edit the descriptive fields of an existing EPG entry.</p>" msgstr "<p>Here you can edit the descriptive fields of an existing EPG entry.</p>" @@ -1106,134 +974,116 @@ msgstr "Audio tracks (readonly)" msgid "If available this field shows the audio track(s). It cannot be changed." msgstr "If available this field shows the audio track(s). It cannot be changed." -msgid "Duration:" -msgstr "Duration:" - -msgid "min" -msgstr "min" - -msgid "Transponder:" -msgstr "Transponder:" - -msgid "CA-System:" -msgstr "CA-System:" - -msgid "New Timer" -msgstr "New Timer" - -msgid "Date" -msgstr "Date" - -msgid "Edit timer status?" -msgstr "Edit timer status?" +msgid "No Help Available" +msgstr "No Help Available" -msgid "This timer is inactive!" -msgstr "This timer is inactive!" +msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgstr "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgid "This timer is impossible!" -msgstr "This timer is impossible!" +msgid "Recordings" +msgstr "Recordings" -msgid "No more timers on other transponders possible!" -msgstr "No more timers on other transponders possible!" +msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" +msgstr "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" -msgid "Timer OK." -msgstr "Timer OK." +msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" +msgstr "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" -msgid "Auto" -msgstr "Auto" +msgid "<p>Here you can edit a timer's settings.</p>" +msgstr "<p>Here you can edit a timer's settings.</p>" -msgid "activate" -msgstr "activate" +msgid "Timer Active:" +msgstr "Timer Active:" -msgid "inactivate" -msgstr "inactivate" +msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." +msgstr "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." -msgid "selected timers" -msgstr "selected timers" +msgid "AutoTimer Checking:" +msgstr "AutoTimer Checking:" -msgid "Delete Selected Timers" -msgstr "Delete Selected Timers" +msgid "Depending on how this timer has been programmed you have up to three possible settings:" +msgstr "Depending on how this timer has been programmed you have up to three possible settings:" -msgid "No timers defined!" -msgstr "No timers defined!" +msgid "Transmission Identification" +msgstr "Transmission Identification" -msgid "EPG Search Blacklists" -msgstr "EPG Search Blacklists" +msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." +msgstr "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." -msgid "New Blacklist" -msgstr "New Blacklist" +msgid "Time" +msgstr "Time" -msgid "Search pattern" -msgstr "Search pattern" +msgid "Monitor this timer using the start and stop time." +msgstr "Monitor this timer using the start and stop time." -msgid "From" -msgstr "From" +msgid "off" +msgstr "off" -msgid "To" -msgstr "To" +msgid "Do not monitor this timer." +msgstr "Do not monitor this timer." -msgid "Delete blacklist?" -msgstr "Delete blacklist?" +msgid "The channel to record." +msgstr "The channel to record." -msgid "Delete Selected Blacklists" -msgstr "Delete Selected Blacklists" +msgid "Day Of Recording:" +msgstr "Day Of Recording:" -msgid "Delete all selected blacklists?" -msgstr "Delete all selected blacklists?" +msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." +msgstr "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." -msgid "EPG search" -msgstr "EPG search" +msgid "Start Time:" +msgstr "Start Time:" -msgid "Use template" -msgstr "Use template" +msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." -msgid "New Search" -msgstr "New Search" +msgid "End Time:" +msgstr "End Time:" -msgid "Action" -msgstr "Action" +msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." -msgid "Find" -msgstr "Find" +msgid "Title of Recording:" +msgstr "Title of Recording:" -msgid "Show Favorites" -msgstr "Show Favorites" +msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." +msgstr "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." -msgid "Delete Selected Searches" -msgstr "Delete Selected Searches" +msgid "Summary:" +msgstr "Summary:" -msgid "Delete all selected searches?" -msgstr "Delete all selected searches?" +msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." +msgstr "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." -msgid "Execute Selected Searches" -msgstr "Execute Selected Searches" +msgid "Your Browser does not support frames!" +msgstr "Your Browser does not support frames!" -msgid "Duration" -msgstr "Duration" +msgid "What's On Now?" +msgstr "What's On Now?" -msgid "Template:" -msgstr "Template:" +msgid "Playing Today?" +msgstr "Playing Today?" -msgid "Also used for other EPG views!" -msgstr "Also used for other EPG views!" +msgid "Remote Control" +msgstr "Remote Control" -msgid "Bandwidth of Streams:" -msgstr "Bandwidth of Streams:" +msgid "Watch TV" +msgstr "Watch TV" -msgid "URL:" -msgstr "URL:" +msgid "Commands" +msgstr "Commands" -msgid "Title:" -msgstr "Title:" +msgid "Search" +msgstr "Search" -msgid "User-defined search:" -msgstr "User-defined search:" +msgid "Authorization Required" +msgstr "Authorization Required" -msgid "In \"AutoTimer\"?" -msgstr "In \"AutoTimer\"?" +msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." +msgstr "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." -msgid "Apply" -msgstr "Apply" +msgid "VPS" +msgstr "VPS" msgid "close" msgstr "close" @@ -1253,23 +1103,77 @@ msgstr "Video tracks:" msgid "Audio tracks:" msgstr "Audio tracks:" +msgid "Video tracks" +msgstr "Video tracks" + +msgid "Audio tracks" +msgstr "Audio tracks" + +msgid "TV select" +msgstr "TV select" + +msgid "Stream" +msgstr "Stream" + +msgid "Channel group:" +msgstr "Channel group:" + +msgid "Go!" +msgstr "Go!" + +msgid "Search for other show times" +msgstr "Search for other show times" + +msgid "No Information" +msgstr "No Information" + +msgid "No EPG information available" +msgstr "No EPG information available" + +msgid "Playing Today" +msgstr "Playing Today" + +msgid "starting at" +msgstr "starting at" + +msgid "What's on:" +msgstr "What's on:" + +msgid "at" +msgstr "at" + msgid "now" msgstr "now" msgid "to" msgstr "to" +msgid "Duration:" +msgstr "Duration:" + +msgid "min" +msgstr "min" + msgid "at:" msgstr "at:" msgid "You need JavaScript to use the timeline!" msgstr "You need JavaScript to use the timeline!" -msgid "Authorization Required" -msgstr "Authorization Required" +msgid "Rename Recording" +msgstr "Rename Recording" -msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." -msgstr "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." +msgid "Original Name of Recording:" +msgstr "Original Name of Recording:" + +msgid "New Name of Recording:" +msgstr "New Name of Recording:" + +msgid "Subtitle:" +msgstr "Subtitle:" + +msgid "Rename" +msgstr "Rename" msgid "Total:" msgstr "Total:" @@ -1280,6 +1184,9 @@ msgstr "h" msgid "Free:" msgstr "Free:" +msgid "Date" +msgstr "Date" + msgid "Total" msgstr "Total" @@ -1301,6 +1208,9 @@ msgstr "Refresh" msgid "Commands:" msgstr "Commands:" +msgid "Really run this command?" +msgstr "Really run this command?" + msgid "Delete Selected Recordings" msgstr "Delete Selected Recordings" @@ -1310,6 +1220,105 @@ msgstr "Delete all selected recordings?" msgid "No recordings available" msgstr "No recordings available" +msgid "Transponder:" +msgstr "Transponder:" + +msgid "CA-System:" +msgstr "CA-System:" + +msgid "New Timer" +msgstr "New Timer" + +msgid "Edit timer status?" +msgstr "Edit timer status?" + +msgid "This timer is inactive!" +msgstr "This timer is inactive!" + +msgid "This timer is impossible!" +msgstr "This timer is impossible!" + +msgid "No more timers on other transponders possible!" +msgstr "No more timers on other transponders possible!" + +msgid "Timer OK." +msgstr "Timer OK." + +msgid "Auto" +msgstr "Auto" + +msgid "activate" +msgstr "activate" + +msgid "inactivate" +msgstr "inactivate" + +msgid "selected timers" +msgstr "selected timers" + +msgid "Delete Selected Timers" +msgstr "Delete Selected Timers" + +msgid "No timers defined!" +msgstr "No timers defined!" + +msgid "Create New Timer" +msgstr "Create New Timer" + +msgid "Buffer:" +msgstr "Buffer:" + +msgid "Use VPS:" +msgstr "Use VPS:" + +msgid "readonly" +msgstr "readonly" + +msgid "Timer has been set by AutoTimer pattern:" +msgstr "Timer has been set by AutoTimer pattern:" + +msgid "TV" +msgstr "TV" + +msgid "Interval:" +msgstr "Interval:" + +msgid "sec." +msgstr "sec." + +msgid "G" +msgstr "G" + +msgid "Grab the picture!" +msgstr "Grab the picture!" + +msgid "Size:" +msgstr "Size:" + +msgid "Open in separate window" +msgstr "Open in separate window" + +msgid "VDR Commands" +msgstr "VDR Commands" + +msgid "Export channels as playlist:" +msgstr "Export channels as playlist:" + +msgid "Number of lines to show:" +msgstr "Number of lines to show:" + +msgid "unlimited" +msgstr "unlimited" + +msgid "SVDRP commands:" +msgstr "SVDRP commands:" + +msgid "Commands defined in commands.conf:" +msgstr "Commands defined in commands.conf:" + +msgid "Output" +msgstr "Output" + msgid "What's your VDR hostname (e.g video.intra.net)?" msgstr "What's your VDR hostname (e.g video.intra.net)?" @@ -5,11 +5,11 @@ # msgid "" msgstr "" -"Project-Id-Version: VDRAdmin-AM-3.6.3\n" +"Project-Id-Version: VDRAdmin-AM-3.6.4\n" "Report-Msgid-Bugs-To: Andreas Mair <andreas@vdr-developer.org>\n" -"POT-Creation-Date: 2008-12-18 08:25+0100\n" -"PO-Revision-Date: 2008-11-02 19:28+0100\n" -"Last-Translator: r <r@g.c>\n" +"POT-Creation-Date: 2009-12-30 13:26+0100\n" +"PO-Revision-Date: 2008-12-30 17:36+0100\n" +"Last-Translator: Manuel Gomez <mgrojo@gmail.com>\n" "Language-Team: rudiberto <r_jung@web.de>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-1\n" @@ -22,186 +22,107 @@ msgstr "" msgid "ISO-8859-1" msgstr "ISO-8859-1" -msgid "What's On Now?" -msgstr "Estrenos ahora" - -msgid "Channel group:" -msgstr "Grupo de emisoras:" - -msgid "What's on:" -msgstr "Se puede ver:" - -msgid "at" -msgstr " a la/s:" - -msgid "o'clock" -msgstr "h." - -msgid "More Information" -msgstr "ms informacin" - -msgid "Channels" -msgstr "EPG por emisoras" - -msgid "Stream" -msgstr "Flujo" - -msgid "TV select" -msgstr "cambiar canal" - -msgid "Search for other show times" -msgstr "buscar repeticiones" - -msgid "No Information" -msgstr "No hay informacin" - -msgid "Edit" -msgstr "Modificar" - -msgid "Record" -msgstr "Grabar estreno" - -msgid "No EPG information available" -msgstr "No hay informacin de la EPG" - -msgid "Edit EPG" -msgstr "Modificar EPG" - -msgid "Help" -msgstr "Ayuda" - -msgid "Channel" -msgstr "Emisora" - -msgid "Time" -msgstr "hora" +msgid "About" +msgstr "Acerca de" -msgid "Title" -msgstr "Ttulo" +msgid "License" +msgstr "Licencia" -msgid "Subtitle" -msgstr "Subttulo" +msgid "Authors" +msgstr "Autores" -msgid "Description" -msgstr "Resumen" +msgid "Current author (VDRAdmin-AM branch):" +msgstr "Autor actual (VDRAdmin-AM):" -msgid "VPS" -msgstr "VPS" +msgid "Original author (VDRAdmin):" +msgstr "Autor original (VDRAdmin):" -msgid "Video tracks" -msgstr "Pistas de video:" +msgid "Translation Team" +msgstr "Equipo de traduccin" -msgid "Audio tracks" -msgstr "Pistas de audio:" +msgid "English:" +msgstr "Ingls:" -msgid "Save" -msgstr "Guardar" +msgid "German:" +msgstr "Alemn:" -msgid "Cancel" -msgstr "Cancelar" +msgid "French:" +msgstr "Francs:" -msgid "Edit Timer" -msgstr "Modificar programacin" +msgid "At the moment unmaintained, former translations by:" +msgstr "De momento no se actualiza, traducciones anteriores de:" -msgid "<p>Here you can edit a timer's settings.</p>" -msgstr "<p>Aqu se puede modificar ajustes de las programaciones.</p>" +msgid "Spanish:" +msgstr "Espaol:" -msgid "Timer Active:" -msgstr "Programacin activada:" +msgid "Finnish:" +msgstr "Finlands:" -msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." -msgstr "Activar o desactivar esta programacin. Programaciones desactivadas se encuentran todavia en la lista de las programaciones. Asi se puede activarse ms tarde. Pero significar que no grabar mientras estan desactivadas." +msgid "Dutch:" +msgstr "Holands:" -msgid "AutoTimer Checking:" -msgstr "Autovigilancia de las programaciones:" +msgid "Russian:" +msgstr "Ruso:" -msgid "Depending on how this timer has been programmed you have up to three possible settings:" -msgstr "Depende como se programado la programacin tienes tres ajustes posibles:" +msgid "Czech:" +msgstr "Checo:" -msgid "Transmission Identification" -msgstr "Identificador de la emisora" +msgid "Italian:" +msgstr "Italiano:" -msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." -msgstr "Monitorizar esta programacin utilizando la identificacin del EPG. Ten en cuenta, que ste slo funccionar si el identificador es un valor fijo y unique! Esta opcion no es valido para programaciones creados en VDR." +msgid "Information" +msgstr "Informacin" -msgid "Monitor this timer using the start and stop time." -msgstr "Monitorizar esta programacin utilizando hora de inicio y fin." +msgid "VDRAdmin-AM version:" +msgstr "Versin de VDRAdmin-AM:" -msgid "off" -msgstr "apagado" +msgid "VDR version:" +msgstr "Versin de VDR:" -msgid "Do not monitor this timer." -msgstr "Sin monitorizar esta programacin." +msgid "Supported features in VDR:" +msgstr "Caractersticas respaldadas en VDR:" -msgid "Channel:" -msgstr "Emisora:" +msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgstr "Bsqueda EPG (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>) (en alemn de momento)" -msgid "The channel to record." -msgstr "La emisora para grabar:" +msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgstr "Flujo de LiveTV (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>) (en alemn de momento)" -msgid "Day Of Recording:" -msgstr "Da de la grabacin:" +msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgstr "Renombrar grabaciones (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." -msgstr "" -"El dia de la activacin de la programacin. Se puede verificar en dos formatos:<ul>\n" -"<li>Dos digitos (DD). As se usar mes y ao actual.</li>\n" -"<li>Norma ISO (YYYY-MM-DD). Esta forma te permite crear programaciones para cualquier momento en el futuro.</li></ul>\n" -"Para una programacin repetitoria usa las 7 casillas abajo del texto. Cada uno marcar el dia activado para la programacin." +msgid "Getting Help and Reporting Bugs" +msgstr "Recibir ayuda y comentar \"Bugs\" (fallos)" -msgid "Start Time:" -msgstr "Comienzo:" +msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." +msgstr "Si hace falta ayuda, intenta primero \"Online Help\" (Ayuda en linea) que encontraras en algunas pginas. Tienes acceso haciendo clic encima de <img src=\"bilder/help.png\" alt=\"\" />." -msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Esta es la hora cuando la programacin iniciar la grabacin. El primer campo de texto es para \"hora\", el segundo para \"minutos\"." +msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" +msgstr "Si no te sirve esta informacin puedes intentar conseguir ayuda en la pgina <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> si entiendes alemn (lo siento...). Por favor, usa la conversacin del anuncio si es posible, busca por:" -msgid "End Time:" -msgstr "Fin:" +msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." +msgstr "Si crees que has encontrado un fallo, asegrate de que sea un fallo desconocido y entonces comntalo en <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system (sistema de seguimiento de fallos)</a>." -msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Esta es la hora cuando la programacin acabar la grabacin. El primer campo de texto es para \"hora\", el segundo para \"minutos\"." +msgid "AutoTimer" +msgstr "Autoprogramaciones" msgid "Priority:" msgstr "Prioridad:" -msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." -msgstr "" -"Un nmero en el rango <strong>0...99</strong>, establece la <strong>prioridad</strong> de esta programacin y la grabacin creada de la programacin. <strong>0</strong> representa el valor ms bajo, <strong>99</strong> lo mayor. La prioridad se usa para decidir cul de las programaciones se iniciaria a caso que hay dos o ms en la misma hora de <strong>inicio</strong>. La primera en la lista con la prioridad ms alta va a ser elegida.<br />\n" -"<br />El valor se guardar tambin junto con la grabacin para utilizarlo ms tarde para decidir cul de las grabaciones guardadas se puede borrar del disco para liberar espacio para una nueva grabacin, si hace falta. En ste caso una grabacin existente con la prioridad ms baja (y su <strong>duracin</strong> garantizada ya caducada) remover.<br />\n" -"<br />Si todas las tarjetas DVB estan ocupadas una programacin va a interumpir otra - si tiene una prioridad ms baja - para iniciar su grabacin." - msgid "Lifetime:" msgstr "Durabilidad:" -msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." -msgstr "La duracin <strong>garantizada</strong> (en dias) de una grabacin guardada de esta programacin. <strong>0</strong> significa que se puede borrar automticamente en cualquier momento por otra grabacin con prioridad ms alta. <strong>99</strong> significa que esta grabacin automticamente nunca va a ser borrada. Todos valores dems en el rango <strong>1...98</strong> significan que esta grabacin solo va ser borrada automticamente por otra grabacin nueva, cuando se han pasado los dias ajustados y garantizados desde su <strong>dia de grabacin</strong>." - -msgid "Title of Recording:" -msgstr "Ttulo de la grabacin:" - -msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." -msgstr "" -"El <strong>titulo</strong> que esta programcin va a dar a la grabacin. Si la grabacin la quieres agregar en una subcarpeta, tienes que seperar cada una con '~' (desde que el caracter '/' puede ser parte de programas regulares).<br />\n" -"<br />Las palabras claves <strong>TTULO</strong> y <strong>EPISODIO</strong>, si existen, van a ser sustituidos con ttulo y episodio de los datos de la EPG en la hora de grabacin; si no puede verificar esos datos, porque no se encuentra la informacin en los datos\n" -" <strong>TTULO</strong> se pone con el nombre del canal y <strong>EPISODIO</strong> se deja en blanco." - -msgid "Summary:" -msgstr "Resumen:" - -msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." -msgstr "Un texto a tu gusto para describir la grabacin realizada de una programacin. Si este campo contiene algo, el texto va a ser escrito al fichero <span class=\"ref_file\">summary.vdr</span> o <span class=\"ref_file\">info.vdr</span> de la grabacin." - -msgid "Go!" -msgstr "Venga!" - -msgid "AutoTimer" -msgstr "Autoprogramaciones" - msgid "New AutoTimer" msgstr "Aadir autoprogramacin" +msgid "Help" +msgstr "Ayuda" + msgid "Active" -msgstr "Activada" +msgstr "Activa" + +msgid "Channel" +msgstr "Emisora" msgid "Start" msgstr "Inicio" @@ -221,6 +142,9 @@ msgstr "S" msgid "No" msgstr "No" +msgid "Edit" +msgstr "Modificar" + msgid "Delete timer?" msgstr "Borrar programacin?" @@ -237,34 +161,7 @@ msgid "Delete all selected timers?" msgstr "Estas seguro de que deseas borrar las programaciones elegidas?" msgid "No AutoTimers defined!" -msgstr "No hay autoprogramaciones!" - -msgid "VDR Commands" -msgstr "Comandos del VDR:" - -msgid "Export channels as playlist:" -msgstr "Exportar los canales como lista de" - -msgid "Number of lines to show:" -msgstr "Cantidad de flujos en uso:" - -msgid "unlimited" -msgstr "sin limites" - -msgid "SVDRP commands:" -msgstr "rdenes de SVDRP:" - -msgid "Run" -msgstr "Iniciar" - -msgid "Really run this command?" -msgstr "Ejecutar el orden de verdad?" - -msgid "Commands defined in commands.conf:" -msgstr "rdenes definidos en commands.conf:" - -msgid "Output" -msgstr "Salida" +msgstr "No hay autoprogramaciones!" msgid "Add New AutoTimer" msgstr "Aadir autoprogramacin" @@ -284,6 +181,15 @@ msgstr "Palabras claves:" msgid "Search in:" msgstr "Buscar en:" +msgid "Title" +msgstr "Ttulo" + +msgid "Subtitle" +msgstr "Subttulo" + +msgid "Description" +msgstr "Descripcin" + msgid "Search only on these days:" msgstr "Los das para la bsqueda:" @@ -308,26 +214,32 @@ msgstr "Sbado" msgid "Sunday" msgstr "Domingo" +msgid "Channel:" +msgstr "Emisora:" + msgid "all" msgstr "todos" msgid "Starts After:" msgstr "Empieza despus de:" +msgid "o'clock" +msgstr "h." + msgid "Ends Before:" msgstr "Acaba antes de:" msgid "Override Start/Stop Margins:" -msgstr "Reemplazar los margenes de tiempo para Inicio/Fin:" +msgstr "Reemplazar los mrgenes de tiempo para Inicio/Fin:" msgid "Time Margin at Start:" -msgstr "Ms tiempo al principio:" +msgstr "Margen de tiempo al principio:" msgid "minutes" msgstr "minutos" msgid "Time Margin at Stop:" -msgstr "Ms tiempo al final:" +msgstr "Margen de tiempo al final:" msgid "Episode:" msgstr "Episodios:" @@ -338,202 +250,275 @@ msgstr "Recordar programaciones:" msgid "Directory:" msgstr "Carpeta:" +msgid "Save" +msgstr "Guardar" + msgid "Test" msgstr "Prueba" +msgid "Cancel" +msgstr "Cancelar" + msgid "Broadcasted" -msgstr "Difundido" +msgstr "Emitido" msgid "Stored in" msgstr "Guardado en" msgid "No matches found!" -msgstr "Ninguna coincidencia encontrado!" +msgstr "Ninguna coincidencia encontrada!" -msgid "About" -msgstr "Acerca de" +msgid "Configuration" +msgstr "Configuracin" -msgid "License" -msgstr "Licencia" +msgid "General Settings" +msgstr "Ajustes generales" -msgid "Authors" -msgstr "Autores" +msgid "Template:" +msgstr "Plantilla:" -msgid "Current author (VDRAdmin-AM branch):" -msgstr "Autor actual (VDRAdmin-AM):" +msgid "Skin:" +msgstr "Piel:" -msgid "Original author (VDRAdmin):" -msgstr "Autor original (VDRAdmin):" +msgid "Login Page:" +msgstr "Pgina de inicio:" -msgid "Translation Team" -msgstr "Equipo de traduccin" +msgid "Number of channels to use:" +msgstr "Cantidad de emisoras a usar:" -msgid "English:" -msgstr "Ingls:" +msgid "Local net (no login required):" +msgstr "Red local (no requiere contrasea)" -msgid "German:" -msgstr "Alemn:" +msgid "Language:" +msgstr "Idioma:" -msgid "French:" -msgstr "Francs:" +msgid "Save settings on exit:" +msgstr "Guardar los ajustes al salir:" -msgid "At the moment unmaintained, former translations by:" -msgstr "De momento no se actualiza, traducciones anteriores de:" +msgid "VDR" +msgstr "VDR" -msgid "Spanish:" -msgstr "Espaol:" +msgid "Number of DVB cards:" +msgstr "Cantidad de tarjetas DVB:" -msgid "Finnish:" -msgstr "Finlands:" +msgid "Path to recordings:" +msgstr "Ruta de las grabaciones:" -msgid "Dutch:" -msgstr "Holands:" +msgid "Path to configuration files:" +msgstr "Ruta de los ficheros de configuracin:" -msgid "Russian:" -msgstr "Ruso:" +msgid "Path to EPG images:" +msgstr "Ruta de las imgenes de EPG:" -msgid "Czech:" -msgstr "Checo:" +msgid "Identification" +msgstr "Identificaciones" -msgid "Italian:" -msgstr "Italiano:" +msgid "Username:" +msgstr "Nombre del usuario:" -msgid "Information" -msgstr "Informacin" +msgid "Password:" +msgstr "Contrasea:" -msgid "VDRAdmin-AM version:" -msgstr "Versin de VDRAdmin-AM:" +msgid "Guest Account:" +msgstr "Acceso como invitado:" -msgid "VDR version:" -msgstr "Versin de VDR:" +msgid "Guest Username:" +msgstr "Nombre como invitado:" -msgid "Supported features in VDR:" -msgstr "Caractersticas respaldadas en VDR:" +msgid "Guest Password:" +msgstr "Contrasea como invitado:" -msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgstr "Bsqueda EPG (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>) (en alemn de momento)" +msgid "Timeline" +msgstr "Tabla de tiempo" -msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgstr "Flujo de LiveTV (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>) (en alemn de momento)" +msgid "Hours:" +msgstr "Rango de hora/s:" -msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgstr "Renombrar grabaciones (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgid "Times:" +msgstr "Horas:" -msgid "Getting Help and Reporting Bugs" -msgstr "Recibir ayuda y comentar \"Bugs\" (fallos)" +msgid "Also used for other EPG views!" +msgstr "Tambin se usa para otras vistas de la EPG" -msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." -msgstr "Si hace falta ayuda, intenta primero \"Online Help\" (Ayuda en linea) que encontraras en algunas pginas. Tienes acceso haciendo clic encima de <img src=\"bilder/help.png\" alt=\"\" />." +msgid "Tooltips:" +msgstr "Notas flotantes:" -msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" -msgstr "Si no te sirve esta informacin puedes intentar conseguir ayuda en la pgina <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> si entiendes alemn (lo siento...). Para empezar alli aprovecha la funccin \"suchen\" por:" +msgid "Active:" +msgstr "Activa:" -msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." -msgstr "Si crees, que has encontrado un fallo, asegrate que sea un fallo desconocido y entonces comentalo en <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system (sistema de seguimiento de fallos)</a>." +msgid "Send email after programming timer:" +msgstr "Mandar mensaje despus de crear programacin:" -msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgid "Send email as:" +msgstr "Mandar mensaje electrnico como:" + +msgid "Send email to:" +msgstr "Mandar mensaje electrnico a:" + +msgid "Mail server:" +msgstr "Servidor de correo:" + +msgid "SMTPAuth user:" +msgstr "Usuario de SMPTAuth:" + +msgid "SMTPAuth password:" +msgstr "Contrasea de SMPTAuth:" + +msgid "Track schedule changes by:" msgstr "" -"<p>Aqu se encuentra los ajustes de las autoprogramaciones.</p>\n" -"<p>Autoprogramaciones son la herramienta basica del VDRAdmin-AM. Una autoprogramacin busca por una o ms palabras claves y unos ajustes ms, por cules buscar regularmente en la \"Electronic Program Guide\" (EPG, guia electronica del programa). S lo encuentra aquellos variables ajustados anteriormente crear automticamente una programacin en el VDR para el estreno encontrado. Bastante til para estrenos irregulares, que te importan mucho.</p>" -msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." -msgstr "Activar o desactivar sta programacin. Programaciones desactivadas se encuentran todavia en la lista de las programaciones. Asi se puede activarse ms tarde. Pero significar que no grabar mientras est desactiva." +msgid "Broadcast time" +msgstr "" -msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Only broadcasts will match if they contain <strong>all</strong> items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as Blacklist-string) or only one episode (when using \"Enterprise~Azati Prime\" as Blacklist-string)." +msgid "Event id" msgstr "" -"Las palabras claves bien elegidas importan mucho para grabar slo el estreno querido o por ejemplo tambin stos con palabras parecidas o con mala suerte nada por falta de coincidencia.<br />\n" -"Mayusculas o minusculas no importan para encontrar las palabras claves. Se puede usar varias palabras claves seperadas por espacios. <strong>Todas</strong> tienen que encontrarse en los campos deseados del estreno para un resultado exitoso.<br />\n" -"Es muy recomendable, utilizar solo carcteres normales o cifras como palabra clave, por que los carcteres especiales no son muy comun en la EPG.<br />\n" -"Para expertos hay la posibilidad de usar \"regular expressions\". Para esta funcin no documentada, tienes que investigar el codigo fuente del VDRAdmin-AM.<br />\n" -"<br />Otra opcin es, excluir un estreno, que normalmente cumplira los valores de bsqueda, agregando su ttulo al fichero <i>vdradmind.bl</i>. Cada estreno se pone en una fila. Este archivo tiene que estar en la carpeta de configuracin del VDRAdmin-AM. S una fila coincide con <u>ttulo</u> o <u>ttulo~subttulo</u> de la EPG del estreno, no se va a autoprogramar ese estreno. As se puede bloquear una serie completo (p.e. con \"Stargate\" como registro negro) o un episodio sol (p.e. \"Stargate~Revisiones\")." -msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." -msgstr "Aqu se ajusta las secciones de la EPG (emisoras posibles) donde VDRAdmin-AM va a buscar por palabras claves." +msgid "Timer" +msgstr "Programaciones" -msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." -msgstr "Marca estos campos para especificar los dias de la semana, que quieres incluir para la bsqueda." +msgid "Tooltips in timeline:" +msgstr "Notas flotantes en la tabla de tiempo:" -msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." -msgstr "La emisora para la bsqueda o \"todas\" para buscar en todas cadenas conocidas o deseadas. Se puede establecer las emisoras deseadas para autoprogramaciones en \"Configuraciones\"." +msgid "Tooltips in list:" +msgstr "Notas flotantes en la lista:" -msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Un estreno tiene que empezar despus de la hora establecida aqu. El primer campo es para \"hora\", el segundo para \"minutos\"." +msgid "Streaming" +msgstr "Flujo" -msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Un estreno tiene que finalizar antes de la hora establecida aqu. El primer campo es para \"hora\", el segundo para \"minutos\"." +msgid "Live Streaming:" +msgstr "Flujo en vivo:" -msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." -msgstr "Marca \"S\" para esta opcin, si quieres que todas las programaciones de la autoprogramacin tengan margenes individuales para inicio/terminar. Despus puedes poner los valores en los 2 siguientes campos de texto." +msgid "HTTP Port of Streamdev (also possible 3000/ts):" +msgstr "Puerto HTTP para el flujo (3000/ts tambin posible):" -msgid "The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG." -msgstr "La cantidad de minutos que VDRAdmin-AM va a quitar de la hora inicial del estreno encontrado en la EPG" +msgid "Recordings Streaming:" +msgstr "Flujo de grabaciones:" -msgid "The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG." -msgstr "La cantidad de minutos que VDRAdmin-AM va a quitar de la hora final del estreno encontrado en la EPG" +msgid "Path to VDR Recordings on your workstation:" +msgstr "Ruta de las grabaciones de VDR en tu equipo:" -msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." -msgstr "Marca este campo si VDRAdmin-AM debe aadir el subttulo de la EPG del estreno al nombre de la grabacin." +msgid "MIME type for live streaming:" +msgstr "Tipo MIME del flujo en vivo:" -msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." -msgstr "Habilitando esta funccin, VDRAdmin-AM va seguir programaciones programadas automticamente. As se puede borrar o desactivar estas pragramaciones agregadas automticamente de la lista de programaciones." +msgid "Suffix for live streaming:" +msgstr "Extensin para flujo en vivo:" -msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." -msgstr "" -"Aqu se establece la carpeta, donde la autoprogramacin va a guardar su grabaciones. Si quieres crear subcarpetas hay que seperarlas con '~' (eso por que '/' puede ser parte del ttulo).<br />\n" -"VDRAdmin-AM aadir automticamente el ttulo y el subttulo (a caso que est marcado \"Serie\").<br />\n" -"<br />Adems es posible usar las siguientes palabras claves, que se sustituirn en el ttulo final que se va a encontrar en p.e. <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:\n" -"<ul><li>%Title% - el ttulo del estreno.</li>\n" -"<li>%Subtitle% - el subttulo del estreno.</li>\n" -"<li>%Director% - el director del estreno.</li>\n" -"<li>%Date% - la fecha de la grabacin.</li>\n" -"<li>%Category% - la categoria de la grabacin. (Pelcula/serie/...).</li>\n" -"<li>%Genre% - el geno de la grabacin. (Drama/suspense/..).</li>\n" -"<li>%Year% - el ao de la produccin.</li>\n" -"<li>%Country% - el pais de la produccin.</li>\n" -"<li>%Originaltitle% - el ttulo original del estreno.</li>\n" -"<li>%FSK% - el limte por edad del estreno.</li>\n" -"<li>%Episode% - el ttulo del episodio de una serie.</li>\n" -"<li>%Rating% - la valoracin del estrono de la redaccin de la EPG.</li>\n" -"</ul>\n" -"<h4>Advertencia:</h4>Si utilizas estas palabras claves queda a tu propia responsabilidad escribir el <strong>nombre completo</strong> de la grabacin! VDRAdmin-AM no aadir nada ms." +msgid "MIME type for recordings streaming:" +msgstr "Tipo MIME para flujo de grabaciones:" -msgid "Timer" -msgstr "Programaciones" +msgid "Suffix for recordings streaming:" +msgstr "Extensin para flujo de grabaciones:" -msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" -msgstr "" -"<p>Aqu encontrars una lista de programaciones conocidas para VDR.</p>\n" -"<p>Arriba hay un diagrama mostrando graficamente las programaciones del dia. Te ofrece una vista rpida del dia especificado y te ayuda encontrar programaciones conflictivas. Moviendo la flecha del ratn encima de cualquier programacin vers el ttulo, la prioridad, la durabilidad y la duracion de la programacin.</p>\n" -"<p>Abajo del diagrama encuentras la lista de programaciones visualizando unas informaciones de las programaciones. Se puede cambiar el orden de la lista con un clic en el tope de la columna correspondiente.</p>\n" -"<p>Para cada programacin tienes las siguientes opciones:<dl>\n" -"<dt>Establecer su estado</dt>\n" -"<dd>Hacer clic en \"S\", \"No\", \"VPS\" o \"Auto\" en la columna \"Activa\".</dd>\n" -"<dt>Vista rpida de la prioridad y durabilidad</dt>\n" -"<dd>Moviendo la flecha del ratn encima del ttulo de programacin.</dd>\n" -"<dt>Vista de la entrada del EPG</dt>\n" -"<dd>Programaciones con <span class=\"ref_label\">Autotest programacin</span> para la \"Identificacin de la transmisin\" ensearn la entrada correspondiente del EPG si haces clic en el ttulo.</dd>\n" -"\n" -"<dt>Modificar programacin</dt>\n" -"<dd>Se puede editar una programacin haciendo clic en <img src=\"bilder/edit.png\" alt=\"editar\" />.</dd>\n" -"\n" -"<dt>Borrar la programacin</dt>\n" -"<dd>Se puede borrar una programacin haciendo clic en <img src=\"bilder/delete.png\" alt=\"borrar\" />.</dd></dl></p>\n" -"\n" -"<p>El estado de cualquiera programacin est indicado por iconos de diferentes colores (la vista como diagrama) o imagenes (la vista como lista):<br />\n" -"<span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"activa\" align=\"middle\" /> OK para la programacin y grabar.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problema\" align=\"middle\" /> Conflictos con otras programaciones. sto no produzca ningn problema, si hay bastantes tarjetas DVB para grabar en paralelo.<br />\n" -"<span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"imposible\" align=\"middle\" /> Programacin crtica que probablemente <strong>no</strong> grabar.<br />\n" -"<span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactiva\" align=\"middle\" /> Programacin inactiva.</p>\n" -"<p>Adems puedes aadir una programacin nueva cliqueando encima de <input type=\"submit\" class=\"submit\" value=\"Aadir programacin\"/> arriba y se puede borrar programaciones por lotes cliqueando encima <input type=\"submit\" class=\"submit\" value=\"Borrar programaciones seleccionadas\"/> al final de la columna.</p>\n" -"<p>Se puede <input type=\"submit\" class=\"submit\" value=\"activar\"/> y <input type=\"submit\" class=\"submit\" value=\"desactivar\"/> programaciones seleccionadas.</p>" +msgid "Bandwidth of Streams:" +msgstr "Ancho de banda del flujo:" -msgid "Playing Today" -msgstr "Estrenos hoy" +msgid "External Search" +msgstr "Bsqueda externa" -msgid "starting at" -msgstr "empezando a la/s" +msgid "URL:" +msgstr "URL:" + +msgid "Title:" +msgstr "Ttulo:" + +msgid "User-defined search:" +msgstr "Bsqueda personalizada:" + +msgid "Expert" +msgstr "Experto" + +msgid "Update EPG data in background:" +msgstr "Actualizar datos EPG en segundo plano:" + +msgid "Update EPG every:" +msgstr "Actualizar datos EPG cada:" + +msgid "Channel Selections" +msgstr "Emisoras preferidas" + +msgid "Show channels without EPG information:" +msgstr "Mostrar emisoras sin informacin EPG:" + +msgid "In \"AutoTimer\"?" +msgstr "Usar en \"Autoprogramaciones\"?" + +msgid "Apply" +msgstr "Establecer" + +msgid "EPG Search Blacklists" +msgstr "Utiliza lista negra en bsqueda de EPG:" + +msgid "New Blacklist" +msgstr "Nueva lista negra" + +msgid "Search pattern" +msgstr "Palabras claves" + +msgid "From" +msgstr "De" + +msgid "To" +msgstr "Para" + +msgid "Delete blacklist?" +msgstr "Borrar lista negra?" + +msgid "Delete Selected Blacklists" +msgstr "Borrar listas negras elegidas" + +msgid "Delete all selected blacklists?" +msgstr "Ests seguro de que deseas borrar las listas negras elegidas?" + +msgid "EPG search" +msgstr "Bsqueda EPG" + +msgid "EPG Search" +msgstr "Bsqueda EPG" + +msgid "Use template" +msgstr "Usar plantilla" + +msgid "New Search" +msgstr "Bsqueda nueva" + +msgid "Edit Template" +msgstr "Editar plantilla" + +msgid "Settings" +msgstr "Ajustes" + +msgid "Action" +msgstr "Accin" + +msgid "Find" +msgstr "Buscar" + +msgid "Show Favorites" +msgstr "Mostrar favoritas" + +msgid "Delete Selected Searches" +msgstr "Borrar bsquedas elegidas" + +msgid "Delete all selected searches?" +msgstr "Ests seguro de que deseas borrar las bsquedas elegidas?" + +msgid "Execute Selected Searches" +msgstr "Ejecutar bsquedas elegidas" + +msgid "Duration" +msgstr "Duracin" + +msgid "More Information" +msgstr "Ms informacin" + +msgid "Channels" +msgstr "EPG por emisoras" + +msgid "Record" +msgstr "Grabar" msgid "Add New Blacklist" -msgstr "Agregar lista negra:" +msgstr "Agregar lista negra" msgid "Edit Blacklist" msgstr "Editar lista negra" @@ -541,9 +526,6 @@ msgstr "Editar lista negra" msgid "Add New Template" msgstr "Aadir plantilla" -msgid "Edit Template" -msgstr "Editar plantilla:" - msgid "Add New Search" msgstr "Aadir bsqueda" @@ -551,22 +533,19 @@ msgid "Edit Search" msgstr "Editar bsqueda" msgid "Small search pattern.\\nDo you really want to use it?" -msgstr "Esquema de bsqueda limitada. \\nEstas seguro que deseas utilizarlo?" +msgstr "Patrn de bsqueda muy corto.\\nEsts seguro de que deseas utilizarlo?" msgid "You didn't select at least one of\\ntitle, subtitle or description.\\nDo you really want to use this search?" -msgstr "No has elegido ni\\ntitulo, subtitulo, or descripcin.\\nQuieres realizar esta bsqueda?" +msgstr "No has elegido al menos uno de entre\\nttulo, subttulo, o descripcin.\\nQuieres realizar esta bsqueda?" msgid "Hide results" msgstr "Ocultar resultados" -msgid "Settings" -msgstr "Propiedades" - msgid "Name:" msgstr "Nombre:" msgid "Search Term:" -msgstr "Concepto de bsqueda:" +msgstr "Trmino de bsqueda:" msgid "Search Mode:" msgstr "Modo de bsqueda:" @@ -581,25 +560,25 @@ msgid "at least one word" msgstr "una palabra por lo menos" msgid "match exactly" -msgstr "coincidencia exata" +msgstr "coincidencia exacta" msgid "regular expression" msgstr "expresin regular" msgid "fuzzy" -msgstr "fuzzy" +msgstr "difusa" msgid "Tolerance for \"fuzzy\":" msgstr "Tolerancia para \"difusa\":" msgid "Match Case:" -msgstr "Caso de encuentro:" +msgstr "Coincidir mays/mins:" msgid "Use extended EPG info:" msgstr "Utiliza informacin EPG extendida:" msgid "Ignore missing categories?" -msgstr "Ignorar categorias ausentes?" +msgstr "Ignorar categoras ausentes?" msgid "Use Channel:" msgstr "Utiliza emisora:" @@ -614,7 +593,7 @@ msgid "channel group" msgstr "Grupo de emisoras" msgid "only FTA" -msgstr "solo FTA" +msgstr "slo FTA" msgid "Range:" msgstr "Rango:" @@ -644,7 +623,7 @@ msgid "Max. Duration:" msgstr "Duracin max.:" msgid "Use Day of Week:" -msgstr "Utiliza dia de la semana:" +msgstr "Utiliza da de la semana:" msgid "Use Blacklists:" msgstr "Utiliza lista negra:" @@ -668,31 +647,31 @@ msgid "record" msgstr "grabar" msgid "announce only" -msgstr "solo avisar" +msgstr "slo avisar" msgid "switch only" -msgstr "solo cambiar" +msgstr "slo cambiar" msgid "First day:" -msgstr "Primer dia:" +msgstr "Primer da:" msgid "Last day:" -msgstr "ltimo dia:" +msgstr "ltimo da:" msgid "Auto delete:" -msgstr "Borrar automaticamente:" +msgstr "Borrar automticamente:" msgid "count recordings" msgstr "Cantidad de grabaciones" msgid "count days" -msgstr "Cantidad de dias" +msgstr "Cantidad de das" msgid "After ... recordings:" msgstr "Despus ... grabaciones:" msgid "After ... days after first recording:" -msgstr "Despues de ... dias despues de la ltima grabacin:" +msgstr "Despus de ... das despus de la ltima grabacin:" msgid "Settings for action \"record\"" msgstr "Ajustes para accin \"grabar\"" @@ -701,7 +680,7 @@ msgid "Series Recording:" msgstr "Grabacin en serie:" msgid "Delete Recordings After ... Days:" -msgstr "Borrar grabaciones despues de ... dias:" +msgstr "Borrar grabaciones despus de ... das:" msgid "Keep ... Recordings:" msgstr "Guarda ... grabaciones:" @@ -716,7 +695,7 @@ msgid "Allowed Repeats:" msgstr "Permitir repeticiones:" msgid "Only Repeats Within ... Days:" -msgstr "Solo repeticiones dentro de ... dias:" +msgstr "Slo repeticiones dentro de ... das:" msgid "Compare:" msgstr "Comparar:" @@ -725,7 +704,7 @@ msgid "VPS:" msgstr "VPS:" msgid "Settings for action \"switch only\"" -msgstr "Ajustes para \"solo cambiar\"" +msgstr "Ajustes para \"slo cambiar\"" msgid "Switch ... Minutes Before Start:" msgstr "cambiar ... minutos antes del inicio:" @@ -734,350 +713,249 @@ msgid "Delete template" msgstr "Borrar plantilla:" msgid "Delete this template?" -msgstr "Borrar plantilla?" +msgstr "Borrar esta plantilla?" msgid "Save as template" -msgstr "Guardar como plantilla:" - -msgid "Create New Timer" -msgstr "Aadir programacin" - -msgid "Buffer:" -msgstr "Almacenador intermediario:" - -msgid "Use VPS:" -msgstr "Utiliza VPS:" +msgstr "Guardar como plantilla" -msgid "readonly" -msgstr "solo leible" - -msgid "Timer has been set by AutoTimer pattern:" -msgstr "Programacin por cumplir ajustes de la autoprogramacin:" - -msgid "No Help Available" -msgstr "No hay ayuda" - -msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgstr "" -"<p>Para esta funccin no dispone ayuda hasta ahora. Para aadir o modificar un texto, escribe un e-mail a \n" -"<a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgid "Run" +msgstr "Iniciar" msgid "Error!" msgstr "Error!" -msgid "TV" -msgstr "TV" +msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" +msgstr "" +"<p>Aqu se encuentra una lista de todas las autoprogramaciones conocidas por VDRAdmin-AM.</p>\n" +"<p>La lista contiene informaciones de las autoprogramaciones. Se puede cambiar el orden de la lista haciendo clic en los ttulos de las columnas.</p>\n" +"\n" +"<p>Para cada autoprogramacin hay las siguientes opciones:<dl>\n" +"<dt>Cambiar estado</dt>\n" +"<dd>Haciendo clic en \"S\" o \"No\" en la columna \"Activa\" se puede activar y desactivar.</dd>\n" +"\n" +"<dt>Vista rpida de prioridad y durabilidad</dt>\n" +"<dd>Tienes que mover la flecha del ratn encima del nombre de la autoprogramacin.</dd>\n" +"\n" +"<dt>Modificar autoprogramacin</dt>\n" +"<dd>Se realiza una edicin haciendo clic en <img src=\"bilder/edit.png\" alt=\"editar\" />.</dd>\n" +"\n" +"<dt>Borrar autoprogramacin</dt>\n" +"<dd>Para borrar una autoprogramacin hay que hacer clic en <img src=\"bilder/delete.png\" alt=\"borrar\" />.</dd>\n" +"</dl></p>\n" +"<p>El estado de una autoprogramacin est indicada por colores diferentes:<br />\n" +"<img src=\"bilder/poempl_gruen.png\" alt=\"Activa\" align=\"middle\" /> La autoprogramacin est bien y va a programar automticamente emisiones coincidentes.<br />\n" +"<img src=\"bilder/poempl_grau.png\" alt=\"inactiva\" align=\"middle\" /> La autoprogramacin est desactivada.</p>\n" +"<p>Adems se puede aadir otra autoprogramacin ms, haciendo clic en <input type=\"submit\" class=\"submit\" value=\"Aadir autoprogramacin\"/> al tope. Ms abajo se encuentra el botn <input type=\"submit\" class=\"submit\" value=\"Borrar autoprogramaciones elegidas\"/>, cul hace posible borrar las autoprogramaciones marcadas en la lista por lotes.</p>\n" +"<p>Con el botn <input type=\"submit\" class=\"submit\" value=\"Actualizar ahora\"/> arrancars una bsqueda inmediatamente en los datos actuales de la EPG recin actualizados.</p>" -msgid "Interval:" -msgstr "Intervalo:" +msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgstr "" +"<p>Aqu se encuentra los ajustes de las autoprogramaciones.</p>\n" +"<p>Autoprogramaciones son la herramienta bsica del VDRAdmin-AM. Una autoprogramacin busca por una o ms palabras claves y unos ajustes ms, por los cules buscar regularmente en la \"Electronic Program Guide\" (EPG, gua electrnica de programacin). S lo encuentra, aquellas variables ajustadas anteriormente crearn automticamente una programacin en el VDR para el programa encontrado. Bastante til para emisiones irregulares, que te importan mucho.</p>" -msgid "sec." -msgstr "seg" +msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." +msgstr "Activar o desactivar sta programacin. Programaciones desactivadas se encuentran todava en la lista de las programaciones. As se puede activar ms tarde. Pero significar que no grabar mientras est desactivada." -msgid "G" -msgstr "C" +msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Broadcasts will match only if they match <strong>all</strong> configured search items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as blacklist string) or only one episode (when using \"Enterprise~Azati Prime\" as blacklist string)." +msgstr "" +"Las palabras claves bien elegidas importan mucho para grabar slo el programa querido o por ejemplo tambin stos con palabras parecidas o con mala suerte nada por falta de coincidencia.<br />\n" +"Maysculas o minsculas no importan para encontrar las palabras claves. Se puede usar varias palabras claves separadas por espacios. <strong>Todas</strong> tienen que encontrarse en los campos deseados del programa para un resultado exitoso.<br />\n" +"Es muy recomendable, utilizar slo caracteres normales o cifras como palabra clave, porque los caracteres especiales no son muy comunes en la EPG.<br />\n" +"Para expertos hay la posibilidad de usar \"regular expressions\". Para esta funcin no documentada, tienes que investigar el cdigo fuente del VDRAdmin-AM.<br />\n" +"<br />Otra opcin es, excluir un programa, que normalmente cumplira los valores de bsqueda, agregando su ttulo al fichero <i>vdradmind.bl</i>. Cada programa se pone en una fila. Este archivo tiene que estar en la carpeta de configuracin del VDRAdmin-AM. S una fila coincide con <u>ttulo</u> o <u>ttulo~subttulo</u> de la EPG del programa, no se va a autoprogramar ese programa. As se puede bloquear una serie completa (p.e. con \"Stargate\" como registro negro) o un episodio solo (p.e. \"Stargate~Revisiones\")." -msgid "Grab the picture!" -msgstr "Captura la imagen!" +msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." +msgstr "Aqu se ajusta las secciones de la EPG (emisoras posibles) donde VDRAdmin-AM va a buscar por palabras claves." -msgid "Size:" -msgstr "Dimensiones:" +msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." +msgstr "Marca estas casillas para especificar los das de la semana que quieres incluir para la bsqueda." -msgid "Open in separate window" -msgstr "Abrir en una ventana separada" +msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." +msgstr "La emisora para la bsqueda o \"todas\" para buscar en todas las cadenas conocidas o deseadas. Se puede establecer las emisoras deseadas para autoprogramaciones en \"Configuraciones\"." -msgid "Playing Today?" -msgstr "Estrenos hoy?" +msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Un programa tiene que empezar despus de la hora establecida aqu. El primer campo es para \"hora\", el segundo para \"minutos\"." -msgid "Timeline" -msgstr "Tabla de tiempo" +msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Un programa tiene que finalizar antes de la hora establecida aqu. El primer campo es para \"hora\", el segundo para \"minutos\"." -msgid "EPG Search" -msgstr "Bsqueda EPG" +msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." +msgstr "Marca \"S\" para esta opcin, si quieres que todas las programaciones de la autoprogramacin tengan margenes individuales para inicio/terminar. Despus puedes poner los valores en los 2 siguientes campos de texto." -msgid "Recordings" -msgstr "Grabaciones" +msgid "The number of minutes VDRAdmin-AM subtracts from the broadcast's start time found in the EPG." +msgstr "La cantidad de minutos que VDRAdmin-AM va a quitar de la hora inicial del programa encontrado en la EPG" -msgid "Remote Control" -msgstr "Mando a distancia" +msgid "The number of minutes VDRAdmin-AM adds to the broadcast's stop time found in the EPG." +msgstr "La cantidad de minutos que VDRAdmin-AM va a quitar de la hora final del programa encontrado en la EPG" -msgid "Watch TV" -msgstr "Televisin" +msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." +msgstr "" +"Un nmero en el rango <strong>0...99</strong>, establece la <strong>prioridad</strong> de esta programacin y la grabacin creada de la programacin. <strong>0</strong> representa el valor ms bajo, <strong>99</strong> lo mayor. La prioridad se usa para decidir cul de las programaciones se iniciara en caso de que haya dos o ms en la misma hora de <strong>inicio</strong>. La primera en la lista con la prioridad ms alta va a ser elegida.<br />\n" +"<br />El valor se guardar tambin junto con la grabacin para utilizarlo ms tarde para decidir cul de las grabaciones guardadas se puede borrar del disco para liberar espacio para una nueva grabacin, si hace falta. En ste caso una grabacin existente con la prioridad ms baja (y su <strong>duracin</strong> garantizada ya caducada) remover.<br />\n" +"<br />Si todas las tarjetas DVB estn ocupadas una programacin va a interrumpir otra - si tiene una prioridad ms baja - para iniciar su grabacin." -msgid "Commands" -msgstr "Comandos:" +msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." +msgstr "La duracin <strong>garantizada</strong> (en das) de una grabacin guardada de esta programacin. <strong>0</strong> significa que se puede borrar automticamente en cualquier momento por otra grabacin con prioridad ms alta. <strong>99</strong> significa que esta grabacin automticamente nunca va a ser borrada. Todos valores dems en el rango <strong>1...98</strong> significan que esta grabacin solo va a ser borrada automticamente por otra grabacin nueva, cuando se han pasado los das ajustados y garantizados desde su <strong>da de grabacin</strong>." -msgid "Configuration" -msgstr "Configuraciones" +msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." +msgstr "Marca este campo si VDRAdmin-AM debe aadir el subttulo de la EPG del programa al nombre de la grabacin." -msgid "Search" -msgstr "Buscar" +msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." +msgstr "Habilitando esta funcin, VDRAdmin-AM va seguir programaciones programadas automticamente. As se puede borrar o desactivar estas programaciones agregadas automticamente de la lista de programaciones." + +msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." +msgstr "" +"Aqu se establece la carpeta, donde la autoprogramacin va a guardar su grabaciones. Si quieres crear subcarpetas hay que separarlas con '~' (eso por que '/' puede ser parte del ttulo).<br />\n" +"VDRAdmin-AM aadir automticamente el ttulo y el subttulo (a caso que est marcado \"Serie\").<br />\n" +"<br />Adems es posible usar las siguientes palabras claves, que se sustituirn en el ttulo final que se va a encontrar en p.e. <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:\n" +"<ul><li>%Title% - el ttulo del programa.</li>\n" +"<li>%Subtitle% - el subttulo del programa.</li>\n" +"<li>%Director% - el director del programa.</li>\n" +"<li>%Date% - la fecha de la grabacin.</li>\n" +"<li>%Category% - la categora de la grabacin. (Pelcula/serie/...).</li>\n" +"<li>%Genre% - el gnero de la grabacin. (Drama/suspense/..).</li>\n" +"<li>%Year% - el ao de la produccin.</li>\n" +"<li>%Country% - el pas de la produccin.</li>\n" +"<li>%Originaltitle% - el ttulo original del programa.</li>\n" +"<li>%FSK% - el lmite por edad del programa.</li>\n" +"<li>%Episode% - el ttulo del episodio de una serie.</li>\n" +"<li>%Rating% - la valoracin del programa de la redaccin de la EPG.</li>\n" +"</ul>\n" +"<h4>Advertencia:</h4>Si utilizas estas palabras claves queda a tu propia responsabilidad escribir el <strong>nombre completo</strong> de la grabacin! VDRAdmin-AM no aadir nada ms." msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" msgstr "<p>En esta pgina se ajusta las propiedades generales de las programaciones y de las autoprogramaciones, como las emisoras preferidas y adems los ajustes del flujo</p>" -msgid "General Settings" -msgstr "Propiedades generales" - -msgid "VDR" -msgstr "VDR" - -msgid "Identification" -msgstr "Identificaciones" - -msgid "Streaming" -msgstr "Flujo" - -msgid "Expert" -msgstr "Experto" - -msgid "External Search" -msgstr "Bsqueda external" - -msgid "Channel Selections" -msgstr "Emisoras preferidas" - -msgid "Skin:" -msgstr "Piel:" - msgid "The skin you want to use." -msgstr "El piel deseado." - -msgid "Login Page:" -msgstr "Pgina al inicio:" +msgstr "La piel deseada." msgid "The page you want to see at first connect to VDRAdmin-AM." msgstr "La pgina deseada al inicio del VDRAdmin-AM." -msgid "Number of channels to use:" -msgstr "Cantidad de emisoras en uso:" - msgid "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." -msgstr "VDRAdmin-AM solo utilizar tantas emisoras del VDR que se ajusta aqu y presentar esta cantidad en cada campo, donde se puede elegir canales. As tambin est limitado la informacin de la EPG que VDRAdmin-AM leer, que va a reducir el consumo de memoria de VDRAdmin-AM y mejorar as su rendimiento. <strong>0</strong> desactivar esta funccin y VDRAdmin-AM utilizar todas las emisoras posibles." - -msgid "Local net (no login required):" -msgstr "Red local (no requiere contrasea)" +msgstr "VDRAdmin-AM solo utilizar tantas emisoras del VDR como se ajusten aqu y presentar esta cantidad en cada campo, donde se pueden elegir canales. As tambin est limitada la informacin de la EPG que VDRAdmin-AM leer, que va a reducir el consumo de memoria de VDRAdmin-AM y mejorar as su rendimiento. <strong>0</strong> desactivar esta funcin y VDRAdmin-AM utilizar todas las emisoras posibles." msgid "Here you can specify an IP address or range that can login without providing login information. For example: \"192.168.0.0/24\" will include any IP starting with \"192.168.0\", \"192.168.0.123/32\" will only match \"192.168.0.123\"." -msgstr "Aqu se especifica una direccin IP o rango para una conexin sin necesidad de inicar una sesin con contrasea. Por ejemplo: \"192.168.0.0/24\" incluye cada IP empezando en \"192.168.0\", \"192.168.0.123/32\" resultaria \"192.168.0.123\"." - -msgid "Language:" -msgstr "Idioma:" +msgstr "Aqu se especifica una direccin IP o rango para una conexin sin necesidad de iniciar una sesin con contrasea. Por ejemplo: \"192.168.0.0/24\" incluye cada IP empezando en \"192.168.0\", \"192.168.0.123/32\" resultara \"192.168.0.123\"." msgid "Here you can set the localization VDRAdmin-AM should use." -msgstr "Aqu se ajusta la localizacin que VDRAdmin-AM utilice." - -msgid "Save settings on exit:" -msgstr "Guardar los ajustes cuando sales:" +msgstr "Aqu se ajusta el idioma y codificacin de caracteres que VDRAdmin-AM utilizar." msgid "With this option the settings will be saved if VDRAdmin-AM exits. This will also save settings not available on the \"Configuration\" menu like interval and size in TV, sorting in the lists and current view in \"What's on now\"." -msgstr "Con esta opcin las propiedades van a ser guardados cuando VDRAdmin-AM se apaga. Asi guardar tambin las opciones invisibles del men \"Configuracin\" como intervalo y dimensiones del TV, orden de la lista y modo de vista en \"Se ve ahora\"." +msgstr "Con esta opcin los ajustes se guardarn cuando VDRAdmin-AM se apague. As guardar tambin las opciones invisibles del men \"Configuracin\" como intervalo y dimensiones del TV, orden de la lista y modo de vista en \"Programas ahora\"." msgid "Top" msgstr "Al principio" -msgid "Number of DVB cards:" -msgstr "Cantidad de tarjetas-DVB:" - msgid "The number of DVB cards VDR can access. Depending on this value VDRAdmin-AM will calculate critical timers in the <span class=\"ref_menu\">Timer</span> menu." msgstr "La cantidad de tarjetas accesibles. Referiendose a este valor, VDRAdmin-AM calcular programaciones crticas en el men <span class=\"ref_menu\">Programaciones</span>" -msgid "Path to recordings:" -msgstr "Ruta de las grabaciones:" - msgid "The path to VDR's recordings. It's used so that VDRAdmin-AM can locate the recordings when using <span class=\"ref_label\">Recordings Streaming</span> and <span class=\"ref_file\">reccmds.conf</span> in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "La ruta de las grabaciones. Necesario, para que VDRAdmin-AM pueda localizar las grabaciones para usar <span class=\"ref_label\">Flujo de grabaciones</span> y <span class=\"ref_file\">reccmds.conf</span> en el men <span class=\"ref_menu\">Grabaciones</span>." -msgid "Path to configuration files:" -msgstr "La ruta de los ficheros de configuracin:" - msgid "The path where VDR's configuration files are located. If this directory contains the file <span class=\"ref_file\">reccmds.conf</span> its content is shown in a selectbox in the <span class=\"ref_menu\">Recordings</span> menu." -msgstr "La ruta de los ficheros de configuracin del VDR. Si alli se encuentra el archivo <span class=\"ref_file\">reccmds.conf</span> su contenido vers en un campo de seleccin en el men <span class=\"ref_menu\">Grabaciones</span>." - -msgid "Path to EPG images:" -msgstr "Ruta de las las imagenes de EPG:" +msgstr "La ruta de los ficheros de configuracin del VDR. Si all se encuentra el archivo <span class=\"ref_file\">reccmds.conf</span> su contenido se mostrar en un campo de seleccin en el men <span class=\"ref_menu\">Grabaciones</span>." msgid "The path where the EPG images are stored." -msgstr "La ruta donde se guarda las imagenes de EPG" - -msgid "Username:" -msgstr "Nombre del usuario:" +msgstr "La ruta donde se guardan las imgenes de EPG" msgid "The username for the main user, i.e. the user having the most privileges." -msgstr "El nombre del usuario, p.e. el usuario con todos privilegios." - -msgid "Password:" -msgstr "Contrasea:" +msgstr "El nombre del usuario, p.e. el usuario con todos los privilegios." msgid "The main user's password." -msgstr "La contrasea del usuario." - -msgid "Guest Account:" -msgstr "Acceso como invitado:" +msgstr "La contrasea del usuario principal." msgid "If you want a user account having only limited privileges, this is for you. The guest user cannot modify anything, it's only allowed to view the EPG, timers, AutoTimers and recordings listings." -msgstr "Esta opcin te permite crear una cuenta limitada. La cuenta del invitado no permite modificar nada. Adems slo va a ver EPG, programaciones, autoprogramaciones y grabaciones." - -msgid "Guest Username:" -msgstr "Nombre como invitado:" +msgstr "Esta opcin te permite crear una cuenta limitada. La cuenta del invitado no permite modificar nada. Adems slo se le permite ver EPG, programaciones, autoprogramaciones y grabaciones." msgid "The username for the guest user." msgstr "Nombre del invitado." -msgid "Guest Password:" -msgstr "Contrasea como invitado:" - msgid "The guest user's password." msgstr "Contrasea del invitado." -msgid "Hours:" -msgstr "Rango de hora/s:" - msgid "The number of hours to show in the timeline." msgstr "Cantidad de horas visibles en la tabla de tiempo." -msgid "Times:" -msgstr "Horas:" - msgid "A comma separated list of times in <strong>hh:mm</strong> format that appear in the selectbox placed at the top." msgstr "Una lista separada por coma con el formato <strong>hh:mm</strong>, que aparece en la lista de seleccin al principio de la pgina." -msgid "Tooltips:" -msgstr "Extremidades de herramienta:" - msgid "Here you can (de-)activate the tooltips." -msgstr "Aqu se puede (des)activar las extremidades de herramienta." - -msgid "Active:" -msgstr "Activada:" +msgstr "Aqu se pueden (des)activar las notas flotantes." msgid "Activate or deactivate the AutoTimer function." -msgstr "Activar o desactivar la funccin autoprogramacin" - -msgid "Send email after programming timer:" -msgstr "Mandar mensaje despus de crear programacin:" +msgstr "Activar o desactivar la funcin autoprogramacin" msgid "VDRAdmin-AM will send an email whenever an event matches an AutoTimer and a timer has been programmed if you enable this feature." -msgstr "VDRAdmin-AM mandar un email, siempre cuando un evento cumple con una autoprogramacin y una programacin ha creado a caso lo que has habilitado esta posibilidad." - -msgid "Send email as:" -msgstr "Mandar mensaje electrnico como:" +msgstr "VDRAdmin-AM mandar un email, siempre que un evento cumpla con una autoprogramacin y se haya creado una programacin para l si habilitas esta posibilidad." msgid "Here you set the sending email address of the generated email." msgstr "Aqu se pone el remitente del mensaje generado." -msgid "Send email to:" -msgstr "Mandar mensaje electrnico a:" - msgid "The email address the email is sent to." msgstr "La direccin a donde se manda el mensaje." -msgid "Mail server:" -msgstr "Servidor de mensajes:" - msgid "The outgoing mail server." -msgstr "Servidor saliente" - -msgid "SMTPAuth user:" -msgstr "Usuario de SMPTAuth:" +msgstr "Servidor de correo saliente" msgid "If you need to authenticate yourself at the outgoing mail server, you have to supply the username and the password below. Leaving this field empty will disable SMTPAuth." -msgstr "Si hace falta autentificarse al servidor de mensajes saliente, hay que agregar el nombre del usuario y la contrasea abajo. Dejandolo vacio dehabilitar SMPTAuth." - -msgid "SMTPAuth password:" -msgstr "Contrasea de SMPTAuth:" +msgstr "Si hace falta autentificarse al servidor de mensajes saliente, hay que agregar el nombre del usuario y la contrasea abajo. Dejandolo vaco deshabilitar SMPTAuth." msgid "The password for the SMTPAuth user." msgstr "Contrasea del usuario de SMPTAuth." -msgid "Tooltips in timeline:" -msgstr "Extremidades de herramienta en la barra de tiempo:" - msgid "Here you can (de-)activate the tooltips in the timeline." -msgstr "Aqu se puede (des)activar las extremidades de herramienta en la tabla de tiempo" - -msgid "Tooltips in list:" -msgstr "Extremidades de herramienta en la lista:" +msgstr "Aqu se pueden (des)activar las notas flotantes en la tabla de tiempo" msgid "Here you can (de-)activate the tooltips in the list." -msgstr "Aqu se puede (des)activar las extremidades de herramienta en la lista." +msgstr "Aqu se pueden (des)activar las notas flotantes en la lista." msgid "Add summary to new timers:" msgstr "Aadir resumen a programaciones creadas:" msgid "If you don't want VDRAdmin-AM to add the summary taken from EPG to new timers you can switch it off here." -msgstr "Si no quieres que VDR agrega el resumen creado automticamente de la informacin de la EPG a las programaciones nuevas, se puede deshablitar aqu." - -msgid "Live Streaming:" -msgstr "Flujo en vivo:" +msgstr "Si no quieres que VDR agregue el resumen creado automticamente de la informacin de la EPG a las programaciones nuevas, se puede deshabilitar aqu." msgid "Enable or disable live streaming using the <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. You also have to set the correct <span class=\"ref_label\">HTTP Port for Streamdev</span> below." msgstr "Habilitar o inhabilitar flujo en vivo utilizando el <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. Adems tienes que ajustar correctamente el <span class=\"ref_label\">puerto HTTP para flujo</span> ms abajo." -msgid "HTTP Port of Streamdev (also possible 3000/ts):" -msgstr "Puerto-HTTP para el flujo (3000/ts tambin posible):" - msgid "Here you have to set the port number your VDR's streamdev server listens for connections. Additionally you can also provide the stream type you like to use." msgstr "Aqu se ajusta el numero del puerto del servidor del streamdev de VDR. Adems puedes elegir el tipo del flujo." -msgid "Recordings Streaming:" -msgstr "Flujo de grabaciones:" - msgid "Enable or disable streaming of recordings.<br />Well actually this is no real \"streaming\", but you have to setup your workstation so that it can access VDR's recordings. You can use for example Samba or NFS for this. VDRAdmin-AM simply generates a playlist that contains all parts of the recording and sends this to your browser. If your browser and media player are configured correctly you will see the recording on your workstation's display." msgstr "" -"Habilitar o deshabiltar el flujo de grabaciones.<br />\n" +"Habilitar o deshabilitar el flujo de grabaciones.<br />\n" "Pues realmente no es un \"flujo\" de verdad, por que tienes que configurar tu ordenador para que tenga acceso a las grabaciones del VDR. Se puede usar Samba o NFS. VDRAdmin-AM solo va a crear una lista de ttulos incluyendo todas las grabaciones y mandarlas al navegador. Si est bien configurado el navegador y reproductor multimedia, vers las grabaciones en la pantalla del ordenador." -msgid "Path to VDR Recordings on your workstation:" -msgstr "La ruta de las grabaciones de VDR en tu ordenador" - msgid "This is the path where your workstation can access VDR's recordings. This depends on your VDR and workstation setup, for example \"\\\\vdr\\videos\" or \"V:\\\" (on Windows) or \"/mnt/videos\" (on Linux)." -msgstr "sta es la ruta donde tu ordenador pude acceder al las grabaciones de VDR. Depende de la configuracin de los dos, p.e. \"\\\\vdr\\videos\" o \"V:\\\" (en Windows) o \"/mnt/videos\" (en Linux)." - -msgid "MIME type for live streaming:" -msgstr "Tipo MIME del flujo en vivo:" +msgstr "sta es la ruta donde tu equipo puede acceder a las grabaciones de VDR. Depende de la configuracin de los dos, p.e. \"\\\\vdr\\videos\" o \"V:\\\" (en Windows) o \"/mnt/videos\" (en Linux)." msgid "The MIME type to send when using live streaming. Defaults to \"video/x-mpegurl\"." msgstr "Tipo MIME para mandar utilizando flujo en vivo. Por defecto \"video/x-mpegurl\"." -msgid "Suffix for live streaming:" -msgstr "Extencin para flujo en vivo:" - msgid "The suffix to use for live streaming. Defaults to \"m3u\"." -msgstr "La extencin para el uso de flujo en vivo. Por defecto \"m3u\"." - -msgid "MIME type for recordings streaming:" -msgstr "Tipo MIME para flujo de grabaciones:" +msgstr "La extensin para el uso de flujo en vivo. Por defecto \"m3u\"." msgid "The MIME type to send when using recordings streaming. Defaults to \"video/x-mpegurl\"." msgstr "Tipo MIME para mandar mientras utilizando flujo de grabaciones. Por defecto \"video/x-mpegurl\"." -msgid "Suffix for recordings streaming:" -msgstr "Extencin para flujo de grabaciones:" - msgid "The suffix to use for recordings streaming. Defaults to \"m3u\"." -msgstr "La extencin utilizado para flujos de grabaciones. Por defecto \"m3u\"." +msgstr "La extensin utilizada para flujos de grabaciones. Por defecto \"m3u\"." msgid "<p>Here you can define two external searches that you can access in the EPG views. You simply have to find the required URL and where the search pattern has to be located. %TITLE% will be substituted by the broadcast's EPG title.</p>" -msgstr "<p>Aqui se puede definir 2 bsquedas externas que seran accesibles en las vistas de EPG. Solo hay que encontrar la URL necesario y el lugar del sistema de bsqueda. %TITLE% se va a sustituir con el ttulo del EPG.</p>" +msgstr "<p>Aqu se pueden definir dos bsquedas externas que sern accesibles en las vistas de EPG. Solo hay que encontrar la URL necesaria y dnde se ha de insertar el patrn de bsqueda. %TITLE% se va a sustituir con el ttulo de la EPG.</p>" msgid "Some examples:" msgstr "Unos ejemplos:" msgid "Please change the hostname to your local needs!" -msgstr "Adapta el nombre del host a tus necesidades locales!" +msgstr "Adapta el nombre del host a tus necesidades locales!" msgid "<p>This section is for experts <strong>only</strong>, i.e. you know what you are doing!</p>" msgstr "<p>Esta seccin es <strong>slo</strong> para expertos, es bastante importante saber que haces!</p>" -msgid "Update EPG data in background:" -msgstr "Actualizar datos EPG en segundo plano" - msgid "If set to \"yes\" VDRAdmin-AM will periodically refresh its local EPG cache. Else the EPG will be refreshed if the user accesses any EPG view at the web interface and the timeout set at \"Update EPG every\" has been reached." -msgstr "Si esta activado con \"s\" VDRAdmin-AM actualizar periodicamente su datos EPG local en segundo plano. En el otro caso solo se actualiza, cuando el usuario abre la vista de EPG en la pantilla del VDRAdmin y el periodo ajustado en \"Actualizar EPG cada\" se ha caducado." - -msgid "Update EPG every:" -msgstr "Actualizar datos EPG cada:" +msgstr "Si esta activado con \"s\" VDRAdmin-AM actualizar peridicamente su datos EPG local en segundo plano. En el otro caso solo se actualiza, cuando el usuario abre la vista de EPG en la plantilla del VDRAdmin y el periodo ajustado en \"Actualizar EPG cada\" se ha caducado." msgid "The interval, the EPG data is refreshed from VDR and AutoTimer updates are performed (if AutoTimer feature is used)." msgstr "El intervalo de bsqueda que va a realizar VDRAdmin-AM para actualizar las autoprogramaciones (en caso de usar el autoprogramador)" @@ -1085,94 +963,29 @@ msgstr "El intervalo de bsqueda que va a realizar VDRAdmin-AM para actualizar l msgid "<p>If you want to limit the number of channels used in some parts of VDRAdmin-AM, this is for you!</p><p>Use the radio buttons to activate or deactivate the wanted channels in the named menu.</p><p>To add channels to the list of wanted channels you have to select them in the left side selectbox and click <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. If you want to remove channels from the list of wanted channels you have to select them in the right side selectbox and click <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" msgstr "" "<p>Aqu se puede limitar la cantidad de emisoras visibles en diferentes partes del VDRAdmin-AM!</p>\n" -"<p>Usa los botones para activar o desactivar en el menu las emisoras deseadas.</p>\n" -"<p>Emisoras se puede aadir seleccionando una o ms en el campo izquierda (Elegir ms que uno se permite con el botn \"CTRL\" apretando mientras haces clic en las emisoras). Al final haces clic en el botn <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. Para desmarcar emisoras funcciona viceversa.</p>" - -msgid "Show channels without EPG information:" -msgstr "Mostrar emisoras sin informacin EPG:" +"<p>Usa los botones para activar o desactivar en el men las emisoras deseadas.</p>\n" +"<p>Se pueden aadir emisoras seleccionando una o ms en el campo de la izquierda (Elegir ms de una se permite con el botn \"CTRL\" apretando mientras haces clic en las emisoras). Al final haces clic en el botn <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. Para desmarcar emisoras haz lo mismo pero con las emisoras de la lista de la derecha y pulsa <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" msgid "Usually channels that don't have EPG information are hidden in all EPG views. If you don't want them to be hidden you have to set this option to \"yes\"." -msgstr "Normalmente no se ve las emisoras sin informacin EPG. Si se pone esta opcin a \"si\" se muestra sin embargo." - -msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" -msgstr "" -"<p>Aqui se encuentra una lista de todas las autoprogramaciones conocidas por VDRAdmin-AM.</p>\n" -"<p>La lista contiene informaciones de las autoprogramaciones. Se puede cambiar el orden de la lista haciendo clic en los ttulos de las columnas.</p>\n" -"\n" -"<p>Para cada autoprogramacin hay las siguientes opciones:<dl>\n" -"<dt>Cambiar estado</dt>\n" -"<dd>Haciendo clic en \"S\" o \"No\" en la columna \"Activada\" se puede activar y desactivar.</dd>\n" -"\n" -"<dt>Vista rapida de prioridad y durabilidad</dt>\n" -"<dd>Tienes que mover la flecha del ratn encima del nombre de la autoprogramacin.</dd>\n" -"\n" -"<dt>Modificar autoprogramacin</dt>\n" -"<dd>Se realiza una edicin haciendo clic en <img src=\"bilder/edit.png\" alt=\"editar\" />.</dd>\n" -"\n" -"<dt>Borrar autoprogramacin</dt>\n" -"<dd>Para borrar una autoprogramacin hay que hacer clic en <img src=\"bilder/delete.png\" alt=\"borrar\" />.</dd>\n" -"</dl></p>\n" -"<p>El estado de una autoprogramacin est indicada por colores diferentes:<br />\n" -"<img src=\"bilder/poempl_gruen.png\" alt=\"Activa\" align=\"middle\" /> La autoprogramacin est bien y va programar automticamente estrenos coincidentes.<br />\n" -"<img src=\"bilder/poempl_grau.png\" alt=\"inactiva\" align=\"middle\" /> La autoprogramacin est desactivada.</p>\n" -"<p>Adems se puede aadir otra autoprogramacin ms, haciendo clic en <input type=\"submit\" class=\"submit\" value=\"Aadir autoprogramacin\"/> al tope. Ms abajo se encuentra el botn <input type=\"submit\" class=\"submit\" value=\"Borrar autoprogramaciones elegidas\"/>, cul hace posible borrar las autoprogramaciones marcadas en la lista por lotes.</p>\n" -"<p>Con el botn <input type=\"submit\" class=\"submit\" value=\"Actualizar ahora\"/> arrancars una bsqueda inmediatamente en los datos actuales de la EPG rcien actualizados.</p>" - -msgid "Your Browser does not support frames!" -msgstr "El navegador no respalda marcos!" - -msgid "Rename Recording" -msgstr "Renombrar grabacin" +msgstr "Normalmente no se muestran las emisoras sin informacin EPG. Si no quieres que se oculten pon esta opcin a \"s\"." -msgid "Original Name of Recording:" -msgstr "Ttulo actual de la grabacin:" - -msgid "New Name of Recording:" -msgstr "Ttulo nuevo de la grabacin:" - -msgid "Subtitle:" -msgstr "Subttulo:" - -msgid "Rename" -msgstr "Renombrar" +msgid "Edit Timer" +msgstr "Modificar programacin" -msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" -msgstr "" -"<p>Aqu se ve una lista de todas las grabaciones disponibles en el VDR. En la fila encabezada se puede ver el espacio total y libre del VDR.</p>\n" -"<p>Esta lista contiene algunas informaciones de las grabaciones. Se puede cambiar el orden de la lista haciendo clic en los ttulos de las columnas. Encima se ve la ruta de navegar. Si quieres ver el contenido de una carpeta visitado anteriormente, se puede hacer clic en el nombre de la carpeta en esa ruta.</p>\n" -"<p>Cada fila contiene las informaciones siguientes:<dl>\n" -"\n" -"<dt>Fecha</dt>\n" -"<dd>La fecha cuando se lo realiz la grabacin. Si es una carpeta se ve la cantidad de grabaciones dentro.</dd>\n" -"\n" -"<dt>Hora</dt>\n" -"<dd>La hora cuando se lo grab. Si es una carpeta se ve la cantidad de grabaciones <strong>nuevas</strong>.</dd>\n" -"\n" -"<dt>Nombre</dt>\n" -"<dd>El nombre de la carpeta o de la grabacin. Se hace clic para ver el contenido o un resmen de la grabacin..</dd>\n" -"\n" -"<dt>Renombrar (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt>\n" -"<dd>Renombrar una grabacin.<br /><h4>Advertencia:</h4>Solo funccionar si tu VDR entiende el comando <u>RENR</u> del SVDRPuerto. Anque no es un orden estandar del VDR, se puede aadir un parche. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> y <span class=\"ref_file\">enAIO-v2.2+</span> te aadir este orden.</dd>\n" -"\n" -"<dt>Borrar (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt>\n" -"<dd>Borrar una grabacion.</dd>\n" -"\n" -"<dt>Flujo (<img src=\"bilder/stream.jpg\" alt=\"stream\" />)</dt>\n" -"<dd>Esta columna solo se ve, si has activado y configurado <span class=\"ref_label\">Flujo de grabaciones</span> en la pgina de <span class=\"ref_menu\">Configuraciones</span>. As entonces es posible ver las grabaciones en tu ordenador.</dd></dl></p>\n" -"<p>Adems es posible borrar varias grabaciones por lotes, marcando la casilla de cada una deseada y haciendo clic en <input type=\"submit\" class=\"submit\" value=\"Borrar grabaciones elegidas\"/></p>\n" -"<p>Si has ajustado la ruta de los archivos de configuracin y adems se encuntra ahi el fichero <span class=\"ref_file\">reccmds.conf</span>, se puede utilizar los rdenes que contiene para las grabaciones elegidas. Hay que elegir el rden deseado con el botn a lado de <span class=\"ref_label\">rdenes:</span> y depus hacer clic en <input type=\"submit\" class=\"submit\" value=\"Ejecutar\"/>.</p>/n<p>As se restaurar la lista de grabaciones de VDR</p>" +msgid "Edit EPG" +msgstr "Modificar EPG" msgid "<p>Here you can edit the descriptive fields of an existing EPG entry.</p>" msgstr "<p>Aqu se puede modificar la descripcin de una entrada EPG existente.</p>" msgid "Channel (readonly)" -msgstr "Emisora (solo lectura)" +msgstr "Emisora (slo lectura)" msgid "This is the channel of the EPG entry. It cannot be changed." -msgstr "Eso es el canal de la entrada del EPG. No se puede cambiar!" +msgstr "Eso es el canal de la entrada del EPG. No se puede cambiar!" msgid "Time (readonly)" -msgstr "Horas (solo lectura)" +msgstr "Horas (slo lectura)" msgid "This is the start and end time of the entry. It cannot be changed." msgstr "Eso es la hora de inicio y final de la entrada. No se puede cambiar!" @@ -1181,157 +994,196 @@ msgid "Change this string to give this EPG Entry a new title. It must consist of msgstr "El nuevo ttulo de solo una fila de la entrada de la EPG." msgid "Change this string to give this EPG Entry a new subtitle. It must consist of only one line of text." -msgstr "El nuevo subttulo monolineal de la entrada de la EPG." +msgstr "El nuevo subttulo de la entrada de la EPG. Slo puede contener una lnea." msgid "Change the text in this field to edit the description of this entry. The text can consist of one or more lines." -msgstr "Aqui se puede manipular la descripcin del EPG. (multifila posible)" +msgstr "Aqu se puede manipular la descripcin del EPG. Este texto puede tener varias lneas." msgid "VPS (readonly)" -msgstr "VPS (solo lectura)" +msgstr "VPS (slo lectura)" msgid "If available this field shows the vps time of the EPG entry. It cannot be changed." msgstr "Si disponible, muestra la hora VPS de la entrada de EPG. No se puede modificar." msgid "Video tracks (readonly)" -msgstr "Pistas de video (solo lectura)" +msgstr "Pistas de vdeo (slo lectura)" msgid "If available this field shows the video track(s). It cannot be changed." -msgstr "Si disponible, muestra las pistas de video. No se puede modificar." +msgstr "Si disponible, muestra las pistas de vdeo. No se puede modificar." msgid "Audio tracks (readonly)" -msgstr "Pistas de audio (solo lectura)" +msgstr "Pistas de audio (slo lectura)" msgid "If available this field shows the audio track(s). It cannot be changed." msgstr "Si disponible, muestra las pistas de audio. No se puede modificar." -msgid "Duration:" -msgstr "Duracin:" - -msgid "min" -msgstr "min" - -msgid "Transponder:" -msgstr "Transpondor" - -msgid "CA-System:" -msgstr "Sistema CA:" - -msgid "New Timer" -msgstr "Aadir programacin" - -msgid "Date" -msgstr "Fecha" - -msgid "Edit timer status?" -msgstr "Cambiar estado de la programacin?" +msgid "No Help Available" +msgstr "No hay ayuda" -msgid "This timer is inactive!" -msgstr "Esta programacin est desactivada!" +msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgstr "" +"<p>Para esta funcin no dispone ayuda hasta ahora. Para aadir o modificar un texto, escribe un e-mail a \n" +"<a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgid "This timer is impossible!" -msgstr "Esta programacin es imposible!" +msgid "Recordings" +msgstr "Grabaciones" -msgid "No more timers on other transponders possible!" -msgstr "No se puede aadir ms programaciones!" +msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" +msgstr "" +"<p>Aqu se ve una lista de todas las grabaciones disponibles en el VDR. En la fila encabezada se puede ver el espacio total y libre del VDR.</p>\n" +"<p>Esta lista contiene algunas informaciones de las grabaciones. Se puede cambiar el orden de la lista haciendo clic en los ttulos de las columnas. Encima se ve la ruta de navegar. Si quieres ver el contenido de una carpeta visitado anteriormente, se puede hacer clic en el nombre de la carpeta en esa ruta.</p>\n" +"<p>Cada fila contiene las informaciones siguientes:<dl>\n" +"\n" +"<dt>Fecha</dt>\n" +"<dd>La fecha cuando se realiz la grabacin. Si es una carpeta se ve la cantidad de grabaciones dentro.</dd>\n" +"\n" +"<dt>Hora</dt>\n" +"<dd>La hora cuando se grab. Si es una carpeta se ve la cantidad de grabaciones <strong>nuevas</strong>.</dd>\n" +"\n" +"<dt>Nombre</dt>\n" +"<dd>El nombre de la carpeta o de la grabacin. Se hace clic para ver el contenido o un resmen de la grabacin..</dd>\n" +"\n" +"<dt>Renombrar (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt>\n" +"<dd>Renombrar una grabacin.<br /><h4>Advertencia:</h4>Solo funccionar si tu VDR entiende el comando <u>RENR</u> del SVDRPuerto. Anque no es un orden estandar del VDR, se puede aadir un parche. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> y <span class=\"ref_file\">enAIO-v2.2+</span> te aadir este orden.</dd>\n" +"\n" +"<dt>Borrar (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt>\n" +"<dd>Borrar una grabacion.</dd>\n" +"\n" +"<dt>Flujo (<img src=\"bilder/stream.jpg\" alt=\"stream\" />)</dt>\n" +"<dd>Esta columna solo se ve, si has activado y configurado <span class=\"ref_label\">Flujo de grabaciones</span> en la pgina de <span class=\"ref_menu\">Configuraciones</span>. As entonces es posible ver las grabaciones en tu ordenador.</dd></dl></p>\n" +"<p>Adems es posible borrar varias grabaciones por lotes, marcando la casilla de cada una deseada y haciendo clic en <input type=\"submit\" class=\"submit\" value=\"Borrar grabaciones elegidas\"/></p>\n" +"<p>Si has ajustado la ruta de los archivos de configuracin y adems se encuntra ahi el fichero <span class=\"ref_file\">reccmds.conf</span>, se puede utilizar los rdenes que contiene para las grabaciones elegidas. Hay que elegir el rden deseado con el botn a lado de <span class=\"ref_label\">rdenes:</span> y depus hacer clic en <input type=\"submit\" class=\"submit\" value=\"Ejecutar\"/>.</p>/n<p>As se restaurar la lista de grabaciones de VDR</p>" -msgid "Timer OK." -msgstr "Esta programacin es vlida." +msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" +msgstr "" +"<p>Aqu encontrars una lista de programaciones conocidas para VDR.</p>\n" +"<p>Arriba hay un diagrama mostrando grficamente las programaciones del da. Te ofrece una vista rpida del da especificado y te ayuda encontrar programaciones conflictivas. Moviendo la flecha del ratn encima de cualquier programacin vers el ttulo, la prioridad, la durabilidad y la duracin de la programacin.</p>\n" +"<p>Abajo del diagrama encuentras la lista de programaciones visualizando unas informaciones de las programaciones. Se puede cambiar el orden de la lista con un clic en el tope de la columna correspondiente.</p>\n" +"<p>Para cada programacin tienes las siguientes opciones:<dl>\n" +"<dt>Establecer su estado</dt>\n" +"<dd>Hacer clic en \"S\", \"No\", \"VPS\" o \"Auto\" en la columna \"Activa\".</dd>\n" +"<dt>Vista rpida de la prioridad y durabilidad</dt>\n" +"<dd>Moviendo la flecha del ratn encima del ttulo de programacin.</dd>\n" +"<dt>Vista de la entrada del EPG</dt>\n" +"<dd>Programaciones con <span class=\"ref_label\">Autotest programacin</span> para la \"Identificacin de la transmisin\" ensearn la entrada correspondiente del EPG si haces clic en el ttulo.</dd>\n" +"\n" +"<dt>Modificar programacin</dt>\n" +"<dd>Se puede editar una programacin haciendo clic en <img src=\"bilder/edit.png\" alt=\"editar\" />.</dd>\n" +"\n" +"<dt>Borrar la programacin</dt>\n" +"<dd>Se puede borrar una programacin haciendo clic en <img src=\"bilder/delete.png\" alt=\"borrar\" />.</dd></dl></p>\n" +"\n" +"<p>El estado de cualquiera programacin est indicado por iconos de diferentes colores (la vista como diagrama) o imagenes (la vista como lista):<br />\n" +"<span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"activa\" align=\"middle\" /> OK para la programacin y grabar.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problema\" align=\"middle\" /> Conflictos con otras programaciones. sto no produzca ningn problema, si hay bastantes tarjetas DVB para grabar en paralelo.<br />\n" +"<span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"imposible\" align=\"middle\" /> Programacin crtica que probablemente <strong>no</strong> grabar.<br />\n" +"<span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactiva\" align=\"middle\" /> Programacin inactiva.</p>\n" +"<p>Adems puedes aadir una programacin nueva cliqueando encima de <input type=\"submit\" class=\"submit\" value=\"Aadir programacin\"/> arriba y se puede borrar programaciones por lotes cliqueando encima <input type=\"submit\" class=\"submit\" value=\"Borrar programaciones seleccionadas\"/> al final de la columna.</p>\n" +"<p>Se puede <input type=\"submit\" class=\"submit\" value=\"activar\"/> y <input type=\"submit\" class=\"submit\" value=\"desactivar\"/> programaciones seleccionadas.</p>" -msgid "Auto" -msgstr "Auto" +msgid "<p>Here you can edit a timer's settings.</p>" +msgstr "<p>Aqu se pueden modificar los ajustes de las programaciones.</p>" -msgid "activate" -msgstr "Activar" +msgid "Timer Active:" +msgstr "Programacin activa:" -msgid "inactivate" -msgstr "Desactivar" +msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." +msgstr "Activar o desactivar esta programacin. Programaciones desactivadas se encuentran todava en la lista de las programaciones. As se puede activarse ms tarde. Pero significar que no grabar mientras estn desactivadas." -msgid "selected timers" -msgstr "programaciones elegidas" +msgid "AutoTimer Checking:" +msgstr "Comprobacin de las auto programaciones:" -msgid "Delete Selected Timers" -msgstr "Borrar programaciones elegidas" +msgid "Depending on how this timer has been programmed you have up to three possible settings:" +msgstr "Dependiendo de como se haya creado la programacin tienes tres ajustes posibles:" -msgid "No timers defined!" -msgstr "No hay programaciones!" +msgid "Transmission Identification" +msgstr "Identificador de la emisora" -msgid "EPG Search Blacklists" -msgstr "Utiliza lista negra en bsqueda de EPG:" +msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." +msgstr "Monitorizar esta programacin utilizando la identificacin del EPG. Ten en cuenta, que ste slo funcionar si el identificador es un valor fijo y nico! Esta opcin no es valido para programaciones creados en VDR." -msgid "New Blacklist" -msgstr "Nueva lista negra" +msgid "Time" +msgstr "Hora" -msgid "Search pattern" -msgstr "Palabras claves:" +msgid "Monitor this timer using the start and stop time." +msgstr "Monitorizar esta programacin utilizando hora de inicio y fin." -msgid "From" -msgstr "De" +msgid "off" +msgstr "apagado" -msgid "To" -msgstr "Al" +msgid "Do not monitor this timer." +msgstr "No monitorices esta programacin." -msgid "Delete blacklist?" -msgstr "Borrar lista negra?" +msgid "The channel to record." +msgstr "La emisora para grabar:" -msgid "Delete Selected Blacklists" -msgstr "Borrar listas negras elegidas" +msgid "Day Of Recording:" +msgstr "Da de la grabacin:" -msgid "Delete all selected blacklists?" -msgstr "Estas seguro de que deseas borrar las listas negras elegidas?" +msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." +msgstr "" +"El da de la activacin de la programacin. Se puede verificar en dos formatos:<ul>\n" +"<li>Dos dgitos (DD). As se usar mes y ao actual.</li>\n" +"<li>Norma ISO (YYYY-MM-DD). Esta forma te permite crear programaciones para cualquier momento en el futuro.</li></ul>\n" +"Para una programacin repetitiva usa las 7 casillas abajo del texto. Cada una marcar el da activado para la programacin." -msgid "EPG search" -msgstr "Bsqueda EPG" +msgid "Start Time:" +msgstr "Comienzo:" -msgid "Use template" -msgstr "Usar plantilla:" +msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Esta es la hora cuando la programacin iniciar la grabacin. El primer campo de texto es para \"hora\", el segundo para \"minutos\"." -msgid "New Search" -msgstr "Bsqueda nueva" +msgid "End Time:" +msgstr "Fin:" -msgid "Action" -msgstr "Accin" +msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Esta es la hora cuando la programacin acabar la grabacin. El primer campo de texto es para \"hora\", el segundo para \"minutos\"." -msgid "Find" -msgstr "Buscar" +msgid "Title of Recording:" +msgstr "Ttulo de la grabacin:" -msgid "Show Favorites" -msgstr "Ensear favoritas" +msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." +msgstr "" +"El <strong>titulo</strong> que esta programacin va a dar a la grabacin. Si la grabacin la quieres agregar en una subcarpeta, tienes que seperar cada una con '~' (desde que el caracter '/' puede ser parte de programas regulares).<br />\n" +"<br />Las palabras claves <strong>TTULO</strong> y <strong>EPISODIO</strong>, si existen, van a ser sustituidos con ttulo y episodio de los datos de la EPG en la hora de grabacin; si no puede verificar esos datos, porque no se encuentra la informacin en los datos\n" +" <strong>TTULO</strong> se pone con el nombre del canal y <strong>EPISODIO</strong> se deja en blanco." -msgid "Delete Selected Searches" -msgstr "Borrar bsquedas elegidas" +msgid "Summary:" +msgstr "Resumen:" -msgid "Delete all selected searches?" -msgstr "Estas seguro de que deseas borrar las bsquedas elegidas?" +msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." +msgstr "Un texto a tu gusto para describir la grabacin realizada de una programacin. Si este campo contiene algo, el texto va a ser escrito al fichero <span class=\"ref_file\">summary.vdr</span> o <span class=\"ref_file\">info.vdr</span> de la grabacin." -msgid "Execute Selected Searches" -msgstr "Ejecutar bsquedas elegidas" +msgid "Your Browser does not support frames!" +msgstr "El navegador no respalda marcos!" -msgid "Duration" -msgstr "Duracin:" +msgid "What's On Now?" +msgstr "Programas ahora" -msgid "Template:" -msgstr "Plantilla:" +msgid "Playing Today?" +msgstr "Programas hoy" -msgid "Also used for other EPG views!" -msgstr "Tambin se usa para otras vistas de la EPG!" +msgid "Remote Control" +msgstr "Mando a distancia" -msgid "Bandwidth of Streams:" -msgstr "Ancho de banda del flujo:" +msgid "Watch TV" +msgstr "Ver TV" -msgid "URL:" -msgstr "URL:" +msgid "Commands" +msgstr "rdenes" -msgid "Title:" -msgstr "Ttulo:" +msgid "Search" +msgstr "Buscar" -msgid "User-defined search:" -msgstr "Bsqueda personalizada:" +msgid "Authorization Required" +msgstr "Autorizacin requerida" -msgid "In \"AutoTimer\"?" -msgstr "Usar en \"Autoprogramaciones\"?" +msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." +msgstr "" +"Este servidor no pudo verificar, t permiso de acceso al documento requerido.<br>\n" +"Posiblemente por entregar datos incorrectos (nombre del usuario o contrasea p.e.) o por que t navegador no soporta la forma de acceso." -msgid "Apply" -msgstr "Establecer" +msgid "VPS" +msgstr "VPS" msgid "close" msgstr "cerrar" @@ -1346,10 +1198,49 @@ msgid "edit" msgstr "Modificar" msgid "Video tracks:" -msgstr "Pista de video:" +msgstr "Pistas de vdeo:" msgid "Audio tracks:" -msgstr "Pista de audio:" +msgstr "Pistas de audio:" + +msgid "Video tracks" +msgstr "Pistas de vdeo:" + +msgid "Audio tracks" +msgstr "Pistas de audio:" + +msgid "TV select" +msgstr "cambiar canal" + +msgid "Stream" +msgstr "Flujo" + +msgid "Channel group:" +msgstr "Grupo de emisoras:" + +msgid "Go!" +msgstr "Venga!" + +msgid "Search for other show times" +msgstr "Buscar repeticiones" + +msgid "No Information" +msgstr "No hay informacin" + +msgid "No EPG information available" +msgstr "No hay informacin de la EPG" + +msgid "Playing Today" +msgstr "Emisiones de hoy" + +msgid "starting at" +msgstr "empezando a la/s" + +msgid "What's on:" +msgstr "Se puede ver:" + +msgid "at" +msgstr " a la/s:" msgid "now" msgstr "ahora" @@ -1357,19 +1248,32 @@ msgstr "ahora" msgid "to" msgstr "hasta" +msgid "Duration:" +msgstr "Duracin:" + +msgid "min" +msgstr "min" + msgid "at:" msgstr " a la/s:" msgid "You need JavaScript to use the timeline!" -msgstr "JavaScript es necesario para aprovechar la barra de tiempo!" +msgstr "Se necesita JavaScript para usar la barra de tiempo!" -msgid "Authorization Required" -msgstr "Autorizacin requerida" +msgid "Rename Recording" +msgstr "Renombrar grabacin" -msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." -msgstr "" -"Este servidor no pudo verificar, t permiso de acceso al documento requerido.<br>\n" -"Posiblemente por entregar datos incorrectos (nombre del usuario o contrasea p.e.) o por que t navegador no soporta la forma de acceso." +msgid "Original Name of Recording:" +msgstr "Ttulo actual de la grabacin:" + +msgid "New Name of Recording:" +msgstr "Ttulo nuevo de la grabacin:" + +msgid "Subtitle:" +msgstr "Subttulo:" + +msgid "Rename" +msgstr "Renombrar" msgid "Total:" msgstr "Espacio en el disco:" @@ -1380,6 +1284,9 @@ msgstr "h." msgid "Free:" msgstr "Espacio disponible:" +msgid "Date" +msgstr "Fecha" + msgid "Total" msgstr "en total" @@ -1396,11 +1303,14 @@ msgid "Delete recording?" msgstr "Borrar grabacin?" msgid "Refresh" -msgstr "Restaurar" +msgstr "Actualizar" msgid "Commands:" msgstr "rdenes:" +msgid "Really run this command?" +msgstr "Ejecutar la orden de verdad?" + msgid "Delete Selected Recordings" msgstr "Borrar grabaciones elegidas" @@ -1410,17 +1320,116 @@ msgstr "Estas seguro de que deseas borrar las grabaciones elegidas?" msgid "No recordings available" msgstr "No hay grabaciones." +msgid "Transponder:" +msgstr "Transpondedor" + +msgid "CA-System:" +msgstr "Sistema CA:" + +msgid "New Timer" +msgstr "Aadir programacin" + +msgid "Edit timer status?" +msgstr "Cambiar estado de la programacin?" + +msgid "This timer is inactive!" +msgstr "Esta programacin est inactiva!" + +msgid "This timer is impossible!" +msgstr "Esta programacin es imposible!" + +msgid "No more timers on other transponders possible!" +msgstr "No se pueden aadir ms programaciones!" + +msgid "Timer OK." +msgstr "Esta programacin es vlida." + +msgid "Auto" +msgstr "Auto" + +msgid "activate" +msgstr "Activar" + +msgid "inactivate" +msgstr "Desactivar" + +msgid "selected timers" +msgstr "programaciones elegidas" + +msgid "Delete Selected Timers" +msgstr "Borrar programaciones elegidas" + +msgid "No timers defined!" +msgstr "No hay programaciones!" + +msgid "Create New Timer" +msgstr "Aadir programacin" + +msgid "Buffer:" +msgstr "Almacenador intermediario:" + +msgid "Use VPS:" +msgstr "Utiliza VPS:" + +msgid "readonly" +msgstr "slo lectura" + +msgid "Timer has been set by AutoTimer pattern:" +msgstr "Programacin por cumplir ajustes de la autoprogramacin:" + +msgid "TV" +msgstr "TV" + +msgid "Interval:" +msgstr "Intervalo:" + +msgid "sec." +msgstr "seg" + +msgid "G" +msgstr "C" + +msgid "Grab the picture!" +msgstr "Captura la imagen!" + +msgid "Size:" +msgstr "Dimensiones:" + +msgid "Open in separate window" +msgstr "Abrir en una ventana separada" + +msgid "VDR Commands" +msgstr "rdenes de VDR" + +msgid "Export channels as playlist:" +msgstr "Exportar los canales como lista de" + +msgid "Number of lines to show:" +msgstr "Cantidad de lneas a mostrar:" + +msgid "unlimited" +msgstr "sin lmites" + +msgid "SVDRP commands:" +msgstr "rdenes de SVDRP:" + +msgid "Commands defined in commands.conf:" +msgstr "rdenes definidas en commands.conf:" + +msgid "Output" +msgstr "Salida" + msgid "What's your VDR hostname (e.g video.intra.net)?" msgstr "Cul es el nombre del sitio del VDR (p.e. video.intra.net)?" msgid "On which port does VDR listen to SVDRP queries?" -msgstr "Cul puerto esta vigilando VDR para requeridas de SVDRP?" +msgstr "Por qu puerto est escuchando VDR para peticiones de SVDRP?" msgid "On which address should VDRAdmin-AM listen (0.0.0.0 for any)?" msgstr "En qu direccin debe VDRAdmin-AM escuchar (0.0.0.0 para todas)?" msgid "On which port should VDRAdmin-AM listen?" -msgstr "Qu puerto debe VDRAdmin-AM esperar rdenes?" +msgstr "Por qu puerto debe VDRAdmin-AM esperar rdenes?" msgid "Username?" msgstr "Nombre del usuario?" @@ -1435,7 +1444,7 @@ msgid "Where are your VDR's configuration files located?" msgstr "Introduce la ruta de los archivos de configuracin:" msgid "Config file written successfully." -msgstr "Los archivos de configuracin creados!" +msgstr "El archivo de configuracin se ha escrito con xito!" #, perl-format msgid "%s %s started with pid %d." @@ -1445,13 +1454,13 @@ msgid "Not found" msgstr "No encontrado" msgid "The requested URL was not found on this server!" -msgstr "No encontrado la URL requerida, en el servidor!" +msgstr "No se ha encontrado la URL requerida en este servidor!" msgid "Forbidden" msgstr "Prohibido" msgid "You don't have permission to access this function!" -msgstr "No tienes permiso para sta funccin!" +msgstr "No tienes permiso para esta funcin!" msgid "All channels" msgstr "Todas las emisoras" @@ -1463,18 +1472,18 @@ msgid "TV channels" msgstr "Emisoras de TV" msgid "Radio channels" -msgstr "Emisoras de Radio" +msgstr "Emisoras de radio" #, perl-format msgid "Access to file \"%s\" denied!" -msgstr "Acceso al archivo \"%s\" negado!" +msgstr "Acceso al archivo \"%s\" denegado!" #, perl-format msgid "The URL \"%s\" was not found on this server!" msgstr "No encontrado la URL %s en el servidor!" msgid "Your favorites" -msgstr "Ts favoritos" +msgstr "Tus favoritos" msgid "Search results" msgstr "Resultados de bsqueda" @@ -1501,7 +1510,7 @@ msgstr "No se puede conectar a VDR a %s:%s<br /><br />Compruebe si VDR est en #, perl-format msgid "Error while sending command to VDR at %s" -msgstr "Error mientras mand el orden a %s " +msgstr "Error mientras mand la orden a %s " msgid "Internal error:" msgstr "Error interno:" @@ -1510,17 +1519,17 @@ msgid "Lookup movie in the Internet-Movie-Database (IMDb)" msgstr "Buscar la pelcula en la base de datos de pelculas en Internet (IMDb)" msgid "Can't find EPG entry!" -msgstr "No se encuentra el registro en la EPG!" +msgstr "No se encuentra el registro en la EPG!" msgid "Playing Tomorrow" -msgstr "Estrenos maana" +msgstr "Programas maana" #, perl-format msgid "Playing on the %s" -msgstr "Estrenos en %s" +msgstr "Programas el %s" msgid "next" -msgstr "prximo" +msgstr "despus" msgid "What's on after" msgstr "Se puede ver despus:" @@ -1529,10 +1538,10 @@ msgid "What's on at" msgstr "Se puede ver a la/s:" msgid "Suitable matches for:" -msgstr "Emparejamientos convenientes para:" +msgstr "Coincidencias encontradas para:" msgid "short view" -msgstr "Vista rapida" +msgstr "Vista rpida" msgid "long view" msgstr "Vista detallada" @@ -1542,14 +1551,14 @@ msgstr "Vista general" #, perl-format msgid "Can't write configuration file %s! Reason: %s" -msgstr "" +msgstr "No se puede escribir el archivo de configuracin %s! Razn: %s" #, perl-format msgid "Configuration file %s not writeable! Configuration won't be saved!" -msgstr "" +msgstr "El archivo de configuracin %s no se puede escribir! La configuracin no se guardar!" msgid "Timers" msgstr "Programaciones" msgid "System default" -msgstr "Defecto del sistema" +msgstr "Predefinido del sistema" diff --git a/po/es_ES.utf8.po b/po/es_ES.utf8.po index 57013cd..a3d940a 100644 --- a/po/es_ES.utf8.po +++ b/po/es_ES.utf8.po @@ -5,11 +5,11 @@ # msgid "" msgstr "" -"Project-Id-Version: VDRAdmin-AM-3.6.3\n" +"Project-Id-Version: VDRAdmin-AM-3.6.4\n" "Report-Msgid-Bugs-To: Andreas Mair <andreas@vdr-developer.org>\n" -"POT-Creation-Date: 2008-12-18 08:25+0100\n" -"PO-Revision-Date: 2008-11-02 19:28+0100\n" -"Last-Translator: r <r@g.c>\n" +"POT-Creation-Date: 2009-12-30 13:26+0100\n" +"PO-Revision-Date: 2008-12-30 17:36+0100\n" +"Last-Translator: Manuel Gomez <mgrojo@gmail.com>\n" "Language-Team: rudiberto <r_jung@web.de>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,186 +22,107 @@ msgstr "" msgid "ISO-8859-1" msgstr "UTF-8" -msgid "What's On Now?" -msgstr "Estrenos ahora" - -msgid "Channel group:" -msgstr "Grupo de emisoras:" - -msgid "What's on:" -msgstr "Se puede ver:" - -msgid "at" -msgstr " a la/s:" - -msgid "o'clock" -msgstr "h." - -msgid "More Information" -msgstr "más información" - -msgid "Channels" -msgstr "EPG por emisoras" - -msgid "Stream" -msgstr "Flujo" - -msgid "TV select" -msgstr "cambiar canal" - -msgid "Search for other show times" -msgstr "buscar repeticiones" - -msgid "No Information" -msgstr "No hay información" - -msgid "Edit" -msgstr "Modificar" - -msgid "Record" -msgstr "Grabar estreno" - -msgid "No EPG information available" -msgstr "No hay información de la EPG" - -msgid "Edit EPG" -msgstr "Modificar EPG" - -msgid "Help" -msgstr "Ayuda" - -msgid "Channel" -msgstr "Emisora" - -msgid "Time" -msgstr "hora" +msgid "About" +msgstr "Acerca de" -msgid "Title" -msgstr "Título" +msgid "License" +msgstr "Licencia" -msgid "Subtitle" -msgstr "Subtítulo" +msgid "Authors" +msgstr "Autores" -msgid "Description" -msgstr "Resumen" +msgid "Current author (VDRAdmin-AM branch):" +msgstr "Autor actual (VDRAdmin-AM):" -msgid "VPS" -msgstr "VPS" +msgid "Original author (VDRAdmin):" +msgstr "Autor original (VDRAdmin):" -msgid "Video tracks" -msgstr "Pistas de video:" +msgid "Translation Team" +msgstr "Equipo de traducción" -msgid "Audio tracks" -msgstr "Pistas de audio:" +msgid "English:" +msgstr "Inglés:" -msgid "Save" -msgstr "Guardar" +msgid "German:" +msgstr "Alemán:" -msgid "Cancel" -msgstr "Cancelar" +msgid "French:" +msgstr "Francés:" -msgid "Edit Timer" -msgstr "Modificar programación" +msgid "At the moment unmaintained, former translations by:" +msgstr "De momento no se actualiza, traducciones anteriores de:" -msgid "<p>Here you can edit a timer's settings.</p>" -msgstr "<p>Aquí se puede modificar ajustes de las programaciones.</p>" +msgid "Spanish:" +msgstr "Español:" -msgid "Timer Active:" -msgstr "Programación activada:" +msgid "Finnish:" +msgstr "Finlandés:" -msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." -msgstr "Activar o desactivar esta programación. Programaciones desactivadas se encuentran todavia en la lista de las programaciones. Asi se puede activarse más tarde. Pero significará que no grabará mientras estan desactivadas." +msgid "Dutch:" +msgstr "Holandés:" -msgid "AutoTimer Checking:" -msgstr "Autovigilancia de las programaciones:" +msgid "Russian:" +msgstr "Ruso:" -msgid "Depending on how this timer has been programmed you have up to three possible settings:" -msgstr "Depende como se programado la programación tienes tres ajustes posibles:" +msgid "Czech:" +msgstr "Checo:" -msgid "Transmission Identification" -msgstr "Identificador de la emisora" +msgid "Italian:" +msgstr "Italiano:" -msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." -msgstr "Monitorizar esta programación utilizando la identificación del EPG. ¡Ten en cuenta, que éste sólo funccionará si el identificador es un valor fijo y unique! Esta opcion no es valido para programaciones creados en VDR." +msgid "Information" +msgstr "Información" -msgid "Monitor this timer using the start and stop time." -msgstr "Monitorizar esta programación utilizando hora de inicio y fin." +msgid "VDRAdmin-AM version:" +msgstr "Versión de VDRAdmin-AM:" -msgid "off" -msgstr "apagado" +msgid "VDR version:" +msgstr "Versión de VDR:" -msgid "Do not monitor this timer." -msgstr "Sin monitorizar esta programación." +msgid "Supported features in VDR:" +msgstr "Características respaldadas en VDR:" -msgid "Channel:" -msgstr "Emisora:" +msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgstr "Búsqueda EPG (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>) (en alemán de momento)" -msgid "The channel to record." -msgstr "La emisora para grabar:" +msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgstr "Flujo de LiveTV (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>) (en alemán de momento)" -msgid "Day Of Recording:" -msgstr "Día de la grabación:" +msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgstr "Renombrar grabaciones (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." -msgstr "" -"El dia de la activación de la programación. Se puede verificar en dos formatos:<ul>\n" -"<li>Dos digitos (DD). Así se usará mes y año actual.</li>\n" -"<li>Norma ISO (YYYY-MM-DD). Esta forma te permite crear programaciones para cualquier momento en el futuro.</li></ul>\n" -"Para una programación repetitoria usa las 7 casillas abajo del texto. Cada uno marcará el dia activado para la programación." +msgid "Getting Help and Reporting Bugs" +msgstr "Recibir ayuda y comentar \"Bugs\" (fallos)" -msgid "Start Time:" -msgstr "Comienzo:" +msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." +msgstr "Si hace falta ayuda, intenta primero \"Online Help\" (Ayuda en linea) que encontraras en algunas páginas. Tienes acceso haciendo clic encima de <img src=\"bilder/help.png\" alt=\"\" />." -msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Esta es la hora cuando la programación iniciará la grabación. El primer campo de texto es para \"hora\", el segundo para \"minutos\"." +msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" +msgstr "Si no te sirve esta información puedes intentar conseguir ayuda en la página <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> si entiendes alemán (lo siento...). Por favor, usa la conversación del anuncio si es posible, busca por:" -msgid "End Time:" -msgstr "Fin:" +msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." +msgstr "Si crees que has encontrado un fallo, asegúrate de que sea un fallo desconocido y entonces coméntalo en <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system (sistema de seguimiento de fallos)</a>." -msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Esta es la hora cuando la programación acabará la grabación. El primer campo de texto es para \"hora\", el segundo para \"minutos\"." +msgid "AutoTimer" +msgstr "Autoprogramaciones" msgid "Priority:" msgstr "Prioridad:" -msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." -msgstr "" -"Un número en el rango <strong>0...99</strong>, establece la <strong>prioridad</strong> de esta programación y la grabación creada de la programación. <strong>0</strong> representa el valor más bajo, <strong>99</strong> lo mayor. La prioridad se usa para decidir cuál de las programaciones se iniciaria a caso que hay dos o más en la misma hora de <strong>inicio</strong>. La primera en la lista con la prioridad más alta va a ser elegida.<br />\n" -"<br />El valor se guardará también junto con la grabación para utilizarlo más tarde para decidir cuál de las grabaciones guardadas se puede borrar del disco para liberar espacio para una nueva grabación, si hace falta. En éste caso una grabación existente con la prioridad más baja (y su <strong>duración</strong> garantizada ya caducada) removerá.<br />\n" -"<br />Si todas las tarjetas DVB estan ocupadas una programación va a interumpir otra - si tiene una prioridad más baja - para iniciar su grabación." - msgid "Lifetime:" msgstr "Durabilidad:" -msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." -msgstr "La duración <strong>garantizada</strong> (en dias) de una grabación guardada de esta programación. <strong>0</strong> significa que se puede borrar automáticamente en cualquier momento por otra grabación con prioridad más alta. <strong>99</strong> significa que esta grabación automáticamente nunca va a ser borrada. Todos valores demás en el rango <strong>1...98</strong> significan que esta grabación solo va ser borrada automáticamente por otra grabación nueva, cuando se han pasado los dias ajustados y garantizados desde su <strong>dia de grabación</strong>." - -msgid "Title of Recording:" -msgstr "Título de la grabación:" - -msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." -msgstr "" -"El <strong>titulo</strong> que esta programción va a dar a la grabación. Si la grabación la quieres agregar en una subcarpeta, tienes que seperar cada una con '~' (desde que el caracter '/' puede ser parte de programas regulares).<br />\n" -"<br />Las palabras claves <strong>TÍTULO</strong> y <strong>EPISODIO</strong>, si existen, van a ser sustituidos con título y episodio de los datos de la EPG en la hora de grabación; si no puede verificar esos datos, porque no se encuentra la información en los datos\n" -" <strong>TÍTULO</strong> se pone con el nombre del canal y <strong>EPISODIO</strong> se deja en blanco." - -msgid "Summary:" -msgstr "Resumen:" - -msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." -msgstr "Un texto a tu gusto para describir la grabación realizada de una programación. Si este campo contiene algo, el texto va a ser escrito al fichero <span class=\"ref_file\">summary.vdr</span> o <span class=\"ref_file\">info.vdr</span> de la grabación." - -msgid "Go!" -msgstr "¡Venga!" - -msgid "AutoTimer" -msgstr "Autoprogramaciones" - msgid "New AutoTimer" msgstr "Añadir autoprogramación" +msgid "Help" +msgstr "Ayuda" + msgid "Active" -msgstr "Activada" +msgstr "Activa" + +msgid "Channel" +msgstr "Emisora" msgid "Start" msgstr "Inicio" @@ -221,6 +142,9 @@ msgstr "Sí" msgid "No" msgstr "No" +msgid "Edit" +msgstr "Modificar" + msgid "Delete timer?" msgstr "¿Borrar programación?" @@ -237,34 +161,7 @@ msgid "Delete all selected timers?" msgstr "¿Estas seguro de que deseas borrar las programaciones elegidas?" msgid "No AutoTimers defined!" -msgstr "No hay autoprogramaciones!" - -msgid "VDR Commands" -msgstr "Comandos del VDR:" - -msgid "Export channels as playlist:" -msgstr "Exportar los canales como lista de" - -msgid "Number of lines to show:" -msgstr "Cantidad de flujos en uso:" - -msgid "unlimited" -msgstr "sin limites" - -msgid "SVDRP commands:" -msgstr "Órdenes de SVDRP:" - -msgid "Run" -msgstr "Iniciar" - -msgid "Really run this command?" -msgstr "¿Ejecutar el orden de verdad?" - -msgid "Commands defined in commands.conf:" -msgstr "Órdenes definidos en commands.conf:" - -msgid "Output" -msgstr "Salida" +msgstr "¡No hay autoprogramaciones!" msgid "Add New AutoTimer" msgstr "Añadir autoprogramación" @@ -284,6 +181,15 @@ msgstr "Palabras claves:" msgid "Search in:" msgstr "Buscar en:" +msgid "Title" +msgstr "Título" + +msgid "Subtitle" +msgstr "Subtítulo" + +msgid "Description" +msgstr "Descripción" + msgid "Search only on these days:" msgstr "Los días para la búsqueda:" @@ -308,26 +214,32 @@ msgstr "Sábado" msgid "Sunday" msgstr "Domingo" +msgid "Channel:" +msgstr "Emisora:" + msgid "all" msgstr "todos" msgid "Starts After:" msgstr "Empieza después de:" +msgid "o'clock" +msgstr "h." + msgid "Ends Before:" msgstr "Acaba antes de:" msgid "Override Start/Stop Margins:" -msgstr "Reemplazar los margenes de tiempo para Inicio/Fin:" +msgstr "Reemplazar los márgenes de tiempo para Inicio/Fin:" msgid "Time Margin at Start:" -msgstr "Más tiempo al principio:" +msgstr "Margen de tiempo al principio:" msgid "minutes" msgstr "minutos" msgid "Time Margin at Stop:" -msgstr "Más tiempo al final:" +msgstr "Margen de tiempo al final:" msgid "Episode:" msgstr "Episodios:" @@ -338,202 +250,275 @@ msgstr "Recordar programaciones:" msgid "Directory:" msgstr "Carpeta:" +msgid "Save" +msgstr "Guardar" + msgid "Test" msgstr "Prueba" +msgid "Cancel" +msgstr "Cancelar" + msgid "Broadcasted" -msgstr "Difundido" +msgstr "Emitido" msgid "Stored in" msgstr "Guardado en" msgid "No matches found!" -msgstr "Ninguna coincidencia encontrado!" +msgstr "¡Ninguna coincidencia encontrada!" -msgid "About" -msgstr "Acerca de" +msgid "Configuration" +msgstr "Configuración" -msgid "License" -msgstr "Licencia" +msgid "General Settings" +msgstr "Ajustes generales" -msgid "Authors" -msgstr "Autores" +msgid "Template:" +msgstr "Plantilla:" -msgid "Current author (VDRAdmin-AM branch):" -msgstr "Autor actual (VDRAdmin-AM):" +msgid "Skin:" +msgstr "Piel:" -msgid "Original author (VDRAdmin):" -msgstr "Autor original (VDRAdmin):" +msgid "Login Page:" +msgstr "Página de inicio:" -msgid "Translation Team" -msgstr "Equipo de traducción" +msgid "Number of channels to use:" +msgstr "Cantidad de emisoras a usar:" -msgid "English:" -msgstr "Inglés:" +msgid "Local net (no login required):" +msgstr "Red local (no requiere contraseña)" -msgid "German:" -msgstr "Alemán:" +msgid "Language:" +msgstr "Idioma:" -msgid "French:" -msgstr "Francés:" +msgid "Save settings on exit:" +msgstr "Guardar los ajustes al salir:" -msgid "At the moment unmaintained, former translations by:" -msgstr "De momento no se actualiza, traducciones anteriores de:" +msgid "VDR" +msgstr "VDR" -msgid "Spanish:" -msgstr "Español:" +msgid "Number of DVB cards:" +msgstr "Cantidad de tarjetas DVB:" -msgid "Finnish:" -msgstr "Finlandés:" +msgid "Path to recordings:" +msgstr "Ruta de las grabaciones:" -msgid "Dutch:" -msgstr "Holandés:" +msgid "Path to configuration files:" +msgstr "Ruta de los ficheros de configuración:" -msgid "Russian:" -msgstr "Ruso:" +msgid "Path to EPG images:" +msgstr "Ruta de las imágenes de EPG:" -msgid "Czech:" -msgstr "Checo:" +msgid "Identification" +msgstr "Identificaciones" -msgid "Italian:" -msgstr "Italiano:" +msgid "Username:" +msgstr "Nombre del usuario:" -msgid "Information" -msgstr "Información" +msgid "Password:" +msgstr "Contraseña:" -msgid "VDRAdmin-AM version:" -msgstr "Versión de VDRAdmin-AM:" +msgid "Guest Account:" +msgstr "Acceso como invitado:" -msgid "VDR version:" -msgstr "Versión de VDR:" +msgid "Guest Username:" +msgstr "Nombre como invitado:" -msgid "Supported features in VDR:" -msgstr "Características respaldadas en VDR:" +msgid "Guest Password:" +msgstr "Contraseña como invitado:" -msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgstr "Búsqueda EPG (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>) (en alemán de momento)" +msgid "Timeline" +msgstr "Tabla de tiempo" -msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgstr "Flujo de LiveTV (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>) (en alemán de momento)" +msgid "Hours:" +msgstr "Rango de hora/s:" -msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgstr "Renombrar grabaciones (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgid "Times:" +msgstr "Horas:" -msgid "Getting Help and Reporting Bugs" -msgstr "Recibir ayuda y comentar \"Bugs\" (fallos)" +msgid "Also used for other EPG views!" +msgstr "También se usa para otras vistas de la EPG" -msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." -msgstr "Si hace falta ayuda, intenta primero \"Online Help\" (Ayuda en linea) que encontraras en algunas páginas. Tienes acceso haciendo clic encima de <img src=\"bilder/help.png\" alt=\"\" />." +msgid "Tooltips:" +msgstr "Notas flotantes:" -msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" -msgstr "Si no te sirve esta información puedes intentar conseguir ayuda en la página <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> si entiendes alemán (lo siento...). Para empezar alli aprovecha la funcción \"suchen\" por:" +msgid "Active:" +msgstr "Activa:" -msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." -msgstr "Si crees, que has encontrado un fallo, asegúrate que sea un fallo desconocido y entonces comentalo en <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system (sistema de seguimiento de fallos)</a>." +msgid "Send email after programming timer:" +msgstr "Mandar mensaje después de crear programación:" -msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgid "Send email as:" +msgstr "Mandar mensaje electrónico como:" + +msgid "Send email to:" +msgstr "Mandar mensaje electrónico a:" + +msgid "Mail server:" +msgstr "Servidor de correo:" + +msgid "SMTPAuth user:" +msgstr "Usuario de SMPTAuth:" + +msgid "SMTPAuth password:" +msgstr "Contraseña de SMPTAuth:" + +msgid "Track schedule changes by:" msgstr "" -"<p>Aquí se encuentra los ajustes de las autoprogramaciones.</p>\n" -"<p>Autoprogramaciones son la herramienta basica del VDRAdmin-AM. Una autoprogramación busca por una o más palabras claves y unos ajustes más, por cuáles buscará regularmente en la \"Electronic Program Guide\" (EPG, guia electronica del programa). Sí lo encuentra aquellos variables ajustados anteriormente creará automáticamente una programación en el VDR para el estreno encontrado. Bastante útil para estrenos irregulares, que te importan mucho.</p>" -msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." -msgstr "Activar o desactivar ésta programación. Programaciones desactivadas se encuentran todavia en la lista de las programaciones. Asi se puede activarse más tarde. Pero significará que no grabará mientras está desactiva." +msgid "Broadcast time" +msgstr "" -msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Only broadcasts will match if they contain <strong>all</strong> items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as Blacklist-string) or only one episode (when using \"Enterprise~Azati Prime\" as Blacklist-string)." +msgid "Event id" msgstr "" -"Las palabras claves bien elegidas importan mucho para grabar sólo el estreno querido o por ejemplo también éstos con palabras parecidas o con mala suerte nada por falta de coincidencia.<br />\n" -"Mayusculas o minusculas no importan para encontrar las palabras claves. Se puede usar varias palabras claves seperadas por espacios. <strong>Todas</strong> tienen que encontrarse en los campos deseados del estreno para un resultado exitoso.<br />\n" -"Es muy recomendable, utilizar solo carácteres normales o cifras como palabra clave, por que los carácteres especiales no son muy comun en la EPG.<br />\n" -"Para expertos hay la posibilidad de usar \"regular expressions\". Para esta función no documentada, tienes que investigar el codigo fuente del VDRAdmin-AM.<br />\n" -"<br />Otra opción es, excluir un estreno, que normalmente cumpliría los valores de búsqueda, agregando su título al fichero <i>vdradmind.bl</i>. Cada estreno se pone en una fila. Este archivo tiene que estar en la carpeta de configuración del VDRAdmin-AM. Sí una fila coincide con <u>título</u> o <u>título~subtítulo</u> de la EPG del estreno, no se va a autoprogramar ese estreno. Así se puede bloquear una serie completo (p.e. con \"Stargate\" como registro negro) o un episodio soló (p.e. \"Stargate~Revisiones\")." -msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." -msgstr "Aquí se ajusta las secciones de la EPG (emisoras posibles) donde VDRAdmin-AM va a buscar por palabras claves." +msgid "Timer" +msgstr "Programaciones" -msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." -msgstr "Marca estos campos para especificar los dias de la semana, que quieres incluir para la búsqueda." +msgid "Tooltips in timeline:" +msgstr "Notas flotantes en la tabla de tiempo:" -msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." -msgstr "La emisora para la búsqueda o \"todas\" para buscar en todas cadenas conocidas o deseadas. Se puede establecer las emisoras deseadas para autoprogramaciones en \"Configuraciones\"." +msgid "Tooltips in list:" +msgstr "Notas flotantes en la lista:" -msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Un estreno tiene que empezar después de la hora establecida aquí. El primer campo es para \"hora\", el segundo para \"minutos\"." +msgid "Streaming" +msgstr "Flujo" -msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Un estreno tiene que finalizar antes de la hora establecida aquí. El primer campo es para \"hora\", el segundo para \"minutos\"." +msgid "Live Streaming:" +msgstr "Flujo en vivo:" -msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." -msgstr "Marca \"Sí\" para esta opción, si quieres que todas las programaciones de la autoprogramación tengan margenes individuales para inicio/terminar. Después puedes poner los valores en los 2 siguientes campos de texto." +msgid "HTTP Port of Streamdev (also possible 3000/ts):" +msgstr "Puerto HTTP para el flujo (3000/ts también posible):" -msgid "The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG." -msgstr "La cantidad de minutos que VDRAdmin-AM va a quitar de la hora inicial del estreno encontrado en la EPG" +msgid "Recordings Streaming:" +msgstr "Flujo de grabaciones:" -msgid "The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG." -msgstr "La cantidad de minutos que VDRAdmin-AM va a quitar de la hora final del estreno encontrado en la EPG" +msgid "Path to VDR Recordings on your workstation:" +msgstr "Ruta de las grabaciones de VDR en tu equipo:" -msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." -msgstr "Marca este campo si VDRAdmin-AM debe añadir el subtítulo de la EPG del estreno al nombre de la grabación." +msgid "MIME type for live streaming:" +msgstr "Tipo MIME del flujo en vivo:" -msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." -msgstr "Habilitando esta funcción, VDRAdmin-AM va seguir programaciones programadas automáticamente. Así se puede borrar o desactivar estas pragramaciones agregadas automáticamente de la lista de programaciones." +msgid "Suffix for live streaming:" +msgstr "Extensión para flujo en vivo:" -msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." -msgstr "" -"Aquí se establece la carpeta, donde la autoprogramación va a guardar su grabaciones. Si quieres crear subcarpetas hay que seperarlas con '~' (eso por que '/' puede ser parte del título).<br />\n" -"VDRAdmin-AM añadirá automáticamente el título y el subtítulo (a caso que está marcado \"Serie\").<br />\n" -"<br />Además es posible usar las siguientes palabras claves, que se sustituirán en el título final que se va a encontrar en p.e. <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:\n" -"<ul><li>%Title% - el título del estreno.</li>\n" -"<li>%Subtitle% - el subtítulo del estreno.</li>\n" -"<li>%Director% - el director del estreno.</li>\n" -"<li>%Date% - la fecha de la grabación.</li>\n" -"<li>%Category% - la categoria de la grabación. (Película/serie/...).</li>\n" -"<li>%Genre% - el geno de la grabación. (Drama/suspense/..).</li>\n" -"<li>%Year% - el año de la producción.</li>\n" -"<li>%Country% - el pais de la producción.</li>\n" -"<li>%Originaltitle% - el título original del estreno.</li>\n" -"<li>%FSK% - el limte por edad del estreno.</li>\n" -"<li>%Episode% - el título del episodio de una serie.</li>\n" -"<li>%Rating% - la valoración del estrono de la redacción de la EPG.</li>\n" -"</ul>\n" -"<h4>Advertencia:</h4>Si utilizas estas palabras claves queda a tu propia responsabilidad escribir el <strong>nombre completo</strong> de la grabación! VDRAdmin-AM no añadirá nada más." +msgid "MIME type for recordings streaming:" +msgstr "Tipo MIME para flujo de grabaciones:" -msgid "Timer" -msgstr "Programaciones" +msgid "Suffix for recordings streaming:" +msgstr "Extensión para flujo de grabaciones:" -msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" -msgstr "" -"<p>Aquí encontrarás una lista de programaciones conocidas para VDR.</p>\n" -"<p>Arriba hay un diagrama mostrando graficamente las programaciones del dia. Te ofrece una vista rápida del dia especificado y te ayuda encontrar programaciones conflictivas. Moviendo la flecha del ratón encima de cualquier programación verás el título, la prioridad, la durabilidad y la duracion de la programación.</p>\n" -"<p>Abajo del diagrama encuentras la lista de programaciones visualizando unas informaciones de las programaciones. Se puede cambiar el orden de la lista con un clic en el tope de la columna correspondiente.</p>\n" -"<p>Para cada programación tienes las siguientes opciones:<dl>\n" -"<dt>Establecer su estado</dt>\n" -"<dd>Hacer clic en \"Sí\", \"No\", \"VPS\" o \"Auto\" en la columna \"Activa\".</dd>\n" -"<dt>Vista rápida de la prioridad y durabilidad</dt>\n" -"<dd>Moviendo la flecha del ratón encima del título de programación.</dd>\n" -"<dt>Vista de la entrada del EPG</dt>\n" -"<dd>Programaciones con <span class=\"ref_label\">Autotest programación</span> para la \"Identificación de la transmisión\" enseñarán la entrada correspondiente del EPG si haces clic en el título.</dd>\n" -"\n" -"<dt>Modificar programación</dt>\n" -"<dd>Se puede editar una programación haciendo clic en <img src=\"bilder/edit.png\" alt=\"editar\" />.</dd>\n" -"\n" -"<dt>Borrar la programación</dt>\n" -"<dd>Se puede borrar una programación haciendo clic en <img src=\"bilder/delete.png\" alt=\"borrar\" />.</dd></dl></p>\n" -"\n" -"<p>El estado de cualquiera programación está indicado por iconos de diferentes colores (la vista como diagrama) o imagenes (la vista como lista):<br />\n" -"<span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"activa\" align=\"middle\" /> OK para la programación y grabará.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problema\" align=\"middle\" /> Conflictos con otras programaciones. Ésto no produzca ningún problema, si hay bastantes tarjetas DVB para grabar en paralelo.<br />\n" -"<span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"imposible\" align=\"middle\" /> Programación crítica que probablemente <strong>no</strong> grabará.<br />\n" -"<span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactiva\" align=\"middle\" /> Programación inactiva.</p>\n" -"<p>Además puedes añadir una programación nueva cliqueando encima de <input type=\"submit\" class=\"submit\" value=\"Añadir programación\"/> arriba y se puede borrar programaciones por lotes cliqueando encima <input type=\"submit\" class=\"submit\" value=\"Borrar programaciones seleccionadas\"/> al final de la columna.</p>\n" -"<p>Se puede <input type=\"submit\" class=\"submit\" value=\"activar\"/> y <input type=\"submit\" class=\"submit\" value=\"desactivar\"/> programaciones seleccionadas.</p>" +msgid "Bandwidth of Streams:" +msgstr "Ancho de banda del flujo:" -msgid "Playing Today" -msgstr "Estrenos hoy" +msgid "External Search" +msgstr "Búsqueda externa" -msgid "starting at" -msgstr "empezando a la/s" +msgid "URL:" +msgstr "URL:" + +msgid "Title:" +msgstr "Título:" + +msgid "User-defined search:" +msgstr "Búsqueda personalizada:" + +msgid "Expert" +msgstr "Experto" + +msgid "Update EPG data in background:" +msgstr "Actualizar datos EPG en segundo plano:" + +msgid "Update EPG every:" +msgstr "Actualizar datos EPG cada:" + +msgid "Channel Selections" +msgstr "Emisoras preferidas" + +msgid "Show channels without EPG information:" +msgstr "Mostrar emisoras sin información EPG:" + +msgid "In \"AutoTimer\"?" +msgstr "¿Usar en \"Autoprogramaciones\"?" + +msgid "Apply" +msgstr "Establecer" + +msgid "EPG Search Blacklists" +msgstr "Utiliza lista negra en búsqueda de EPG:" + +msgid "New Blacklist" +msgstr "Nueva lista negra" + +msgid "Search pattern" +msgstr "Palabras claves" + +msgid "From" +msgstr "De" + +msgid "To" +msgstr "Para" + +msgid "Delete blacklist?" +msgstr "¿Borrar lista negra?" + +msgid "Delete Selected Blacklists" +msgstr "Borrar listas negras elegidas" + +msgid "Delete all selected blacklists?" +msgstr "¿Estás seguro de que deseas borrar las listas negras elegidas?" + +msgid "EPG search" +msgstr "Búsqueda EPG" + +msgid "EPG Search" +msgstr "Búsqueda EPG" + +msgid "Use template" +msgstr "Usar plantilla" + +msgid "New Search" +msgstr "Búsqueda nueva" + +msgid "Edit Template" +msgstr "Editar plantilla" + +msgid "Settings" +msgstr "Ajustes" + +msgid "Action" +msgstr "Acción" + +msgid "Find" +msgstr "Buscar" + +msgid "Show Favorites" +msgstr "Mostrar favoritas" + +msgid "Delete Selected Searches" +msgstr "Borrar búsquedas elegidas" + +msgid "Delete all selected searches?" +msgstr "¿Estás seguro de que deseas borrar las búsquedas elegidas?" + +msgid "Execute Selected Searches" +msgstr "Ejecutar búsquedas elegidas" + +msgid "Duration" +msgstr "Duración" + +msgid "More Information" +msgstr "Más información" + +msgid "Channels" +msgstr "EPG por emisoras" + +msgid "Record" +msgstr "Grabar" msgid "Add New Blacklist" -msgstr "Agregar lista negra:" +msgstr "Agregar lista negra" msgid "Edit Blacklist" msgstr "Editar lista negra" @@ -541,9 +526,6 @@ msgstr "Editar lista negra" msgid "Add New Template" msgstr "Añadir plantilla" -msgid "Edit Template" -msgstr "Editar plantilla:" - msgid "Add New Search" msgstr "Añadir búsqueda" @@ -551,22 +533,19 @@ msgid "Edit Search" msgstr "Editar búsqueda" msgid "Small search pattern.\\nDo you really want to use it?" -msgstr "Esquema de búsqueda limitada. \\n¿Estas seguro que deseas utilizarlo?" +msgstr "Patrón de búsqueda muy corto.\\n¿Estás seguro de que deseas utilizarlo?" msgid "You didn't select at least one of\\ntitle, subtitle or description.\\nDo you really want to use this search?" -msgstr "No has elegido ni\\ntitulo, subtitulo, or descripción.\\n¿Quieres realizar esta búsqueda?" +msgstr "No has elegido al menos uno de entre\\ntítulo, subtítulo, o descripción.\\n¿Quieres realizar esta búsqueda?" msgid "Hide results" msgstr "Ocultar resultados" -msgid "Settings" -msgstr "Propiedades" - msgid "Name:" msgstr "Nombre:" msgid "Search Term:" -msgstr "Concepto de búsqueda:" +msgstr "Término de búsqueda:" msgid "Search Mode:" msgstr "Modo de búsqueda:" @@ -581,25 +560,25 @@ msgid "at least one word" msgstr "una palabra por lo menos" msgid "match exactly" -msgstr "coincidencia exata" +msgstr "coincidencia exacta" msgid "regular expression" msgstr "expresión regular" msgid "fuzzy" -msgstr "fuzzy" +msgstr "difusa" msgid "Tolerance for \"fuzzy\":" msgstr "Tolerancia para \"difusa\":" msgid "Match Case:" -msgstr "Caso de encuentro:" +msgstr "Coincidir mayús/minús:" msgid "Use extended EPG info:" msgstr "Utiliza información EPG extendida:" msgid "Ignore missing categories?" -msgstr "¿Ignorar categorias ausentes?" +msgstr "¿Ignorar categorías ausentes?" msgid "Use Channel:" msgstr "Utiliza emisora:" @@ -614,7 +593,7 @@ msgid "channel group" msgstr "Grupo de emisoras" msgid "only FTA" -msgstr "solo FTA" +msgstr "sólo FTA" msgid "Range:" msgstr "Rango:" @@ -644,7 +623,7 @@ msgid "Max. Duration:" msgstr "Duración max.:" msgid "Use Day of Week:" -msgstr "Utiliza dia de la semana:" +msgstr "Utiliza día de la semana:" msgid "Use Blacklists:" msgstr "Utiliza lista negra:" @@ -668,31 +647,31 @@ msgid "record" msgstr "grabar" msgid "announce only" -msgstr "solo avisar" +msgstr "sólo avisar" msgid "switch only" -msgstr "solo cambiar" +msgstr "sólo cambiar" msgid "First day:" -msgstr "Primer dia:" +msgstr "Primer día:" msgid "Last day:" -msgstr "Ültimo dia:" +msgstr "Último día:" msgid "Auto delete:" -msgstr "Borrar automaticamente:" +msgstr "Borrar automáticamente:" msgid "count recordings" msgstr "Cantidad de grabaciones" msgid "count days" -msgstr "Cantidad de dias" +msgstr "Cantidad de días" msgid "After ... recordings:" msgstr "Después ... grabaciones:" msgid "After ... days after first recording:" -msgstr "Despues de ... dias despues de la última grabación:" +msgstr "Después de ... días después de la última grabación:" msgid "Settings for action \"record\"" msgstr "Ajustes para acción \"grabar\"" @@ -701,7 +680,7 @@ msgid "Series Recording:" msgstr "Grabación en serie:" msgid "Delete Recordings After ... Days:" -msgstr "Borrar grabaciones despues de ... dias:" +msgstr "Borrar grabaciones después de ... días:" msgid "Keep ... Recordings:" msgstr "Guarda ... grabaciones:" @@ -716,7 +695,7 @@ msgid "Allowed Repeats:" msgstr "Permitir repeticiones:" msgid "Only Repeats Within ... Days:" -msgstr "Solo repeticiones dentro de ... dias:" +msgstr "Sólo repeticiones dentro de ... días:" msgid "Compare:" msgstr "Comparar:" @@ -725,7 +704,7 @@ msgid "VPS:" msgstr "VPS:" msgid "Settings for action \"switch only\"" -msgstr "Ajustes para \"solo cambiar\"" +msgstr "Ajustes para \"sólo cambiar\"" msgid "Switch ... Minutes Before Start:" msgstr "cambiar ... minutos antes del inicio:" @@ -734,350 +713,249 @@ msgid "Delete template" msgstr "Borrar plantilla:" msgid "Delete this template?" -msgstr "¿Borrar plantilla?" +msgstr "¿Borrar esta plantilla?" msgid "Save as template" -msgstr "Guardar como plantilla:" - -msgid "Create New Timer" -msgstr "Añadir programación" - -msgid "Buffer:" -msgstr "Almacenador intermediario:" - -msgid "Use VPS:" -msgstr "Utiliza VPS:" +msgstr "Guardar como plantilla" -msgid "readonly" -msgstr "solo leible" - -msgid "Timer has been set by AutoTimer pattern:" -msgstr "Programación por cumplir ajustes de la autoprogramación:" - -msgid "No Help Available" -msgstr "No hay ayuda" - -msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgstr "" -"<p>Para esta funcción no dispone ayuda hasta ahora. Para añadir o modificar un texto, escribe un e-mail a \n" -"<a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgid "Run" +msgstr "Iniciar" msgid "Error!" msgstr "¡Error!" -msgid "TV" -msgstr "TV" +msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" +msgstr "" +"<p>Aquí se encuentra una lista de todas las autoprogramaciones conocidas por VDRAdmin-AM.</p>\n" +"<p>La lista contiene informaciones de las autoprogramaciones. Se puede cambiar el orden de la lista haciendo clic en los títulos de las columnas.</p>\n" +"\n" +"<p>Para cada autoprogramación hay las siguientes opciones:<dl>\n" +"<dt>Cambiar estado</dt>\n" +"<dd>Haciendo clic en \"Sí\" o \"No\" en la columna \"Activa\" se puede activar y desactivar.</dd>\n" +"\n" +"<dt>Vista rápida de prioridad y durabilidad</dt>\n" +"<dd>Tienes que mover la flecha del ratón encima del nombre de la autoprogramación.</dd>\n" +"\n" +"<dt>Modificar autoprogramación</dt>\n" +"<dd>Se realiza una edición haciendo clic en <img src=\"bilder/edit.png\" alt=\"editar\" />.</dd>\n" +"\n" +"<dt>Borrar autoprogramación</dt>\n" +"<dd>Para borrar una autoprogramación hay que hacer clic en <img src=\"bilder/delete.png\" alt=\"borrar\" />.</dd>\n" +"</dl></p>\n" +"<p>El estado de una autoprogramación está indicada por colores diferentes:<br />\n" +"<img src=\"bilder/poempl_gruen.png\" alt=\"Activa\" align=\"middle\" /> La autoprogramación está bien y va a programar automáticamente emisiones coincidentes.<br />\n" +"<img src=\"bilder/poempl_grau.png\" alt=\"inactiva\" align=\"middle\" /> La autoprogramación está desactivada.</p>\n" +"<p>Además se puede añadir otra autoprogramación más, haciendo clic en <input type=\"submit\" class=\"submit\" value=\"Añadir autoprogramación\"/> al tope. Más abajo se encuentra el botón <input type=\"submit\" class=\"submit\" value=\"Borrar autoprogramaciones elegidas\"/>, cuál hace posible borrar las autoprogramaciones marcadas en la lista por lotes.</p>\n" +"<p>Con el botón <input type=\"submit\" class=\"submit\" value=\"Actualizar ahora\"/> arrancarás una búsqueda inmediatamente en los datos actuales de la EPG recién actualizados.</p>" -msgid "Interval:" -msgstr "Intervalo:" +msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgstr "" +"<p>Aquí se encuentra los ajustes de las autoprogramaciones.</p>\n" +"<p>Autoprogramaciones son la herramienta básica del VDRAdmin-AM. Una autoprogramación busca por una o más palabras claves y unos ajustes más, por los cuáles buscará regularmente en la \"Electronic Program Guide\" (EPG, guía electrónica de programación). Sí lo encuentra, aquellas variables ajustadas anteriormente crearán automáticamente una programación en el VDR para el programa encontrado. Bastante útil para emisiones irregulares, que te importan mucho.</p>" -msgid "sec." -msgstr "seg" +msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." +msgstr "Activar o desactivar ésta programación. Programaciones desactivadas se encuentran todavía en la lista de las programaciones. Así se puede activar más tarde. Pero significará que no grabará mientras está desactivada." -msgid "G" -msgstr "C" +msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Broadcasts will match only if they match <strong>all</strong> configured search items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as blacklist string) or only one episode (when using \"Enterprise~Azati Prime\" as blacklist string)." +msgstr "" +"Las palabras claves bien elegidas importan mucho para grabar sólo el programa querido o por ejemplo también éstos con palabras parecidas o con mala suerte nada por falta de coincidencia.<br />\n" +"Mayúsculas o minúsculas no importan para encontrar las palabras claves. Se puede usar varias palabras claves separadas por espacios. <strong>Todas</strong> tienen que encontrarse en los campos deseados del programa para un resultado exitoso.<br />\n" +"Es muy recomendable, utilizar sólo caracteres normales o cifras como palabra clave, porque los caracteres especiales no son muy comunes en la EPG.<br />\n" +"Para expertos hay la posibilidad de usar \"regular expressions\". Para esta función no documentada, tienes que investigar el código fuente del VDRAdmin-AM.<br />\n" +"<br />Otra opción es, excluir un programa, que normalmente cumpliría los valores de búsqueda, agregando su título al fichero <i>vdradmind.bl</i>. Cada programa se pone en una fila. Este archivo tiene que estar en la carpeta de configuración del VDRAdmin-AM. Sí una fila coincide con <u>título</u> o <u>título~subtítulo</u> de la EPG del programa, no se va a autoprogramar ese programa. Así se puede bloquear una serie completa (p.e. con \"Stargate\" como registro negro) o un episodio solo (p.e. \"Stargate~Revisiones\")." -msgid "Grab the picture!" -msgstr "¡Captura la imagen!" +msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." +msgstr "Aquí se ajusta las secciones de la EPG (emisoras posibles) donde VDRAdmin-AM va a buscar por palabras claves." -msgid "Size:" -msgstr "Dimensiones:" +msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." +msgstr "Marca estas casillas para especificar los días de la semana que quieres incluir para la búsqueda." -msgid "Open in separate window" -msgstr "Abrir en una ventana separada" +msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." +msgstr "La emisora para la búsqueda o \"todas\" para buscar en todas las cadenas conocidas o deseadas. Se puede establecer las emisoras deseadas para autoprogramaciones en \"Configuraciones\"." -msgid "Playing Today?" -msgstr "¿Estrenos hoy?" +msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Un programa tiene que empezar después de la hora establecida aquí. El primer campo es para \"hora\", el segundo para \"minutos\"." -msgid "Timeline" -msgstr "Tabla de tiempo" +msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Un programa tiene que finalizar antes de la hora establecida aquí. El primer campo es para \"hora\", el segundo para \"minutos\"." -msgid "EPG Search" -msgstr "Búsqueda EPG" +msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." +msgstr "Marca \"Sí\" para esta opción, si quieres que todas las programaciones de la autoprogramación tengan margenes individuales para inicio/terminar. Después puedes poner los valores en los 2 siguientes campos de texto." -msgid "Recordings" -msgstr "Grabaciones" +msgid "The number of minutes VDRAdmin-AM subtracts from the broadcast's start time found in the EPG." +msgstr "La cantidad de minutos que VDRAdmin-AM va a quitar de la hora inicial del programa encontrado en la EPG" -msgid "Remote Control" -msgstr "Mando a distancia" +msgid "The number of minutes VDRAdmin-AM adds to the broadcast's stop time found in the EPG." +msgstr "La cantidad de minutos que VDRAdmin-AM va a quitar de la hora final del programa encontrado en la EPG" -msgid "Watch TV" -msgstr "Televisión" +msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." +msgstr "" +"Un número en el rango <strong>0...99</strong>, establece la <strong>prioridad</strong> de esta programación y la grabación creada de la programación. <strong>0</strong> representa el valor más bajo, <strong>99</strong> lo mayor. La prioridad se usa para decidir cuál de las programaciones se iniciaría en caso de que haya dos o más en la misma hora de <strong>inicio</strong>. La primera en la lista con la prioridad más alta va a ser elegida.<br />\n" +"<br />El valor se guardará también junto con la grabación para utilizarlo más tarde para decidir cuál de las grabaciones guardadas se puede borrar del disco para liberar espacio para una nueva grabación, si hace falta. En éste caso una grabación existente con la prioridad más baja (y su <strong>duración</strong> garantizada ya caducada) removerá.<br />\n" +"<br />Si todas las tarjetas DVB están ocupadas una programación va a interrumpir otra - si tiene una prioridad más baja - para iniciar su grabación." -msgid "Commands" -msgstr "Comandos:" +msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." +msgstr "La duración <strong>garantizada</strong> (en días) de una grabación guardada de esta programación. <strong>0</strong> significa que se puede borrar automáticamente en cualquier momento por otra grabación con prioridad más alta. <strong>99</strong> significa que esta grabación automáticamente nunca va a ser borrada. Todos valores demás en el rango <strong>1...98</strong> significan que esta grabación solo va a ser borrada automáticamente por otra grabación nueva, cuando se han pasado los días ajustados y garantizados desde su <strong>día de grabación</strong>." -msgid "Configuration" -msgstr "Configuraciones" +msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." +msgstr "Marca este campo si VDRAdmin-AM debe añadir el subtítulo de la EPG del programa al nombre de la grabación." -msgid "Search" -msgstr "Buscar" +msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." +msgstr "Habilitando esta función, VDRAdmin-AM va seguir programaciones programadas automáticamente. Así se puede borrar o desactivar estas programaciones agregadas automáticamente de la lista de programaciones." + +msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." +msgstr "" +"Aquí se establece la carpeta, donde la autoprogramación va a guardar su grabaciones. Si quieres crear subcarpetas hay que separarlas con '~' (eso por que '/' puede ser parte del título).<br />\n" +"VDRAdmin-AM añadirá automáticamente el título y el subtítulo (a caso que está marcado \"Serie\").<br />\n" +"<br />Además es posible usar las siguientes palabras claves, que se sustituirán en el título final que se va a encontrar en p.e. <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:\n" +"<ul><li>%Title% - el título del programa.</li>\n" +"<li>%Subtitle% - el subtítulo del programa.</li>\n" +"<li>%Director% - el director del programa.</li>\n" +"<li>%Date% - la fecha de la grabación.</li>\n" +"<li>%Category% - la categoría de la grabación. (Película/serie/...).</li>\n" +"<li>%Genre% - el género de la grabación. (Drama/suspense/..).</li>\n" +"<li>%Year% - el año de la producción.</li>\n" +"<li>%Country% - el país de la producción.</li>\n" +"<li>%Originaltitle% - el título original del programa.</li>\n" +"<li>%FSK% - el límite por edad del programa.</li>\n" +"<li>%Episode% - el título del episodio de una serie.</li>\n" +"<li>%Rating% - la valoración del programa de la redacción de la EPG.</li>\n" +"</ul>\n" +"<h4>Advertencia:</h4>¡Si utilizas estas palabras claves queda a tu propia responsabilidad escribir el <strong>nombre completo</strong> de la grabación! VDRAdmin-AM no añadirá nada más." msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" msgstr "<p>En esta página se ajusta las propiedades generales de las programaciones y de las autoprogramaciones, como las emisoras preferidas y además los ajustes del flujo</p>" -msgid "General Settings" -msgstr "Propiedades generales" - -msgid "VDR" -msgstr "VDR" - -msgid "Identification" -msgstr "Identificaciones" - -msgid "Streaming" -msgstr "Flujo" - -msgid "Expert" -msgstr "Experto" - -msgid "External Search" -msgstr "Búsqueda external" - -msgid "Channel Selections" -msgstr "Emisoras preferidas" - -msgid "Skin:" -msgstr "Piel:" - msgid "The skin you want to use." -msgstr "El piel deseado." - -msgid "Login Page:" -msgstr "Página al inicio:" +msgstr "La piel deseada." msgid "The page you want to see at first connect to VDRAdmin-AM." msgstr "La página deseada al inicio del VDRAdmin-AM." -msgid "Number of channels to use:" -msgstr "Cantidad de emisoras en uso:" - msgid "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." -msgstr "VDRAdmin-AM solo utilizará tantas emisoras del VDR que se ajusta aquí y presentará esta cantidad en cada campo, donde se puede elegir canales. Así también está limitado la información de la EPG que VDRAdmin-AM leerá, que va a reducir el consumo de memoria de VDRAdmin-AM y mejorar así su rendimiento. <strong>0</strong> desactivará esta funcción y VDRAdmin-AM utilizará todas las emisoras posibles." - -msgid "Local net (no login required):" -msgstr "Red local (no requiere contraseña)" +msgstr "VDRAdmin-AM solo utilizará tantas emisoras del VDR como se ajusten aquí y presentará esta cantidad en cada campo, donde se pueden elegir canales. Así también está limitada la información de la EPG que VDRAdmin-AM leerá, que va a reducir el consumo de memoria de VDRAdmin-AM y mejorar así su rendimiento. <strong>0</strong> desactivará esta función y VDRAdmin-AM utilizará todas las emisoras posibles." msgid "Here you can specify an IP address or range that can login without providing login information. For example: \"192.168.0.0/24\" will include any IP starting with \"192.168.0\", \"192.168.0.123/32\" will only match \"192.168.0.123\"." -msgstr "Aquí se especifica una dirección IP o rango para una conexión sin necesidad de inicar una sesión con contraseña. Por ejemplo: \"192.168.0.0/24\" incluye cada IP empezando en \"192.168.0\", \"192.168.0.123/32\" resultaria \"192.168.0.123\"." - -msgid "Language:" -msgstr "Idioma:" +msgstr "Aquí se especifica una dirección IP o rango para una conexión sin necesidad de iniciar una sesión con contraseña. Por ejemplo: \"192.168.0.0/24\" incluye cada IP empezando en \"192.168.0\", \"192.168.0.123/32\" resultaría \"192.168.0.123\"." msgid "Here you can set the localization VDRAdmin-AM should use." -msgstr "Aquí se ajusta la localización que VDRAdmin-AM utilice." - -msgid "Save settings on exit:" -msgstr "Guardar los ajustes cuando sales:" +msgstr "Aquí se ajusta el idioma y codificación de caracteres que VDRAdmin-AM utilizará." msgid "With this option the settings will be saved if VDRAdmin-AM exits. This will also save settings not available on the \"Configuration\" menu like interval and size in TV, sorting in the lists and current view in \"What's on now\"." -msgstr "Con esta opción las propiedades van a ser guardados cuando VDRAdmin-AM se apaga. Asi guardará también las opciones invisibles del menú \"Configuración\" como intervalo y dimensiones del TV, orden de la lista y modo de vista en \"Se ve ahora\"." +msgstr "Con esta opción los ajustes se guardarán cuando VDRAdmin-AM se apague. Así guardará también las opciones invisibles del menú \"Configuración\" como intervalo y dimensiones del TV, orden de la lista y modo de vista en \"Programas ahora\"." msgid "Top" msgstr "Al principio" -msgid "Number of DVB cards:" -msgstr "Cantidad de tarjetas-DVB:" - msgid "The number of DVB cards VDR can access. Depending on this value VDRAdmin-AM will calculate critical timers in the <span class=\"ref_menu\">Timer</span> menu." msgstr "La cantidad de tarjetas accesibles. Referiendose a este valor, VDRAdmin-AM calculará programaciones críticas en el menú <span class=\"ref_menu\">Programaciones</span>" -msgid "Path to recordings:" -msgstr "Ruta de las grabaciones:" - msgid "The path to VDR's recordings. It's used so that VDRAdmin-AM can locate the recordings when using <span class=\"ref_label\">Recordings Streaming</span> and <span class=\"ref_file\">reccmds.conf</span> in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "La ruta de las grabaciones. Necesario, para que VDRAdmin-AM pueda localizar las grabaciones para usar <span class=\"ref_label\">Flujo de grabaciones</span> y <span class=\"ref_file\">reccmds.conf</span> en el menú <span class=\"ref_menu\">Grabaciones</span>." -msgid "Path to configuration files:" -msgstr "La ruta de los ficheros de configuración:" - msgid "The path where VDR's configuration files are located. If this directory contains the file <span class=\"ref_file\">reccmds.conf</span> its content is shown in a selectbox in the <span class=\"ref_menu\">Recordings</span> menu." -msgstr "La ruta de los ficheros de configuración del VDR. Si alli se encuentra el archivo <span class=\"ref_file\">reccmds.conf</span> su contenido verás en un campo de selección en el menú <span class=\"ref_menu\">Grabaciones</span>." - -msgid "Path to EPG images:" -msgstr "Ruta de las las imagenes de EPG:" +msgstr "La ruta de los ficheros de configuración del VDR. Si allí se encuentra el archivo <span class=\"ref_file\">reccmds.conf</span> su contenido se mostrará en un campo de selección en el menú <span class=\"ref_menu\">Grabaciones</span>." msgid "The path where the EPG images are stored." -msgstr "La ruta donde se guarda las imagenes de EPG" - -msgid "Username:" -msgstr "Nombre del usuario:" +msgstr "La ruta donde se guardan las imágenes de EPG" msgid "The username for the main user, i.e. the user having the most privileges." -msgstr "El nombre del usuario, p.e. el usuario con todos privilegios." - -msgid "Password:" -msgstr "Contraseña:" +msgstr "El nombre del usuario, p.e. el usuario con todos los privilegios." msgid "The main user's password." -msgstr "La contraseña del usuario." - -msgid "Guest Account:" -msgstr "Acceso como invitado:" +msgstr "La contraseña del usuario principal." msgid "If you want a user account having only limited privileges, this is for you. The guest user cannot modify anything, it's only allowed to view the EPG, timers, AutoTimers and recordings listings." -msgstr "Esta opción te permite crear una cuenta limitada. La cuenta del invitado no permite modificar nada. Además sólo va a ver EPG, programaciones, autoprogramaciones y grabaciones." - -msgid "Guest Username:" -msgstr "Nombre como invitado:" +msgstr "Esta opción te permite crear una cuenta limitada. La cuenta del invitado no permite modificar nada. Además sólo se le permite ver EPG, programaciones, autoprogramaciones y grabaciones." msgid "The username for the guest user." msgstr "Nombre del invitado." -msgid "Guest Password:" -msgstr "Contraseña como invitado:" - msgid "The guest user's password." msgstr "Contraseña del invitado." -msgid "Hours:" -msgstr "Rango de hora/s:" - msgid "The number of hours to show in the timeline." msgstr "Cantidad de horas visibles en la tabla de tiempo." -msgid "Times:" -msgstr "Horas:" - msgid "A comma separated list of times in <strong>hh:mm</strong> format that appear in the selectbox placed at the top." msgstr "Una lista separada por coma con el formato <strong>hh:mm</strong>, que aparece en la lista de selección al principio de la página." -msgid "Tooltips:" -msgstr "Extremidades de herramienta:" - msgid "Here you can (de-)activate the tooltips." -msgstr "Aquí se puede (des)activar las extremidades de herramienta." - -msgid "Active:" -msgstr "Activada:" +msgstr "Aquí se pueden (des)activar las notas flotantes." msgid "Activate or deactivate the AutoTimer function." -msgstr "Activar o desactivar la funcción autoprogramación" - -msgid "Send email after programming timer:" -msgstr "Mandar mensaje después de crear programación:" +msgstr "Activar o desactivar la función autoprogramación" msgid "VDRAdmin-AM will send an email whenever an event matches an AutoTimer and a timer has been programmed if you enable this feature." -msgstr "VDRAdmin-AM mandará un email, siempre cuando un evento cumple con una autoprogramación y una programación ha creado a caso lo que has habilitado esta posibilidad." - -msgid "Send email as:" -msgstr "Mandar mensaje electrónico como:" +msgstr "VDRAdmin-AM mandará un email, siempre que un evento cumpla con una autoprogramación y se haya creado una programación para él si habilitas esta posibilidad." msgid "Here you set the sending email address of the generated email." msgstr "Aquí se pone el remitente del mensaje generado." -msgid "Send email to:" -msgstr "Mandar mensaje electrónico a:" - msgid "The email address the email is sent to." msgstr "La dirección a donde se manda el mensaje." -msgid "Mail server:" -msgstr "Servidor de mensajes:" - msgid "The outgoing mail server." -msgstr "Servidor saliente" - -msgid "SMTPAuth user:" -msgstr "Usuario de SMPTAuth:" +msgstr "Servidor de correo saliente" msgid "If you need to authenticate yourself at the outgoing mail server, you have to supply the username and the password below. Leaving this field empty will disable SMTPAuth." -msgstr "Si hace falta autentificarse al servidor de mensajes saliente, hay que agregar el nombre del usuario y la contraseña abajo. Dejandolo vacio dehabilitará SMPTAuth." - -msgid "SMTPAuth password:" -msgstr "Contraseña de SMPTAuth:" +msgstr "Si hace falta autentificarse al servidor de mensajes saliente, hay que agregar el nombre del usuario y la contraseña abajo. Dejandolo vacío deshabilitará SMPTAuth." msgid "The password for the SMTPAuth user." msgstr "Contraseña del usuario de SMPTAuth." -msgid "Tooltips in timeline:" -msgstr "Extremidades de herramienta en la barra de tiempo:" - msgid "Here you can (de-)activate the tooltips in the timeline." -msgstr "Aquí se puede (des)activar las extremidades de herramienta en la tabla de tiempo" - -msgid "Tooltips in list:" -msgstr "Extremidades de herramienta en la lista:" +msgstr "Aquí se pueden (des)activar las notas flotantes en la tabla de tiempo" msgid "Here you can (de-)activate the tooltips in the list." -msgstr "Aquí se puede (des)activar las extremidades de herramienta en la lista." +msgstr "Aquí se pueden (des)activar las notas flotantes en la lista." msgid "Add summary to new timers:" msgstr "Añadir resumen a programaciones creadas:" msgid "If you don't want VDRAdmin-AM to add the summary taken from EPG to new timers you can switch it off here." -msgstr "Si no quieres que VDR agrega el resumen creado automáticamente de la información de la EPG a las programaciones nuevas, se puede deshablitar aquí." - -msgid "Live Streaming:" -msgstr "Flujo en vivo:" +msgstr "Si no quieres que VDR agregue el resumen creado automáticamente de la información de la EPG a las programaciones nuevas, se puede deshabilitar aquí." msgid "Enable or disable live streaming using the <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. You also have to set the correct <span class=\"ref_label\">HTTP Port for Streamdev</span> below." msgstr "Habilitar o inhabilitar flujo en vivo utilizando el <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. Además tienes que ajustar correctamente el <span class=\"ref_label\">puerto HTTP para flujo</span> más abajo." -msgid "HTTP Port of Streamdev (also possible 3000/ts):" -msgstr "Puerto-HTTP para el flujo (3000/ts también posible):" - msgid "Here you have to set the port number your VDR's streamdev server listens for connections. Additionally you can also provide the stream type you like to use." msgstr "Aquí se ajusta el numero del puerto del servidor del streamdev de VDR. Además puedes elegir el tipo del flujo." -msgid "Recordings Streaming:" -msgstr "Flujo de grabaciones:" - msgid "Enable or disable streaming of recordings.<br />Well actually this is no real \"streaming\", but you have to setup your workstation so that it can access VDR's recordings. You can use for example Samba or NFS for this. VDRAdmin-AM simply generates a playlist that contains all parts of the recording and sends this to your browser. If your browser and media player are configured correctly you will see the recording on your workstation's display." msgstr "" -"Habilitar o deshabiltar el flujo de grabaciones.<br />\n" +"Habilitar o deshabilitar el flujo de grabaciones.<br />\n" "Pues realmente no es un \"flujo\" de verdad, por que tienes que configurar tu ordenador para que tenga acceso a las grabaciones del VDR. Se puede usar Samba o NFS. VDRAdmin-AM solo va a crear una lista de títulos incluyendo todas las grabaciones y mandarlas al navegador. Si está bien configurado el navegador y reproductor multimedia, verás las grabaciones en la pantalla del ordenador." -msgid "Path to VDR Recordings on your workstation:" -msgstr "La ruta de las grabaciones de VDR en tu ordenador" - msgid "This is the path where your workstation can access VDR's recordings. This depends on your VDR and workstation setup, for example \"\\\\vdr\\videos\" or \"V:\\\" (on Windows) or \"/mnt/videos\" (on Linux)." -msgstr "Ésta es la ruta donde tu ordenador pude acceder al las grabaciones de VDR. Depende de la configuración de los dos, p.e. \"\\\\vdr\\videos\" o \"V:\\\" (en Windows) o \"/mnt/videos\" (en Linux)." - -msgid "MIME type for live streaming:" -msgstr "Tipo MIME del flujo en vivo:" +msgstr "Ésta es la ruta donde tu equipo puede acceder a las grabaciones de VDR. Depende de la configuración de los dos, p.e. \"\\\\vdr\\videos\" o \"V:\\\" (en Windows) o \"/mnt/videos\" (en Linux)." msgid "The MIME type to send when using live streaming. Defaults to \"video/x-mpegurl\"." msgstr "Tipo MIME para mandar utilizando flujo en vivo. Por defecto \"video/x-mpegurl\"." -msgid "Suffix for live streaming:" -msgstr "Extención para flujo en vivo:" - msgid "The suffix to use for live streaming. Defaults to \"m3u\"." -msgstr "La extención para el uso de flujo en vivo. Por defecto \"m3u\"." - -msgid "MIME type for recordings streaming:" -msgstr "Tipo MIME para flujo de grabaciones:" +msgstr "La extensión para el uso de flujo en vivo. Por defecto \"m3u\"." msgid "The MIME type to send when using recordings streaming. Defaults to \"video/x-mpegurl\"." msgstr "Tipo MIME para mandar mientras utilizando flujo de grabaciones. Por defecto \"video/x-mpegurl\"." -msgid "Suffix for recordings streaming:" -msgstr "Extención para flujo de grabaciones:" - msgid "The suffix to use for recordings streaming. Defaults to \"m3u\"." -msgstr "La extención utilizado para flujos de grabaciones. Por defecto \"m3u\"." +msgstr "La extensión utilizada para flujos de grabaciones. Por defecto \"m3u\"." msgid "<p>Here you can define two external searches that you can access in the EPG views. You simply have to find the required URL and where the search pattern has to be located. %TITLE% will be substituted by the broadcast's EPG title.</p>" -msgstr "<p>Aqui se puede definir 2 búsquedas externas que seran accesibles en las vistas de EPG. Solo hay que encontrar la URL necesario y el lugar del sistema de búsqueda. %TITLE% se va a sustituir con el título del EPG.</p>" +msgstr "<p>Aquí se pueden definir dos búsquedas externas que serán accesibles en las vistas de EPG. Solo hay que encontrar la URL necesaria y dónde se ha de insertar el patrón de búsqueda. %TITLE% se va a sustituir con el título de la EPG.</p>" msgid "Some examples:" msgstr "Unos ejemplos:" msgid "Please change the hostname to your local needs!" -msgstr "Adapta el nombre del host a tus necesidades locales!" +msgstr "¡Adapta el nombre del host a tus necesidades locales!" msgid "<p>This section is for experts <strong>only</strong>, i.e. you know what you are doing!</p>" msgstr "<p>Esta sección es <strong>sólo</strong> para expertos, ¡es bastante importante saber que haces!</p>" -msgid "Update EPG data in background:" -msgstr "Actualizar datos EPG en segundo plano" - msgid "If set to \"yes\" VDRAdmin-AM will periodically refresh its local EPG cache. Else the EPG will be refreshed if the user accesses any EPG view at the web interface and the timeout set at \"Update EPG every\" has been reached." -msgstr "Si esta activado con \"sí\" VDRAdmin-AM actualizará periodicamente su datos EPG local en segundo plano. En el otro caso solo se actualiza, cuando el usuario abre la vista de EPG en la pantilla del VDRAdmin y el periodo ajustado en \"Actualizar EPG cada\" se ha caducado." - -msgid "Update EPG every:" -msgstr "Actualizar datos EPG cada:" +msgstr "Si esta activado con \"sí\" VDRAdmin-AM actualizará periódicamente su datos EPG local en segundo plano. En el otro caso solo se actualiza, cuando el usuario abre la vista de EPG en la plantilla del VDRAdmin y el periodo ajustado en \"Actualizar EPG cada\" se ha caducado." msgid "The interval, the EPG data is refreshed from VDR and AutoTimer updates are performed (if AutoTimer feature is used)." msgstr "El intervalo de búsqueda que va a realizar VDRAdmin-AM para actualizar las autoprogramaciones (en caso de usar el autoprogramador)" @@ -1085,94 +963,29 @@ msgstr "El intervalo de búsqueda que va a realizar VDRAdmin-AM para actualizar msgid "<p>If you want to limit the number of channels used in some parts of VDRAdmin-AM, this is for you!</p><p>Use the radio buttons to activate or deactivate the wanted channels in the named menu.</p><p>To add channels to the list of wanted channels you have to select them in the left side selectbox and click <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. If you want to remove channels from the list of wanted channels you have to select them in the right side selectbox and click <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" msgstr "" "<p>Aquí se puede limitar la cantidad de emisoras visibles en diferentes partes del VDRAdmin-AM!</p>\n" -"<p>Usa los botones para activar o desactivar en el menu las emisoras deseadas.</p>\n" -"<p>Emisoras se puede añadir seleccionando una o más en el campo izquierda (Elegir más que uno se permite con el botón \"CTRL\" apretando mientras haces clic en las emisoras). Al final haces clic en el botón <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. Para desmarcar emisoras funcciona viceversa.</p>" - -msgid "Show channels without EPG information:" -msgstr "Mostrar emisoras sin información EPG:" +"<p>Usa los botones para activar o desactivar en el menú las emisoras deseadas.</p>\n" +"<p>Se pueden añadir emisoras seleccionando una o más en el campo de la izquierda (Elegir más de una se permite con el botón \"CTRL\" apretando mientras haces clic en las emisoras). Al final haces clic en el botón <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. Para desmarcar emisoras haz lo mismo pero con las emisoras de la lista de la derecha y pulsa <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" msgid "Usually channels that don't have EPG information are hidden in all EPG views. If you don't want them to be hidden you have to set this option to \"yes\"." -msgstr "Normalmente no se ve las emisoras sin información EPG. Si se pone esta opción a \"si\" se muestra sin embargo." - -msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" -msgstr "" -"<p>Aqui se encuentra una lista de todas las autoprogramaciones conocidas por VDRAdmin-AM.</p>\n" -"<p>La lista contiene informaciones de las autoprogramaciones. Se puede cambiar el orden de la lista haciendo clic en los títulos de las columnas.</p>\n" -"\n" -"<p>Para cada autoprogramación hay las siguientes opciones:<dl>\n" -"<dt>Cambiar estado</dt>\n" -"<dd>Haciendo clic en \"Sí\" o \"No\" en la columna \"Activada\" se puede activar y desactivar.</dd>\n" -"\n" -"<dt>Vista rapida de prioridad y durabilidad</dt>\n" -"<dd>Tienes que mover la flecha del ratón encima del nombre de la autoprogramación.</dd>\n" -"\n" -"<dt>Modificar autoprogramación</dt>\n" -"<dd>Se realiza una edición haciendo clic en <img src=\"bilder/edit.png\" alt=\"editar\" />.</dd>\n" -"\n" -"<dt>Borrar autoprogramación</dt>\n" -"<dd>Para borrar una autoprogramación hay que hacer clic en <img src=\"bilder/delete.png\" alt=\"borrar\" />.</dd>\n" -"</dl></p>\n" -"<p>El estado de una autoprogramación está indicada por colores diferentes:<br />\n" -"<img src=\"bilder/poempl_gruen.png\" alt=\"Activa\" align=\"middle\" /> La autoprogramación está bien y va programar automáticamente estrenos coincidentes.<br />\n" -"<img src=\"bilder/poempl_grau.png\" alt=\"inactiva\" align=\"middle\" /> La autoprogramación está desactivada.</p>\n" -"<p>Además se puede añadir otra autoprogramación más, haciendo clic en <input type=\"submit\" class=\"submit\" value=\"Añadir autoprogramación\"/> al tope. Más abajo se encuentra el botón <input type=\"submit\" class=\"submit\" value=\"Borrar autoprogramaciones elegidas\"/>, cuál hace posible borrar las autoprogramaciones marcadas en la lista por lotes.</p>\n" -"<p>Con el botón <input type=\"submit\" class=\"submit\" value=\"Actualizar ahora\"/> arrancarás una búsqueda inmediatamente en los datos actuales de la EPG récien actualizados.</p>" - -msgid "Your Browser does not support frames!" -msgstr "¡El navegador no respalda marcos!" - -msgid "Rename Recording" -msgstr "Renombrar grabación" +msgstr "Normalmente no se muestran las emisoras sin información EPG. Si no quieres que se oculten pon esta opción a \"sí\"." -msgid "Original Name of Recording:" -msgstr "Título actual de la grabación:" - -msgid "New Name of Recording:" -msgstr "Título nuevo de la grabación:" - -msgid "Subtitle:" -msgstr "Subtítulo:" - -msgid "Rename" -msgstr "Renombrar" +msgid "Edit Timer" +msgstr "Modificar programación" -msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" -msgstr "" -"<p>Aquí se ve una lista de todas las grabaciones disponibles en el VDR. En la fila encabezada se puede ver el espacio total y libre del VDR.</p>\n" -"<p>Esta lista contiene algunas informaciones de las grabaciones. Se puede cambiar el orden de la lista haciendo clic en los títulos de las columnas. Encima se ve la ruta de navegar. Si quieres ver el contenido de una carpeta visitado anteriormente, se puede hacer clic en el nombre de la carpeta en esa ruta.</p>\n" -"<p>Cada fila contiene las informaciones siguientes:<dl>\n" -"\n" -"<dt>Fecha</dt>\n" -"<dd>La fecha cuando se lo realizó la grabación. Si es una carpeta se ve la cantidad de grabaciones dentro.</dd>\n" -"\n" -"<dt>Hora</dt>\n" -"<dd>La hora cuando se lo grabó. Si es una carpeta se ve la cantidad de grabaciones <strong>nuevas</strong>.</dd>\n" -"\n" -"<dt>Nombre</dt>\n" -"<dd>El nombre de la carpeta o de la grabación. Se hace clic para ver el contenido o un resúmen de la grabación..</dd>\n" -"\n" -"<dt>Renombrar (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt>\n" -"<dd>Renombrar una grabación.<br /><h4>Advertencia:</h4>Solo funccionará si tu VDR entiende el comando <u>RENR</u> del SVDRPuerto. Aúnque no es un orden estandar del VDR, se puede añadir un parche. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> y <span class=\"ref_file\">enAIO-v2.2+</span> te añadirá este orden.</dd>\n" -"\n" -"<dt>Borrar (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt>\n" -"<dd>Borrar una grabacion.</dd>\n" -"\n" -"<dt>Flujo (<img src=\"bilder/stream.jpg\" alt=\"stream\" />)</dt>\n" -"<dd>Esta columna solo se ve, si has activado y configurado <span class=\"ref_label\">Flujo de grabaciones</span> en la página de <span class=\"ref_menu\">Configuraciones</span>. Así entonces es posible ver las grabaciones en tu ordenador.</dd></dl></p>\n" -"<p>Además es posible borrar varias grabaciones por lotes, marcando la casilla de cada una deseada y haciendo clic en <input type=\"submit\" class=\"submit\" value=\"Borrar grabaciones elegidas\"/></p>\n" -"<p>Si has ajustado la ruta de los archivos de configuración y además se encuntra ahi el fichero <span class=\"ref_file\">reccmds.conf</span>, se puede utilizar los órdenes que contiene para las grabaciones elegidas. Hay que elegir el órden deseado con el botón a lado de <span class=\"ref_label\">Órdenes:</span> y depués hacer clic en <input type=\"submit\" class=\"submit\" value=\"Ejecutar\"/>.</p>/n<p>Así se restaurará la lista de grabaciones de VDR</p>" +msgid "Edit EPG" +msgstr "Modificar EPG" msgid "<p>Here you can edit the descriptive fields of an existing EPG entry.</p>" msgstr "<p>Aquí se puede modificar la descripción de una entrada EPG existente.</p>" msgid "Channel (readonly)" -msgstr "Emisora (solo lectura)" +msgstr "Emisora (sólo lectura)" msgid "This is the channel of the EPG entry. It cannot be changed." -msgstr "Eso es el canal de la entrada del EPG. No se puede cambiar!" +msgstr "Eso es el canal de la entrada del EPG. ¡No se puede cambiar!" msgid "Time (readonly)" -msgstr "Horas (solo lectura)" +msgstr "Horas (sólo lectura)" msgid "This is the start and end time of the entry. It cannot be changed." msgstr "Eso es la hora de inicio y final de la entrada. No se puede cambiar!" @@ -1181,157 +994,196 @@ msgid "Change this string to give this EPG Entry a new title. It must consist of msgstr "El nuevo título de solo una fila de la entrada de la EPG." msgid "Change this string to give this EPG Entry a new subtitle. It must consist of only one line of text." -msgstr "El nuevo subtítulo monolineal de la entrada de la EPG." +msgstr "El nuevo subtítulo de la entrada de la EPG. Sólo puede contener una línea." msgid "Change the text in this field to edit the description of this entry. The text can consist of one or more lines." -msgstr "Aqui se puede manipular la descripción del EPG. (multifila posible)" +msgstr "Aquí se puede manipular la descripción del EPG. Este texto puede tener varias líneas." msgid "VPS (readonly)" -msgstr "VPS (solo lectura)" +msgstr "VPS (sólo lectura)" msgid "If available this field shows the vps time of the EPG entry. It cannot be changed." msgstr "Si disponible, muestra la hora VPS de la entrada de EPG. No se puede modificar." msgid "Video tracks (readonly)" -msgstr "Pistas de video (solo lectura)" +msgstr "Pistas de vídeo (sólo lectura)" msgid "If available this field shows the video track(s). It cannot be changed." -msgstr "Si disponible, muestra las pistas de video. No se puede modificar." +msgstr "Si disponible, muestra las pistas de vídeo. No se puede modificar." msgid "Audio tracks (readonly)" -msgstr "Pistas de audio (solo lectura)" +msgstr "Pistas de audio (sólo lectura)" msgid "If available this field shows the audio track(s). It cannot be changed." msgstr "Si disponible, muestra las pistas de audio. No se puede modificar." -msgid "Duration:" -msgstr "Duración:" - -msgid "min" -msgstr "min" - -msgid "Transponder:" -msgstr "Transpondor" - -msgid "CA-System:" -msgstr "Sistema CA:" - -msgid "New Timer" -msgstr "Añadir programación" - -msgid "Date" -msgstr "Fecha" - -msgid "Edit timer status?" -msgstr "¿Cambiar estado de la programación?" +msgid "No Help Available" +msgstr "No hay ayuda" -msgid "This timer is inactive!" -msgstr "¡Esta programación está desactivada!" +msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgstr "" +"<p>Para esta función no dispone ayuda hasta ahora. Para añadir o modificar un texto, escribe un e-mail a \n" +"<a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgid "This timer is impossible!" -msgstr "¡Esta programación es imposible!" +msgid "Recordings" +msgstr "Grabaciones" -msgid "No more timers on other transponders possible!" -msgstr "¡No se puede añadir más programaciones!" +msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" +msgstr "" +"<p>Aquí se ve una lista de todas las grabaciones disponibles en el VDR. En la fila encabezada se puede ver el espacio total y libre del VDR.</p>\n" +"<p>Esta lista contiene algunas informaciones de las grabaciones. Se puede cambiar el orden de la lista haciendo clic en los títulos de las columnas. Encima se ve la ruta de navegar. Si quieres ver el contenido de una carpeta visitado anteriormente, se puede hacer clic en el nombre de la carpeta en esa ruta.</p>\n" +"<p>Cada fila contiene las informaciones siguientes:<dl>\n" +"\n" +"<dt>Fecha</dt>\n" +"<dd>La fecha cuando se realizó la grabación. Si es una carpeta se ve la cantidad de grabaciones dentro.</dd>\n" +"\n" +"<dt>Hora</dt>\n" +"<dd>La hora cuando se grabó. Si es una carpeta se ve la cantidad de grabaciones <strong>nuevas</strong>.</dd>\n" +"\n" +"<dt>Nombre</dt>\n" +"<dd>El nombre de la carpeta o de la grabación. Se hace clic para ver el contenido o un resúmen de la grabación..</dd>\n" +"\n" +"<dt>Renombrar (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt>\n" +"<dd>Renombrar una grabación.<br /><h4>Advertencia:</h4>Solo funccionará si tu VDR entiende el comando <u>RENR</u> del SVDRPuerto. Aúnque no es un orden estandar del VDR, se puede añadir un parche. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> y <span class=\"ref_file\">enAIO-v2.2+</span> te añadirá este orden.</dd>\n" +"\n" +"<dt>Borrar (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt>\n" +"<dd>Borrar una grabacion.</dd>\n" +"\n" +"<dt>Flujo (<img src=\"bilder/stream.jpg\" alt=\"stream\" />)</dt>\n" +"<dd>Esta columna solo se ve, si has activado y configurado <span class=\"ref_label\">Flujo de grabaciones</span> en la página de <span class=\"ref_menu\">Configuraciones</span>. Así entonces es posible ver las grabaciones en tu ordenador.</dd></dl></p>\n" +"<p>Además es posible borrar varias grabaciones por lotes, marcando la casilla de cada una deseada y haciendo clic en <input type=\"submit\" class=\"submit\" value=\"Borrar grabaciones elegidas\"/></p>\n" +"<p>Si has ajustado la ruta de los archivos de configuración y además se encuntra ahi el fichero <span class=\"ref_file\">reccmds.conf</span>, se puede utilizar los órdenes que contiene para las grabaciones elegidas. Hay que elegir el órden deseado con el botón a lado de <span class=\"ref_label\">Órdenes:</span> y depués hacer clic en <input type=\"submit\" class=\"submit\" value=\"Ejecutar\"/>.</p>/n<p>Así se restaurará la lista de grabaciones de VDR</p>" -msgid "Timer OK." -msgstr "Esta programación es válida." +msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" +msgstr "" +"<p>Aquí encontrarás una lista de programaciones conocidas para VDR.</p>\n" +"<p>Arriba hay un diagrama mostrando gráficamente las programaciones del día. Te ofrece una vista rápida del día especificado y te ayuda encontrar programaciones conflictivas. Moviendo la flecha del ratón encima de cualquier programación verás el título, la prioridad, la durabilidad y la duración de la programación.</p>\n" +"<p>Abajo del diagrama encuentras la lista de programaciones visualizando unas informaciones de las programaciones. Se puede cambiar el orden de la lista con un clic en el tope de la columna correspondiente.</p>\n" +"<p>Para cada programación tienes las siguientes opciones:<dl>\n" +"<dt>Establecer su estado</dt>\n" +"<dd>Hacer clic en \"Sí\", \"No\", \"VPS\" o \"Auto\" en la columna \"Activa\".</dd>\n" +"<dt>Vista rápida de la prioridad y durabilidad</dt>\n" +"<dd>Moviendo la flecha del ratón encima del título de programación.</dd>\n" +"<dt>Vista de la entrada del EPG</dt>\n" +"<dd>Programaciones con <span class=\"ref_label\">Autotest programación</span> para la \"Identificación de la transmisión\" enseñarán la entrada correspondiente del EPG si haces clic en el título.</dd>\n" +"\n" +"<dt>Modificar programación</dt>\n" +"<dd>Se puede editar una programación haciendo clic en <img src=\"bilder/edit.png\" alt=\"editar\" />.</dd>\n" +"\n" +"<dt>Borrar la programación</dt>\n" +"<dd>Se puede borrar una programación haciendo clic en <img src=\"bilder/delete.png\" alt=\"borrar\" />.</dd></dl></p>\n" +"\n" +"<p>El estado de cualquiera programación está indicado por iconos de diferentes colores (la vista como diagrama) o imagenes (la vista como lista):<br />\n" +"<span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"activa\" align=\"middle\" /> OK para la programación y grabará.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problema\" align=\"middle\" /> Conflictos con otras programaciones. Ésto no produzca ningún problema, si hay bastantes tarjetas DVB para grabar en paralelo.<br />\n" +"<span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"imposible\" align=\"middle\" /> Programación crítica que probablemente <strong>no</strong> grabará.<br />\n" +"<span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactiva\" align=\"middle\" /> Programación inactiva.</p>\n" +"<p>Además puedes añadir una programación nueva cliqueando encima de <input type=\"submit\" class=\"submit\" value=\"Añadir programación\"/> arriba y se puede borrar programaciones por lotes cliqueando encima <input type=\"submit\" class=\"submit\" value=\"Borrar programaciones seleccionadas\"/> al final de la columna.</p>\n" +"<p>Se puede <input type=\"submit\" class=\"submit\" value=\"activar\"/> y <input type=\"submit\" class=\"submit\" value=\"desactivar\"/> programaciones seleccionadas.</p>" -msgid "Auto" -msgstr "Auto" +msgid "<p>Here you can edit a timer's settings.</p>" +msgstr "<p>Aquí se pueden modificar los ajustes de las programaciones.</p>" -msgid "activate" -msgstr "Activar" +msgid "Timer Active:" +msgstr "Programación activa:" -msgid "inactivate" -msgstr "Desactivar" +msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." +msgstr "Activar o desactivar esta programación. Programaciones desactivadas se encuentran todavía en la lista de las programaciones. Así se puede activarse más tarde. Pero significará que no grabará mientras están desactivadas." -msgid "selected timers" -msgstr "programaciones elegidas" +msgid "AutoTimer Checking:" +msgstr "Comprobación de las auto programaciones:" -msgid "Delete Selected Timers" -msgstr "Borrar programaciones elegidas" +msgid "Depending on how this timer has been programmed you have up to three possible settings:" +msgstr "Dependiendo de como se haya creado la programación tienes tres ajustes posibles:" -msgid "No timers defined!" -msgstr "No hay programaciones!" +msgid "Transmission Identification" +msgstr "Identificador de la emisora" -msgid "EPG Search Blacklists" -msgstr "Utiliza lista negra en búsqueda de EPG:" +msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." +msgstr "Monitorizar esta programación utilizando la identificación del EPG. ¡Ten en cuenta, que éste sólo funcionará si el identificador es un valor fijo y único! Esta opción no es valido para programaciones creados en VDR." -msgid "New Blacklist" -msgstr "Nueva lista negra" +msgid "Time" +msgstr "Hora" -msgid "Search pattern" -msgstr "Palabras claves:" +msgid "Monitor this timer using the start and stop time." +msgstr "Monitorizar esta programación utilizando hora de inicio y fin." -msgid "From" -msgstr "De" +msgid "off" +msgstr "apagado" -msgid "To" -msgstr "Al" +msgid "Do not monitor this timer." +msgstr "No monitorices esta programación." -msgid "Delete blacklist?" -msgstr "¿Borrar lista negra?" +msgid "The channel to record." +msgstr "La emisora para grabar:" -msgid "Delete Selected Blacklists" -msgstr "Borrar listas negras elegidas" +msgid "Day Of Recording:" +msgstr "Día de la grabación:" -msgid "Delete all selected blacklists?" -msgstr "¿Estas seguro de que deseas borrar las listas negras elegidas?" +msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." +msgstr "" +"El día de la activación de la programación. Se puede verificar en dos formatos:<ul>\n" +"<li>Dos dígitos (DD). Así se usará mes y año actual.</li>\n" +"<li>Norma ISO (YYYY-MM-DD). Esta forma te permite crear programaciones para cualquier momento en el futuro.</li></ul>\n" +"Para una programación repetitiva usa las 7 casillas abajo del texto. Cada una marcará el día activado para la programación." -msgid "EPG search" -msgstr "Búsqueda EPG" +msgid "Start Time:" +msgstr "Comienzo:" -msgid "Use template" -msgstr "Usar plantilla:" +msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Esta es la hora cuando la programación iniciará la grabación. El primer campo de texto es para \"hora\", el segundo para \"minutos\"." -msgid "New Search" -msgstr "Búsqueda nueva" +msgid "End Time:" +msgstr "Fin:" -msgid "Action" -msgstr "Acción" +msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Esta es la hora cuando la programación acabará la grabación. El primer campo de texto es para \"hora\", el segundo para \"minutos\"." -msgid "Find" -msgstr "Buscar" +msgid "Title of Recording:" +msgstr "Título de la grabación:" -msgid "Show Favorites" -msgstr "Enseñar favoritas" +msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." +msgstr "" +"El <strong>titulo</strong> que esta programación va a dar a la grabación. Si la grabación la quieres agregar en una subcarpeta, tienes que seperar cada una con '~' (desde que el caracter '/' puede ser parte de programas regulares).<br />\n" +"<br />Las palabras claves <strong>TÍTULO</strong> y <strong>EPISODIO</strong>, si existen, van a ser sustituidos con título y episodio de los datos de la EPG en la hora de grabación; si no puede verificar esos datos, porque no se encuentra la información en los datos\n" +" <strong>TÍTULO</strong> se pone con el nombre del canal y <strong>EPISODIO</strong> se deja en blanco." -msgid "Delete Selected Searches" -msgstr "Borrar búsquedas elegidas" +msgid "Summary:" +msgstr "Resumen:" -msgid "Delete all selected searches?" -msgstr "¿Estas seguro de que deseas borrar las búsquedas elegidas?" +msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." +msgstr "Un texto a tu gusto para describir la grabación realizada de una programación. Si este campo contiene algo, el texto va a ser escrito al fichero <span class=\"ref_file\">summary.vdr</span> o <span class=\"ref_file\">info.vdr</span> de la grabación." -msgid "Execute Selected Searches" -msgstr "Ejecutar búsquedas elegidas" +msgid "Your Browser does not support frames!" +msgstr "¡El navegador no respalda marcos!" -msgid "Duration" -msgstr "Duración:" +msgid "What's On Now?" +msgstr "Programas ahora" -msgid "Template:" -msgstr "Plantilla:" +msgid "Playing Today?" +msgstr "Programas hoy" -msgid "Also used for other EPG views!" -msgstr "También se usa para otras vistas de la EPG!" +msgid "Remote Control" +msgstr "Mando a distancia" -msgid "Bandwidth of Streams:" -msgstr "Ancho de banda del flujo:" +msgid "Watch TV" +msgstr "Ver TV" -msgid "URL:" -msgstr "URL:" +msgid "Commands" +msgstr "Órdenes" -msgid "Title:" -msgstr "Título:" +msgid "Search" +msgstr "Buscar" -msgid "User-defined search:" -msgstr "Búsqueda personalizada:" +msgid "Authorization Required" +msgstr "Autorización requerida" -msgid "In \"AutoTimer\"?" -msgstr "¿Usar en \"Autoprogramaciones\"?" +msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." +msgstr "" +"Este servidor no pudo verificar, tú permiso de acceso al documento requerido.<br>\n" +"Posiblemente por entregar datos incorrectos (nombre del usuario o contraseña p.e.) o por que tú navegador no soporta la forma de acceso." -msgid "Apply" -msgstr "Establecer" +msgid "VPS" +msgstr "VPS" msgid "close" msgstr "cerrar" @@ -1346,10 +1198,49 @@ msgid "edit" msgstr "Modificar" msgid "Video tracks:" -msgstr "Pista de video:" +msgstr "Pistas de vídeo:" msgid "Audio tracks:" -msgstr "Pista de audio:" +msgstr "Pistas de audio:" + +msgid "Video tracks" +msgstr "Pistas de vídeo:" + +msgid "Audio tracks" +msgstr "Pistas de audio:" + +msgid "TV select" +msgstr "cambiar canal" + +msgid "Stream" +msgstr "Flujo" + +msgid "Channel group:" +msgstr "Grupo de emisoras:" + +msgid "Go!" +msgstr "¡Venga!" + +msgid "Search for other show times" +msgstr "Buscar repeticiones" + +msgid "No Information" +msgstr "No hay información" + +msgid "No EPG information available" +msgstr "No hay información de la EPG" + +msgid "Playing Today" +msgstr "Emisiones de hoy" + +msgid "starting at" +msgstr "empezando a la/s" + +msgid "What's on:" +msgstr "Se puede ver:" + +msgid "at" +msgstr " a la/s:" msgid "now" msgstr "ahora" @@ -1357,19 +1248,32 @@ msgstr "ahora" msgid "to" msgstr "hasta" +msgid "Duration:" +msgstr "Duración:" + +msgid "min" +msgstr "min" + msgid "at:" msgstr " a la/s:" msgid "You need JavaScript to use the timeline!" -msgstr "JavaScript es necesario para aprovechar la barra de tiempo!" +msgstr "¡Se necesita JavaScript para usar la barra de tiempo!" -msgid "Authorization Required" -msgstr "Autorización requerida" +msgid "Rename Recording" +msgstr "Renombrar grabación" -msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." -msgstr "" -"Este servidor no pudo verificar, tú permiso de acceso al documento requerido.<br>\n" -"Posiblemente por entregar datos incorrectos (nombre del usuario o contraseña p.e.) o por que tú navegador no soporta la forma de acceso." +msgid "Original Name of Recording:" +msgstr "Título actual de la grabación:" + +msgid "New Name of Recording:" +msgstr "Título nuevo de la grabación:" + +msgid "Subtitle:" +msgstr "Subtítulo:" + +msgid "Rename" +msgstr "Renombrar" msgid "Total:" msgstr "Espacio en el disco:" @@ -1380,6 +1284,9 @@ msgstr "h." msgid "Free:" msgstr "Espacio disponible:" +msgid "Date" +msgstr "Fecha" + msgid "Total" msgstr "en total" @@ -1396,11 +1303,14 @@ msgid "Delete recording?" msgstr "¿Borrar grabación?" msgid "Refresh" -msgstr "Restaurar" +msgstr "Actualizar" msgid "Commands:" msgstr "Órdenes:" +msgid "Really run this command?" +msgstr "¿Ejecutar la orden de verdad?" + msgid "Delete Selected Recordings" msgstr "Borrar grabaciones elegidas" @@ -1410,17 +1320,116 @@ msgstr "¿Estas seguro de que deseas borrar las grabaciones elegidas?" msgid "No recordings available" msgstr "No hay grabaciones." +msgid "Transponder:" +msgstr "Transpondedor" + +msgid "CA-System:" +msgstr "Sistema CA:" + +msgid "New Timer" +msgstr "Añadir programación" + +msgid "Edit timer status?" +msgstr "¿Cambiar estado de la programación?" + +msgid "This timer is inactive!" +msgstr "¡Esta programación está inactiva!" + +msgid "This timer is impossible!" +msgstr "¡Esta programación es imposible!" + +msgid "No more timers on other transponders possible!" +msgstr "¡No se pueden añadir más programaciones!" + +msgid "Timer OK." +msgstr "Esta programación es válida." + +msgid "Auto" +msgstr "Auto" + +msgid "activate" +msgstr "Activar" + +msgid "inactivate" +msgstr "Desactivar" + +msgid "selected timers" +msgstr "programaciones elegidas" + +msgid "Delete Selected Timers" +msgstr "Borrar programaciones elegidas" + +msgid "No timers defined!" +msgstr "¡No hay programaciones!" + +msgid "Create New Timer" +msgstr "Añadir programación" + +msgid "Buffer:" +msgstr "Almacenador intermediario:" + +msgid "Use VPS:" +msgstr "Utiliza VPS:" + +msgid "readonly" +msgstr "sólo lectura" + +msgid "Timer has been set by AutoTimer pattern:" +msgstr "Programación por cumplir ajustes de la autoprogramación:" + +msgid "TV" +msgstr "TV" + +msgid "Interval:" +msgstr "Intervalo:" + +msgid "sec." +msgstr "seg" + +msgid "G" +msgstr "C" + +msgid "Grab the picture!" +msgstr "¡Captura la imagen!" + +msgid "Size:" +msgstr "Dimensiones:" + +msgid "Open in separate window" +msgstr "Abrir en una ventana separada" + +msgid "VDR Commands" +msgstr "Órdenes de VDR" + +msgid "Export channels as playlist:" +msgstr "Exportar los canales como lista de" + +msgid "Number of lines to show:" +msgstr "Cantidad de líneas a mostrar:" + +msgid "unlimited" +msgstr "sin límites" + +msgid "SVDRP commands:" +msgstr "Órdenes de SVDRP:" + +msgid "Commands defined in commands.conf:" +msgstr "Órdenes definidas en commands.conf:" + +msgid "Output" +msgstr "Salida" + msgid "What's your VDR hostname (e.g video.intra.net)?" msgstr "¿Cuál es el nombre del sitio del VDR (p.e. video.intra.net)?" msgid "On which port does VDR listen to SVDRP queries?" -msgstr "¿Cuál puerto esta vigilando VDR para requeridas de SVDRP?" +msgstr "¿Por qué puerto está escuchando VDR para peticiones de SVDRP?" msgid "On which address should VDRAdmin-AM listen (0.0.0.0 for any)?" msgstr "¿En qué dirección debe VDRAdmin-AM escuchar (0.0.0.0 para todas)?" msgid "On which port should VDRAdmin-AM listen?" -msgstr "¿Qué puerto debe VDRAdmin-AM esperar órdenes?" +msgstr "¿Por qué puerto debe VDRAdmin-AM esperar órdenes?" msgid "Username?" msgstr "¿Nombre del usuario?" @@ -1435,7 +1444,7 @@ msgid "Where are your VDR's configuration files located?" msgstr "Introduce la ruta de los archivos de configuración:" msgid "Config file written successfully." -msgstr "¡Los archivos de configuración creados!" +msgstr "¡El archivo de configuración se ha escrito con éxito!" #, perl-format msgid "%s %s started with pid %d." @@ -1445,13 +1454,13 @@ msgid "Not found" msgstr "No encontrado" msgid "The requested URL was not found on this server!" -msgstr "¡No encontrado la URL requerida, en el servidor!" +msgstr "¡No se ha encontrado la URL requerida en este servidor!" msgid "Forbidden" msgstr "Prohibido" msgid "You don't have permission to access this function!" -msgstr "¡No tienes permiso para ésta funcción!" +msgstr "¡No tienes permiso para esta función!" msgid "All channels" msgstr "Todas las emisoras" @@ -1463,18 +1472,18 @@ msgid "TV channels" msgstr "Emisoras de TV" msgid "Radio channels" -msgstr "Emisoras de Radio" +msgstr "Emisoras de radio" #, perl-format msgid "Access to file \"%s\" denied!" -msgstr "¡Acceso al archivo \"%s\" negado!" +msgstr "¡Acceso al archivo \"%s\" denegado!" #, perl-format msgid "The URL \"%s\" was not found on this server!" msgstr "¡No encontrado la URL %s en el servidor!" msgid "Your favorites" -msgstr "Tús favoritos" +msgstr "Tus favoritos" msgid "Search results" msgstr "Resultados de búsqueda" @@ -1501,7 +1510,7 @@ msgstr "No se puede conectar a VDR a %s:%s<br /><br />Compruebe si VDR está en #, perl-format msgid "Error while sending command to VDR at %s" -msgstr "Error mientras mandó el orden a %s " +msgstr "Error mientras mandó la orden a %s " msgid "Internal error:" msgstr "Error interno:" @@ -1510,17 +1519,17 @@ msgid "Lookup movie in the Internet-Movie-Database (IMDb)" msgstr "Buscar la película en la base de datos de películas en Internet (IMDb)" msgid "Can't find EPG entry!" -msgstr "No se encuentra el registro en la EPG!" +msgstr "¡No se encuentra el registro en la EPG!" msgid "Playing Tomorrow" -msgstr "Estrenos mañana" +msgstr "Programas mañana" #, perl-format msgid "Playing on the %s" -msgstr "Estrenos en %s" +msgstr "Programas el %s" msgid "next" -msgstr "próximo" +msgstr "después" msgid "What's on after" msgstr "Se puede ver después:" @@ -1529,10 +1538,10 @@ msgid "What's on at" msgstr "Se puede ver a la/s:" msgid "Suitable matches for:" -msgstr "Emparejamientos convenientes para:" +msgstr "Coincidencias encontradas para:" msgid "short view" -msgstr "Vista rapida" +msgstr "Vista rápida" msgid "long view" msgstr "Vista detallada" @@ -1542,14 +1551,14 @@ msgstr "Vista general" #, perl-format msgid "Can't write configuration file %s! Reason: %s" -msgstr "" +msgstr "¡No se puede escribir el archivo de configuración %s! Razón: %s" #, perl-format msgid "Configuration file %s not writeable! Configuration won't be saved!" -msgstr "" +msgstr "¡El archivo de configuración %s no se puede escribir! ¡La configuración no se guardará!" msgid "Timers" msgstr "Programaciones" msgid "System default" -msgstr "Defecto del sistema" +msgstr "Predefinido del sistema" @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: VDRAdmin-AM-3.6.2\n" "Report-Msgid-Bugs-To: Andreas Mair <andreas@vdr-developer.org>\n" -"POT-Creation-Date: 2008-12-18 08:25+0100\n" -"PO-Revision-Date: 2008-12-18 18:20+0200\n" +"POT-Creation-Date: 2009-12-30 13:26+0100\n" +"PO-Revision-Date: 2009-07-14 22:34+0200\n" "Last-Translator: Ville Skytt <ville.skytta@iki.fi>\n" "Language-Team: Suomi\n" "MIME-Version: 1.0\n" @@ -19,177 +19,108 @@ msgstr "" msgid "ISO-8859-1" msgstr "ISO-8859-1" -msgid "What's On Now?" -msgstr "Menossa nyt" - -msgid "Channel group:" -msgstr "Kanavaryhm:" - -msgid "What's on:" -msgstr "Menossa" - -msgid "at" -msgstr " " - -msgid "o'clock" -msgstr " " - -msgid "More Information" -msgstr "Listietoja" - -msgid "Channels" -msgstr "Kanavat" - -msgid "Stream" -msgstr "Suoratoisto" - -msgid "TV select" -msgstr "Valitse" - -msgid "Search for other show times" -msgstr "Etsi vaihtoehtoisia esitysaikoja" - -msgid "No Information" -msgstr "Ei tietoja" - -msgid "Edit" -msgstr "Muokkaa" - -msgid "Record" -msgstr "Tallenna" - -msgid "No EPG information available" -msgstr "Ohjelmaoppaan tietoja ei saatavilla" - -msgid "Edit EPG" -msgstr "Muokkaa ohjelmatietoja" - -msgid "Help" -msgstr "Opaste" - -msgid "Channel" -msgstr "Kanava" - -msgid "Time" -msgstr "Aika" +msgid "About" +msgstr "Tietoja" -msgid "Title" -msgstr "Otsikko" +msgid "License" +msgstr "Lisenssi" -msgid "Subtitle" -msgstr "Lyhyt kuvaus" +msgid "Authors" +msgstr "Tekijt" -msgid "Description" -msgstr "Kuvaus" +msgid "Current author (VDRAdmin-AM branch):" +msgstr "Nykyinen tekij (VDRAdmin-AM -haara):" -msgid "VPS" -msgstr "VPS" +msgid "Original author (VDRAdmin):" +msgstr "Alkuperinen tekij (VDRAdmin):" -msgid "Video tracks" -msgstr "Kuvaraidat" +msgid "Translation Team" +msgstr "Lokalisointi" -msgid "Audio tracks" -msgstr "niraidat" +msgid "English:" +msgstr "Englanti:" -msgid "Save" -msgstr "Tallenna" +msgid "German:" +msgstr "Saksa:" -msgid "Cancel" -msgstr "Peru" +msgid "French:" +msgstr "Ranska:" -msgid "Edit Timer" -msgstr "Muokkaa ajastinta" +msgid "At the moment unmaintained, former translations by:" +msgstr "Ei yllpidetty - aiemmat lokalisoinnit:" -msgid "<p>Here you can edit a timer's settings.</p>" -msgstr "<p>Tss nkymss voit muokata ajastimen asetuksia.</p>" +msgid "Spanish:" +msgstr "Espanja:" -msgid "Timer Active:" -msgstr "Aktiivinen:" +msgid "Finnish:" +msgstr "Suomi:" -msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." -msgstr "Aktivoi tai deaktivoi tm ajastin. Deaktivoidut ajastimet eivt tallenna mitn, mutta ne nytetn ajastinlistauksessa josta ne voidaan aktivoida uudelleen." +msgid "Dutch:" +msgstr "Hollanti:" -msgid "AutoTimer Checking:" -msgstr "Hakuajastimen tarkistus:" +msgid "Russian:" +msgstr "Venj:" -msgid "Depending on how this timer has been programmed you have up to three possible settings:" -msgstr "Riippuen ajastimen tekotavasta, kytettvisssi on useita asetuksia:" +msgid "Czech:" +msgstr "Tsekki:" -msgid "Transmission Identification" -msgstr "Lhetteen tunniste" +msgid "Italian:" +msgstr "Italia:" -msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." -msgstr "Tarkista ajastinta ohjelmisto-oppaan sisltmn ohjelmatunnisteen perusteella. Tm tarkistustapa toimii vain mikli ohjelmisto-oppaan ohjelmatunniste on vakio ja uniikki. Tm valinta ei ole kytettviss VDR:st tehtyjen ajastimien kohdalla." +msgid "Information" +msgstr "Listietoja" -msgid "Monitor this timer using the start and stop time." -msgstr "Tarkista ajastin kytten alku- ja loppuaikoja." +msgid "VDRAdmin-AM version:" +msgstr "VDRAdmin-AM:n versio:" -msgid "off" -msgstr "Pois" +msgid "VDR version:" +msgstr "VDR:n versio:" -msgid "Do not monitor this timer." -msgstr "l tarkista tt ajastinta." +msgid "Supported features in VDR:" +msgstr "VDR:n tuetut ominaisuudet:" -msgid "Channel:" -msgstr "Kanava:" +msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgstr "Hakuajastimet (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch-laajennos</a>)" -msgid "The channel to record." -msgstr "Tallennettava kanava." +msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgstr "Live-kuvan suoratoisto (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev-laajennos</a>)" -msgid "Day Of Recording:" -msgstr "Piv:" +msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgstr "Tallenteiden uudelleennimeminen (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio-kokoelma</a>)" -msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." -msgstr "Ajastimen aktivoitumispiv. Voit kytt kahta eri muotoa pivn asettamiseen:<ul><li>Kaksi numeroa (PP). Tm tydennetn pivmrksi kuluvalla kuukaudella ja vuodella.</li><li>ISO-standardi (VVVV-KK-PP). Voit tehd ajastuksia niin kauas tulevaisuuteen kuin haluat.</li></ul>Halutessasi asettaa toistuvan ajastuksen voit kytt tekstikentn alla olevia seitsem viikonpivkohtaista valintaruutua. Valitse jokainen viikonpiv jolloin haluat ajastimen aktivoituvan." +msgid "Getting Help and Reporting Bugs" +msgstr "Avunsaanti ja virheiden raportointi" -msgid "Start Time:" -msgstr "Aloitusaika:" +msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." +msgstr "Saat opasteen nytille painamalla <img src=\"bilder/help.png\" alt=\"\" /> -kuvaketta." -msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Aika jolloin ajastettu tallennus alkaa. Ensimmiseen kenttn sytetn tunnit, jlkimmiseen minuutit." +msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" +msgstr "Vaihtoehtoisesti voit etsi apua saksankieliselt <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> -foorumilta, miss ensisijaisesti kannattaa selata VDRAdminin julkistussie lpi: " -msgid "End Time:" -msgstr "Lopetusaika:" +msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." +msgstr "Lydettysi ohjelmistovirheen tarkista, ettei sit ole jo raportoitu aiemmin ja raportoi se <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking</a> -jrjestelmn." -msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Aika jolloin ajastettu tallennus pttyy. Ensimmiseen kenttn sytetn tunnit, jlkimmiseen minuutit." +msgid "AutoTimer" +msgstr "Hakuajastimet" msgid "Priority:" msgstr "Prioriteetti:" -msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." -msgstr "Kokonaisluku vlilt <strong>0...99</strong> joka mritt tmn ajastimen ja sen tekemien tallennusten <strong>prioriteetin</strong>. <strong>0</strong> on alin prioriteetti, <strong>99</strong> ylin. Prioriteettiarvoa kytetn pttmn mik ajastettu tallennus aloitetaan mikli asetettuna on kaksi tai useampia samaan aikaan <strong>alkamaan</strong> asetettuja ajastimia. Valinta kohdistuu ensimmiseen suurimmalla prioriteetilla olevista ajastimista.<br /><br />Prioriteettiarvo silytetn mys tallenteen mukana, ja sit kytetn myhemmin pttmn mik tallenne poistetaan mikli uutta varten pit saada lis levytilaa. Mikli levy tyttyy ja uusi tallenne tarvitsee lis tilaa, pienimmll prioriteetilla merkitty tallenne (joka on ylittnyt <strong>taatun</strong> elinaikanasa) poistetaan.<br /><br />Mikli kaikki DVB-kortit ovat kytss, korkeamman prioriteetin ajastin keskeytt tarvittaessa kynniss olevan alimman prioriteetin tallennuksen." - msgid "Lifetime:" msgstr "Elinaika:" -msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." -msgstr "Tmn ajastimen tekemien tallenteiden <strong>taattu</strong> elinaika (pivin). <strong>0</strong> tarkoittaa ett tallenne saatetaan poistaa automaattisesti milloin tahansa korkeamman prioriteetin ajastimen tarvitessa lis levytilaa. <strong>99</strong> tarkoittaa ett tallennetta ei poisteta automaattisesti. Numero vlilt <strong>1...98</strong> tarkoittaa pivien mr, jonka pit olla kulunut ajastimen <strong>alkuajankohdasta</strong> ennen kuin tallenne saatetaan poistaa automaattisesti uuden tallenteen tarvitessa levytilaa." - -msgid "Title of Recording:" -msgstr "Tallenteen nimi:" - -msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." -msgstr "Ajastimen tekemien tallenteiden <strong>tiedostonimi</strong>. Hakemistoerottimena kytetn '~':a (koska '/' saattaa esiinty ohjelmien nimiss).<br /><br />Avainsanat <strong>TITLE</strong> ja <strong>EPISODE</strong> korvataan ohjelmisto-oppaan otsikko- ja jaksotiedoilla mikli ne ovat saatavilla tallennuksen alkaessa. Jos eivt, <strong>TITLE</strong>:n oletus on kanavan nimi ja <strong>EPISODE</strong>:n tyhj." - -msgid "Summary:" -msgstr "Listiedot:" - -msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." -msgstr "Vapaavalintainen listietoteksti tmn ajastimen tekemille tallenteille. Jos tm kentt ei ole tyhj, sen sislt kirjoitetaan tallenteen <span class=\"ref_file\">summary.vdr</span>- tai <span class=\"ref_file\">info.vdr</span>-tiedostoon." - -msgid "Go!" -msgstr "Siirry" - -msgid "AutoTimer" -msgstr "Hakuajastimet" - msgid "New AutoTimer" msgstr "Uusi hakuajastin" +msgid "Help" +msgstr "Opaste" + msgid "Active" msgstr "Aktiivinen" +msgid "Channel" +msgstr "Kanava" + msgid "Start" msgstr "Aloitus" @@ -208,6 +139,9 @@ msgstr "Kyll" msgid "No" msgstr "Ei" +msgid "Edit" +msgstr "Muokkaa" + msgid "Delete timer?" msgstr "Poistetaanko ajastin?" @@ -226,33 +160,6 @@ msgstr "Poistetaanko valitut ajastimet?" msgid "No AutoTimers defined!" msgstr "Hakuajastimia ei ole mritelty!" -msgid "VDR Commands" -msgstr "Komennot" - -msgid "Export channels as playlist:" -msgstr "Luo soittolista:" - -msgid "Number of lines to show:" -msgstr "Nytettvien rivien lukumr:" - -msgid "unlimited" -msgstr "ei rajoitusta" - -msgid "SVDRP commands:" -msgstr "SVDRP-komennot:" - -msgid "Run" -msgstr "Suorita" - -msgid "Really run this command?" -msgstr "Suoritetaanko komento?" - -msgid "Commands defined in commands.conf:" -msgstr "Mritellyt komennot (commands.conf):" - -msgid "Output" -msgstr "Vaste" - msgid "Add New AutoTimer" msgstr "Lis uusi hakuajastin" @@ -271,6 +178,15 @@ msgstr "Hakuehdot:" msgid "Search in:" msgstr "Hakukentt:" +msgid "Title" +msgstr "Otsikko" + +msgid "Subtitle" +msgstr "Lyhyt kuvaus" + +msgid "Description" +msgstr "Kuvaus" + msgid "Search only on these days:" msgstr "Etsi valittuina pivin:" @@ -295,12 +211,18 @@ msgstr "Lauantai" msgid "Sunday" msgstr "Sunnuntai" +msgid "Channel:" +msgstr "Kanava:" + msgid "all" msgstr "kaikki" msgid "Starts After:" msgstr "Alkaa jlkeen:" +msgid "o'clock" +msgstr " " + msgid "Ends Before:" msgstr "Loppuu ennen:" @@ -325,9 +247,15 @@ msgstr "Muista ohjelmoidut ajastimet:" msgid "Directory:" msgstr "Hakemisto:" +msgid "Save" +msgstr "Tallenna" + msgid "Test" msgstr "Hae" +msgid "Cancel" +msgstr "Peru" + msgid "Broadcasted" msgstr "Lhetysaika" @@ -337,140 +265,254 @@ msgstr "Tallennehakemisto" msgid "No matches found!" msgstr "Ei lydy!" -msgid "About" -msgstr "Tietoja" +msgid "Configuration" +msgstr "Asetukset" -msgid "License" -msgstr "Lisenssi" +msgid "General Settings" +msgstr "Yleiset" -msgid "Authors" -msgstr "Tekijt" +msgid "Template:" +msgstr "Mallipohja:" -msgid "Current author (VDRAdmin-AM branch):" -msgstr "Nykyinen tekij (VDRAdmin-AM -haara):" +msgid "Skin:" +msgstr "Ulkoasu:" -msgid "Original author (VDRAdmin):" -msgstr "Alkuperinen tekij (VDRAdmin):" +msgid "Login Page:" +msgstr "Aloitussivu:" -msgid "Translation Team" -msgstr "Lokalisointi" +msgid "Number of channels to use:" +msgstr "Kanavien lukumr:" -msgid "English:" -msgstr "Englanti:" +msgid "Local net (no login required):" +msgstr "Kyttjtunnukseton osoiteavaruus:" -msgid "German:" -msgstr "Saksa:" +msgid "Language:" +msgstr "Kieli:" -msgid "French:" -msgstr "Ranska:" +msgid "Save settings on exit:" +msgstr "Tallenna asetukset suljettaessa:" -msgid "At the moment unmaintained, former translations by:" -msgstr "Ei yllpidetty - aiemmat lokalisoinnit:" +msgid "VDR" +msgstr "VDR" -msgid "Spanish:" -msgstr "Espanja:" +msgid "Number of DVB cards:" +msgstr "DVB-korttien lukumr:" -msgid "Finnish:" -msgstr "Suomi:" +msgid "Path to recordings:" +msgstr "VDR-tallenteiden polku:" -msgid "Dutch:" -msgstr "Hollanti:" +msgid "Path to configuration files:" +msgstr "Asetustiedostojen polku:" -msgid "Russian:" -msgstr "Venj:" +msgid "Path to EPG images:" +msgstr "Ohjelmisto-oppaan kuvapolku:" -msgid "Czech:" -msgstr "Tsekki:" +msgid "Identification" +msgstr "Kyttjtunnistus" -msgid "Italian:" -msgstr "Italia:" +msgid "Username:" +msgstr "Kyttjtunnus:" -msgid "Information" -msgstr "Listietoja" +msgid "Password:" +msgstr "Salasana:" -msgid "VDRAdmin-AM version:" -msgstr "VDRAdmin-AM:n versio:" +msgid "Guest Account:" +msgstr "Sallitaanko vierailija:" -msgid "VDR version:" -msgstr "VDR:n versio:" +msgid "Guest Username:" +msgstr "Vierailijan kyttjtunnus:" -msgid "Supported features in VDR:" -msgstr "VDR:n tuetut ominaisuudet:" +msgid "Guest Password:" +msgstr "Vierailijan salasana:" -msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgstr "Hakuajastimet (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch-laajennos</a>)" +msgid "Timeline" +msgstr "Aikajana" -msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgstr "Live-kuvan suoratoisto (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev-laajennos</a>)" +msgid "Hours:" +msgstr "Pituus tunteina:" -msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgstr "Tallenteiden uudelleennimeminen (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio-kokoelma</a>)" +msgid "Times:" +msgstr "Ajankohdat:" -msgid "Getting Help and Reporting Bugs" -msgstr "Avunsaanti ja virheiden raportointi" +msgid "Also used for other EPG views!" +msgstr "Kytetn mys muihin ohjelmaoppaan nkymiin!" -msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." -msgstr "Saat opasteen nytille painamalla <img src=\"bilder/help.png\" alt=\"\" /> -kuvaketta." +msgid "Tooltips:" +msgstr "Listietolaatikot:" -msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" -msgstr "Vaihtoehtoisesti voit etsi apua saksankieliselt <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> -foorumilta, miss ensisijaisesti kannattaa selata VDRAdminin julkistussie lpi: " +msgid "Active:" +msgstr "Kytss:" -msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." -msgstr "Lydettysi ohjelmistovirheen tarkista, ettei sit ole jo raportoitu aiemmin ja raportoi se <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking</a> -jrjestelmn." +msgid "Send email after programming timer:" +msgstr "Lhet shkpostia ohjelmoidusta ajastimesta:" -msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" -msgstr "" +msgid "Send email as:" +msgstr "Lhet shkposti nimell:" -msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." -msgstr "Aktivoi tai deaktivoi tm hakuajastin. Deaktivoidut hakuajastimet eivt tallenna mitn, mutta ne nytetn ajastinlistauksessa josta ne voidaan aktivoida uudelleen. Voit mys mritt hakuajastimen toimimaan vain kerran, jolloin se ajastaa vain (yhden) seuraavan hakuun osuvan ohjelman tallennuksen." +msgid "Send email to:" +msgstr "Lhet shkposti osoitteeseen:" -msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Only broadcasts will match if they contain <strong>all</strong> items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as Blacklist-string) or only one episode (when using \"Enterprise~Azati Prime\" as Blacklist-string)." -msgstr "" +msgid "Mail server:" +msgstr "Shkpostipalvelin:" -msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." -msgstr "" +msgid "SMTPAuth user:" +msgstr "SMTP-kyttjtunnus:" -msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." -msgstr "" +msgid "SMTPAuth password:" +msgstr "SMTP-salasana:" -msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." -msgstr "" +msgid "Track schedule changes by:" +msgstr "Ohjelmamuutosten seurantaperuste:" -msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Ohjelman pit alkaa thn sytetyn ajan jlkeen osuakseen hakuehtoon. Ensimmiseen kenttn sytetn tunnit, jlkimmiseen minuutit." +msgid "Broadcast time" +msgstr "Lhetysaika" -msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Ohjelman pit loppua ennen thn sytetty aikaa osuakseen hakuehtoon. Ensimmiseen kenttn sytetn tunnit, jlkimmiseen minuutit." +msgid "Event id" +msgstr "Ohjelmatunniste" -msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." -msgstr "" +msgid "Timer" +msgstr "Ajastimet" -msgid "The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG." -msgstr "Minuuttimr jonka verran ennen ohjelmaoppaan tietojen ohjelman alkuaikaa VDRAdmin-AM asettaa tallennuksen alkamaan." +msgid "Tooltips in timeline:" +msgstr "Listietolaatikot \"Aikajana\"-sivulla:" -msgid "The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG." -msgstr "Minuuttimr jonka verran ohjelmaoppaan tietojen ohjelman loppuajan jlkeen VDRAdmin-AM asettaa tallennuksen loppumaan." +msgid "Tooltips in list:" +msgstr "Listietolaatikot \"Ajastimet\"-sivulla:" -msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." -msgstr "" +msgid "Streaming" +msgstr "Suoratoisto" -msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." -msgstr "" +msgid "Live Streaming:" +msgstr "Live-kuvan suoratoisto:" -msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." -msgstr "" +msgid "HTTP Port of Streamdev (also possible 3000/ts):" +msgstr "Streamdev-laajennoksen HTTP-portti (esim. 3000/ts):" -msgid "Timer" -msgstr "Ajastimet" +msgid "Recordings Streaming:" +msgstr "Tallenteiden suoratoisto:" -msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" -msgstr "" +msgid "Path to VDR Recordings on your workstation:" +msgstr "VDR-tallenteiden polku tyasemallasi:" -msgid "Playing Today" -msgstr "Ohjelmisto tnn" +msgid "MIME type for live streaming:" +msgstr "Live-kuvan suoratoiston MIME-tyyppi:" -msgid "starting at" -msgstr "alkaen kello" +msgid "Suffix for live streaming:" +msgstr "Live-kuvan suoratoiston tiedostopte:" + +msgid "MIME type for recordings streaming:" +msgstr "Tallenteiden suoratoiston MIME-tyyppi:" + +msgid "Suffix for recordings streaming:" +msgstr "Tallenteiden suoratoiston tiedostopte:" + +msgid "Bandwidth of Streams:" +msgstr "Kaistanleveys:" + +msgid "External Search" +msgstr "Ulkoinen haku" + +msgid "URL:" +msgstr "URL:" + +msgid "Title:" +msgstr "Otsikko:" + +msgid "User-defined search:" +msgstr "Kyttjn mrittelem haku:" + +msgid "Expert" +msgstr "Ekspertti" + +msgid "Update EPG data in background:" +msgstr "Pivit ohjelmaopasta taustalla:" + +msgid "Update EPG every:" +msgstr "Ohjelmaoppaan pivitysvli:" + +msgid "Channel Selections" +msgstr "Kanavavalinnat" + +msgid "Show channels without EPG information:" +msgstr "Nyt ohjelmaoppaattomat kanavat:" + +msgid "In \"AutoTimer\"?" +msgstr "Kyt kanavavalintoja \"Hakuajastimet\"-sivulla" + +msgid "Apply" +msgstr "Kyt" + +msgid "EPG Search Blacklists" +msgstr "Hakuajastimien mustat listat" + +msgid "New Blacklist" +msgstr "Uusi musta lista" + +msgid "Search pattern" +msgstr "Hakuehto" + +msgid "From" +msgstr "Aikaisintaan" + +msgid "To" +msgstr "Viimeistn" + +msgid "Delete blacklist?" +msgstr "Poistetaanko musta lista?" + +msgid "Delete Selected Blacklists" +msgstr "Poista valitut mustat listat" + +msgid "Delete all selected blacklists?" +msgstr "Poistetaanko kaikki valitut mustat listat?" + +msgid "EPG search" +msgstr "Hae ohjelmaoppaasta" + +msgid "EPG Search" +msgstr "Hakuajastimet" + +msgid "Use template" +msgstr "Kyt mallipohjaa" + +msgid "New Search" +msgstr "Uusi haku" + +msgid "Edit Template" +msgstr "Muokkaa mallipohjaa" + +msgid "Settings" +msgstr "Asetukset" + +msgid "Action" +msgstr "Toiminto" + +msgid "Find" +msgstr "Etsi" + +msgid "Show Favorites" +msgstr "Nyt suosikit" + +msgid "Delete Selected Searches" +msgstr "Poista valitut haut" + +msgid "Delete all selected searches?" +msgstr "Poistetaanko kaikki valitut haut?" + +msgid "Execute Selected Searches" +msgstr "Suorita valitut haut" + +msgid "Duration" +msgstr "Kesto" + +msgid "More Information" +msgstr "Listietoja" + +msgid "Channels" +msgstr "Kanavat" + +msgid "Record" +msgstr "Tallenna" msgid "Add New Blacklist" msgstr "Lis uusi musta lista" @@ -481,9 +523,6 @@ msgstr "Muokkaa mustaa listaa" msgid "Add New Template" msgstr "Lis uusi mallipohja" -msgid "Edit Template" -msgstr "Muokkaa mallipohjaa" - msgid "Add New Search" msgstr "Lis uusi hakuajastin" @@ -499,9 +538,6 @@ msgstr "Et valinnut otsikkoa, lyhytt tai\\npitk kuvausta hakuehdoksi.\\nHalua msgid "Hide results" msgstr "Piilota hakutulokset" -msgid "Settings" -msgstr "Asetukset" - msgid "Name:" msgstr "Nimi:" @@ -679,264 +715,147 @@ msgstr "Poistetaanko mallipohja?" msgid "Save as template" msgstr "Tallenna mallipohjaksi" -msgid "Create New Timer" -msgstr "Luo uusi ajastin" - -msgid "Buffer:" -msgstr "Marginaali:" - -msgid "Use VPS:" -msgstr "VPS-toiminto:" - -msgid "readonly" -msgstr "kirjoitussuojattu" - -msgid "Timer has been set by AutoTimer pattern:" -msgstr "Ajastin on luotu automaattisesti hakuehdolla:" - -msgid "No Help Available" -msgstr "Ei opastetta" - -msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgstr "<p>Valittua opastetta ei ole saatavilla. Jos haluat list tai muokata opastetta, ota yhteytt shkpostitse: <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgid "Run" +msgstr "Suorita" msgid "Error!" msgstr "Virhe!" -msgid "TV" -msgstr "TV" - -msgid "Interval:" -msgstr "Pivitysvli:" - -msgid "sec." -msgstr "s" - -msgid "G" -msgstr "K" - -msgid "Grab the picture!" -msgstr "Kuvankaappaus" - -msgid "Size:" -msgstr "Koko:" - -msgid "Open in separate window" -msgstr "Avaa omaan ikkunaan" - -msgid "Playing Today?" -msgstr "Tnn" +msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" +msgstr "" -msgid "Timeline" -msgstr "Aikajana" +msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgstr "" -msgid "EPG Search" -msgstr "Hakuajastimet" +msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." +msgstr "Aktivoi tai deaktivoi tm hakuajastin. Deaktivoidut hakuajastimet eivt tallenna mitn, mutta ne nytetn ajastinlistauksessa josta ne voidaan aktivoida uudelleen. Voit mys mritt hakuajastimen toimimaan vain kerran, jolloin se ajastaa vain (yhden) seuraavan hakuun osuvan ohjelman tallennuksen." -msgid "Recordings" -msgstr "Tallenteet" +msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Broadcasts will match only if they match <strong>all</strong> configured search items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as blacklist string) or only one episode (when using \"Enterprise~Azati Prime\" as blacklist string)." +msgstr "" -msgid "Remote Control" -msgstr "Kauko-ohjain" +msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." +msgstr "" -msgid "Watch TV" -msgstr "Katso TV:t" +msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." +msgstr "" -msgid "Commands" -msgstr "Komennot" +msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." +msgstr "" -msgid "Configuration" -msgstr "Asetukset" +msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Ohjelman pit alkaa thn sytetyn ajan jlkeen osuakseen hakuehtoon. Ensimmiseen kenttn sytetn tunnit, jlkimmiseen minuutit." -msgid "Search" -msgstr "Etsi" +msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Ohjelman pit loppua ennen thn sytetty aikaa osuakseen hakuehtoon. Ensimmiseen kenttn sytetn tunnit, jlkimmiseen minuutit." -msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" +msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." msgstr "" -msgid "General Settings" -msgstr "Yleiset" +msgid "The number of minutes VDRAdmin-AM subtracts from the broadcast's start time found in the EPG." +msgstr "Minuuttimr jonka verran ennen ohjelmaoppaan tietojen ohjelman alkuaikaa VDRAdmin-AM asettaa tallennuksen alkamaan." -msgid "VDR" -msgstr "VDR" +msgid "The number of minutes VDRAdmin-AM adds to the broadcast's stop time found in the EPG." +msgstr "Minuuttimr jonka verran ohjelmaoppaan tietojen ohjelman loppuajan jlkeen VDRAdmin-AM asettaa tallennuksen loppumaan." -msgid "Identification" -msgstr "Kyttjtunnistus" +msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." +msgstr "Kokonaisluku vlilt <strong>0...99</strong> joka mritt tmn ajastimen ja sen tekemien tallennusten <strong>prioriteetin</strong>. <strong>0</strong> on alin prioriteetti, <strong>99</strong> ylin. Prioriteettiarvoa kytetn pttmn mik ajastettu tallennus aloitetaan mikli asetettuna on kaksi tai useampia samaan aikaan <strong>alkamaan</strong> asetettuja ajastimia. Valinta kohdistuu ensimmiseen suurimmalla prioriteetilla olevista ajastimista.<br /><br />Prioriteettiarvo silytetn mys tallenteen mukana, ja sit kytetn myhemmin pttmn mik tallenne poistetaan mikli uutta varten pit saada lis levytilaa. Mikli levy tyttyy ja uusi tallenne tarvitsee lis tilaa, pienimmll prioriteetilla merkitty tallenne (joka on ylittnyt <strong>taatun</strong> elinaikanasa) poistetaan.<br /><br />Mikli kaikki DVB-kortit ovat kytss, korkeamman prioriteetin ajastin keskeytt tarvittaessa kynniss olevan alimman prioriteetin tallennuksen." -msgid "Streaming" -msgstr "Suoratoisto" +msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." +msgstr "Tmn ajastimen tekemien tallenteiden <strong>taattu</strong> elinaika (pivin). <strong>0</strong> tarkoittaa ett tallenne saatetaan poistaa automaattisesti milloin tahansa korkeamman prioriteetin ajastimen tarvitessa lis levytilaa. <strong>99</strong> tarkoittaa ett tallennetta ei poisteta automaattisesti. Numero vlilt <strong>1...98</strong> tarkoittaa pivien mr, jonka pit olla kulunut ajastimen <strong>alkuajankohdasta</strong> ennen kuin tallenne saatetaan poistaa automaattisesti uuden tallenteen tarvitessa levytilaa." -msgid "Expert" -msgstr "Ekspertti" +msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." +msgstr "" -msgid "External Search" -msgstr "Ulkoinen haku" +msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." +msgstr "" -msgid "Channel Selections" -msgstr "Kanavavalinnat" +msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." +msgstr "" -msgid "Skin:" -msgstr "Ulkoasu:" +msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" +msgstr "" msgid "The skin you want to use." msgstr "Haluamasi kyttliittymn ulkoasu." -msgid "Login Page:" -msgstr "Aloitussivu:" - msgid "The page you want to see at first connect to VDRAdmin-AM." msgstr "" -msgid "Number of channels to use:" -msgstr "Kanavien lukumr:" - msgid "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." msgstr "" -msgid "Local net (no login required):" -msgstr "Kyttjtunnukseton osoiteavaruus:" - msgid "Here you can specify an IP address or range that can login without providing login information. For example: \"192.168.0.0/24\" will include any IP starting with \"192.168.0\", \"192.168.0.123/32\" will only match \"192.168.0.123\"." msgstr "Tss mritellyst IP-osoitteesta tai -avaruudesta sallitaan sisnkirjautumiset ilman kyttjtunnusta ja salasanaa. Esimerkiksi: \"192.168.0.0/24\" sallii mist tahansa IP-osoitteesta joka alkaa \"192.168.0\", \"192.168.0.123/32\" sallii vain IP-osoitteesta \"192.168.0.123\"." -msgid "Language:" -msgstr "Kieli:" - msgid "Here you can set the localization VDRAdmin-AM should use." msgstr "" -msgid "Save settings on exit:" -msgstr "Tallenna asetukset suljettaessa:" - msgid "With this option the settings will be saved if VDRAdmin-AM exits. This will also save settings not available on the \"Configuration\" menu like interval and size in TV, sorting in the lists and current view in \"What's on now\"." msgstr "" msgid "Top" msgstr "Alkuun" -msgid "Number of DVB cards:" -msgstr "DVB-korttien lukumr:" - msgid "The number of DVB cards VDR can access. Depending on this value VDRAdmin-AM will calculate critical timers in the <span class=\"ref_menu\">Timer</span> menu." msgstr "VDR:n kyttmien DVB-korttien lukumr. VDRAdmin-AM kytt tt lukua laskiessaan ajastimien toteutumisen mahdollisuutta <span class=\"ref_menu\">Ajastimet</span>-nkymss." -msgid "Path to recordings:" -msgstr "VDR-tallenteiden polku:" - msgid "The path to VDR's recordings. It's used so that VDRAdmin-AM can locate the recordings when using <span class=\"ref_label\">Recordings Streaming</span> and <span class=\"ref_file\">reccmds.conf</span> in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "" -msgid "Path to configuration files:" -msgstr "Asetustiedostojen polku:" - msgid "The path where VDR's configuration files are located. If this directory contains the file <span class=\"ref_file\">reccmds.conf</span> its content is shown in a selectbox in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Polku jossa VDR:n asetustiedostot sijaitsevat. Mikli tmn polun osoittamassa hakemistossa on tiedosto <span class=\"ref_file\">reccmds.conf</span>, sen sisltmt komennot nytetn alasvetovalikossa <span class=\"ref_menu\">Tallenteet</span>-nkymss." -msgid "Path to EPG images:" -msgstr "Ohjelmisto-oppaan kuvapolku:" - msgid "The path where the EPG images are stored." msgstr "" -msgid "Username:" -msgstr "Kyttjtunnus:" - msgid "The username for the main user, i.e. the user having the most privileges." msgstr "Pkyttjn, ts. kyttjn jolla on kaikki kyttoikeudet, salasana." -msgid "Password:" -msgstr "Salasana:" - msgid "The main user's password." msgstr "Pkyttjn salasana." -msgid "Guest Account:" -msgstr "Sallitaanko vierailija:" - msgid "If you want a user account having only limited privileges, this is for you. The guest user cannot modify anything, it's only allowed to view the EPG, timers, AutoTimers and recordings listings." msgstr "Jos haluat sallia rajoitetut kyttoikeudet omaavan kyttjn, tm asetus on sinua varten. Vierailijakyttjn ei sallita muokkaavan mitn, vaan sill on ainoastaan lukuoikeudet ohjelmaopas-, ajastin-, automaattiajastin- ja tallennenkymiin." -msgid "Guest Username:" -msgstr "Vierailijan kyttjtunnus:" - msgid "The username for the guest user." msgstr "Vierailijakyttjn kyttjtunnus." -msgid "Guest Password:" -msgstr "Vierailijan salasana:" - msgid "The guest user's password." msgstr "Vierailijakyttjn salasana." -msgid "Hours:" -msgstr "Pituus tunteina:" - msgid "The number of hours to show in the timeline." msgstr "Aikajanalla nytettvien tuntien lukumr." -msgid "Times:" -msgstr "Ajankohdat:" - msgid "A comma separated list of times in <strong>hh:mm</strong> format that appear in the selectbox placed at the top." msgstr "" -msgid "Tooltips:" -msgstr "Listietolaatikot:" - msgid "Here you can (de-)activate the tooltips." msgstr "" -msgid "Active:" -msgstr "Kytss:" - msgid "Activate or deactivate the AutoTimer function." msgstr "Aktivoi tai deaktivoi hakuajastintoiminto." -msgid "Send email after programming timer:" -msgstr "Lhet shkpostia ohjelmoidusta ajastimesta:" - msgid "VDRAdmin-AM will send an email whenever an event matches an AutoTimer and a timer has been programmed if you enable this feature." msgstr "Mikli tm ominaisuus on kytss, VDRAdmin-AM lhett shkpostin aina kun automaattiajastinta vastaava ohjelma on lytynyt ja ajastettu." -msgid "Send email as:" -msgstr "Lhet shkposti nimell:" - msgid "Here you set the sending email address of the generated email." msgstr "Shkpostin lhettjn osoite." -msgid "Send email to:" -msgstr "Lhet shkposti osoitteeseen:" - msgid "The email address the email is sent to." msgstr "Shkpostin vastaanottajan osoite." -msgid "Mail server:" -msgstr "Shkpostipalvelin:" - msgid "The outgoing mail server." msgstr "Shkpostin lhetyspalvelimen osoite." -msgid "SMTPAuth user:" -msgstr "SMTP-kyttjtunnus:" - msgid "If you need to authenticate yourself at the outgoing mail server, you have to supply the username and the password below. Leaving this field empty will disable SMTPAuth." msgstr "Mikli shkpostin lhetyspalvelin vaatii tunnistautumista, tyt SMTP-kyttjtunnus ja -salasanakentt. Tmn kentn jttminen tyhjksi poistaa SMTP-tunnistautumisen kytst." -msgid "SMTPAuth password:" -msgstr "SMTP-salasana:" - msgid "The password for the SMTPAuth user." msgstr "SMTP-tunnistautumisessa kytetty salasana." -msgid "Tooltips in timeline:" -msgstr "Listietolaatikot \"Aikajana\"-sivulla:" - msgid "Here you can (de-)activate the tooltips in the timeline." msgstr "" -msgid "Tooltips in list:" -msgstr "Listietolaatikot \"Ajastimet\"-sivulla:" - msgid "Here you can (de-)activate the tooltips in the list." msgstr "" @@ -946,51 +865,27 @@ msgstr "Lis tallenteen kuvaus uusiin ajastimiin" msgid "If you don't want VDRAdmin-AM to add the summary taken from EPG to new timers you can switch it off here." msgstr "" -msgid "Live Streaming:" -msgstr "Live-kuvan suoratoisto:" - msgid "Enable or disable live streaming using the <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. You also have to set the correct <span class=\"ref_label\">HTTP Port for Streamdev</span> below." msgstr "" -msgid "HTTP Port of Streamdev (also possible 3000/ts):" -msgstr "Streamdev-laajennoksen HTTP-portti (esim. 3000/ts):" - msgid "Here you have to set the port number your VDR's streamdev server listens for connections. Additionally you can also provide the stream type you like to use." msgstr "" -msgid "Recordings Streaming:" -msgstr "Tallenteiden suoratoisto:" - msgid "Enable or disable streaming of recordings.<br />Well actually this is no real \"streaming\", but you have to setup your workstation so that it can access VDR's recordings. You can use for example Samba or NFS for this. VDRAdmin-AM simply generates a playlist that contains all parts of the recording and sends this to your browser. If your browser and media player are configured correctly you will see the recording on your workstation's display." msgstr "" -msgid "Path to VDR Recordings on your workstation:" -msgstr "VDR-tallenteiden polku tyasemallasi:" - msgid "This is the path where your workstation can access VDR's recordings. This depends on your VDR and workstation setup, for example \"\\\\vdr\\videos\" or \"V:\\\" (on Windows) or \"/mnt/videos\" (on Linux)." msgstr "" -msgid "MIME type for live streaming:" -msgstr "Live-kuvan suoratoiston MIME-tyyppi:" - msgid "The MIME type to send when using live streaming. Defaults to \"video/x-mpegurl\"." msgstr "" -msgid "Suffix for live streaming:" -msgstr "Live-kuvan suoratoiston tiedostopte:" - msgid "The suffix to use for live streaming. Defaults to \"m3u\"." msgstr "Live-kuvan suoratoiston tiedostopte, oletus \"m3u\"." -msgid "MIME type for recordings streaming:" -msgstr "Tallenteiden suoratoiston MIME-tyyppi:" - msgid "The MIME type to send when using recordings streaming. Defaults to \"video/x-mpegurl\"." msgstr "" -msgid "Suffix for recordings streaming:" -msgstr "Tallenteiden suoratoiston tiedostopte:" - msgid "The suffix to use for recordings streaming. Defaults to \"m3u\"." msgstr "Tallenteiden suoratoiston tiedostopte, oletus \"m3u\"." @@ -1006,50 +901,23 @@ msgstr "" msgid "<p>This section is for experts <strong>only</strong>, i.e. you know what you are doing!</p>" msgstr "<p>Tm osio on <strong>vain</strong> asiantuntijoille jotka tietvt mit ovat tekemss!</p>" -msgid "Update EPG data in background:" -msgstr "Pivit ohjelmaopasta taustalla:" - msgid "If set to \"yes\" VDRAdmin-AM will periodically refresh its local EPG cache. Else the EPG will be refreshed if the user accesses any EPG view at the web interface and the timeout set at \"Update EPG every\" has been reached." msgstr "" -msgid "Update EPG every:" -msgstr "Ohjelmaoppaan pivitysvli:" - msgid "The interval, the EPG data is refreshed from VDR and AutoTimer updates are performed (if AutoTimer feature is used)." msgstr "Aika jonka vlein ohjelmaoppaan tiedot pivitetn VDR:st ja hakuajastimien pivitykset tehdn (mikli hakuajastintoiminto on kytss)." msgid "<p>If you want to limit the number of channels used in some parts of VDRAdmin-AM, this is for you!</p><p>Use the radio buttons to activate or deactivate the wanted channels in the named menu.</p><p>To add channels to the list of wanted channels you have to select them in the left side selectbox and click <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. If you want to remove channels from the list of wanted channels you have to select them in the right side selectbox and click <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" msgstr "" -msgid "Show channels without EPG information:" -msgstr "Nyt ohjelmaoppaattomat kanavat:" - msgid "Usually channels that don't have EPG information are hidden in all EPG views. If you don't want them to be hidden you have to set this option to \"yes\"." msgstr "" -msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" -msgstr "" - -msgid "Your Browser does not support frames!" -msgstr "Selaimesi ei tue kehyksi!" - -msgid "Rename Recording" -msgstr "Nime tallenne" - -msgid "Original Name of Recording:" -msgstr "Tallenteen alkuperinen nimi:" - -msgid "New Name of Recording:" -msgstr "Tallenteen uusi nimi:" - -msgid "Subtitle:" -msgstr "Lyhyt kuvaus:" - -msgid "Rename" -msgstr "Nime" +msgid "Edit Timer" +msgstr "Muokkaa ajastinta" -msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" -msgstr "" +msgid "Edit EPG" +msgstr "Muokkaa ohjelmatietoja" msgid "<p>Here you can edit the descriptive fields of an existing EPG entry.</p>" msgstr "<p>Tss nkymss voit muokata ohjelmaoppaan tietoja.</p>" @@ -1093,134 +961,116 @@ msgstr "niraidat (kirjoitussuojattu)" msgid "If available this field shows the audio track(s). It cannot be changed." msgstr "" -msgid "Duration:" -msgstr "Kesto:" - -msgid "min" -msgstr "min" - -msgid "Transponder:" -msgstr "Transponderi:" - -msgid "CA-System:" -msgstr "Salaus:" - -msgid "New Timer" -msgstr "Uusi ajastin" - -msgid "Date" -msgstr "Piv" - -msgid "Edit timer status?" -msgstr "Muokataanko ajastinta?" +msgid "No Help Available" +msgstr "Ei opastetta" -msgid "This timer is inactive!" -msgstr "Ajastin ei ole aktiivinen!" +msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgstr "<p>Valittua opastetta ei ole saatavilla. Jos haluat list tai muokata opastetta, ota yhteytt shkpostitse: <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgid "This timer is impossible!" -msgstr "Ajastin ei ole mahdollinen!" +msgid "Recordings" +msgstr "Tallenteet" -msgid "No more timers on other transponders possible!" -msgstr "Maksimimr ajastimia kytss!" +msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" +msgstr "" -msgid "Timer OK." -msgstr "Ajastin kunnossa." +msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" +msgstr "" -msgid "Auto" -msgstr "Automaattinen" +msgid "<p>Here you can edit a timer's settings.</p>" +msgstr "<p>Tss nkymss voit muokata ajastimen asetuksia.</p>" -msgid "activate" -msgstr "Aktivoi" +msgid "Timer Active:" +msgstr "Aktiivinen:" -msgid "inactivate" -msgstr "l aktivoi" +msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." +msgstr "Aktivoi tai deaktivoi tm ajastin. Deaktivoidut ajastimet eivt tallenna mitn, mutta ne nytetn ajastinlistauksessa josta ne voidaan aktivoida uudelleen." -msgid "selected timers" -msgstr "valittuja ajastimia" +msgid "AutoTimer Checking:" +msgstr "Hakuajastimen tarkistus:" -msgid "Delete Selected Timers" -msgstr "Poista valitut ajastimet" +msgid "Depending on how this timer has been programmed you have up to three possible settings:" +msgstr "Riippuen ajastimen tekotavasta, kytettvisssi on useita asetuksia:" -msgid "No timers defined!" -msgstr "Ajastimia ei mritelty!" +msgid "Transmission Identification" +msgstr "Lhetteen tunniste" -msgid "EPG Search Blacklists" -msgstr "Hakuajastimien mustat listat" +msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." +msgstr "Tarkista ajastinta ohjelmisto-oppaan sisltmn ohjelmatunnisteen perusteella. Tm tarkistustapa toimii vain mikli ohjelmisto-oppaan ohjelmatunniste on vakio ja uniikki. Tm valinta ei ole kytettviss VDR:st tehtyjen ajastimien kohdalla." -msgid "New Blacklist" -msgstr "Uusi musta lista" +msgid "Time" +msgstr "Aika" -msgid "Search pattern" -msgstr "Hakuehto" +msgid "Monitor this timer using the start and stop time." +msgstr "Tarkista ajastin kytten alku- ja loppuaikoja." -msgid "From" -msgstr "Aikaisintaan" +msgid "off" +msgstr "Pois" -msgid "To" -msgstr "Viimeistn" +msgid "Do not monitor this timer." +msgstr "l tarkista tt ajastinta." -msgid "Delete blacklist?" -msgstr "Poistetaanko musta lista?" +msgid "The channel to record." +msgstr "Tallennettava kanava." -msgid "Delete Selected Blacklists" -msgstr "Poista valitut mustat listat" +msgid "Day Of Recording:" +msgstr "Piv:" -msgid "Delete all selected blacklists?" -msgstr "Poistetaanko kaikki valitut mustat listat?" +msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." +msgstr "Ajastimen aktivoitumispiv. Voit kytt kahta eri muotoa pivn asettamiseen:<ul><li>Kaksi numeroa (PP). Tm tydennetn pivmrksi kuluvalla kuukaudella ja vuodella.</li><li>ISO-standardi (VVVV-KK-PP). Voit tehd ajastuksia niin kauas tulevaisuuteen kuin haluat.</li></ul>Halutessasi asettaa toistuvan ajastuksen voit kytt tekstikentn alla olevia seitsem viikonpivkohtaista valintaruutua. Valitse jokainen viikonpiv jolloin haluat ajastimen aktivoituvan." -msgid "EPG search" -msgstr "Hae ohjelmaoppaasta" +msgid "Start Time:" +msgstr "Aloitusaika:" -msgid "Use template" -msgstr "Kyt mallipohjaa" +msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Aika jolloin ajastettu tallennus alkaa. Ensimmiseen kenttn sytetn tunnit, jlkimmiseen minuutit." -msgid "New Search" -msgstr "Uusi haku" +msgid "End Time:" +msgstr "Lopetusaika:" -msgid "Action" -msgstr "Toiminto" +msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Aika jolloin ajastettu tallennus pttyy. Ensimmiseen kenttn sytetn tunnit, jlkimmiseen minuutit." -msgid "Find" -msgstr "Etsi" +msgid "Title of Recording:" +msgstr "Tallenteen nimi:" -msgid "Show Favorites" -msgstr "Nyt suosikit" +msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." +msgstr "Ajastimen tekemien tallenteiden <strong>tiedostonimi</strong>. Hakemistoerottimena kytetn '~':a (koska '/' saattaa esiinty ohjelmien nimiss).<br /><br />Avainsanat <strong>TITLE</strong> ja <strong>EPISODE</strong> korvataan ohjelmisto-oppaan otsikko- ja jaksotiedoilla mikli ne ovat saatavilla tallennuksen alkaessa. Jos eivt, <strong>TITLE</strong>:n oletus on kanavan nimi ja <strong>EPISODE</strong>:n tyhj." -msgid "Delete Selected Searches" -msgstr "Poista valitut haut" +msgid "Summary:" +msgstr "Listiedot:" -msgid "Delete all selected searches?" -msgstr "Poistetaanko kaikki valitut haut?" +msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." +msgstr "Vapaavalintainen listietoteksti tmn ajastimen tekemille tallenteille. Jos tm kentt ei ole tyhj, sen sislt kirjoitetaan tallenteen <span class=\"ref_file\">summary.vdr</span>- tai <span class=\"ref_file\">info.vdr</span>-tiedostoon." -msgid "Execute Selected Searches" -msgstr "Suorita valitut haut" +msgid "Your Browser does not support frames!" +msgstr "Selaimesi ei tue kehyksi!" -msgid "Duration" -msgstr "Kesto" +msgid "What's On Now?" +msgstr "Menossa nyt" -msgid "Template:" -msgstr "Mallipohja:" +msgid "Playing Today?" +msgstr "Tnn" -msgid "Also used for other EPG views!" -msgstr "Kytetn mys muihin ohjelmaoppaan nkymiin!" +msgid "Remote Control" +msgstr "Kauko-ohjain" -msgid "Bandwidth of Streams:" -msgstr "Kaistanleveys:" +msgid "Watch TV" +msgstr "Katso TV:t" -msgid "URL:" -msgstr "URL:" +msgid "Commands" +msgstr "Komennot" -msgid "Title:" -msgstr "Otsikko:" +msgid "Search" +msgstr "Etsi" -msgid "User-defined search:" -msgstr "Kyttjn mrittelem haku:" +msgid "Authorization Required" +msgstr "Kyttjtunnistus puutteellinen" -msgid "In \"AutoTimer\"?" -msgstr "Kyt kanavavalintoja \"Hakuajastimet\"-sivulla" +msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." +msgstr "Kyttjtunnistus ei onnistu! Tarkista syttmsi kyttjtunnus/salasana." -msgid "Apply" -msgstr "Kyt" +msgid "VPS" +msgstr "VPS" msgid "close" msgstr "Sulje" @@ -1240,23 +1090,77 @@ msgstr "Kuvaraidat:" msgid "Audio tracks:" msgstr "niraidat:" +msgid "Video tracks" +msgstr "Kuvaraidat" + +msgid "Audio tracks" +msgstr "niraidat" + +msgid "TV select" +msgstr "Valitse" + +msgid "Stream" +msgstr "Suoratoisto" + +msgid "Channel group:" +msgstr "Kanavaryhm:" + +msgid "Go!" +msgstr "Siirry" + +msgid "Search for other show times" +msgstr "Etsi vaihtoehtoisia esitysaikoja" + +msgid "No Information" +msgstr "Ei tietoja" + +msgid "No EPG information available" +msgstr "Ohjelmaoppaan tietoja ei saatavilla" + +msgid "Playing Today" +msgstr "Ohjelmisto tnn" + +msgid "starting at" +msgstr "alkaen kello" + +msgid "What's on:" +msgstr "Menossa" + +msgid "at" +msgstr " " + msgid "now" msgstr "nyt" msgid "to" msgstr "-" +msgid "Duration:" +msgstr "Kesto:" + +msgid "min" +msgstr "min" + msgid "at:" msgstr "kello:" msgid "You need JavaScript to use the timeline!" msgstr "Aikajanatoiminto tarvitsee JavaScript-tuen!" -msgid "Authorization Required" -msgstr "Kyttjtunnistus puutteellinen" +msgid "Rename Recording" +msgstr "Nime tallenne" -msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." -msgstr "Kyttjtunnistus ei onnistu! Tarkista syttmsi kyttjtunnus/salasana." +msgid "Original Name of Recording:" +msgstr "Tallenteen alkuperinen nimi:" + +msgid "New Name of Recording:" +msgstr "Tallenteen uusi nimi:" + +msgid "Subtitle:" +msgstr "Lyhyt kuvaus:" + +msgid "Rename" +msgstr "Nime" msgid "Total:" msgstr "Kytss:" @@ -1267,6 +1171,9 @@ msgstr "h" msgid "Free:" msgstr "Vapaana:" +msgid "Date" +msgstr "Piv" + msgid "Total" msgstr "kpl" @@ -1288,6 +1195,9 @@ msgstr "Pivit" msgid "Commands:" msgstr "Komennot:" +msgid "Really run this command?" +msgstr "Suoritetaanko komento?" + msgid "Delete Selected Recordings" msgstr "Poista valitut tallenteet" @@ -1297,6 +1207,105 @@ msgstr "Poistetaanko valitut tallenteet?" msgid "No recordings available" msgstr "Tallenteita ei saatavilla" +msgid "Transponder:" +msgstr "Transponderi:" + +msgid "CA-System:" +msgstr "Salaus:" + +msgid "New Timer" +msgstr "Uusi ajastin" + +msgid "Edit timer status?" +msgstr "Muokataanko ajastinta?" + +msgid "This timer is inactive!" +msgstr "Ajastin ei ole aktiivinen!" + +msgid "This timer is impossible!" +msgstr "Ajastin ei ole mahdollinen!" + +msgid "No more timers on other transponders possible!" +msgstr "Maksimimr ajastimia kytss!" + +msgid "Timer OK." +msgstr "Ajastin kunnossa." + +msgid "Auto" +msgstr "Automaattinen" + +msgid "activate" +msgstr "Aktivoi" + +msgid "inactivate" +msgstr "l aktivoi" + +msgid "selected timers" +msgstr "valittuja ajastimia" + +msgid "Delete Selected Timers" +msgstr "Poista valitut ajastimet" + +msgid "No timers defined!" +msgstr "Ajastimia ei mritelty!" + +msgid "Create New Timer" +msgstr "Luo uusi ajastin" + +msgid "Buffer:" +msgstr "Marginaali:" + +msgid "Use VPS:" +msgstr "VPS-toiminto:" + +msgid "readonly" +msgstr "kirjoitussuojattu" + +msgid "Timer has been set by AutoTimer pattern:" +msgstr "Ajastin on luotu automaattisesti hakuehdolla:" + +msgid "TV" +msgstr "TV" + +msgid "Interval:" +msgstr "Pivitysvli:" + +msgid "sec." +msgstr "s" + +msgid "G" +msgstr "K" + +msgid "Grab the picture!" +msgstr "Kuvankaappaus" + +msgid "Size:" +msgstr "Koko:" + +msgid "Open in separate window" +msgstr "Avaa omaan ikkunaan" + +msgid "VDR Commands" +msgstr "Komennot" + +msgid "Export channels as playlist:" +msgstr "Luo soittolista:" + +msgid "Number of lines to show:" +msgstr "Nytettvien rivien lukumr:" + +msgid "unlimited" +msgstr "ei rajoitusta" + +msgid "SVDRP commands:" +msgstr "SVDRP-komennot:" + +msgid "Commands defined in commands.conf:" +msgstr "Mritellyt komennot (commands.conf):" + +msgid "Output" +msgstr "Vaste" + msgid "What's your VDR hostname (e.g video.intra.net)?" msgstr "Anna VDR-koneesi nimi (esim. video.intra.net):" diff --git a/po/fi_FI.utf8.po b/po/fi_FI.utf8.po index 2d170cd..77b25f4 100644 --- a/po/fi_FI.utf8.po +++ b/po/fi_FI.utf8.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: VDRAdmin-AM-3.6.2\n" "Report-Msgid-Bugs-To: Andreas Mair <andreas@vdr-developer.org>\n" -"POT-Creation-Date: 2008-12-18 08:25+0100\n" -"PO-Revision-Date: 2008-12-18 18:20+0200\n" +"POT-Creation-Date: 2009-12-30 13:26+0100\n" +"PO-Revision-Date: 2009-07-14 22:34+0200\n" "Last-Translator: Ville Skyttä <ville.skytta@iki.fi>\n" "Language-Team: Suomi\n" "MIME-Version: 1.0\n" @@ -19,177 +19,108 @@ msgstr "" msgid "ISO-8859-1" msgstr "UTF-8" -msgid "What's On Now?" -msgstr "Menossa nyt" - -msgid "Channel group:" -msgstr "Kanavaryhmä:" - -msgid "What's on:" -msgstr "Menossa" - -msgid "at" -msgstr " " - -msgid "o'clock" -msgstr " " - -msgid "More Information" -msgstr "Lisätietoja" - -msgid "Channels" -msgstr "Kanavat" - -msgid "Stream" -msgstr "Suoratoisto" - -msgid "TV select" -msgstr "Valitse" - -msgid "Search for other show times" -msgstr "Etsi vaihtoehtoisia esitysaikoja" - -msgid "No Information" -msgstr "Ei tietoja" - -msgid "Edit" -msgstr "Muokkaa" - -msgid "Record" -msgstr "Tallenna" - -msgid "No EPG information available" -msgstr "Ohjelmaoppaan tietoja ei saatavilla" - -msgid "Edit EPG" -msgstr "Muokkaa ohjelmatietoja" - -msgid "Help" -msgstr "Opaste" - -msgid "Channel" -msgstr "Kanava" - -msgid "Time" -msgstr "Aika" +msgid "About" +msgstr "Tietoja" -msgid "Title" -msgstr "Otsikko" +msgid "License" +msgstr "Lisenssi" -msgid "Subtitle" -msgstr "Lyhyt kuvaus" +msgid "Authors" +msgstr "Tekijät" -msgid "Description" -msgstr "Kuvaus" +msgid "Current author (VDRAdmin-AM branch):" +msgstr "Nykyinen tekijä (VDRAdmin-AM -haara):" -msgid "VPS" -msgstr "VPS" +msgid "Original author (VDRAdmin):" +msgstr "Alkuperäinen tekijä (VDRAdmin):" -msgid "Video tracks" -msgstr "Kuvaraidat" +msgid "Translation Team" +msgstr "Lokalisointi" -msgid "Audio tracks" -msgstr "Ääniraidat" +msgid "English:" +msgstr "Englanti:" -msgid "Save" -msgstr "Tallenna" +msgid "German:" +msgstr "Saksa:" -msgid "Cancel" -msgstr "Peru" +msgid "French:" +msgstr "Ranska:" -msgid "Edit Timer" -msgstr "Muokkaa ajastinta" +msgid "At the moment unmaintained, former translations by:" +msgstr "Ei ylläpidetty - aiemmat lokalisoinnit:" -msgid "<p>Here you can edit a timer's settings.</p>" -msgstr "<p>Tässä näkymässä voit muokata ajastimen asetuksia.</p>" +msgid "Spanish:" +msgstr "Espanja:" -msgid "Timer Active:" -msgstr "Aktiivinen:" +msgid "Finnish:" +msgstr "Suomi:" -msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." -msgstr "Aktivoi tai deaktivoi tämä ajastin. Deaktivoidut ajastimet eivät tallenna mitään, mutta ne näytetään ajastinlistauksessa josta ne voidaan aktivoida uudelleen." +msgid "Dutch:" +msgstr "Hollanti:" -msgid "AutoTimer Checking:" -msgstr "Hakuajastimen tarkistus:" +msgid "Russian:" +msgstr "Venäjä:" -msgid "Depending on how this timer has been programmed you have up to three possible settings:" -msgstr "Riippuen ajastimen tekotavasta, käytettävissäsi on useita asetuksia:" +msgid "Czech:" +msgstr "Tsekki:" -msgid "Transmission Identification" -msgstr "Lähetteen tunniste" +msgid "Italian:" +msgstr "Italia:" -msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." -msgstr "Tarkista ajastinta ohjelmisto-oppaan sisältämän ohjelmatunnisteen perusteella. Tämä tarkistustapa toimii vain mikäli ohjelmisto-oppaan ohjelmatunniste on vakio ja uniikki. Tämä valinta ei ole käytettävissä VDR:stä tehtyjen ajastimien kohdalla." +msgid "Information" +msgstr "Lisätietoja" -msgid "Monitor this timer using the start and stop time." -msgstr "Tarkista ajastin käyttäen alku- ja loppuaikoja." +msgid "VDRAdmin-AM version:" +msgstr "VDRAdmin-AM:n versio:" -msgid "off" -msgstr "Pois" +msgid "VDR version:" +msgstr "VDR:n versio:" -msgid "Do not monitor this timer." -msgstr "Älä tarkista tätä ajastinta." +msgid "Supported features in VDR:" +msgstr "VDR:n tuetut ominaisuudet:" -msgid "Channel:" -msgstr "Kanava:" +msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgstr "Hakuajastimet (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch-laajennos</a>)" -msgid "The channel to record." -msgstr "Tallennettava kanava." +msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgstr "Live-kuvan suoratoisto (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev-laajennos</a>)" -msgid "Day Of Recording:" -msgstr "Päivä:" +msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgstr "Tallenteiden uudelleennimeäminen (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio-kokoelma</a>)" -msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." -msgstr "Ajastimen aktivoitumispäivä. Voit käyttää kahta eri muotoa päivän asettamiseen:<ul><li>Kaksi numeroa (PP). Tämä täydennetään päivämääräksi kuluvalla kuukaudella ja vuodella.</li><li>ISO-standardi (VVVV-KK-PP). Voit tehdä ajastuksia niin kauas tulevaisuuteen kuin haluat.</li></ul>Halutessasi asettaa toistuvan ajastuksen voit käyttää tekstikentän alla olevia seitsemää viikonpäiväkohtaista valintaruutua. Valitse jokainen viikonpäivä jolloin haluat ajastimen aktivoituvan." +msgid "Getting Help and Reporting Bugs" +msgstr "Avunsaanti ja virheiden raportointi" -msgid "Start Time:" -msgstr "Aloitusaika:" +msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." +msgstr "Saat opasteen näytille painamalla <img src=\"bilder/help.png\" alt=\"\" /> -kuvaketta." -msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Aika jolloin ajastettu tallennus alkaa. Ensimmäiseen kenttään syötetään tunnit, jälkimmäiseen minuutit." +msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" +msgstr "Vaihtoehtoisesti voit etsiä apua saksankieliseltä <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> -foorumilta, missä ensisijaisesti kannattaa selata VDRAdminin julkistussäie läpi: " -msgid "End Time:" -msgstr "Lopetusaika:" +msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." +msgstr "Löydettyäsi ohjelmistovirheen tarkista, ettei sitä ole jo raportoitu aiemmin ja raportoi se <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking</a> -järjestelmään." -msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Aika jolloin ajastettu tallennus päättyy. Ensimmäiseen kenttään syötetään tunnit, jälkimmäiseen minuutit." +msgid "AutoTimer" +msgstr "Hakuajastimet" msgid "Priority:" msgstr "Prioriteetti:" -msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." -msgstr "Kokonaisluku väliltä <strong>0...99</strong> joka määrittää tämän ajastimen ja sen tekemien tallennusten <strong>prioriteetin</strong>. <strong>0</strong> on alin prioriteetti, <strong>99</strong> ylin. Prioriteettiarvoa käytetään päättämään mikä ajastettu tallennus aloitetaan mikäli asetettuna on kaksi tai useampia samaan aikaan <strong>alkamaan</strong> asetettuja ajastimia. Valinta kohdistuu ensimmäiseen suurimmalla prioriteetilla olevista ajastimista.<br /><br />Prioriteettiarvo säilytetään myös tallenteen mukana, ja sitä käytetään myöhemmin päättämään mikä tallenne poistetaan mikäli uutta varten pitää saada lisää levytilaa. Mikäli levy täyttyy ja uusi tallenne tarvitsee lisää tilaa, pienimmällä prioriteetilla merkitty tallenne (joka on ylittänyt <strong>taatun</strong> elinaikanasa) poistetaan.<br /><br />Mikäli kaikki DVB-kortit ovat käytössä, korkeamman prioriteetin ajastin keskeyttää tarvittaessa käynnissä olevan alimman prioriteetin tallennuksen." - msgid "Lifetime:" msgstr "Elinaika:" -msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." -msgstr "Tämän ajastimen tekemien tallenteiden <strong>taattu</strong> elinaika (päivinä). <strong>0</strong> tarkoittaa että tallenne saatetaan poistaa automaattisesti milloin tahansa korkeamman prioriteetin ajastimen tarvitessa lisää levytilaa. <strong>99</strong> tarkoittaa että tallennetta ei poisteta automaattisesti. Numero väliltä <strong>1...98</strong> tarkoittaa päivien määrää, jonka pitää olla kulunut ajastimen <strong>alkuajankohdasta</strong> ennen kuin tallenne saatetaan poistaa automaattisesti uuden tallenteen tarvitessa levytilaa." - -msgid "Title of Recording:" -msgstr "Tallenteen nimi:" - -msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." -msgstr "Ajastimen tekemien tallenteiden <strong>tiedostonimi</strong>. Hakemistoerottimena käytetään '~':a (koska '/' saattaa esiintyä ohjelmien nimissä).<br /><br />Avainsanat <strong>TITLE</strong> ja <strong>EPISODE</strong> korvataan ohjelmisto-oppaan otsikko- ja jaksotiedoilla mikäli ne ovat saatavilla tallennuksen alkaessa. Jos eivät, <strong>TITLE</strong>:n oletus on kanavan nimi ja <strong>EPISODE</strong>:n tyhjä." - -msgid "Summary:" -msgstr "Lisätiedot:" - -msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." -msgstr "Vapaavalintainen lisätietoteksti tämän ajastimen tekemille tallenteille. Jos tämä kenttä ei ole tyhjä, sen sisältö kirjoitetaan tallenteen <span class=\"ref_file\">summary.vdr</span>- tai <span class=\"ref_file\">info.vdr</span>-tiedostoon." - -msgid "Go!" -msgstr "Siirry" - -msgid "AutoTimer" -msgstr "Hakuajastimet" - msgid "New AutoTimer" msgstr "Uusi hakuajastin" +msgid "Help" +msgstr "Opaste" + msgid "Active" msgstr "Aktiivinen" +msgid "Channel" +msgstr "Kanava" + msgid "Start" msgstr "Aloitus" @@ -208,6 +139,9 @@ msgstr "Kyllä" msgid "No" msgstr "Ei" +msgid "Edit" +msgstr "Muokkaa" + msgid "Delete timer?" msgstr "Poistetaanko ajastin?" @@ -226,33 +160,6 @@ msgstr "Poistetaanko valitut ajastimet?" msgid "No AutoTimers defined!" msgstr "Hakuajastimia ei ole määritelty!" -msgid "VDR Commands" -msgstr "Komennot" - -msgid "Export channels as playlist:" -msgstr "Luo soittolista:" - -msgid "Number of lines to show:" -msgstr "Näytettävien rivien lukumäärä:" - -msgid "unlimited" -msgstr "ei rajoitusta" - -msgid "SVDRP commands:" -msgstr "SVDRP-komennot:" - -msgid "Run" -msgstr "Suorita" - -msgid "Really run this command?" -msgstr "Suoritetaanko komento?" - -msgid "Commands defined in commands.conf:" -msgstr "Määritellyt komennot (commands.conf):" - -msgid "Output" -msgstr "Vaste" - msgid "Add New AutoTimer" msgstr "Lisää uusi hakuajastin" @@ -271,6 +178,15 @@ msgstr "Hakuehdot:" msgid "Search in:" msgstr "Hakukentät:" +msgid "Title" +msgstr "Otsikko" + +msgid "Subtitle" +msgstr "Lyhyt kuvaus" + +msgid "Description" +msgstr "Kuvaus" + msgid "Search only on these days:" msgstr "Etsi valittuina päivinä:" @@ -295,12 +211,18 @@ msgstr "Lauantai" msgid "Sunday" msgstr "Sunnuntai" +msgid "Channel:" +msgstr "Kanava:" + msgid "all" msgstr "kaikki" msgid "Starts After:" msgstr "Alkaa jälkeen:" +msgid "o'clock" +msgstr " " + msgid "Ends Before:" msgstr "Loppuu ennen:" @@ -325,9 +247,15 @@ msgstr "Muista ohjelmoidut ajastimet:" msgid "Directory:" msgstr "Hakemisto:" +msgid "Save" +msgstr "Tallenna" + msgid "Test" msgstr "Hae" +msgid "Cancel" +msgstr "Peru" + msgid "Broadcasted" msgstr "Lähetysaika" @@ -337,140 +265,254 @@ msgstr "Tallennehakemisto" msgid "No matches found!" msgstr "Ei löydy!" -msgid "About" -msgstr "Tietoja" +msgid "Configuration" +msgstr "Asetukset" -msgid "License" -msgstr "Lisenssi" +msgid "General Settings" +msgstr "Yleiset" -msgid "Authors" -msgstr "Tekijät" +msgid "Template:" +msgstr "Mallipohja:" -msgid "Current author (VDRAdmin-AM branch):" -msgstr "Nykyinen tekijä (VDRAdmin-AM -haara):" +msgid "Skin:" +msgstr "Ulkoasu:" -msgid "Original author (VDRAdmin):" -msgstr "Alkuperäinen tekijä (VDRAdmin):" +msgid "Login Page:" +msgstr "Aloitussivu:" -msgid "Translation Team" -msgstr "Lokalisointi" +msgid "Number of channels to use:" +msgstr "Kanavien lukumäärä:" -msgid "English:" -msgstr "Englanti:" +msgid "Local net (no login required):" +msgstr "Käyttäjätunnukseton osoiteavaruus:" -msgid "German:" -msgstr "Saksa:" +msgid "Language:" +msgstr "Kieli:" -msgid "French:" -msgstr "Ranska:" +msgid "Save settings on exit:" +msgstr "Tallenna asetukset suljettaessa:" -msgid "At the moment unmaintained, former translations by:" -msgstr "Ei ylläpidetty - aiemmat lokalisoinnit:" +msgid "VDR" +msgstr "VDR" -msgid "Spanish:" -msgstr "Espanja:" +msgid "Number of DVB cards:" +msgstr "DVB-korttien lukumäärä:" -msgid "Finnish:" -msgstr "Suomi:" +msgid "Path to recordings:" +msgstr "VDR-tallenteiden polku:" -msgid "Dutch:" -msgstr "Hollanti:" +msgid "Path to configuration files:" +msgstr "Asetustiedostojen polku:" -msgid "Russian:" -msgstr "Venäjä:" +msgid "Path to EPG images:" +msgstr "Ohjelmisto-oppaan kuvapolku:" -msgid "Czech:" -msgstr "Tsekki:" +msgid "Identification" +msgstr "Käyttäjätunnistus" -msgid "Italian:" -msgstr "Italia:" +msgid "Username:" +msgstr "Käyttäjätunnus:" -msgid "Information" -msgstr "Lisätietoja" +msgid "Password:" +msgstr "Salasana:" -msgid "VDRAdmin-AM version:" -msgstr "VDRAdmin-AM:n versio:" +msgid "Guest Account:" +msgstr "Sallitaanko vierailija:" -msgid "VDR version:" -msgstr "VDR:n versio:" +msgid "Guest Username:" +msgstr "Vierailijan käyttäjätunnus:" -msgid "Supported features in VDR:" -msgstr "VDR:n tuetut ominaisuudet:" +msgid "Guest Password:" +msgstr "Vierailijan salasana:" -msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgstr "Hakuajastimet (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch-laajennos</a>)" +msgid "Timeline" +msgstr "Aikajana" -msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgstr "Live-kuvan suoratoisto (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev-laajennos</a>)" +msgid "Hours:" +msgstr "Pituus tunteina:" -msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgstr "Tallenteiden uudelleennimeäminen (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio-kokoelma</a>)" +msgid "Times:" +msgstr "Ajankohdat:" -msgid "Getting Help and Reporting Bugs" -msgstr "Avunsaanti ja virheiden raportointi" +msgid "Also used for other EPG views!" +msgstr "Käytetään myös muihin ohjelmaoppaan näkymiin!" -msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." -msgstr "Saat opasteen näytille painamalla <img src=\"bilder/help.png\" alt=\"\" /> -kuvaketta." +msgid "Tooltips:" +msgstr "Lisätietolaatikot:" -msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" -msgstr "Vaihtoehtoisesti voit etsiä apua saksankieliseltä <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> -foorumilta, missä ensisijaisesti kannattaa selata VDRAdminin julkistussäie läpi: " +msgid "Active:" +msgstr "Käytössä:" -msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." -msgstr "Löydettyäsi ohjelmistovirheen tarkista, ettei sitä ole jo raportoitu aiemmin ja raportoi se <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking</a> -järjestelmään." +msgid "Send email after programming timer:" +msgstr "Lähetä sähköpostia ohjelmoidusta ajastimesta:" -msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" -msgstr "" +msgid "Send email as:" +msgstr "Lähetä sähköposti nimellä:" -msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." -msgstr "Aktivoi tai deaktivoi tämä hakuajastin. Deaktivoidut hakuajastimet eivät tallenna mitään, mutta ne näytetään ajastinlistauksessa josta ne voidaan aktivoida uudelleen. Voit myös määrittää hakuajastimen toimimaan vain kerran, jolloin se ajastaa vain (yhden) seuraavan hakuun osuvan ohjelman tallennuksen." +msgid "Send email to:" +msgstr "Lähetä sähköposti osoitteeseen:" -msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Only broadcasts will match if they contain <strong>all</strong> items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as Blacklist-string) or only one episode (when using \"Enterprise~Azati Prime\" as Blacklist-string)." -msgstr "" +msgid "Mail server:" +msgstr "Sähköpostipalvelin:" -msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." -msgstr "" +msgid "SMTPAuth user:" +msgstr "SMTP-käyttäjätunnus:" -msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." -msgstr "" +msgid "SMTPAuth password:" +msgstr "SMTP-salasana:" -msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." -msgstr "" +msgid "Track schedule changes by:" +msgstr "Ohjelmamuutosten seurantaperuste:" -msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Ohjelman pitää alkaa tähän syötetyn ajan jälkeen osuakseen hakuehtoon. Ensimmäiseen kenttään syötetään tunnit, jälkimmäiseen minuutit." +msgid "Broadcast time" +msgstr "Lähetysaika" -msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Ohjelman pitää loppua ennen tähän syötettyä aikaa osuakseen hakuehtoon. Ensimmäiseen kenttään syötetään tunnit, jälkimmäiseen minuutit." +msgid "Event id" +msgstr "Ohjelmatunniste" -msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." -msgstr "" +msgid "Timer" +msgstr "Ajastimet" -msgid "The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG." -msgstr "Minuuttimäärä jonka verran ennen ohjelmaoppaan tietojen ohjelman alkuaikaa VDRAdmin-AM asettaa tallennuksen alkamaan." +msgid "Tooltips in timeline:" +msgstr "Lisätietolaatikot \"Aikajana\"-sivulla:" -msgid "The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG." -msgstr "Minuuttimäärä jonka verran ohjelmaoppaan tietojen ohjelman loppuajan jälkeen VDRAdmin-AM asettaa tallennuksen loppumaan." +msgid "Tooltips in list:" +msgstr "Lisätietolaatikot \"Ajastimet\"-sivulla:" -msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." -msgstr "" +msgid "Streaming" +msgstr "Suoratoisto" -msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." -msgstr "" +msgid "Live Streaming:" +msgstr "Live-kuvan suoratoisto:" -msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." -msgstr "" +msgid "HTTP Port of Streamdev (also possible 3000/ts):" +msgstr "Streamdev-laajennoksen HTTP-portti (esim. 3000/ts):" -msgid "Timer" -msgstr "Ajastimet" +msgid "Recordings Streaming:" +msgstr "Tallenteiden suoratoisto:" -msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" -msgstr "" +msgid "Path to VDR Recordings on your workstation:" +msgstr "VDR-tallenteiden polku työasemallasi:" -msgid "Playing Today" -msgstr "Ohjelmisto tänään" +msgid "MIME type for live streaming:" +msgstr "Live-kuvan suoratoiston MIME-tyyppi:" -msgid "starting at" -msgstr "alkaen kello" +msgid "Suffix for live streaming:" +msgstr "Live-kuvan suoratoiston tiedostopääte:" + +msgid "MIME type for recordings streaming:" +msgstr "Tallenteiden suoratoiston MIME-tyyppi:" + +msgid "Suffix for recordings streaming:" +msgstr "Tallenteiden suoratoiston tiedostopääte:" + +msgid "Bandwidth of Streams:" +msgstr "Kaistanleveys:" + +msgid "External Search" +msgstr "Ulkoinen haku" + +msgid "URL:" +msgstr "URL:" + +msgid "Title:" +msgstr "Otsikko:" + +msgid "User-defined search:" +msgstr "Käyttäjän määrittelemä haku:" + +msgid "Expert" +msgstr "Ekspertti" + +msgid "Update EPG data in background:" +msgstr "Päivitä ohjelmaopasta taustalla:" + +msgid "Update EPG every:" +msgstr "Ohjelmaoppaan päivitysväli:" + +msgid "Channel Selections" +msgstr "Kanavavalinnat" + +msgid "Show channels without EPG information:" +msgstr "Näytä ohjelmaoppaattomat kanavat:" + +msgid "In \"AutoTimer\"?" +msgstr "Käytä kanavavalintoja \"Hakuajastimet\"-sivulla" + +msgid "Apply" +msgstr "Käytä" + +msgid "EPG Search Blacklists" +msgstr "Hakuajastimien mustat listat" + +msgid "New Blacklist" +msgstr "Uusi musta lista" + +msgid "Search pattern" +msgstr "Hakuehto" + +msgid "From" +msgstr "Aikaisintaan" + +msgid "To" +msgstr "Viimeistään" + +msgid "Delete blacklist?" +msgstr "Poistetaanko musta lista?" + +msgid "Delete Selected Blacklists" +msgstr "Poista valitut mustat listat" + +msgid "Delete all selected blacklists?" +msgstr "Poistetaanko kaikki valitut mustat listat?" + +msgid "EPG search" +msgstr "Hae ohjelmaoppaasta" + +msgid "EPG Search" +msgstr "Hakuajastimet" + +msgid "Use template" +msgstr "Käytä mallipohjaa" + +msgid "New Search" +msgstr "Uusi haku" + +msgid "Edit Template" +msgstr "Muokkaa mallipohjaa" + +msgid "Settings" +msgstr "Asetukset" + +msgid "Action" +msgstr "Toiminto" + +msgid "Find" +msgstr "Etsi" + +msgid "Show Favorites" +msgstr "Näytä suosikit" + +msgid "Delete Selected Searches" +msgstr "Poista valitut haut" + +msgid "Delete all selected searches?" +msgstr "Poistetaanko kaikki valitut haut?" + +msgid "Execute Selected Searches" +msgstr "Suorita valitut haut" + +msgid "Duration" +msgstr "Kesto" + +msgid "More Information" +msgstr "Lisätietoja" + +msgid "Channels" +msgstr "Kanavat" + +msgid "Record" +msgstr "Tallenna" msgid "Add New Blacklist" msgstr "Lisää uusi musta lista" @@ -481,9 +523,6 @@ msgstr "Muokkaa mustaa listaa" msgid "Add New Template" msgstr "Lisää uusi mallipohja" -msgid "Edit Template" -msgstr "Muokkaa mallipohjaa" - msgid "Add New Search" msgstr "Lisää uusi hakuajastin" @@ -499,9 +538,6 @@ msgstr "Et valinnut otsikkoa, lyhyttä tai\\npitkää kuvausta hakuehdoksi.\\nHa msgid "Hide results" msgstr "Piilota hakutulokset" -msgid "Settings" -msgstr "Asetukset" - msgid "Name:" msgstr "Nimi:" @@ -679,264 +715,147 @@ msgstr "Poistetaanko mallipohja?" msgid "Save as template" msgstr "Tallenna mallipohjaksi" -msgid "Create New Timer" -msgstr "Luo uusi ajastin" - -msgid "Buffer:" -msgstr "Marginaali:" - -msgid "Use VPS:" -msgstr "VPS-toiminto:" - -msgid "readonly" -msgstr "kirjoitussuojattu" - -msgid "Timer has been set by AutoTimer pattern:" -msgstr "Ajastin on luotu automaattisesti hakuehdolla:" - -msgid "No Help Available" -msgstr "Ei opastetta" - -msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgstr "<p>Valittua opastetta ei ole saatavilla. Jos haluat lisätä tai muokata opastetta, ota yhteyttä sähköpostitse: <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgid "Run" +msgstr "Suorita" msgid "Error!" msgstr "Virhe!" -msgid "TV" -msgstr "TV" - -msgid "Interval:" -msgstr "Päivitysväli:" - -msgid "sec." -msgstr "s" - -msgid "G" -msgstr "K" - -msgid "Grab the picture!" -msgstr "Kuvankaappaus" - -msgid "Size:" -msgstr "Koko:" - -msgid "Open in separate window" -msgstr "Avaa omaan ikkunaan" - -msgid "Playing Today?" -msgstr "Tänään" +msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" +msgstr "" -msgid "Timeline" -msgstr "Aikajana" +msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgstr "" -msgid "EPG Search" -msgstr "Hakuajastimet" +msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." +msgstr "Aktivoi tai deaktivoi tämä hakuajastin. Deaktivoidut hakuajastimet eivät tallenna mitään, mutta ne näytetään ajastinlistauksessa josta ne voidaan aktivoida uudelleen. Voit myös määrittää hakuajastimen toimimaan vain kerran, jolloin se ajastaa vain (yhden) seuraavan hakuun osuvan ohjelman tallennuksen." -msgid "Recordings" -msgstr "Tallenteet" +msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Broadcasts will match only if they match <strong>all</strong> configured search items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as blacklist string) or only one episode (when using \"Enterprise~Azati Prime\" as blacklist string)." +msgstr "" -msgid "Remote Control" -msgstr "Kauko-ohjain" +msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." +msgstr "" -msgid "Watch TV" -msgstr "Katso TV:tä" +msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." +msgstr "" -msgid "Commands" -msgstr "Komennot" +msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." +msgstr "" -msgid "Configuration" -msgstr "Asetukset" +msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Ohjelman pitää alkaa tähän syötetyn ajan jälkeen osuakseen hakuehtoon. Ensimmäiseen kenttään syötetään tunnit, jälkimmäiseen minuutit." -msgid "Search" -msgstr "Etsi" +msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Ohjelman pitää loppua ennen tähän syötettyä aikaa osuakseen hakuehtoon. Ensimmäiseen kenttään syötetään tunnit, jälkimmäiseen minuutit." -msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" +msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." msgstr "" -msgid "General Settings" -msgstr "Yleiset" +msgid "The number of minutes VDRAdmin-AM subtracts from the broadcast's start time found in the EPG." +msgstr "Minuuttimäärä jonka verran ennen ohjelmaoppaan tietojen ohjelman alkuaikaa VDRAdmin-AM asettaa tallennuksen alkamaan." -msgid "VDR" -msgstr "VDR" +msgid "The number of minutes VDRAdmin-AM adds to the broadcast's stop time found in the EPG." +msgstr "Minuuttimäärä jonka verran ohjelmaoppaan tietojen ohjelman loppuajan jälkeen VDRAdmin-AM asettaa tallennuksen loppumaan." -msgid "Identification" -msgstr "Käyttäjätunnistus" +msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." +msgstr "Kokonaisluku väliltä <strong>0...99</strong> joka määrittää tämän ajastimen ja sen tekemien tallennusten <strong>prioriteetin</strong>. <strong>0</strong> on alin prioriteetti, <strong>99</strong> ylin. Prioriteettiarvoa käytetään päättämään mikä ajastettu tallennus aloitetaan mikäli asetettuna on kaksi tai useampia samaan aikaan <strong>alkamaan</strong> asetettuja ajastimia. Valinta kohdistuu ensimmäiseen suurimmalla prioriteetilla olevista ajastimista.<br /><br />Prioriteettiarvo säilytetään myös tallenteen mukana, ja sitä käytetään myöhemmin päättämään mikä tallenne poistetaan mikäli uutta varten pitää saada lisää levytilaa. Mikäli levy täyttyy ja uusi tallenne tarvitsee lisää tilaa, pienimmällä prioriteetilla merkitty tallenne (joka on ylittänyt <strong>taatun</strong> elinaikanasa) poistetaan.<br /><br />Mikäli kaikki DVB-kortit ovat käytössä, korkeamman prioriteetin ajastin keskeyttää tarvittaessa käynnissä olevan alimman prioriteetin tallennuksen." -msgid "Streaming" -msgstr "Suoratoisto" +msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." +msgstr "Tämän ajastimen tekemien tallenteiden <strong>taattu</strong> elinaika (päivinä). <strong>0</strong> tarkoittaa että tallenne saatetaan poistaa automaattisesti milloin tahansa korkeamman prioriteetin ajastimen tarvitessa lisää levytilaa. <strong>99</strong> tarkoittaa että tallennetta ei poisteta automaattisesti. Numero väliltä <strong>1...98</strong> tarkoittaa päivien määrää, jonka pitää olla kulunut ajastimen <strong>alkuajankohdasta</strong> ennen kuin tallenne saatetaan poistaa automaattisesti uuden tallenteen tarvitessa levytilaa." -msgid "Expert" -msgstr "Ekspertti" +msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." +msgstr "" -msgid "External Search" -msgstr "Ulkoinen haku" +msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." +msgstr "" -msgid "Channel Selections" -msgstr "Kanavavalinnat" +msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." +msgstr "" -msgid "Skin:" -msgstr "Ulkoasu:" +msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" +msgstr "" msgid "The skin you want to use." msgstr "Haluamasi käyttöliittymän ulkoasu." -msgid "Login Page:" -msgstr "Aloitussivu:" - msgid "The page you want to see at first connect to VDRAdmin-AM." msgstr "" -msgid "Number of channels to use:" -msgstr "Kanavien lukumäärä:" - msgid "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." msgstr "" -msgid "Local net (no login required):" -msgstr "Käyttäjätunnukseton osoiteavaruus:" - msgid "Here you can specify an IP address or range that can login without providing login information. For example: \"192.168.0.0/24\" will include any IP starting with \"192.168.0\", \"192.168.0.123/32\" will only match \"192.168.0.123\"." msgstr "Tässä määritellystä IP-osoitteesta tai -avaruudesta sallitaan sisäänkirjautumiset ilman käyttäjätunnusta ja salasanaa. Esimerkiksi: \"192.168.0.0/24\" sallii mistä tahansa IP-osoitteesta joka alkaa \"192.168.0\", \"192.168.0.123/32\" sallii vain IP-osoitteesta \"192.168.0.123\"." -msgid "Language:" -msgstr "Kieli:" - msgid "Here you can set the localization VDRAdmin-AM should use." msgstr "" -msgid "Save settings on exit:" -msgstr "Tallenna asetukset suljettaessa:" - msgid "With this option the settings will be saved if VDRAdmin-AM exits. This will also save settings not available on the \"Configuration\" menu like interval and size in TV, sorting in the lists and current view in \"What's on now\"." msgstr "" msgid "Top" msgstr "Alkuun" -msgid "Number of DVB cards:" -msgstr "DVB-korttien lukumäärä:" - msgid "The number of DVB cards VDR can access. Depending on this value VDRAdmin-AM will calculate critical timers in the <span class=\"ref_menu\">Timer</span> menu." msgstr "VDR:n käyttämien DVB-korttien lukumäärä. VDRAdmin-AM käyttää tätä lukua laskiessaan ajastimien toteutumisen mahdollisuutta <span class=\"ref_menu\">Ajastimet</span>-näkymässä." -msgid "Path to recordings:" -msgstr "VDR-tallenteiden polku:" - msgid "The path to VDR's recordings. It's used so that VDRAdmin-AM can locate the recordings when using <span class=\"ref_label\">Recordings Streaming</span> and <span class=\"ref_file\">reccmds.conf</span> in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "" -msgid "Path to configuration files:" -msgstr "Asetustiedostojen polku:" - msgid "The path where VDR's configuration files are located. If this directory contains the file <span class=\"ref_file\">reccmds.conf</span> its content is shown in a selectbox in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Polku jossa VDR:n asetustiedostot sijaitsevat. Mikäli tämän polun osoittamassa hakemistossa on tiedosto <span class=\"ref_file\">reccmds.conf</span>, sen sisältämät komennot näytetään alasvetovalikossa <span class=\"ref_menu\">Tallenteet</span>-näkymässä." -msgid "Path to EPG images:" -msgstr "Ohjelmisto-oppaan kuvapolku:" - msgid "The path where the EPG images are stored." msgstr "" -msgid "Username:" -msgstr "Käyttäjätunnus:" - msgid "The username for the main user, i.e. the user having the most privileges." msgstr "Pääkäyttäjän, ts. käyttäjän jolla on kaikki käyttöoikeudet, salasana." -msgid "Password:" -msgstr "Salasana:" - msgid "The main user's password." msgstr "Pääkäyttäjän salasana." -msgid "Guest Account:" -msgstr "Sallitaanko vierailija:" - msgid "If you want a user account having only limited privileges, this is for you. The guest user cannot modify anything, it's only allowed to view the EPG, timers, AutoTimers and recordings listings." msgstr "Jos haluat sallia rajoitetut käyttöoikeudet omaavan käyttäjän, tämä asetus on sinua varten. Vierailijakäyttäjän ei sallita muokkaavan mitään, vaan sillä on ainoastaan lukuoikeudet ohjelmaopas-, ajastin-, automaattiajastin- ja tallennenäkymiin." -msgid "Guest Username:" -msgstr "Vierailijan käyttäjätunnus:" - msgid "The username for the guest user." msgstr "Vierailijakäyttäjän käyttäjätunnus." -msgid "Guest Password:" -msgstr "Vierailijan salasana:" - msgid "The guest user's password." msgstr "Vierailijakäyttäjän salasana." -msgid "Hours:" -msgstr "Pituus tunteina:" - msgid "The number of hours to show in the timeline." msgstr "Aikajanalla näytettävien tuntien lukumäärä." -msgid "Times:" -msgstr "Ajankohdat:" - msgid "A comma separated list of times in <strong>hh:mm</strong> format that appear in the selectbox placed at the top." msgstr "" -msgid "Tooltips:" -msgstr "Lisätietolaatikot:" - msgid "Here you can (de-)activate the tooltips." msgstr "" -msgid "Active:" -msgstr "Käytössä:" - msgid "Activate or deactivate the AutoTimer function." msgstr "Aktivoi tai deaktivoi hakuajastintoiminto." -msgid "Send email after programming timer:" -msgstr "Lähetä sähköpostia ohjelmoidusta ajastimesta:" - msgid "VDRAdmin-AM will send an email whenever an event matches an AutoTimer and a timer has been programmed if you enable this feature." msgstr "Mikäli tämä ominaisuus on käytössä, VDRAdmin-AM lähettää sähköpostin aina kun automaattiajastinta vastaava ohjelma on löytynyt ja ajastettu." -msgid "Send email as:" -msgstr "Lähetä sähköposti nimellä:" - msgid "Here you set the sending email address of the generated email." msgstr "Sähköpostin lähettäjän osoite." -msgid "Send email to:" -msgstr "Lähetä sähköposti osoitteeseen:" - msgid "The email address the email is sent to." msgstr "Sähköpostin vastaanottajan osoite." -msgid "Mail server:" -msgstr "Sähköpostipalvelin:" - msgid "The outgoing mail server." msgstr "Sähköpostin lähetyspalvelimen osoite." -msgid "SMTPAuth user:" -msgstr "SMTP-käyttäjätunnus:" - msgid "If you need to authenticate yourself at the outgoing mail server, you have to supply the username and the password below. Leaving this field empty will disable SMTPAuth." msgstr "Mikäli sähköpostin lähetyspalvelin vaatii tunnistautumista, täytä SMTP-käyttäjätunnus ja -salasanakentät. Tämän kentän jättäminen tyhjäksi poistaa SMTP-tunnistautumisen käytöstä." -msgid "SMTPAuth password:" -msgstr "SMTP-salasana:" - msgid "The password for the SMTPAuth user." msgstr "SMTP-tunnistautumisessa käytetty salasana." -msgid "Tooltips in timeline:" -msgstr "Lisätietolaatikot \"Aikajana\"-sivulla:" - msgid "Here you can (de-)activate the tooltips in the timeline." msgstr "" -msgid "Tooltips in list:" -msgstr "Lisätietolaatikot \"Ajastimet\"-sivulla:" - msgid "Here you can (de-)activate the tooltips in the list." msgstr "" @@ -946,51 +865,27 @@ msgstr "Lisää tallenteen kuvaus uusiin ajastimiin" msgid "If you don't want VDRAdmin-AM to add the summary taken from EPG to new timers you can switch it off here." msgstr "" -msgid "Live Streaming:" -msgstr "Live-kuvan suoratoisto:" - msgid "Enable or disable live streaming using the <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. You also have to set the correct <span class=\"ref_label\">HTTP Port for Streamdev</span> below." msgstr "" -msgid "HTTP Port of Streamdev (also possible 3000/ts):" -msgstr "Streamdev-laajennoksen HTTP-portti (esim. 3000/ts):" - msgid "Here you have to set the port number your VDR's streamdev server listens for connections. Additionally you can also provide the stream type you like to use." msgstr "" -msgid "Recordings Streaming:" -msgstr "Tallenteiden suoratoisto:" - msgid "Enable or disable streaming of recordings.<br />Well actually this is no real \"streaming\", but you have to setup your workstation so that it can access VDR's recordings. You can use for example Samba or NFS for this. VDRAdmin-AM simply generates a playlist that contains all parts of the recording and sends this to your browser. If your browser and media player are configured correctly you will see the recording on your workstation's display." msgstr "" -msgid "Path to VDR Recordings on your workstation:" -msgstr "VDR-tallenteiden polku työasemallasi:" - msgid "This is the path where your workstation can access VDR's recordings. This depends on your VDR and workstation setup, for example \"\\\\vdr\\videos\" or \"V:\\\" (on Windows) or \"/mnt/videos\" (on Linux)." msgstr "" -msgid "MIME type for live streaming:" -msgstr "Live-kuvan suoratoiston MIME-tyyppi:" - msgid "The MIME type to send when using live streaming. Defaults to \"video/x-mpegurl\"." msgstr "" -msgid "Suffix for live streaming:" -msgstr "Live-kuvan suoratoiston tiedostopääte:" - msgid "The suffix to use for live streaming. Defaults to \"m3u\"." msgstr "Live-kuvan suoratoiston tiedostopääte, oletus \"m3u\"." -msgid "MIME type for recordings streaming:" -msgstr "Tallenteiden suoratoiston MIME-tyyppi:" - msgid "The MIME type to send when using recordings streaming. Defaults to \"video/x-mpegurl\"." msgstr "" -msgid "Suffix for recordings streaming:" -msgstr "Tallenteiden suoratoiston tiedostopääte:" - msgid "The suffix to use for recordings streaming. Defaults to \"m3u\"." msgstr "Tallenteiden suoratoiston tiedostopääte, oletus \"m3u\"." @@ -1006,50 +901,23 @@ msgstr "" msgid "<p>This section is for experts <strong>only</strong>, i.e. you know what you are doing!</p>" msgstr "<p>Tämä osio on <strong>vain</strong> asiantuntijoille jotka tietävät mitä ovat tekemässä!</p>" -msgid "Update EPG data in background:" -msgstr "Päivitä ohjelmaopasta taustalla:" - msgid "If set to \"yes\" VDRAdmin-AM will periodically refresh its local EPG cache. Else the EPG will be refreshed if the user accesses any EPG view at the web interface and the timeout set at \"Update EPG every\" has been reached." msgstr "" -msgid "Update EPG every:" -msgstr "Ohjelmaoppaan päivitysväli:" - msgid "The interval, the EPG data is refreshed from VDR and AutoTimer updates are performed (if AutoTimer feature is used)." msgstr "Aika jonka välein ohjelmaoppaan tiedot päivitetään VDR:stä ja hakuajastimien päivitykset tehdään (mikäli hakuajastintoiminto on käytössä)." msgid "<p>If you want to limit the number of channels used in some parts of VDRAdmin-AM, this is for you!</p><p>Use the radio buttons to activate or deactivate the wanted channels in the named menu.</p><p>To add channels to the list of wanted channels you have to select them in the left side selectbox and click <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. If you want to remove channels from the list of wanted channels you have to select them in the right side selectbox and click <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" msgstr "" -msgid "Show channels without EPG information:" -msgstr "Näytä ohjelmaoppaattomat kanavat:" - msgid "Usually channels that don't have EPG information are hidden in all EPG views. If you don't want them to be hidden you have to set this option to \"yes\"." msgstr "" -msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" -msgstr "" - -msgid "Your Browser does not support frames!" -msgstr "Selaimesi ei tue kehyksiä!" - -msgid "Rename Recording" -msgstr "Nimeä tallenne" - -msgid "Original Name of Recording:" -msgstr "Tallenteen alkuperäinen nimi:" - -msgid "New Name of Recording:" -msgstr "Tallenteen uusi nimi:" - -msgid "Subtitle:" -msgstr "Lyhyt kuvaus:" - -msgid "Rename" -msgstr "Nimeä" +msgid "Edit Timer" +msgstr "Muokkaa ajastinta" -msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" -msgstr "" +msgid "Edit EPG" +msgstr "Muokkaa ohjelmatietoja" msgid "<p>Here you can edit the descriptive fields of an existing EPG entry.</p>" msgstr "<p>Tässä näkymässä voit muokata ohjelmaoppaan tietoja.</p>" @@ -1093,134 +961,116 @@ msgstr "Ääniraidat (kirjoitussuojattu)" msgid "If available this field shows the audio track(s). It cannot be changed." msgstr "" -msgid "Duration:" -msgstr "Kesto:" - -msgid "min" -msgstr "min" - -msgid "Transponder:" -msgstr "Transponderi:" - -msgid "CA-System:" -msgstr "Salaus:" - -msgid "New Timer" -msgstr "Uusi ajastin" - -msgid "Date" -msgstr "Päivä" - -msgid "Edit timer status?" -msgstr "Muokataanko ajastinta?" +msgid "No Help Available" +msgstr "Ei opastetta" -msgid "This timer is inactive!" -msgstr "Ajastin ei ole aktiivinen!" +msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgstr "<p>Valittua opastetta ei ole saatavilla. Jos haluat lisätä tai muokata opastetta, ota yhteyttä sähköpostitse: <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgid "This timer is impossible!" -msgstr "Ajastin ei ole mahdollinen!" +msgid "Recordings" +msgstr "Tallenteet" -msgid "No more timers on other transponders possible!" -msgstr "Maksimimäärä ajastimia käytössä!" +msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" +msgstr "" -msgid "Timer OK." -msgstr "Ajastin kunnossa." +msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" +msgstr "" -msgid "Auto" -msgstr "Automaattinen" +msgid "<p>Here you can edit a timer's settings.</p>" +msgstr "<p>Tässä näkymässä voit muokata ajastimen asetuksia.</p>" -msgid "activate" -msgstr "Aktivoi" +msgid "Timer Active:" +msgstr "Aktiivinen:" -msgid "inactivate" -msgstr "Älä aktivoi" +msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." +msgstr "Aktivoi tai deaktivoi tämä ajastin. Deaktivoidut ajastimet eivät tallenna mitään, mutta ne näytetään ajastinlistauksessa josta ne voidaan aktivoida uudelleen." -msgid "selected timers" -msgstr "valittuja ajastimia" +msgid "AutoTimer Checking:" +msgstr "Hakuajastimen tarkistus:" -msgid "Delete Selected Timers" -msgstr "Poista valitut ajastimet" +msgid "Depending on how this timer has been programmed you have up to three possible settings:" +msgstr "Riippuen ajastimen tekotavasta, käytettävissäsi on useita asetuksia:" -msgid "No timers defined!" -msgstr "Ajastimia ei määritelty!" +msgid "Transmission Identification" +msgstr "Lähetteen tunniste" -msgid "EPG Search Blacklists" -msgstr "Hakuajastimien mustat listat" +msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." +msgstr "Tarkista ajastinta ohjelmisto-oppaan sisältämän ohjelmatunnisteen perusteella. Tämä tarkistustapa toimii vain mikäli ohjelmisto-oppaan ohjelmatunniste on vakio ja uniikki. Tämä valinta ei ole käytettävissä VDR:stä tehtyjen ajastimien kohdalla." -msgid "New Blacklist" -msgstr "Uusi musta lista" +msgid "Time" +msgstr "Aika" -msgid "Search pattern" -msgstr "Hakuehto" +msgid "Monitor this timer using the start and stop time." +msgstr "Tarkista ajastin käyttäen alku- ja loppuaikoja." -msgid "From" -msgstr "Aikaisintaan" +msgid "off" +msgstr "Pois" -msgid "To" -msgstr "Viimeistään" +msgid "Do not monitor this timer." +msgstr "Älä tarkista tätä ajastinta." -msgid "Delete blacklist?" -msgstr "Poistetaanko musta lista?" +msgid "The channel to record." +msgstr "Tallennettava kanava." -msgid "Delete Selected Blacklists" -msgstr "Poista valitut mustat listat" +msgid "Day Of Recording:" +msgstr "Päivä:" -msgid "Delete all selected blacklists?" -msgstr "Poistetaanko kaikki valitut mustat listat?" +msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." +msgstr "Ajastimen aktivoitumispäivä. Voit käyttää kahta eri muotoa päivän asettamiseen:<ul><li>Kaksi numeroa (PP). Tämä täydennetään päivämääräksi kuluvalla kuukaudella ja vuodella.</li><li>ISO-standardi (VVVV-KK-PP). Voit tehdä ajastuksia niin kauas tulevaisuuteen kuin haluat.</li></ul>Halutessasi asettaa toistuvan ajastuksen voit käyttää tekstikentän alla olevia seitsemää viikonpäiväkohtaista valintaruutua. Valitse jokainen viikonpäivä jolloin haluat ajastimen aktivoituvan." -msgid "EPG search" -msgstr "Hae ohjelmaoppaasta" +msgid "Start Time:" +msgstr "Aloitusaika:" -msgid "Use template" -msgstr "Käytä mallipohjaa" +msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Aika jolloin ajastettu tallennus alkaa. Ensimmäiseen kenttään syötetään tunnit, jälkimmäiseen minuutit." -msgid "New Search" -msgstr "Uusi haku" +msgid "End Time:" +msgstr "Lopetusaika:" -msgid "Action" -msgstr "Toiminto" +msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Aika jolloin ajastettu tallennus päättyy. Ensimmäiseen kenttään syötetään tunnit, jälkimmäiseen minuutit." -msgid "Find" -msgstr "Etsi" +msgid "Title of Recording:" +msgstr "Tallenteen nimi:" -msgid "Show Favorites" -msgstr "Näytä suosikit" +msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." +msgstr "Ajastimen tekemien tallenteiden <strong>tiedostonimi</strong>. Hakemistoerottimena käytetään '~':a (koska '/' saattaa esiintyä ohjelmien nimissä).<br /><br />Avainsanat <strong>TITLE</strong> ja <strong>EPISODE</strong> korvataan ohjelmisto-oppaan otsikko- ja jaksotiedoilla mikäli ne ovat saatavilla tallennuksen alkaessa. Jos eivät, <strong>TITLE</strong>:n oletus on kanavan nimi ja <strong>EPISODE</strong>:n tyhjä." -msgid "Delete Selected Searches" -msgstr "Poista valitut haut" +msgid "Summary:" +msgstr "Lisätiedot:" -msgid "Delete all selected searches?" -msgstr "Poistetaanko kaikki valitut haut?" +msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." +msgstr "Vapaavalintainen lisätietoteksti tämän ajastimen tekemille tallenteille. Jos tämä kenttä ei ole tyhjä, sen sisältö kirjoitetaan tallenteen <span class=\"ref_file\">summary.vdr</span>- tai <span class=\"ref_file\">info.vdr</span>-tiedostoon." -msgid "Execute Selected Searches" -msgstr "Suorita valitut haut" +msgid "Your Browser does not support frames!" +msgstr "Selaimesi ei tue kehyksiä!" -msgid "Duration" -msgstr "Kesto" +msgid "What's On Now?" +msgstr "Menossa nyt" -msgid "Template:" -msgstr "Mallipohja:" +msgid "Playing Today?" +msgstr "Tänään" -msgid "Also used for other EPG views!" -msgstr "Käytetään myös muihin ohjelmaoppaan näkymiin!" +msgid "Remote Control" +msgstr "Kauko-ohjain" -msgid "Bandwidth of Streams:" -msgstr "Kaistanleveys:" +msgid "Watch TV" +msgstr "Katso TV:tä" -msgid "URL:" -msgstr "URL:" +msgid "Commands" +msgstr "Komennot" -msgid "Title:" -msgstr "Otsikko:" +msgid "Search" +msgstr "Etsi" -msgid "User-defined search:" -msgstr "Käyttäjän määrittelemä haku:" +msgid "Authorization Required" +msgstr "Käyttäjätunnistus puutteellinen" -msgid "In \"AutoTimer\"?" -msgstr "Käytä kanavavalintoja \"Hakuajastimet\"-sivulla" +msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." +msgstr "Käyttäjätunnistus ei onnistu! Tarkista syöttämäsi käyttäjätunnus/salasana." -msgid "Apply" -msgstr "Käytä" +msgid "VPS" +msgstr "VPS" msgid "close" msgstr "Sulje" @@ -1240,23 +1090,77 @@ msgstr "Kuvaraidat:" msgid "Audio tracks:" msgstr "Ääniraidat:" +msgid "Video tracks" +msgstr "Kuvaraidat" + +msgid "Audio tracks" +msgstr "Ääniraidat" + +msgid "TV select" +msgstr "Valitse" + +msgid "Stream" +msgstr "Suoratoisto" + +msgid "Channel group:" +msgstr "Kanavaryhmä:" + +msgid "Go!" +msgstr "Siirry" + +msgid "Search for other show times" +msgstr "Etsi vaihtoehtoisia esitysaikoja" + +msgid "No Information" +msgstr "Ei tietoja" + +msgid "No EPG information available" +msgstr "Ohjelmaoppaan tietoja ei saatavilla" + +msgid "Playing Today" +msgstr "Ohjelmisto tänään" + +msgid "starting at" +msgstr "alkaen kello" + +msgid "What's on:" +msgstr "Menossa" + +msgid "at" +msgstr " " + msgid "now" msgstr "nyt" msgid "to" msgstr "-" +msgid "Duration:" +msgstr "Kesto:" + +msgid "min" +msgstr "min" + msgid "at:" msgstr "kello:" msgid "You need JavaScript to use the timeline!" msgstr "Aikajanatoiminto tarvitsee JavaScript-tuen!" -msgid "Authorization Required" -msgstr "Käyttäjätunnistus puutteellinen" +msgid "Rename Recording" +msgstr "Nimeä tallenne" -msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." -msgstr "Käyttäjätunnistus ei onnistu! Tarkista syöttämäsi käyttäjätunnus/salasana." +msgid "Original Name of Recording:" +msgstr "Tallenteen alkuperäinen nimi:" + +msgid "New Name of Recording:" +msgstr "Tallenteen uusi nimi:" + +msgid "Subtitle:" +msgstr "Lyhyt kuvaus:" + +msgid "Rename" +msgstr "Nimeä" msgid "Total:" msgstr "Käytössä:" @@ -1267,6 +1171,9 @@ msgstr "h" msgid "Free:" msgstr "Vapaana:" +msgid "Date" +msgstr "Päivä" + msgid "Total" msgstr "kpl" @@ -1288,6 +1195,9 @@ msgstr "Päivitä" msgid "Commands:" msgstr "Komennot:" +msgid "Really run this command?" +msgstr "Suoritetaanko komento?" + msgid "Delete Selected Recordings" msgstr "Poista valitut tallenteet" @@ -1297,6 +1207,105 @@ msgstr "Poistetaanko valitut tallenteet?" msgid "No recordings available" msgstr "Tallenteita ei saatavilla" +msgid "Transponder:" +msgstr "Transponderi:" + +msgid "CA-System:" +msgstr "Salaus:" + +msgid "New Timer" +msgstr "Uusi ajastin" + +msgid "Edit timer status?" +msgstr "Muokataanko ajastinta?" + +msgid "This timer is inactive!" +msgstr "Ajastin ei ole aktiivinen!" + +msgid "This timer is impossible!" +msgstr "Ajastin ei ole mahdollinen!" + +msgid "No more timers on other transponders possible!" +msgstr "Maksimimäärä ajastimia käytössä!" + +msgid "Timer OK." +msgstr "Ajastin kunnossa." + +msgid "Auto" +msgstr "Automaattinen" + +msgid "activate" +msgstr "Aktivoi" + +msgid "inactivate" +msgstr "Älä aktivoi" + +msgid "selected timers" +msgstr "valittuja ajastimia" + +msgid "Delete Selected Timers" +msgstr "Poista valitut ajastimet" + +msgid "No timers defined!" +msgstr "Ajastimia ei määritelty!" + +msgid "Create New Timer" +msgstr "Luo uusi ajastin" + +msgid "Buffer:" +msgstr "Marginaali:" + +msgid "Use VPS:" +msgstr "VPS-toiminto:" + +msgid "readonly" +msgstr "kirjoitussuojattu" + +msgid "Timer has been set by AutoTimer pattern:" +msgstr "Ajastin on luotu automaattisesti hakuehdolla:" + +msgid "TV" +msgstr "TV" + +msgid "Interval:" +msgstr "Päivitysväli:" + +msgid "sec." +msgstr "s" + +msgid "G" +msgstr "K" + +msgid "Grab the picture!" +msgstr "Kuvankaappaus" + +msgid "Size:" +msgstr "Koko:" + +msgid "Open in separate window" +msgstr "Avaa omaan ikkunaan" + +msgid "VDR Commands" +msgstr "Komennot" + +msgid "Export channels as playlist:" +msgstr "Luo soittolista:" + +msgid "Number of lines to show:" +msgstr "Näytettävien rivien lukumäärä:" + +msgid "unlimited" +msgstr "ei rajoitusta" + +msgid "SVDRP commands:" +msgstr "SVDRP-komennot:" + +msgid "Commands defined in commands.conf:" +msgstr "Määritellyt komennot (commands.conf):" + +msgid "Output" +msgstr "Vaste" + msgid "What's your VDR hostname (e.g video.intra.net)?" msgstr "Anna VDR-koneesi nimi (esim. video.intra.net):" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDRAdmin-AM-3.6.0\n" "Report-Msgid-Bugs-To: Andreas Mair <andreas@vdr-developer.org>\n" -"POT-Creation-Date: 2008-12-18 08:25+0100\n" +"POT-Creation-Date: 2009-12-30 13:26+0100\n" "PO-Revision-Date: 2007-08-23 10:45+0100\n" "Last-Translator: Trois Six <trois.six@free.fr>\n" "Language-Team: Trois Six <trois.six@free.fr>\n" @@ -20,177 +20,108 @@ msgstr "" msgid "ISO-8859-1" msgstr "ISO-8859-1" -msgid "What's On Now?" -msgstr "En ce Moment ?" - -msgid "Channel group:" -msgstr "Groupe de la Chane :" - -msgid "What's on:" -msgstr "En ce moment :" - -msgid "at" -msgstr "" - -msgid "o'clock" -msgstr "Heure" - -msgid "More Information" -msgstr "Plus d'Informations" - -msgid "Channels" -msgstr "Chanes" - -msgid "Stream" -msgstr "Flux" - -msgid "TV select" -msgstr "Zapper" - -msgid "Search for other show times" -msgstr "Rechercher d'autres moments de diffusion" - -msgid "No Information" -msgstr "Pas d'Information" - -msgid "Edit" -msgstr "Editer" - -msgid "Record" -msgstr "Enregistrer" - -msgid "No EPG information available" -msgstr "Pas d'information EPG disponible" - -msgid "Edit EPG" -msgstr "Editer EPG" - -msgid "Help" -msgstr "Aide" - -msgid "Channel" -msgstr "Chane" - -msgid "Time" -msgstr "Horaires" +msgid "About" +msgstr "A propos" -msgid "Title" -msgstr "une fois" +msgid "License" +msgstr "" -msgid "Subtitle" -msgstr "Sous-titre" +msgid "Authors" +msgstr "Auteurs" -msgid "Description" -msgstr "Description" +msgid "Current author (VDRAdmin-AM branch):" +msgstr "Auteur Actuel (Branche VDRAdmin-AM) :" -msgid "VPS" -msgstr "VPS" +msgid "Original author (VDRAdmin):" +msgstr "Auteur du programme (VDRAdmin) :" -msgid "Video tracks" -msgstr "Pistes vido" +msgid "Translation Team" +msgstr "quipe de Traduction" -msgid "Audio tracks" -msgstr "Pistes audio" +msgid "English:" +msgstr "Anglais :" -msgid "Save" -msgstr "Enregistrer" +msgid "German:" +msgstr "Allemand :" -msgid "Cancel" -msgstr "Annuler" +msgid "French:" +msgstr "Franais" -msgid "Edit Timer" -msgstr "Editer Programmation" +msgid "At the moment unmaintained, former translations by:" +msgstr "Pour le moment non maintenu, prcdente traductions par :" -msgid "<p>Here you can edit a timer's settings.</p>" -msgstr "<p>Ici vous pouvez modifier un programmation.</p>" +msgid "Spanish:" +msgstr "Espagnol :" -msgid "Timer Active:" -msgstr "Programmation Active :" +msgid "Finnish:" +msgstr "Finlandais :" -msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." -msgstr "Active ou dsactive une programmation. Les programmations dsactivs sont toujours stockes dans la liste des programmations et peuvent tre actives nouveau, mais elles n'enregistrent nanmoins plus rien." +msgid "Dutch:" +msgstr "Hollandais :" -msgid "AutoTimer Checking:" -msgstr "Vrification Auto-Programmation :" +msgid "Russian:" +msgstr "Russe" -msgid "Depending on how this timer has been programmed you have up to three possible settings:" -msgstr "Suivant comment cette programmation t dfinie,vous avez jusqu' trois possibilits :" +msgid "Czech:" +msgstr "Tchque :" -msgid "Transmission Identification" -msgstr "Identification Transmission" +msgid "Italian:" +msgstr "Italien :" -msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." -msgstr "Surveille cette programmation en utilisant l'identification fournie par le guide lectronique des programmes. Notez que cela fonctionne seulement si l'identification est fixe et unique! Cette option n'est pas disponible avec les programmations cres dans VDR." +msgid "Information" +msgstr "Information" -msgid "Monitor this timer using the start and stop time." -msgstr "Surveille cette programmation en utilisant l'horaire de dmarrage et d'arrt." +msgid "VDRAdmin-AM version:" +msgstr "Version de VDRAdmin-AM :" -msgid "off" -msgstr "off" +msgid "VDR version:" +msgstr "Version de VDR :" -msgid "Do not monitor this timer." -msgstr "Ne surveille pas cette programmation." +msgid "Supported features in VDR:" +msgstr "Options supportes par VDR :" -msgid "Channel:" -msgstr "Chane :" +msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgstr "Plugin de Recherche dans les donnes EPG (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch</a>)" -msgid "The channel to record." -msgstr "La chane enregistrer." +msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgstr "Plugin de Streaming Live (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev</a>)" -msgid "Day Of Recording:" -msgstr "Jour d'Enregistrement :" +msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgstr "Renommer les Enregistrements (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Patch Liemikuutio</a>)" -msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." -msgstr "Le jour o la programmation doit tre active. Vous pouvez entrer le jour selon 2 formats : <ul><li>2 chiffres (JJ). Cela utilisera le mois et l'anne courante.</li><li> ou la norme ISO (AAAA-MM-JJ). Vous pouvez programmer des programmations aussi loin dans le futur que vous le dsirez.</li></ul>Dans le cas o vous voulez programmer une programmation rptitive, vous pouvez utiliser les 7 cases cocher en dessous du champ texte. Cochez les cases des jours pour lesquels vous dsirez que la programmation soit active." +msgid "Getting Help and Reporting Bugs" +msgstr "Avoir de l'Aide et Rapporter les Bugs" -msgid "Start Time:" -msgstr "Heure De Dbut :" +msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." +msgstr "Si vous avez besoin d'aide, merci de regarder en priorit sur l'aide en ligne. Ici <img src=\"bilder/help.png\" alt=\"\" />." -msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Ceci est l'heure de dmarrage de la programmation. Le premier champ texte est pour \"heure\", le second pour \"minute\"." +msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" +msgstr "Si vous ne trouvez pas l'information recherche, vous pouvez essayer d'obtenir de l'aide sur <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> si vous comprenez l'allemand. Merci d'utiliser le topic de l'annonce si possible, recherchez : " -msgid "End Time:" -msgstr "Heure De Fin :" +msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." +msgstr "Si vous croyez avoir trouv un bug, merci de vrifier si c'est un bug non identifi dans <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">L'Outil de Gestion des Bugs VDRAdmin-AM</a>." -msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Ceci est l'heure de fin de la programmation. Le premier champ texte est pour \"heure\", le second pour \"minute\"." +msgid "AutoTimer" +msgstr "Auto-Programmation" msgid "Priority:" msgstr "Priorit :" -msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." -msgstr "Un entier dans l'intervalle <strong>0...99</strong>, dfinissant la <strong>priorit</strong> de cette programmation et de l'enregitrement cr par cette programmation. <strong>0</strong> reprsente la valeur la plus faible, <strong>99</strong> la plus haute. La priorit est utilise pour dcider quelle programmation devrait tre dmarre dans le cas o deux ou plus de programmation possdent la mme heure <strong>dbut</strong>. La premire programmation dans la liste avec la priorit la plus haute sera utilise.<br /><br />Cette valeur est aussi stocke avec l'enregistrement, et est utilise plus tard pour dcider quel enregistrement doit tre supprim du disque pour librer de la place pour un nouvel enregistrement. Si le disque est plein et qu'un nouvel enregistrement ncessite plus de place, un enregistrement avec la plus faible priorit (et dont <strong>dure de vie</strong> garantie sera dpasse) sera enlev.<br /><br />Si toutes les cartes DVB disponibles sont actuellement occups, une programmation avec une priorit plus leve interrompra la programmation avec la priorit la plus faible pour dmarrer l'enregistrement." - msgid "Lifetime:" msgstr "Chronologie :" -msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." -msgstr "La dure de vie <strong>garantie</strong> (en jours) d'un enregistrement cr pas cette programmation. <strong>0</strong> signifie que cet enregistrement peut tre automatiquement supprim n'importe quelle moment par un enregistrement avec une priorit plus haute. <strong>99</strong> signifie que cet enregistrement ne sera jamais automatiquement supprim. Tout nombre dans l'interval <strong>1...98</strong> signifie que cet enregistrement ne peut tre automatiquement supprim en faveur d'un nouvel enregistrement, jusqu' ce que le nombre de jour donn depuis la date de <strong>dmarrage</strong> de l'enregistrement soit dpass." - -msgid "Title of Recording:" -msgstr "Titre de l'Enregistrement :" - -msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." -msgstr "Le <strong>nom de fichier</strong> que cette programmation va donner un enregistrement. Si ce nom devait contenir des sous-rpertoires, ceux-ci devraient tre dlimits par '~' (le caractre '/' peut faire partie du nom d'un programme).<br /><br /> Si les mots cl <strong> TITLE </strong> et/ou <strong> EPISODE</strong> sont prsents, ils seront remplacs par le titre et l'information sur l'pisode contenue dans les donnes EPG prsentes au moment du lancement de l'enregistrement (si ces donnes existent). Si au moment de l'enregistrement ces variables ne peuvent tre dfinies, <strong> TITLE </strong> sera remplac par le nom de la chane, et <strong> EPISODE </strong> sera vide." - -msgid "Summary:" -msgstr "Rsum :" - -msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." -msgstr "Texte arbitraire qui dcrit l'enregistrement fait par cette programmation. Si ce champ n'est pas vide, son contenu sera crit dans le fichier <span class=\"ref_file\">summary.vdr</span> ou <span class=\"ref_file\">info.vdr</span>, le fichier de l'enregistrement." - -msgid "Go!" -msgstr "Ok !" - -msgid "AutoTimer" -msgstr "Auto-Programmation" - msgid "New AutoTimer" msgstr "Nouvelle Auto-Programmation" +msgid "Help" +msgstr "Aide" + msgid "Active" msgstr "Actif" +msgid "Channel" +msgstr "Chane" + msgid "Start" msgstr "Dbut" @@ -209,6 +140,9 @@ msgstr "Oui" msgid "No" msgstr "Non" +msgid "Edit" +msgstr "Editer" + msgid "Delete timer?" msgstr "Supprimer Programmation ?" @@ -227,33 +161,6 @@ msgstr "Supprimer Programmations Slectionnes ?" msgid "No AutoTimers defined!" msgstr "Aucune Auto-Programmation dfinie !" -msgid "VDR Commands" -msgstr "Commandes VDR" - -msgid "Export channels as playlist:" -msgstr "Exporter les chanes en tant que playlist :" - -msgid "Number of lines to show:" -msgstr "Nombre de lignes montrer :" - -msgid "unlimited" -msgstr "illimit" - -msgid "SVDRP commands:" -msgstr "Commandes SVDRP :" - -msgid "Run" -msgstr "Excuter" - -msgid "Really run this command?" -msgstr "Voulez-vous rellement excuter cette commande ?" - -msgid "Commands defined in commands.conf:" -msgstr "Commandes dfinies dans commands.conf :" - -msgid "Output" -msgstr "Sortie" - msgid "Add New AutoTimer" msgstr "Ajouter Nouvelle Auto-Programmation" @@ -272,6 +179,15 @@ msgstr "Rechercher Modles :" msgid "Search in:" msgstr "Rechercher dans :" +msgid "Title" +msgstr "une fois" + +msgid "Subtitle" +msgstr "Sous-titre" + +msgid "Description" +msgstr "Description" + msgid "Search only on these days:" msgstr "Rechercher uniquement sur ces jours :" @@ -296,12 +212,18 @@ msgstr "Samedi" msgid "Sunday" msgstr "Dimanche" +msgid "Channel:" +msgstr "Chane :" + msgid "all" msgstr "tout" msgid "Starts After:" msgstr "Dbut de recherche :" +msgid "o'clock" +msgstr "Heure" + msgid "Ends Before:" msgstr "Fin de recherche :" @@ -326,9 +248,15 @@ msgstr "Se souvenir des programmations :" msgid "Directory:" msgstr "Chemin :" +msgid "Save" +msgstr "Enregistrer" + msgid "Test" msgstr "Test" +msgid "Cancel" +msgstr "Annuler" + msgid "Broadcasted" msgstr "Diffus" @@ -338,140 +266,260 @@ msgstr "Stocks dans" msgid "No matches found!" msgstr "Aucune correspondance trouve !" -msgid "About" -msgstr "A propos" +msgid "Configuration" +msgstr "Configuration" -msgid "License" +msgid "General Settings" +msgstr "Paramtres Gnraux" + +msgid "Template:" +msgstr "Gabarit :" + +msgid "Skin:" +msgstr "Thme :" + +msgid "Login Page:" +msgstr "Page de Dmarrage :" + +msgid "Number of channels to use:" +msgstr "Nombre de chanes utiliser :" + +msgid "Local net (no login required):" +msgstr "Rseau local (login non ncessaire) :" + +msgid "Language:" +msgstr "Langue :" + +msgid "Save settings on exit:" +msgstr "Enregistrer les paramtres en quittant :" + +msgid "VDR" +msgstr "VDR" + +msgid "Number of DVB cards:" +msgstr "Nbre de Cartes DVB :" + +msgid "Path to recordings:" +msgstr "Chemin des Enregistrements VDR :" + +msgid "Path to configuration files:" +msgstr "Chemin vers les fichiers de configuration :" + +msgid "Path to EPG images:" +msgstr "Chemin vers les images EPG :" + +msgid "Identification" +msgstr "Identification" + +msgid "Username:" +msgstr "Identifiant :" + +msgid "Password:" +msgstr "Mot de Passe :" + +msgid "Guest Account:" +msgstr "Compte d'Invit :" + +msgid "Guest Username:" +msgstr "Identifiant Invit :" + +msgid "Guest Password:" +msgstr "Mot de Passe Invit :" + +msgid "Timeline" +msgstr "Chronologie" + +msgid "Hours:" +msgstr "Heures :" + +msgid "Times:" +msgstr "Priodes :" + +msgid "Also used for other EPG views!" +msgstr "Aussi utilis pour d'autres vues EPG !" + +msgid "Tooltips:" +msgstr "Bulles d'aide :" + +msgid "Active:" +msgstr "Active :" + +msgid "Send email after programming timer:" +msgstr "Envoyer email aprs cration programmation :" + +msgid "Send email as:" +msgstr "Envoyer mail en tant que :" + +msgid "Send email to:" +msgstr "Envoyer mail :" + +msgid "Mail server:" +msgstr "Serveur smtp :" + +msgid "SMTPAuth user:" +msgstr "Identifiant smtp :" + +msgid "SMTPAuth password:" +msgstr "Mot de Passe smtp :" + +msgid "Track schedule changes by:" msgstr "" -msgid "Authors" -msgstr "Auteurs" +msgid "Broadcast time" +msgstr "" -msgid "Current author (VDRAdmin-AM branch):" -msgstr "Auteur Actuel (Branche VDRAdmin-AM) :" +msgid "Event id" +msgstr "" -msgid "Original author (VDRAdmin):" -msgstr "Auteur du programme (VDRAdmin) :" +msgid "Timer" +msgstr "Programmation" -msgid "Translation Team" -msgstr "quipe de Traduction" +msgid "Tooltips in timeline:" +msgstr "Bulles d'aide dans la chronologie :" -msgid "English:" -msgstr "Anglais :" +msgid "Tooltips in list:" +msgstr "Bulles d'aide dans la liste :" -msgid "German:" -msgstr "Allemand :" +msgid "Streaming" +msgstr "Emission de Flux" -msgid "French:" -msgstr "Franais" +msgid "Live Streaming:" +msgstr "Emission de Flux en direct :" -msgid "At the moment unmaintained, former translations by:" -msgstr "Pour le moment non maintenu, prcdente traductions par :" +msgid "HTTP Port of Streamdev (also possible 3000/ts):" +msgstr "Port HTTP Streamdev (aussi possible 3000/ts) :" -msgid "Spanish:" -msgstr "Espagnol :" +msgid "Recordings Streaming:" +msgstr "Emission d'Enregistrements" -msgid "Finnish:" -msgstr "Finlandais :" +msgid "Path to VDR Recordings on your workstation:" +msgstr "Chemin vers les Enregistrements VDR sur votre poste de travail :" -msgid "Dutch:" -msgstr "Hollandais :" +msgid "MIME type for live streaming:" +msgstr "Type MIME pour l'Emission de flux en direct :" -msgid "Russian:" -msgstr "Russe" +msgid "Suffix for live streaming:" +msgstr "Suffixe pour les flux en direct :" -msgid "Czech:" -msgstr "Tchque :" +msgid "MIME type for recordings streaming:" +msgstr "Type MIME pour l'Emission d'Enregistrements :" -msgid "Italian:" -msgstr "Italien :" +msgid "Suffix for recordings streaming:" +msgstr "Suffixe pour les flux d'Enregistrements :" -msgid "Information" -msgstr "Information" +msgid "Bandwidth of Streams:" +msgstr "Bande Passante Flux :" -msgid "VDRAdmin-AM version:" -msgstr "Version de VDRAdmin-AM :" +msgid "External Search" +msgstr "Recherche Extenre" -msgid "VDR version:" -msgstr "Version de VDR :" +msgid "URL:" +msgstr "URL :" -msgid "Supported features in VDR:" -msgstr "Options supportes par VDR :" +msgid "Title:" +msgstr "Titre :" -msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgstr "Plugin de Recherche dans les donnes EPG (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch</a>)" +msgid "User-defined search:" +msgstr "Recherches dfinies par l'utilisateur :" -msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgstr "Plugin de Streaming Live (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev</a>)" +msgid "Expert" +msgstr "Expert" -msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgstr "Renommer les Enregistrements (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Patch Liemikuutio</a>)" +msgid "Update EPG data in background:" +msgstr "Mettre jour les donnes EPG en tche de fond :" -msgid "Getting Help and Reporting Bugs" -msgstr "Avoir de l'Aide et Rapporter les Bugs" +msgid "Update EPG every:" +msgstr "Mettre jour les donnes EPG toutes les :" -msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." -msgstr "Si vous avez besoin d'aide, merci de regarder en priorit sur l'aide en ligne. Ici <img src=\"bilder/help.png\" alt=\"\" />." +msgid "Channel Selections" +msgstr "Slections Chanes" -msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" -msgstr "Si vous ne trouvez pas l'information recherche, vous pouvez essayer d'obtenir de l'aide sur <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> si vous comprenez l'allemand. Merci d'utiliser le topic de l'annonce si possible, recherchez : " +msgid "Show channels without EPG information:" +msgstr "Voir les chanes sans les informations EPG :" -msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." -msgstr "Si vous croyez avoir trouv un bug, merci de vrifier si c'est un bug non identifi dans <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">L'Outil de Gestion des Bugs VDRAdmin-AM</a>." +msgid "In \"AutoTimer\"?" +msgstr "Dans \"Auto-Programmations\" ?" -msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" -msgstr "<p>Ici vous pouvez diter les paramtres d'une programmation automatique (AutoTimer). </p><p>Les Programmations Automatiques sont une fonction cl de VDRAdmin-AM. Une Programmation Automatique consiste en un ou plusieurs motifs et d'autres paramtres, qui sont recherchs dans l'Electronic Program Guide (EPG). Quand ces motifs sont trouvs, une Programmation Automatique est ajout VDR automatiquement pour cette diffusion. Cette fonctionnalit est trs confortable pour enregistrer des sries diffuses irrgulirement ou des films que vous ne voulez par manquer.</p>" +msgid "Apply" +msgstr "Appliquer" -msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." -msgstr "Activer ou dsactiver cette Auto-Programmation. Les Auto-Programmations dsactives sont toujours stockes dans la liste des Auto-programmation, aussi elles peuvent tre actives tout moment, mais cependant elles n'enregistre rien. Au dessus vous pouvez rgler ceci \"Une Fois\", donc cette Auto-Programmation programme seulement la prochaine (et unique!) occurrence de la diffusion." +#, fuzzy +msgid "EPG Search Blacklists" +msgstr "Utiliser des \"listes noires\" :" -msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Only broadcasts will match if they contain <strong>all</strong> items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as Blacklist-string) or only one episode (when using \"Enterprise~Azati Prime\" as Blacklist-string)." -msgstr "Choisir les bons critres de recherches dcidera soit que seules les diffusions recherchs ou les diffusions ayant un nom similaires voire mme rien ne sera enregistr.<br />La Casse n'est pas importante, \"X-Files\" concorde avec tout ce que \"x-files\" fera concorder. Vous pouvez rgler de multiples critres de recherche en les sparants par des espaces. Les diffusions concorderont seulement si elles contiennent <strong>tous</strong> les critres.<br />Utiliser de prfrence uniquement des chiffres et des lettres, car l'EPG omet souvent les virgules, parenthses, et autres caractres.<br />Les experts peuvent aussi utiliser les expressions rgulires, mais vous devrez tudier les sources de VDRAdmin-AM (fonctionnalit non documente).<br /><br />Vous pouvez exclure des diffusions et donc elle ne seront pas enregistr mme si elle concordent avec une Auto-Programmation. Nanmoins vous devez entrer ses titres dans le fichier <i>vdradmind.bl</i>, un vnement par ligne. Ce fichier doit tre situ dans votre rpertoire de configuration de VDRAdmin-AM. Si cette chane de caractres est trouv soit dans <u>titre</u> ou dans <u>titre~soustitre</u>de l'EPG, cet venement ne sera pas programm. Donc sous pouvez dsactiv des pisodes complets (par exemple en utilisant \"Enterprise\" comme chane de caractre) ou seulement un pisode (en utilisant \"Enterprise~Azati Prime\" comme chane de caractres)." +#, fuzzy +msgid "New Blacklist" +msgstr "Utiliser des \"listes noires\" :" -msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." -msgstr "Ici, vous pouvez dfinir les sections du guide lectronique des programmes o VDRAdmin-AM recherchera le motif de recherche." +msgid "Search pattern" +msgstr "Rechercher un motif" -msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." -msgstr "Utilisez ces cases cocher pour limiter la recherche de diffusions concordantes un jeu de jours." +msgid "From" +msgstr "De" -msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." -msgstr "La chane rechercher pour des diffusion concordantes ou \"toutes\" pour rechercher dans toutes les chanes connues ou dsires. Vous pouvez dfinir les chanes dsires pour l'Auto-programmation dans \"Configuration\"." +msgid "To" +msgstr "A" -msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Une diffusion doit dmarrer aprs l'horaire entre pour tre concordante. Le premier champ est pour \"heure\", le second pour \"minute\"." +#, fuzzy +msgid "Delete blacklist?" +msgstr "Utiliser des \"listes noires\" :" -msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Une diffusion doit s'arrter avant l'horaire entre pour tre concordante. Le premier champ est pour \"heure\", le second pour \"minute\"." +#, fuzzy +msgid "Delete Selected Blacklists" +msgstr "Supprimer Recherches Slectionnes" -msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." -msgstr "Slectionnez cette option \"oui\" si toutes les programmations programmes par cette Auto-Programmation devraient avoir des marges de dbut/fin individuelles et entrez les valeurs dans les deux prochains champs." +#, fuzzy +msgid "Delete all selected blacklists?" +msgstr "Supprimer toutes les Recherches Slectionnes ?" -msgid "The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG." -msgstr "Le nombre de minutes que VDRAdmin-AM soustrait aux heures de dbut trouves dans les donnes EPG." +msgid "EPG search" +msgstr "recherche EPG" -msgid "The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG." -msgstr "Le nombre de minutes que VDRAdmin-AM ajoute aux heures de fin trouves dans les donnes EPG." +msgid "EPG Search" +msgstr "Recherche EPG" -msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." -msgstr "Cochez cette case si vous voulez que VDRAdmin-AM ajoute le sous-titre EPG de la diffusion au nom du fichier de l'enregistrement." +msgid "Use template" +msgstr "Utiliser un modle" -msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." -msgstr "Si vous activez ceci, VDRAdmin-AM suivra les programmations qu'il aura automatiquement cres. Ceci est utile si vous voulez dsactiver ou supprimer les programmations automatiquement cres dans la liste des programmations." +msgid "New Search" +msgstr "Nouvelle Recherche" -msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." -msgstr "Le rpertoire o cette Programmation Automatique va placer les enregistrements. Si le nom devait contenir des sous rpertoires, ceux-ci devraient tre dlimits par le caractre '~' (le caractre '/' peut faire partie du nom d'un excutable).<br />VDRAdmin-AM ajoutera le titre et le sous-titre (si la case \"Episode\" est coche) du programme diffus ce nom.<br /><br />Vous pouvez aussi utiliser d'autres noms cl qui sont remplacs par les valeurs fournies par exemple par <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - deviendra le titre de l'vnement.</li><li>%Subtitle% - deviendra le sous-titre de l'vnement.</li><li>%Director% - deviendra le metteur en scne de l'vnement.</li><li>%Date% - deviendra la date de l'enregistrement.</li><li>%Category% - deviendra la catgorie de l'vnement (Film/Srie/...).</li><li>%Genre% - deviendra le genre de l'vnement (Drame/Tragdie/..).</li><li>%Year% - deviendra l'anne de production.</li><li>%Country% - deviendra le pays de production.</li><li>%Originaltitle% - deviendra le titre original de l'vnement.</li><li>%FSK% - deviendra le FSK (??) de l'vnement.</li><li>%Episode% - deviendra le titre de l'pisode de l'vnement.</li><li>%Rating% - deviendra la note de l'vnement donne par le fournisseur de l'EPG.</li></ul><h4>Remarque : </h4>Si vous utilisez les noms cl ci-dessus, il est de votre responsabilit de fournir le <strong>nom complet du fichier </strong> de l'enregistrement ! VDRAdmin-AM n'ajoutera rien la chane de caractres obtenue." +#, fuzzy +msgid "Edit Template" +msgstr "Gabarit :" -msgid "Timer" -msgstr "Programmation" +msgid "Settings" +msgstr "Paramtres" -msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" -msgstr "<p>Ici vous trouverez une liste des programmations connues par VDR.</p><p> En haut vous trouverez un graphique montrant les programmations au jour le jour. Cela permet d'apprhender rapidement ce qu'il se passe sur une journe et vous aide dcouvrir les programmations conflictuelles. Survoler avec la souris une programmation permet d'afficher une bulle d'aide contenant le titre, la priorit, la dure de vie, la dure de celle-ci.</p><p> En dessous du graphe, vous trouverez une liste des programmations montrant quelques informations sur les programmations. Vous pouvez changer l'ordre d'affichage en cliquant sur les descriptions des colonnes.</p><p> Pour chaque enregistrement, vous avez les options suivantes : <dl><dt> Changer son tat </dt><dd> En cliquant sur \"Oui\", \"Non\", \"VPS\" or \"Auto\" dans la colonne \"Activ\" .</dd><dt> Voir rapidement sa priorit et sa dure de vie</dt><dd> En survolant de la souris le titre de la programmation.</dd><dt> Voir ses donnes EPG </dt><dd> Les programmations qui ont le paramtre <span class=\"ref_label\"> Vrification de l'auto-programmation</span> \"Identification de Transmission\" montreront les donnes EPG si vous cliquez sur le titre de la programmation.</dd><dt> Editer la programmation</dt><dd>Vous pouvez diter la programmation en cliquant sur <img src=\"bilder/edit.png\" alt=\"diter\" />.</dd><dt> Supprimer une programmation </dt><dd> Pour supprimer une programmation vous devez cliquer sur <img src=\"bilder/delete.png\" alt=\"supprimer\" />.</dd></dl></p><p> Les tats de programmation sont indiqus par des cases de couleurs diffrentes (dans le vue avec graphique) ou des images (dans la vue par liste) : <br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> La programmation est OK et enregistrera.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> La programmation est conflictuelle avec une autre programmation. Cela n'est pas critique, tant que vous avez assez de cartes DVB que d'enregistrements.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> La programmation est critique et a beaucoup de chances de ne <strong>pas</strong> enregistrer.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> La programmation n'est pas active.</p><p> En plus de ces fonctions vous pouvez ajouter une nouvelle programmation en cliquant sur <input type=\"submit\" class=\"submit\" value=\"Nouvelle Programmation\"/> en haut et vous pouvez supprimer plusieurs programmations en cochant plusieurs programmations dans la dernire coloone de ces programmations et en cliquant sur <input type=\"submit\" class=\"submit\" value=\"Supprimer les Programmations Slectionnes\"/>.</p><p> Vous pouvez <input type=\"submit\" class=\"submit\" value=\"activer\"/> et <input type=\"submit\" class=\"submit\" value=\"dsactiver\"/> les programmations slectionnes.</p>" +msgid "Action" +msgstr "Action" -msgid "Playing Today" -msgstr "Jou Aujourd'hui" +msgid "Find" +msgstr "Rechercher" -msgid "starting at" -msgstr "Commence " +msgid "Show Favorites" +msgstr "Montrer les Favoris" + +msgid "Delete Selected Searches" +msgstr "Supprimer Recherches Slectionnes" + +msgid "Delete all selected searches?" +msgstr "Supprimer toutes les Recherches Slectionnes ?" + +msgid "Execute Selected Searches" +msgstr "Executer les Recherches Slectionnes" + +msgid "Duration" +msgstr "Dure" + +msgid "More Information" +msgstr "Plus d'Informations" + +msgid "Channels" +msgstr "Chanes" + +msgid "Record" +msgstr "Enregistrer" #, fuzzy msgid "Add New Blacklist" @@ -485,10 +533,6 @@ msgstr "Utiliser des \"listes noires\" :" msgid "Add New Template" msgstr "Ajouter Nouvelle Auto-Programmation" -#, fuzzy -msgid "Edit Template" -msgstr "Gabarit :" - msgid "Add New Search" msgstr "Ajouter une Nouvelle Recherche" @@ -504,9 +548,6 @@ msgstr "Vous n'avez ni slectionn\\ntitre, ni sous-titre, ni description.\\nVou msgid "Hide results" msgstr "Cacher les rsultats" -msgid "Settings" -msgstr "Paramtres" - #, fuzzy msgid "Name:" msgstr "Nom" @@ -695,264 +736,147 @@ msgstr "Supprimer Programmation ?" msgid "Save as template" msgstr "Enregistrer en tant que modle" -msgid "Create New Timer" -msgstr "Crer Nouvelle Programmation" - -msgid "Buffer:" -msgstr "Tampon :" - -msgid "Use VPS:" -msgstr "Utiliser VPS :" - -msgid "readonly" -msgstr "lecture seule" - -msgid "Timer has been set by AutoTimer pattern:" -msgstr "La programmation a t auto-programme avec le modle :" - -msgid "No Help Available" -msgstr "Pas d'aide disponible" - -msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgstr "<p>Aucune aide n'est disponible. Pour ajouter ou changer du texte contactez <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org.</a>.</p>" +msgid "Run" +msgstr "Excuter" msgid "Error!" msgstr "Erreur !" -msgid "TV" -msgstr "TV" +msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" +msgstr "<p>Ici vous trouverez une liste des programmations automatiques (ou AutoTimer) connues de VDRAdmin-AM.</p><p>Cette liste montre des informations sur ces Programmations Automatiques. Vous pouvez changer l'ordre de cette liste en cliquant les descriptions des colonnes.</p><p>Pour chaque Programmation Automatique vous avez les options suivantes :<dl><dt> Changer son tat</dt><dd> En cliquant sur \"Oui\" ou \"Non\" dans la colonne \"Activ\".</dd><dt> Voir rapidement sa priorit et sa dure de vie</dt><dd>En survolant de la sourie le titre de la Programmation Automatique.</dd><dt>Editer la Programmation Automatique</dt><dd> Vous pouvez diter une Programmation Automatique en cliquant sur<img src=\"bilder/edit.png\" alt=\"editer\" />.</dd><dt> Supprimer une Programmation Automatique </dt><dd> Pour supprimer une Programmation Automatique vous devez cliquer sur <img src=\"bilder/delete.png\" alt=\"supprimer\" />.</dd></dl></p><p> Les tats de toutes les Programmations Automatiques sont indiqus par des images de couleurs diffrentes : <br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> La Programmation Automatique est OK and se programmera automatiquement.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> La Programmation Automatique n'est pas active.</p><p> En plus de ces fonctions vous pouvez ajouter une nouvelle Programmation Automatique en cliquant sur <input type=\"submit\" class=\"submit\" value=\"Nouvelle Programmation Automatique\"/> en haut et vous pouvez supprimer plusieurs Programmations Automatiques en cochant les case dans la dernire colonne de celles-ci et en cliquant sur <input type=\"submit\" class=\"submit\" value=\"Supprimer les Programmations Automatiques Slectionnes\"/>.</p><p> Cliquez <input type=\"submit\" class=\"submit\" value=\"Forcer la Mise Jour\"/> pour forcer VDRAdmin-AM se reconnecter VDR, rcuprer les donnes EPG courantes et vrifier and les modles de Programmations Automatiques.</p>" -msgid "Interval:" -msgstr "Intervalle :" +msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgstr "<p>Ici vous pouvez diter les paramtres d'une programmation automatique (AutoTimer). </p><p>Les Programmations Automatiques sont une fonction cl de VDRAdmin-AM. Une Programmation Automatique consiste en un ou plusieurs motifs et d'autres paramtres, qui sont recherchs dans l'Electronic Program Guide (EPG). Quand ces motifs sont trouvs, une Programmation Automatique est ajout VDR automatiquement pour cette diffusion. Cette fonctionnalit est trs confortable pour enregistrer des sries diffuses irrgulirement ou des films que vous ne voulez par manquer.</p>" -msgid "sec." -msgstr "sec." +msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." +msgstr "Activer ou dsactiver cette Auto-Programmation. Les Auto-Programmations dsactives sont toujours stockes dans la liste des Auto-programmation, aussi elles peuvent tre actives tout moment, mais cependant elles n'enregistre rien. Au dessus vous pouvez rgler ceci \"Une Fois\", donc cette Auto-Programmation programme seulement la prochaine (et unique!) occurrence de la diffusion." -msgid "G" -msgstr "R" +msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Broadcasts will match only if they match <strong>all</strong> configured search items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as blacklist string) or only one episode (when using \"Enterprise~Azati Prime\" as blacklist string)." +msgstr "Choisir les bons critres de recherches dcidera soit que seules les diffusions recherchs ou les diffusions ayant un nom similaires voire mme rien ne sera enregistr.<br />La Casse n'est pas importante, \"X-Files\" concorde avec tout ce que \"x-files\" fera concorder. Vous pouvez rgler de multiples critres de recherche en les sparants par des espaces. Les diffusions concorderont seulement si elles contiennent <strong>tous</strong> les critres.<br />Utiliser de prfrence uniquement des chiffres et des lettres, car l'EPG omet souvent les virgules, parenthses, et autres caractres.<br />Les experts peuvent aussi utiliser les expressions rgulires, mais vous devrez tudier les sources de VDRAdmin-AM (fonctionnalit non documente).<br /><br />Vous pouvez exclure des diffusions et donc elle ne seront pas enregistr mme si elle concordent avec une Auto-Programmation. Nanmoins vous devez entrer ses titres dans le fichier <i>vdradmind.bl</i>, un vnement par ligne. Ce fichier doit tre situ dans votre rpertoire de configuration de VDRAdmin-AM. Si cette chane de caractres est trouv soit dans <u>titre</u> ou dans <u>titre~soustitre</u>de l'EPG, cet venement ne sera pas programm. Donc sous pouvez dsactiv des pisodes complets (par exemple en utilisant \"Enterprise\" comme chane de caractre) ou seulement un pisode (en utilisant \"Enterprise~Azati Prime\" comme chane de caractres)." -msgid "Grab the picture!" -msgstr "Rafrachir!" +msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." +msgstr "Ici, vous pouvez dfinir les sections du guide lectronique des programmes o VDRAdmin-AM recherchera le motif de recherche." -msgid "Size:" -msgstr "Taille :" +msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." +msgstr "Utilisez ces cases cocher pour limiter la recherche de diffusions concordantes un jeu de jours." -msgid "Open in separate window" -msgstr "Ouvrir dans une nouvelle fentre" +msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." +msgstr "La chane rechercher pour des diffusion concordantes ou \"toutes\" pour rechercher dans toutes les chanes connues ou dsires. Vous pouvez dfinir les chanes dsires pour l'Auto-programmation dans \"Configuration\"." -msgid "Playing Today?" -msgstr "Aujourd'hui ?" +msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Une diffusion doit dmarrer aprs l'horaire entre pour tre concordante. Le premier champ est pour \"heure\", le second pour \"minute\"." -msgid "Timeline" -msgstr "Chronologie" +msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Une diffusion doit s'arrter avant l'horaire entre pour tre concordante. Le premier champ est pour \"heure\", le second pour \"minute\"." -msgid "EPG Search" -msgstr "Recherche EPG" +msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." +msgstr "Slectionnez cette option \"oui\" si toutes les programmations programmes par cette Auto-Programmation devraient avoir des marges de dbut/fin individuelles et entrez les valeurs dans les deux prochains champs." -msgid "Recordings" -msgstr "Enregistrements" +msgid "The number of minutes VDRAdmin-AM subtracts from the broadcast's start time found in the EPG." +msgstr "Le nombre de minutes que VDRAdmin-AM soustrait aux heures de dbut trouves dans les donnes EPG." -msgid "Remote Control" -msgstr "Tlcommande" +msgid "The number of minutes VDRAdmin-AM adds to the broadcast's stop time found in the EPG." +msgstr "Le nombre de minutes que VDRAdmin-AM ajoute aux heures de fin trouves dans les donnes EPG." -msgid "Watch TV" -msgstr "Regarder TV" +msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." +msgstr "Un entier dans l'intervalle <strong>0...99</strong>, dfinissant la <strong>priorit</strong> de cette programmation et de l'enregitrement cr par cette programmation. <strong>0</strong> reprsente la valeur la plus faible, <strong>99</strong> la plus haute. La priorit est utilise pour dcider quelle programmation devrait tre dmarre dans le cas o deux ou plus de programmation possdent la mme heure <strong>dbut</strong>. La premire programmation dans la liste avec la priorit la plus haute sera utilise.<br /><br />Cette valeur est aussi stocke avec l'enregistrement, et est utilise plus tard pour dcider quel enregistrement doit tre supprim du disque pour librer de la place pour un nouvel enregistrement. Si le disque est plein et qu'un nouvel enregistrement ncessite plus de place, un enregistrement avec la plus faible priorit (et dont <strong>dure de vie</strong> garantie sera dpasse) sera enlev.<br /><br />Si toutes les cartes DVB disponibles sont actuellement occups, une programmation avec une priorit plus leve interrompra la programmation avec la priorit la plus faible pour dmarrer l'enregistrement." -msgid "Commands" -msgstr "Commandes" +msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." +msgstr "La dure de vie <strong>garantie</strong> (en jours) d'un enregistrement cr pas cette programmation. <strong>0</strong> signifie que cet enregistrement peut tre automatiquement supprim n'importe quelle moment par un enregistrement avec une priorit plus haute. <strong>99</strong> signifie que cet enregistrement ne sera jamais automatiquement supprim. Tout nombre dans l'interval <strong>1...98</strong> signifie que cet enregistrement ne peut tre automatiquement supprim en faveur d'un nouvel enregistrement, jusqu' ce que le nombre de jour donn depuis la date de <strong>dmarrage</strong> de l'enregistrement soit dpass." -msgid "Configuration" -msgstr "Configuration" +msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." +msgstr "Cochez cette case si vous voulez que VDRAdmin-AM ajoute le sous-titre EPG de la diffusion au nom du fichier de l'enregistrement." -msgid "Search" -msgstr "Rechercher" +msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." +msgstr "Si vous activez ceci, VDRAdmin-AM suivra les programmations qu'il aura automatiquement cres. Ceci est utile si vous voulez dsactiver ou supprimer les programmations automatiquement cres dans la liste des programmations." + +msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." +msgstr "Le rpertoire o cette Programmation Automatique va placer les enregistrements. Si le nom devait contenir des sous rpertoires, ceux-ci devraient tre dlimits par le caractre '~' (le caractre '/' peut faire partie du nom d'un excutable).<br />VDRAdmin-AM ajoutera le titre et le sous-titre (si la case \"Episode\" est coche) du programme diffus ce nom.<br /><br />Vous pouvez aussi utiliser d'autres noms cl qui sont remplacs par les valeurs fournies par exemple par <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - deviendra le titre de l'vnement.</li><li>%Subtitle% - deviendra le sous-titre de l'vnement.</li><li>%Director% - deviendra le metteur en scne de l'vnement.</li><li>%Date% - deviendra la date de l'enregistrement.</li><li>%Category% - deviendra la catgorie de l'vnement (Film/Srie/...).</li><li>%Genre% - deviendra le genre de l'vnement (Drame/Tragdie/..).</li><li>%Year% - deviendra l'anne de production.</li><li>%Country% - deviendra le pays de production.</li><li>%Originaltitle% - deviendra le titre original de l'vnement.</li><li>%FSK% - deviendra le FSK (??) de l'vnement.</li><li>%Episode% - deviendra le titre de l'pisode de l'vnement.</li><li>%Rating% - deviendra la note de l'vnement donne par le fournisseur de l'EPG.</li></ul><h4>Remarque : </h4>Si vous utilisez les noms cl ci-dessus, il est de votre responsabilit de fournir le <strong>nom complet du fichier </strong> de l'enregistrement ! VDRAdmin-AM n'ajoutera rien la chane de caractres obtenue." msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" msgstr "<p>Vous pouvez changer ici les rglages gnraux et de base pour les programmations, les Auto-Programmations, la slection des chanes et les paramtrages de diffusion.</p>" -msgid "General Settings" -msgstr "Paramtres Gnraux" - -msgid "VDR" -msgstr "VDR" - -msgid "Identification" -msgstr "Identification" - -msgid "Streaming" -msgstr "Emission de Flux" - -msgid "Expert" -msgstr "Expert" - -msgid "External Search" -msgstr "Recherche Extenre" - -msgid "Channel Selections" -msgstr "Slections Chanes" - -msgid "Skin:" -msgstr "Thme :" - msgid "The skin you want to use." msgstr "Le thme que vous dsirez utiliser." -msgid "Login Page:" -msgstr "Page de Dmarrage :" - msgid "The page you want to see at first connect to VDRAdmin-AM." msgstr "La page que vous dsirez voir la premire connexion VDRAdmin-AM." -msgid "Number of channels to use:" -msgstr "Nombre de chanes utiliser :" - msgid "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." msgstr "VDRAdmin-AM va charger le prsent nombre de chanes de VDR et ne montrer que celles qui ont les champs qui peuvent tre slectionns. Cela limite aussi les Informations EPG. VDRAdmin-AM ne va lire que ce dont il a besoin, ce qui va rduire la consommation mmoire et augmenter la performance. <strong>0</strong> dsactive cette option et VDRAdmin-AM va utiliser toutes les chanes." -msgid "Local net (no login required):" -msgstr "Rseau local (login non ncessaire) :" - msgid "Here you can specify an IP address or range that can login without providing login information. For example: \"192.168.0.0/24\" will include any IP starting with \"192.168.0\", \"192.168.0.123/32\" will only match \"192.168.0.123\"." msgstr "Vous pouvez spcifier ici une adresse IP ou une plage pour laquelle aucune authentification ne sera demande. Par exemple : \"192.168.0.0/24\" inclura toute adresse commenant par \"192.168.0\", \"192.168.0.123/32\" inclura seulement \"192.168.0.123\"." -msgid "Language:" -msgstr "Langue :" - msgid "Here you can set the localization VDRAdmin-AM should use." msgstr "Ici vous pouvez dfinir la langue de VDRAdmin-AM." -msgid "Save settings on exit:" -msgstr "Enregistrer les paramtres en quittant :" - msgid "With this option the settings will be saved if VDRAdmin-AM exits. This will also save settings not available on the \"Configuration\" menu like interval and size in TV, sorting in the lists and current view in \"What's on now\"." msgstr "Avec cette option, les paramtres seront sauvegards si VDRAdmin-AM existe. Cela enregistrera aussi les paramtres non disponibles dans le menu \"Configuration\" comme l'intervalle et la taille sur la TV, tri des listes et la vue courante dans \"En ce Moment\"." msgid "Top" msgstr "Haut" -msgid "Number of DVB cards:" -msgstr "Nbre de Cartes DVB :" - msgid "The number of DVB cards VDR can access. Depending on this value VDRAdmin-AM will calculate critical timers in the <span class=\"ref_menu\">Timer</span> menu." msgstr "Le nombre de carte DVB auxquelles VDR peut accder. Suivant cette valeur VDRAdmin-AM calculera les programmations critiques an le menu <span class=\"ref_menu\">Programmation</span>." -msgid "Path to recordings:" -msgstr "Chemin des Enregistrements VDR :" - msgid "The path to VDR's recordings. It's used so that VDRAdmin-AM can locate the recordings when using <span class=\"ref_label\">Recordings Streaming</span> and <span class=\"ref_file\">reccmds.conf</span> in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Le Chemin vers les enregistrements de VDR. Ceci est utilis pour que VDR puisse situer les enregistrements lorsque l'on utilise <span class=\"ref_label\">Emission d'Enregistrements</span> et <span class=\"ref_file\">reccmds.conf</span> dans le menu <span class=\"ref_menu\">Enregistrements</span>." -msgid "Path to configuration files:" -msgstr "Chemin vers les fichiers de configuration :" - msgid "The path where VDR's configuration files are located. If this directory contains the file <span class=\"ref_file\">reccmds.conf</span> its content is shown in a selectbox in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Le chemin o la configuration de VDR se situe. Si ce rpertoire contient le fichier <span class=\"ref_file\">reccmds.conf</span> son contenu est affich dans une boite de slection dans le menu <span class=\"ref_menu\">Enregistrements</span>." -msgid "Path to EPG images:" -msgstr "Chemin vers les images EPG :" - msgid "The path where the EPG images are stored." msgstr "Le chemin dans lequel les images EPG sont stockes." -msgid "Username:" -msgstr "Identifiant :" - msgid "The username for the main user, i.e. the user having the most privileges." msgstr "Le nom d l'utilisateur principal, celui possdant le plus de privilges." -msgid "Password:" -msgstr "Mot de Passe :" - msgid "The main user's password." msgstr "Le mot de passe de l'utilisateur principal." -msgid "Guest Account:" -msgstr "Compte d'Invit :" - msgid "If you want a user account having only limited privileges, this is for you. The guest user cannot modify anything, it's only allowed to view the EPG, timers, AutoTimers and recordings listings." msgstr "Si vous voulez un compte utilisateur possdant seulement des droits limits, ceci est pour vous. L'utilisateur invit ne peut rien modifier. Il est seulement autoriser voir le guides lectronique des programmes, les programmations, les Auto-Programmations et la liste des enregistrements." -msgid "Guest Username:" -msgstr "Identifiant Invit :" - msgid "The username for the guest user." msgstr "Le nom de l'utilisateur invit." -msgid "Guest Password:" -msgstr "Mot de Passe Invit :" - msgid "The guest user's password." msgstr "Le mot de passe de l'invit." -msgid "Hours:" -msgstr "Heures :" - msgid "The number of hours to show in the timeline." msgstr "Le nombre d'heures afficher dans la chronologie." -msgid "Times:" -msgstr "Priodes :" - msgid "A comma separated list of times in <strong>hh:mm</strong> format that appear in the selectbox placed at the top." msgstr "Une liste d'horaires spars par des virgules au format <strong>hh:mm</strong> qui apparaissent dans la boites de slection place en haut." -msgid "Tooltips:" -msgstr "Bulles d'aide :" - msgid "Here you can (de-)activate the tooltips." msgstr "Ici vous (ds-)activer les bulles d'aide." -msgid "Active:" -msgstr "Active :" - msgid "Activate or deactivate the AutoTimer function." msgstr "Active ou dsactive la fonction d'Auto-Programmation." -msgid "Send email after programming timer:" -msgstr "Envoyer email aprs cration programmation :" - msgid "VDRAdmin-AM will send an email whenever an event matches an AutoTimer and a timer has been programmed if you enable this feature." msgstr "VDRAdmin-AM va envoyer un email chaque fois qu'un vnement va correspondre une auto-programmation et qu'une programmation a t programme si vous activez cette option." -msgid "Send email as:" -msgstr "Envoyer mail en tant que :" - msgid "Here you set the sending email address of the generated email." msgstr "Ici vous allez dfinir le nom de domaine de provenance de l'email gnr." -msgid "Send email to:" -msgstr "Envoyer mail :" - msgid "The email address the email is sent to." msgstr "L'adresse email de destination." -msgid "Mail server:" -msgstr "Serveur smtp :" - msgid "The outgoing mail server." msgstr "Le serveur smtp d'envoi des emails." -msgid "SMTPAuth user:" -msgstr "Identifiant smtp :" - msgid "If you need to authenticate yourself at the outgoing mail server, you have to supply the username and the password below. Leaving this field empty will disable SMTPAuth." msgstr "Si vous avez besoin de vous authentifier sur votre serveur smtp, vous devez fournir vos identifiants ci-dessous. Laissez ces champs vide implique qu'il n'y a pas d'authentification smtp." -msgid "SMTPAuth password:" -msgstr "Mot de Passe smtp :" - msgid "The password for the SMTPAuth user." msgstr "Le Mot de Passe pour le serveur SMTP." -msgid "Tooltips in timeline:" -msgstr "Bulles d'aide dans la chronologie :" - msgid "Here you can (de-)activate the tooltips in the timeline." msgstr "Ici vous pouvez (ds-)activer les bulles d'aide dans la chronologie." -msgid "Tooltips in list:" -msgstr "Bulles d'aide dans la liste :" - msgid "Here you can (de-)activate the tooltips in the list." msgstr "Ici vous pouvez (ds-)activer les bulles d'aide dans la liste." @@ -962,51 +886,27 @@ msgstr "Ajouter rsum dans les nouvelles programmations :" msgid "If you don't want VDRAdmin-AM to add the summary taken from EPG to new timers you can switch it off here." msgstr "Si vous ne voulez pas que VDRAdmin-AM ajoute le rsum de l'EPG dans les nouvelles programmations vous pouvez dsactiver cette option." -msgid "Live Streaming:" -msgstr "Emission de Flux en direct :" - msgid "Enable or disable live streaming using the <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. You also have to set the correct <span class=\"ref_label\">HTTP Port for Streamdev</span> below." msgstr "Active ou Dsactive la diffusion en directe en utilisant <a href=\"http://www.magoa.net/linux/\">le plugin streamdev</a>. Vous devez aussi dfinir le rglage correct du <span class=\"ref_label\">Port HTTP pour Streamdev</span> ci-dessous." -msgid "HTTP Port of Streamdev (also possible 3000/ts):" -msgstr "Port HTTP Streamdev (aussi possible 3000/ts) :" - msgid "Here you have to set the port number your VDR's streamdev server listens for connections. Additionally you can also provide the stream type you like to use." msgstr "Vous pouvez ici rgler le numro de port sur lequel le serveur streamdev de VDR sera l'coute pour toute connexion. Additionnellement vous pouvez aussi fournir le type de flux que vous dsirez utiliser." -msgid "Recordings Streaming:" -msgstr "Emission d'Enregistrements" - msgid "Enable or disable streaming of recordings.<br />Well actually this is no real \"streaming\", but you have to setup your workstation so that it can access VDR's recordings. You can use for example Samba or NFS for this. VDRAdmin-AM simply generates a playlist that contains all parts of the recording and sends this to your browser. If your browser and media player are configured correctly you will see the recording on your workstation's display." msgstr "Active ou dsactive la diffusion des enregistrements.<br />Actuellement ceci n'est un rel \"streaming\", mais vous avez parametrer votre station pour quelle puisse accder aux enregistrements de VDR. Vous pouvez utiliser par exemple Samba or NFS pour cette tche. VDRAdmin-AM gnrera simplement une liste de lecture qui contiendra tous les enregistrements et l'enverra votre navigateur. Si votre navigateur et votre lecteur de mdia sont configurs correctement, vous pourrez voir les enregistrements sur votre station." -msgid "Path to VDR Recordings on your workstation:" -msgstr "Chemin vers les Enregistrements VDR sur votre poste de travail :" - msgid "This is the path where your workstation can access VDR's recordings. This depends on your VDR and workstation setup, for example \"\\\\vdr\\videos\" or \"V:\\\" (on Windows) or \"/mnt/videos\" (on Linux)." msgstr "Ceci est le chemin o votre station peut accder au enregistrements de VDR. Cela dpend des rglages de votre VDR et de votre station, par exemple \"\\\\vdr\\videos\" ou \"V:\\\" (sur Windows) ou \"/mnt/videos\" (sur Linux)." -msgid "MIME type for live streaming:" -msgstr "Type MIME pour l'Emission de flux en direct :" - msgid "The MIME type to send when using live streaming. Defaults to \"video/x-mpegurl\"." msgstr "Le Type MIME envoy quand vous envoyez du flux en direct. Par dfaut, le type MIME est \"video/x-mpegurl\"." -msgid "Suffix for live streaming:" -msgstr "Suffixe pour les flux en direct :" - msgid "The suffix to use for live streaming. Defaults to \"m3u\"." msgstr "L'extension utiliser pour l'mission de flux en direct. Par dfaut, l'extension est \"video/x-mpegurl\"." -msgid "MIME type for recordings streaming:" -msgstr "Type MIME pour l'Emission d'Enregistrements :" - msgid "The MIME type to send when using recordings streaming. Defaults to \"video/x-mpegurl\"." msgstr "Le type MIME envoyer lors de l'envoi de flux d'enregistrements. Par dfaut \"video/x-mpegurl\"." -msgid "Suffix for recordings streaming:" -msgstr "Suffixe pour les flux d'Enregistrements :" - msgid "The suffix to use for recordings streaming. Defaults to \"m3u\"." msgstr "L'extension utiliser pour l'envoi de flux d'enregistrements. Par dfaut \"m3u\"." @@ -1022,50 +922,23 @@ msgstr "" msgid "<p>This section is for experts <strong>only</strong>, i.e. you know what you are doing!</p>" msgstr "<p>Cette section est pour les experts <strong>seulement</strong>. Vous devez savoir ce que vous faites!</p>" -msgid "Update EPG data in background:" -msgstr "Mettre jour les donnes EPG en tche de fond :" - msgid "If set to \"yes\" VDRAdmin-AM will periodically refresh its local EPG cache. Else the EPG will be refreshed if the user accesses any EPG view at the web interface and the timeout set at \"Update EPG every\" has been reached." msgstr "Si l'option est \"oui\" VDRAdmin-AM rafraichira priodiquement son cache local EPG. Sinon l'EPG sera rafraichit si l'utilisateur accde n'importe quelle vue EPG dans l'interface web et que le timeout choisit dans \"Mise jour EPG tous les\" aura t atteint." -msgid "Update EPG every:" -msgstr "Mettre jour les donnes EPG toutes les :" - msgid "The interval, the EPG data is refreshed from VDR and AutoTimer updates are performed (if AutoTimer feature is used)." msgstr "L'intervalle durant lequel les donnes du guide lctronique des programmes sont vrifies pour mettre jour les Auto-Programmations (si les Auto-Programmations sont actives)." msgid "<p>If you want to limit the number of channels used in some parts of VDRAdmin-AM, this is for you!</p><p>Use the radio buttons to activate or deactivate the wanted channels in the named menu.</p><p>To add channels to the list of wanted channels you have to select them in the left side selectbox and click <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. If you want to remove channels from the list of wanted channels you have to select them in the right side selectbox and click <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" msgstr "<p>Si vous voulez limiter le nombre de chanes utilises dans certaines parties de VDRAdmin-AM, cette option est faite pour vous !</p><p>Utilisez le radio bouton pour activer ou dsactiver les chanes dsires le menu.</p><p>Pour ajouter des chanes dans la liste des chanes dsires, vous devez les slectionner sur le ct gauche de la liste de slection et cliquez sur <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. Si vous voulez enlever des chanes de la liste des chanes dsires, vous devez les slectionner dans la liste de slection de droite et cliquez sur <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" -msgid "Show channels without EPG information:" -msgstr "Voir les chanes sans les informations EPG :" - msgid "Usually channels that don't have EPG information are hidden in all EPG views. If you don't want them to be hidden you have to set this option to \"yes\"." msgstr "De manire gnrale, les chanes qui n'ont pas d'information EPG sont caches dans toutes les vues EPG. Si vous ne voulez pas les cacher, activez (\"oui\") cette option." -msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" -msgstr "<p>Ici vous trouverez une liste des programmations automatiques (ou AutoTimer) connues de VDRAdmin-AM.</p><p>Cette liste montre des informations sur ces Programmations Automatiques. Vous pouvez changer l'ordre de cette liste en cliquant les descriptions des colonnes.</p><p>Pour chaque Programmation Automatique vous avez les options suivantes :<dl><dt> Changer son tat</dt><dd> En cliquant sur \"Oui\" ou \"Non\" dans la colonne \"Activ\".</dd><dt> Voir rapidement sa priorit et sa dure de vie</dt><dd>En survolant de la sourie le titre de la Programmation Automatique.</dd><dt>Editer la Programmation Automatique</dt><dd> Vous pouvez diter une Programmation Automatique en cliquant sur<img src=\"bilder/edit.png\" alt=\"editer\" />.</dd><dt> Supprimer une Programmation Automatique </dt><dd> Pour supprimer une Programmation Automatique vous devez cliquer sur <img src=\"bilder/delete.png\" alt=\"supprimer\" />.</dd></dl></p><p> Les tats de toutes les Programmations Automatiques sont indiqus par des images de couleurs diffrentes : <br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> La Programmation Automatique est OK and se programmera automatiquement.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> La Programmation Automatique n'est pas active.</p><p> En plus de ces fonctions vous pouvez ajouter une nouvelle Programmation Automatique en cliquant sur <input type=\"submit\" class=\"submit\" value=\"Nouvelle Programmation Automatique\"/> en haut et vous pouvez supprimer plusieurs Programmations Automatiques en cochant les case dans la dernire colonne de celles-ci et en cliquant sur <input type=\"submit\" class=\"submit\" value=\"Supprimer les Programmations Automatiques Slectionnes\"/>.</p><p> Cliquez <input type=\"submit\" class=\"submit\" value=\"Forcer la Mise Jour\"/> pour forcer VDRAdmin-AM se reconnecter VDR, rcuprer les donnes EPG courantes et vrifier and les modles de Programmations Automatiques.</p>" - -msgid "Your Browser does not support frames!" -msgstr "Votre Navigateur ne supporte pas les cadres !" - -msgid "Rename Recording" -msgstr "Nom Original d'Enregistrement :" - -msgid "Original Name of Recording:" -msgstr "Nom Original d'Enregistrement :" - -msgid "New Name of Recording:" -msgstr "Nouveau Nom d'Enregistrement :" - -msgid "Subtitle:" -msgstr "Sous-titre :" - -msgid "Rename" -msgstr "Renommer" +msgid "Edit Timer" +msgstr "Editer Programmation" -msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" -msgstr "<p>Ici vous trouverez une liste des enregistrements connus de VDR. L'entte montrera aussi les espaces disques utiliss en libres selon VDR.</p><p>La liste vous montre certaines informations sur les enregistrements. Vous pouvez changer l'ordre ce cette liste en cliquant sur la description de la colonne. Au dessus de la liste vous verrez le chemin de navigation. Si vous voulez voir le contenu des rpertoires prcdents vous devrez cliquant sur leurs noms dans le chemin.</p><p> Chaque ligne contient ces informations : <dl><dt>Date</dt><dd>La Date de cration de l'enregistrement. Dans le cas d'un rpertoire, cela montrera le nombre d'enregistrements que ce rpertoire contient.</dd><dt>Heure</dt><dd>L'heure de cration de l'enregistrement.Dans le cas d'un rpertoire, cela montrera le nombre de <strong>nouveaux</strong> enregistrements que ce rpertoire contient.</dd><dt>Nom</dt><dd>Le nom de l'enregistrement ou du rpertoire. Cliquez dessus pour voir le rsum de l'enregistrement ou naviguer dans le rpertoire.</dd><dt>Renommer (<img src=\"bilder/edit.png\" alt=\"editer\" />)</dt><dd>Renommer un enregistrement.<br /><h4> Remarque : </h4> Cele ne marque que si VDR a la commande SVDRPort <u>RENR</u> qui ne fait pas partie de base de VDR mais qui peut tre ajouter grce un patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> ou <span class=\"ref_file\">enAIO-v2.2+</span> permettent d'ajouter cette commande.</dd><dt>Supprimer (<img src=\"bilder/delete.png\" alt=\"supprimer\" />)</dt><dd>Supprimer un enregistrement.</dd><dt>Emettre un flux (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>Cette colonne n'est visible que si vous avez activ et configur <span class=\"ref_label\">L'mission de Flux d'Enregistrement</span> dans le menu de <span class=\"ref_menu\">Configuration</span>. Vous pouvez regarder l'enregistrement sur votre station de travail.</dd></dl></p><p>En plus de ces fonctions vous pouvez supprimer plusieurs enregistrements en mme temps en cochant les cases de la dernire colonne de ceux-ci et en cliquant sur <input type=\"submit\" class=\"submit\" value=\"Supprimer les Enregistrements Slectionns\"/>.</p><p>Si vous avez dfini le chemin des fichiers de configuration de VDR et que vous avez des entres dans le <span class=\"ref_file\">reccmds.conf</span> de VDR vous pouvez excuter ces commandes pour les enregistrements slectionnes en slectionnant la commande dsire dans la liste de slection situe prs de <span class=\"ref_label\"> Commandes : </span> et en pressant sur le bouton <input type=\"submit\" class=\"submit\" value=\"Excuter\"/>.</p><p>Utilisez <input type=\"submit\" class=\"submit\" value=\"Rafrachir\"/> pour forcer VDR rafrachir sa liste d'enregistrements.</p>" +msgid "Edit EPG" +msgstr "Editer EPG" msgid "<p>Here you can edit the descriptive fields of an existing EPG entry.</p>" msgstr "<p>Ici vous pouvez modifier les champs de description d'une entre EPG.</p>" @@ -1109,139 +982,116 @@ msgstr "Pistes audio (lecture seule)" msgid "If available this field shows the audio track(s). It cannot be changed." msgstr "Si des piste(s) audio existe(nt), ce champ les montrera. Il ne peut pas tre modifi." -msgid "Duration:" -msgstr "Dure :" - -msgid "min" -msgstr "min" - -msgid "Transponder:" -msgstr "Transpondeur :" - -msgid "CA-System:" -msgstr "Systme CA :" - -msgid "New Timer" -msgstr "Nouvelle Programmation" - -msgid "Date" -msgstr "Date" - -msgid "Edit timer status?" -msgstr "Changer Statut Programmation ?" +msgid "No Help Available" +msgstr "Pas d'aide disponible" -msgid "This timer is inactive!" -msgstr "Cette Programmation est inactive !" +msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgstr "<p>Aucune aide n'est disponible. Pour ajouter ou changer du texte contactez <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org.</a>.</p>" -msgid "This timer is impossible!" -msgstr "Cette Programmation est impossible !" +msgid "Recordings" +msgstr "Enregistrements" -msgid "No more timers on other transponders possible!" -msgstr "Pas plus de Programmations possibles sur d'autres transpondeurs !" +msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" +msgstr "<p>Ici vous trouverez une liste des enregistrements connus de VDR. L'entte montrera aussi les espaces disques utiliss en libres selon VDR.</p><p>La liste vous montre certaines informations sur les enregistrements. Vous pouvez changer l'ordre ce cette liste en cliquant sur la description de la colonne. Au dessus de la liste vous verrez le chemin de navigation. Si vous voulez voir le contenu des rpertoires prcdents vous devrez cliquant sur leurs noms dans le chemin.</p><p> Chaque ligne contient ces informations : <dl><dt>Date</dt><dd>La Date de cration de l'enregistrement. Dans le cas d'un rpertoire, cela montrera le nombre d'enregistrements que ce rpertoire contient.</dd><dt>Heure</dt><dd>L'heure de cration de l'enregistrement.Dans le cas d'un rpertoire, cela montrera le nombre de <strong>nouveaux</strong> enregistrements que ce rpertoire contient.</dd><dt>Nom</dt><dd>Le nom de l'enregistrement ou du rpertoire. Cliquez dessus pour voir le rsum de l'enregistrement ou naviguer dans le rpertoire.</dd><dt>Renommer (<img src=\"bilder/edit.png\" alt=\"editer\" />)</dt><dd>Renommer un enregistrement.<br /><h4> Remarque : </h4> Cele ne marque que si VDR a la commande SVDRPort <u>RENR</u> qui ne fait pas partie de base de VDR mais qui peut tre ajouter grce un patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> ou <span class=\"ref_file\">enAIO-v2.2+</span> permettent d'ajouter cette commande.</dd><dt>Supprimer (<img src=\"bilder/delete.png\" alt=\"supprimer\" />)</dt><dd>Supprimer un enregistrement.</dd><dt>Emettre un flux (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>Cette colonne n'est visible que si vous avez activ et configur <span class=\"ref_label\">L'mission de Flux d'Enregistrement</span> dans le menu de <span class=\"ref_menu\">Configuration</span>. Vous pouvez regarder l'enregistrement sur votre station de travail.</dd></dl></p><p>En plus de ces fonctions vous pouvez supprimer plusieurs enregistrements en mme temps en cochant les cases de la dernire colonne de ceux-ci et en cliquant sur <input type=\"submit\" class=\"submit\" value=\"Supprimer les Enregistrements Slectionns\"/>.</p><p>Si vous avez dfini le chemin des fichiers de configuration de VDR et que vous avez des entres dans le <span class=\"ref_file\">reccmds.conf</span> de VDR vous pouvez excuter ces commandes pour les enregistrements slectionnes en slectionnant la commande dsire dans la liste de slection situe prs de <span class=\"ref_label\"> Commandes : </span> et en pressant sur le bouton <input type=\"submit\" class=\"submit\" value=\"Excuter\"/>.</p><p>Utilisez <input type=\"submit\" class=\"submit\" value=\"Rafrachir\"/> pour forcer VDR rafrachir sa liste d'enregistrements.</p>" -msgid "Timer OK." -msgstr "Programmation OK." +msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" +msgstr "<p>Ici vous trouverez une liste des programmations connues par VDR.</p><p> En haut vous trouverez un graphique montrant les programmations au jour le jour. Cela permet d'apprhender rapidement ce qu'il se passe sur une journe et vous aide dcouvrir les programmations conflictuelles. Survoler avec la souris une programmation permet d'afficher une bulle d'aide contenant le titre, la priorit, la dure de vie, la dure de celle-ci.</p><p> En dessous du graphe, vous trouverez une liste des programmations montrant quelques informations sur les programmations. Vous pouvez changer l'ordre d'affichage en cliquant sur les descriptions des colonnes.</p><p> Pour chaque enregistrement, vous avez les options suivantes : <dl><dt> Changer son tat </dt><dd> En cliquant sur \"Oui\", \"Non\", \"VPS\" or \"Auto\" dans la colonne \"Activ\" .</dd><dt> Voir rapidement sa priorit et sa dure de vie</dt><dd> En survolant de la souris le titre de la programmation.</dd><dt> Voir ses donnes EPG </dt><dd> Les programmations qui ont le paramtre <span class=\"ref_label\"> Vrification de l'auto-programmation</span> \"Identification de Transmission\" montreront les donnes EPG si vous cliquez sur le titre de la programmation.</dd><dt> Editer la programmation</dt><dd>Vous pouvez diter la programmation en cliquant sur <img src=\"bilder/edit.png\" alt=\"diter\" />.</dd><dt> Supprimer une programmation </dt><dd> Pour supprimer une programmation vous devez cliquer sur <img src=\"bilder/delete.png\" alt=\"supprimer\" />.</dd></dl></p><p> Les tats de programmation sont indiqus par des cases de couleurs diffrentes (dans le vue avec graphique) ou des images (dans la vue par liste) : <br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> La programmation est OK et enregistrera.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> La programmation est conflictuelle avec une autre programmation. Cela n'est pas critique, tant que vous avez assez de cartes DVB que d'enregistrements.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> La programmation est critique et a beaucoup de chances de ne <strong>pas</strong> enregistrer.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> La programmation n'est pas active.</p><p> En plus de ces fonctions vous pouvez ajouter une nouvelle programmation en cliquant sur <input type=\"submit\" class=\"submit\" value=\"Nouvelle Programmation\"/> en haut et vous pouvez supprimer plusieurs programmations en cochant plusieurs programmations dans la dernire coloone de ces programmations et en cliquant sur <input type=\"submit\" class=\"submit\" value=\"Supprimer les Programmations Slectionnes\"/>.</p><p> Vous pouvez <input type=\"submit\" class=\"submit\" value=\"activer\"/> et <input type=\"submit\" class=\"submit\" value=\"dsactiver\"/> les programmations slectionnes.</p>" -msgid "Auto" -msgstr "Auto" +msgid "<p>Here you can edit a timer's settings.</p>" +msgstr "<p>Ici vous pouvez modifier un programmation.</p>" -msgid "activate" -msgstr "activer" +msgid "Timer Active:" +msgstr "Programmation Active :" -msgid "inactivate" -msgstr "dsactiver" +msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." +msgstr "Active ou dsactive une programmation. Les programmations dsactivs sont toujours stockes dans la liste des programmations et peuvent tre actives nouveau, mais elles n'enregistrent nanmoins plus rien." -msgid "selected timers" -msgstr "programmations slectionnes" +msgid "AutoTimer Checking:" +msgstr "Vrification Auto-Programmation :" -msgid "Delete Selected Timers" -msgstr "Supprimer Programmations Slectionnes" +msgid "Depending on how this timer has been programmed you have up to three possible settings:" +msgstr "Suivant comment cette programmation t dfinie,vous avez jusqu' trois possibilits :" -msgid "No timers defined!" -msgstr "Aucune Programmation dfinie !" +msgid "Transmission Identification" +msgstr "Identification Transmission" -#, fuzzy -msgid "EPG Search Blacklists" -msgstr "Utiliser des \"listes noires\" :" +msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." +msgstr "Surveille cette programmation en utilisant l'identification fournie par le guide lectronique des programmes. Notez que cela fonctionne seulement si l'identification est fixe et unique! Cette option n'est pas disponible avec les programmations cres dans VDR." -#, fuzzy -msgid "New Blacklist" -msgstr "Utiliser des \"listes noires\" :" +msgid "Time" +msgstr "Horaires" -msgid "Search pattern" -msgstr "Rechercher un motif" +msgid "Monitor this timer using the start and stop time." +msgstr "Surveille cette programmation en utilisant l'horaire de dmarrage et d'arrt." -msgid "From" -msgstr "De" +msgid "off" +msgstr "off" -msgid "To" -msgstr "A" +msgid "Do not monitor this timer." +msgstr "Ne surveille pas cette programmation." -#, fuzzy -msgid "Delete blacklist?" -msgstr "Utiliser des \"listes noires\" :" +msgid "The channel to record." +msgstr "La chane enregistrer." -#, fuzzy -msgid "Delete Selected Blacklists" -msgstr "Supprimer Recherches Slectionnes" +msgid "Day Of Recording:" +msgstr "Jour d'Enregistrement :" -#, fuzzy -msgid "Delete all selected blacklists?" -msgstr "Supprimer toutes les Recherches Slectionnes ?" +msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." +msgstr "Le jour o la programmation doit tre active. Vous pouvez entrer le jour selon 2 formats : <ul><li>2 chiffres (JJ). Cela utilisera le mois et l'anne courante.</li><li> ou la norme ISO (AAAA-MM-JJ). Vous pouvez programmer des programmations aussi loin dans le futur que vous le dsirez.</li></ul>Dans le cas o vous voulez programmer une programmation rptitive, vous pouvez utiliser les 7 cases cocher en dessous du champ texte. Cochez les cases des jours pour lesquels vous dsirez que la programmation soit active." -msgid "EPG search" -msgstr "recherche EPG" +msgid "Start Time:" +msgstr "Heure De Dbut :" -msgid "Use template" -msgstr "Utiliser un modle" +msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Ceci est l'heure de dmarrage de la programmation. Le premier champ texte est pour \"heure\", le second pour \"minute\"." -msgid "New Search" -msgstr "Nouvelle Recherche" +msgid "End Time:" +msgstr "Heure De Fin :" -msgid "Action" -msgstr "Action" +msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Ceci est l'heure de fin de la programmation. Le premier champ texte est pour \"heure\", le second pour \"minute\"." -msgid "Find" -msgstr "Rechercher" +msgid "Title of Recording:" +msgstr "Titre de l'Enregistrement :" -msgid "Show Favorites" -msgstr "Montrer les Favoris" +msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." +msgstr "Le <strong>nom de fichier</strong> que cette programmation va donner un enregistrement. Si ce nom devait contenir des sous-rpertoires, ceux-ci devraient tre dlimits par '~' (le caractre '/' peut faire partie du nom d'un programme).<br /><br /> Si les mots cl <strong> TITLE </strong> et/ou <strong> EPISODE</strong> sont prsents, ils seront remplacs par le titre et l'information sur l'pisode contenue dans les donnes EPG prsentes au moment du lancement de l'enregistrement (si ces donnes existent). Si au moment de l'enregistrement ces variables ne peuvent tre dfinies, <strong> TITLE </strong> sera remplac par le nom de la chane, et <strong> EPISODE </strong> sera vide." -msgid "Delete Selected Searches" -msgstr "Supprimer Recherches Slectionnes" +msgid "Summary:" +msgstr "Rsum :" -msgid "Delete all selected searches?" -msgstr "Supprimer toutes les Recherches Slectionnes ?" +msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." +msgstr "Texte arbitraire qui dcrit l'enregistrement fait par cette programmation. Si ce champ n'est pas vide, son contenu sera crit dans le fichier <span class=\"ref_file\">summary.vdr</span> ou <span class=\"ref_file\">info.vdr</span>, le fichier de l'enregistrement." -msgid "Execute Selected Searches" -msgstr "Executer les Recherches Slectionnes" +msgid "Your Browser does not support frames!" +msgstr "Votre Navigateur ne supporte pas les cadres !" -msgid "Duration" -msgstr "Dure" +msgid "What's On Now?" +msgstr "En ce Moment ?" -msgid "Template:" -msgstr "Gabarit :" +msgid "Playing Today?" +msgstr "Aujourd'hui ?" -msgid "Also used for other EPG views!" -msgstr "Aussi utilis pour d'autres vues EPG !" +msgid "Remote Control" +msgstr "Tlcommande" -msgid "Bandwidth of Streams:" -msgstr "Bande Passante Flux :" +msgid "Watch TV" +msgstr "Regarder TV" -msgid "URL:" -msgstr "URL :" +msgid "Commands" +msgstr "Commandes" -msgid "Title:" -msgstr "Titre :" +msgid "Search" +msgstr "Rechercher" -msgid "User-defined search:" -msgstr "Recherches dfinies par l'utilisateur :" +msgid "Authorization Required" +msgstr "Autorisation Requise" -msgid "In \"AutoTimer\"?" -msgstr "Dans \"Auto-Programmations\" ?" +msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." +msgstr "Le serveur n'a pas pu vrifier que vous tes autoris accder au document demand. Ou vous avez fourni de mauvaises informations (par ex. mauvais mot de passe), ou votre navigateur n'a pu fournir les informations requises." -msgid "Apply" -msgstr "Appliquer" +msgid "VPS" +msgstr "VPS" msgid "close" msgstr "fermer" @@ -1261,23 +1111,77 @@ msgstr "Piste vido :" msgid "Audio tracks:" msgstr "Piste audio :" +msgid "Video tracks" +msgstr "Pistes vido" + +msgid "Audio tracks" +msgstr "Pistes audio" + +msgid "TV select" +msgstr "Zapper" + +msgid "Stream" +msgstr "Flux" + +msgid "Channel group:" +msgstr "Groupe de la Chane :" + +msgid "Go!" +msgstr "Ok !" + +msgid "Search for other show times" +msgstr "Rechercher d'autres moments de diffusion" + +msgid "No Information" +msgstr "Pas d'Information" + +msgid "No EPG information available" +msgstr "Pas d'information EPG disponible" + +msgid "Playing Today" +msgstr "Jou Aujourd'hui" + +msgid "starting at" +msgstr "Commence " + +msgid "What's on:" +msgstr "En ce moment :" + +msgid "at" +msgstr "" + msgid "now" msgstr "maintenant" msgid "to" msgstr "" +msgid "Duration:" +msgstr "Dure :" + +msgid "min" +msgstr "min" + msgid "at:" msgstr " :" msgid "You need JavaScript to use the timeline!" msgstr "Vous avez besoin de JavaScript pour utiliser la chronologie !" -msgid "Authorization Required" -msgstr "Autorisation Requise" +msgid "Rename Recording" +msgstr "Nom Original d'Enregistrement :" -msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." -msgstr "Le serveur n'a pas pu vrifier que vous tes autoris accder au document demand. Ou vous avez fourni de mauvaises informations (par ex. mauvais mot de passe), ou votre navigateur n'a pu fournir les informations requises." +msgid "Original Name of Recording:" +msgstr "Nom Original d'Enregistrement :" + +msgid "New Name of Recording:" +msgstr "Nouveau Nom d'Enregistrement :" + +msgid "Subtitle:" +msgstr "Sous-titre :" + +msgid "Rename" +msgstr "Renommer" msgid "Total:" msgstr "Total :" @@ -1288,6 +1192,9 @@ msgstr "h" msgid "Free:" msgstr "Libre :" +msgid "Date" +msgstr "Date" + msgid "Total" msgstr "Total" @@ -1309,6 +1216,9 @@ msgstr "Rafrachir" msgid "Commands:" msgstr "Commandes :" +msgid "Really run this command?" +msgstr "Voulez-vous rellement excuter cette commande ?" + msgid "Delete Selected Recordings" msgstr "Supprimer Enregistrements Slectionns" @@ -1318,6 +1228,105 @@ msgstr "Supprimer Enregistrements Slectionns ?" msgid "No recordings available" msgstr "Aucun enregistrement disponible" +msgid "Transponder:" +msgstr "Transpondeur :" + +msgid "CA-System:" +msgstr "Systme CA :" + +msgid "New Timer" +msgstr "Nouvelle Programmation" + +msgid "Edit timer status?" +msgstr "Changer Statut Programmation ?" + +msgid "This timer is inactive!" +msgstr "Cette Programmation est inactive !" + +msgid "This timer is impossible!" +msgstr "Cette Programmation est impossible !" + +msgid "No more timers on other transponders possible!" +msgstr "Pas plus de Programmations possibles sur d'autres transpondeurs !" + +msgid "Timer OK." +msgstr "Programmation OK." + +msgid "Auto" +msgstr "Auto" + +msgid "activate" +msgstr "activer" + +msgid "inactivate" +msgstr "dsactiver" + +msgid "selected timers" +msgstr "programmations slectionnes" + +msgid "Delete Selected Timers" +msgstr "Supprimer Programmations Slectionnes" + +msgid "No timers defined!" +msgstr "Aucune Programmation dfinie !" + +msgid "Create New Timer" +msgstr "Crer Nouvelle Programmation" + +msgid "Buffer:" +msgstr "Tampon :" + +msgid "Use VPS:" +msgstr "Utiliser VPS :" + +msgid "readonly" +msgstr "lecture seule" + +msgid "Timer has been set by AutoTimer pattern:" +msgstr "La programmation a t auto-programme avec le modle :" + +msgid "TV" +msgstr "TV" + +msgid "Interval:" +msgstr "Intervalle :" + +msgid "sec." +msgstr "sec." + +msgid "G" +msgstr "R" + +msgid "Grab the picture!" +msgstr "Rafrachir!" + +msgid "Size:" +msgstr "Taille :" + +msgid "Open in separate window" +msgstr "Ouvrir dans une nouvelle fentre" + +msgid "VDR Commands" +msgstr "Commandes VDR" + +msgid "Export channels as playlist:" +msgstr "Exporter les chanes en tant que playlist :" + +msgid "Number of lines to show:" +msgstr "Nombre de lignes montrer :" + +msgid "unlimited" +msgstr "illimit" + +msgid "SVDRP commands:" +msgstr "Commandes SVDRP :" + +msgid "Commands defined in commands.conf:" +msgstr "Commandes dfinies dans commands.conf :" + +msgid "Output" +msgstr "Sortie" + msgid "What's your VDR hostname (e.g video.intra.net)?" msgstr "Quel est votre Nom d'hte (ex video.intra.net) ?" diff --git a/po/fr_FR.utf8.po b/po/fr_FR.utf8.po index 3b676ad..74ee7df 100644 --- a/po/fr_FR.utf8.po +++ b/po/fr_FR.utf8.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: VDRAdmin-AM-3.6.0\n" "Report-Msgid-Bugs-To: Andreas Mair <andreas@vdr-developer.org>\n" -"POT-Creation-Date: 2008-12-18 08:25+0100\n" +"POT-Creation-Date: 2009-12-30 13:26+0100\n" "PO-Revision-Date: 2007-08-23 10:45+0100\n" "Last-Translator: Trois Six <trois.six@free.fr>\n" "Language-Team: Trois Six <trois.six@free.fr>\n" @@ -20,177 +20,108 @@ msgstr "" msgid "ISO-8859-1" msgstr "UTF-8" -msgid "What's On Now?" -msgstr "En ce Moment ?" - -msgid "Channel group:" -msgstr "Groupe de la Chaîne :" - -msgid "What's on:" -msgstr "En ce moment :" - -msgid "at" -msgstr "à" - -msgid "o'clock" -msgstr "Heure" - -msgid "More Information" -msgstr "Plus d'Informations" - -msgid "Channels" -msgstr "Chaînes" - -msgid "Stream" -msgstr "Flux" - -msgid "TV select" -msgstr "Zapper" - -msgid "Search for other show times" -msgstr "Rechercher d'autres moments de diffusion" - -msgid "No Information" -msgstr "Pas d'Information" - -msgid "Edit" -msgstr "Editer" - -msgid "Record" -msgstr "Enregistrer" - -msgid "No EPG information available" -msgstr "Pas d'information EPG disponible" - -msgid "Edit EPG" -msgstr "Editer EPG" - -msgid "Help" -msgstr "Aide" - -msgid "Channel" -msgstr "Chaîne" - -msgid "Time" -msgstr "Horaires" +msgid "About" +msgstr "A propos" -msgid "Title" -msgstr "une fois" +msgid "License" +msgstr "" -msgid "Subtitle" -msgstr "Sous-titre" +msgid "Authors" +msgstr "Auteurs" -msgid "Description" -msgstr "Description" +msgid "Current author (VDRAdmin-AM branch):" +msgstr "Auteur Actuel (Branche VDRAdmin-AM) :" -msgid "VPS" -msgstr "VPS" +msgid "Original author (VDRAdmin):" +msgstr "Auteur du programme (VDRAdmin) :" -msgid "Video tracks" -msgstr "Pistes vidéo" +msgid "Translation Team" +msgstr "Équipe de Traduction" -msgid "Audio tracks" -msgstr "Pistes audio" +msgid "English:" +msgstr "Anglais :" -msgid "Save" -msgstr "Enregistrer" +msgid "German:" +msgstr "Allemand :" -msgid "Cancel" -msgstr "Annuler" +msgid "French:" +msgstr "Français" -msgid "Edit Timer" -msgstr "Editer Programmation" +msgid "At the moment unmaintained, former translations by:" +msgstr "Pour le moment non maintenu, précédente traductions par :" -msgid "<p>Here you can edit a timer's settings.</p>" -msgstr "<p>Ici vous pouvez modifier un programmation.</p>" +msgid "Spanish:" +msgstr "Espagnol :" -msgid "Timer Active:" -msgstr "Programmation Active :" +msgid "Finnish:" +msgstr "Finlandais :" -msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." -msgstr "Active ou désactive une programmation. Les programmations désactivés sont toujours stockées dans la liste des programmations et peuvent être activées à nouveau, mais elles n'enregistrent néanmoins plus rien." +msgid "Dutch:" +msgstr "Hollandais :" -msgid "AutoTimer Checking:" -msgstr "Vérification Auto-Programmation :" +msgid "Russian:" +msgstr "Russe" -msgid "Depending on how this timer has been programmed you have up to three possible settings:" -msgstr "Suivant comment cette programmation à été définie,vous avez jusqu'à trois possibilités :" +msgid "Czech:" +msgstr "Tchèque :" -msgid "Transmission Identification" -msgstr "Identification Transmission" +msgid "Italian:" +msgstr "Italien :" -msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." -msgstr "Surveille cette programmation en utilisant l'identification fournie par le guide électronique des programmes. Notez que cela fonctionne seulement si l'identification est fixe et unique! Cette option n'est pas disponible avec les programmations créées dans VDR." +msgid "Information" +msgstr "Information" -msgid "Monitor this timer using the start and stop time." -msgstr "Surveille cette programmation en utilisant l'horaire de démarrage et d'arrêt." +msgid "VDRAdmin-AM version:" +msgstr "Version de VDRAdmin-AM :" -msgid "off" -msgstr "off" +msgid "VDR version:" +msgstr "Version de VDR :" -msgid "Do not monitor this timer." -msgstr "Ne surveille pas cette programmation." +msgid "Supported features in VDR:" +msgstr "Options supportées par VDR :" -msgid "Channel:" -msgstr "Chaîne :" +msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgstr "Plugin de Recherche dans les données EPG (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch</a>)" -msgid "The channel to record." -msgstr "La chaîne à enregistrer." +msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgstr "Plugin de Streaming Live (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev</a>)" -msgid "Day Of Recording:" -msgstr "Jour d'Enregistrement :" +msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgstr "Renommer les Enregistrements (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Patch Liemikuutio</a>)" -msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." -msgstr "Le jour où la programmation doit être active. Vous pouvez entrer le jour selon 2 formats : <ul><li>2 chiffres (JJ). Cela utilisera le mois et l'année courante.</li><li> ou la norme ISO (AAAA-MM-JJ). Vous pouvez programmer des programmations aussi loin dans le futur que vous le désirez.</li></ul>Dans le cas où vous voulez programmer une programmation répétitive, vous pouvez utiliser les 7 cases à cocher en dessous du champ texte. Cochez les cases des jours pour lesquels vous désirez que la programmation soit active." +msgid "Getting Help and Reporting Bugs" +msgstr "Avoir de l'Aide et Rapporter les Bugs" -msgid "Start Time:" -msgstr "Heure De Début :" +msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." +msgstr "Si vous avez besoin d'aide, merci de regarder en priorité sur l'aide en ligne. Ici <img src=\"bilder/help.png\" alt=\"\" />." -msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Ceci est l'heure de démarrage de la programmation. Le premier champ texte est pour \"heure\", le second pour \"minute\"." +msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" +msgstr "Si vous ne trouvez pas l'information recherchée, vous pouvez essayer d'obtenir de l'aide sur <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> si vous comprenez l'allemand. Merci d'utiliser le topic de l'annonce si possible, recherchez : " -msgid "End Time:" -msgstr "Heure De Fin :" +msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." +msgstr "Si vous croyez avoir trouvé un bug, merci de vérifier si c'est un bug non identifié dans <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">L'Outil de Gestion des Bugs VDRAdmin-AM</a>." -msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Ceci est l'heure de fin de la programmation. Le premier champ texte est pour \"heure\", le second pour \"minute\"." +msgid "AutoTimer" +msgstr "Auto-Programmation" msgid "Priority:" msgstr "Priorité :" -msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." -msgstr "Un entier dans l'intervalle <strong>0...99</strong>, définissant la <strong>priorité</strong> de cette programmation et de l'enregitrement créé par cette programmation. <strong>0</strong> représente la valeur la plus faible, <strong>99</strong> la plus haute. La priorité est utilisée pour décider quelle programmation devrait être démarrée dans le cas où deux ou plus de programmation possèdent la même heure <strong>début</strong>. La première programmation dans la liste avec la priorité la plus haute sera utilisée.<br /><br />Cette valeur est aussi stockée avec l'enregistrement, et est utilisée plus tard pour décider quel enregistrement doit être supprimé du disque pour libérer de la place pour un nouvel enregistrement. Si le disque est plein et qu'un nouvel enregistrement nécessite plus de place, un enregistrement avec la plus faible priorité (et dont <strong>durée de vie</strong> garantie sera dépassée) sera enlevé.<br /><br />Si toutes les cartes DVB disponibles sont actuellement occupés, une programmation avec une priorité plus élevée interrompra la programmation avec la priorité la plus faible pour démarrer l'enregistrement." - msgid "Lifetime:" msgstr "Chronologie :" -msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." -msgstr "La durée de vie <strong>garantie</strong> (en jours) d'un enregistrement créé pas cette programmation. <strong>0</strong> signifie que cet enregistrement peut être automatiquement supprimé à n'importe quelle moment par un enregistrement avec une priorité plus haute. <strong>99</strong> signifie que cet enregistrement ne sera jamais automatiquement supprimé. Tout nombre dans l'interval <strong>1...98</strong> signifie que cet enregistrement ne peut être automatiquement supprimé en faveur d'un nouvel enregistrement, jusqu'à ce que le nombre de jour donné depuis la date de <strong>démarrage</strong> de l'enregistrement soit dépassé." - -msgid "Title of Recording:" -msgstr "Titre de l'Enregistrement :" - -msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." -msgstr "Le <strong>nom de fichier</strong> que cette programmation va donner à un enregistrement. Si ce nom devait contenir des sous-répertoires, ceux-ci devraient être délimités par '~' (le caractère '/' peut faire partie du nom d'un programme).<br /><br /> Si les mots clé <strong> TITLE </strong> et/ou <strong> EPISODE</strong> sont présents, ils seront remplacés par le titre et l'information sur l'épisode contenue dans les données EPG présentes au moment du lancement de l'enregistrement (si ces données existent). Si au moment de l'enregistrement ces variables ne peuvent être définies, <strong> TITLE </strong> sera remplacé par le nom de la chaîne, et <strong> EPISODE </strong> sera vide." - -msgid "Summary:" -msgstr "Résumé :" - -msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." -msgstr "Texte arbitraire qui décrit l'enregistrement fait par cette programmation. Si ce champ n'est pas vide, son contenu sera écrit dans le fichier <span class=\"ref_file\">summary.vdr</span> ou <span class=\"ref_file\">info.vdr</span>, le fichier de l'enregistrement." - -msgid "Go!" -msgstr "Ok !" - -msgid "AutoTimer" -msgstr "Auto-Programmation" - msgid "New AutoTimer" msgstr "Nouvelle Auto-Programmation" +msgid "Help" +msgstr "Aide" + msgid "Active" msgstr "Actif" +msgid "Channel" +msgstr "Chaîne" + msgid "Start" msgstr "Début" @@ -209,6 +140,9 @@ msgstr "Oui" msgid "No" msgstr "Non" +msgid "Edit" +msgstr "Editer" + msgid "Delete timer?" msgstr "Supprimer Programmation ?" @@ -227,33 +161,6 @@ msgstr "Supprimer Programmations Sélectionnées ?" msgid "No AutoTimers defined!" msgstr "Aucune Auto-Programmation définie !" -msgid "VDR Commands" -msgstr "Commandes VDR" - -msgid "Export channels as playlist:" -msgstr "Exporter les chaînes en tant que playlist :" - -msgid "Number of lines to show:" -msgstr "Nombre de lignes à montrer :" - -msgid "unlimited" -msgstr "illimité" - -msgid "SVDRP commands:" -msgstr "Commandes SVDRP :" - -msgid "Run" -msgstr "Exécuter" - -msgid "Really run this command?" -msgstr "Voulez-vous réellement exécuter cette commande ?" - -msgid "Commands defined in commands.conf:" -msgstr "Commandes définies dans commands.conf :" - -msgid "Output" -msgstr "Sortie" - msgid "Add New AutoTimer" msgstr "Ajouter Nouvelle Auto-Programmation" @@ -272,6 +179,15 @@ msgstr "Rechercher Modèles :" msgid "Search in:" msgstr "Rechercher dans :" +msgid "Title" +msgstr "une fois" + +msgid "Subtitle" +msgstr "Sous-titre" + +msgid "Description" +msgstr "Description" + msgid "Search only on these days:" msgstr "Rechercher uniquement sur ces jours :" @@ -296,12 +212,18 @@ msgstr "Samedi" msgid "Sunday" msgstr "Dimanche" +msgid "Channel:" +msgstr "Chaîne :" + msgid "all" msgstr "tout" msgid "Starts After:" msgstr "Début de recherche :" +msgid "o'clock" +msgstr "Heure" + msgid "Ends Before:" msgstr "Fin de recherche :" @@ -326,9 +248,15 @@ msgstr "Se souvenir des programmations :" msgid "Directory:" msgstr "Chemin :" +msgid "Save" +msgstr "Enregistrer" + msgid "Test" msgstr "Test" +msgid "Cancel" +msgstr "Annuler" + msgid "Broadcasted" msgstr "Diffusé" @@ -338,140 +266,260 @@ msgstr "Stockés dans" msgid "No matches found!" msgstr "Aucune correspondance trouvée !" -msgid "About" -msgstr "A propos" +msgid "Configuration" +msgstr "Configuration" -msgid "License" +msgid "General Settings" +msgstr "Paramètres Généraux" + +msgid "Template:" +msgstr "Gabarit :" + +msgid "Skin:" +msgstr "Thème :" + +msgid "Login Page:" +msgstr "Page de Démarrage :" + +msgid "Number of channels to use:" +msgstr "Nombre de chaînes à utiliser :" + +msgid "Local net (no login required):" +msgstr "Réseau local (login non nécessaire) :" + +msgid "Language:" +msgstr "Langue :" + +msgid "Save settings on exit:" +msgstr "Enregistrer les paramètres en quittant :" + +msgid "VDR" +msgstr "VDR" + +msgid "Number of DVB cards:" +msgstr "Nbre de Cartes DVB :" + +msgid "Path to recordings:" +msgstr "Chemin des Enregistrements VDR :" + +msgid "Path to configuration files:" +msgstr "Chemin vers les fichiers de configuration :" + +msgid "Path to EPG images:" +msgstr "Chemin vers les images EPG :" + +msgid "Identification" +msgstr "Identification" + +msgid "Username:" +msgstr "Identifiant :" + +msgid "Password:" +msgstr "Mot de Passe :" + +msgid "Guest Account:" +msgstr "Compte d'Invité :" + +msgid "Guest Username:" +msgstr "Identifiant Invité :" + +msgid "Guest Password:" +msgstr "Mot de Passe Invité :" + +msgid "Timeline" +msgstr "Chronologie" + +msgid "Hours:" +msgstr "Heures :" + +msgid "Times:" +msgstr "Périodes :" + +msgid "Also used for other EPG views!" +msgstr "Aussi utilisé pour d'autres vues EPG !" + +msgid "Tooltips:" +msgstr "Bulles d'aide :" + +msgid "Active:" +msgstr "Active :" + +msgid "Send email after programming timer:" +msgstr "Envoyer email après création programmation :" + +msgid "Send email as:" +msgstr "Envoyer mail en tant que :" + +msgid "Send email to:" +msgstr "Envoyer mail à :" + +msgid "Mail server:" +msgstr "Serveur smtp :" + +msgid "SMTPAuth user:" +msgstr "Identifiant smtp :" + +msgid "SMTPAuth password:" +msgstr "Mot de Passe smtp :" + +msgid "Track schedule changes by:" msgstr "" -msgid "Authors" -msgstr "Auteurs" +msgid "Broadcast time" +msgstr "" -msgid "Current author (VDRAdmin-AM branch):" -msgstr "Auteur Actuel (Branche VDRAdmin-AM) :" +msgid "Event id" +msgstr "" -msgid "Original author (VDRAdmin):" -msgstr "Auteur du programme (VDRAdmin) :" +msgid "Timer" +msgstr "Programmation" -msgid "Translation Team" -msgstr "Équipe de Traduction" +msgid "Tooltips in timeline:" +msgstr "Bulles d'aide dans la chronologie :" -msgid "English:" -msgstr "Anglais :" +msgid "Tooltips in list:" +msgstr "Bulles d'aide dans la liste :" -msgid "German:" -msgstr "Allemand :" +msgid "Streaming" +msgstr "Emission de Flux" -msgid "French:" -msgstr "Français" +msgid "Live Streaming:" +msgstr "Emission de Flux en direct :" -msgid "At the moment unmaintained, former translations by:" -msgstr "Pour le moment non maintenu, précédente traductions par :" +msgid "HTTP Port of Streamdev (also possible 3000/ts):" +msgstr "Port HTTP Streamdev (aussi possible 3000/ts) :" -msgid "Spanish:" -msgstr "Espagnol :" +msgid "Recordings Streaming:" +msgstr "Emission d'Enregistrements" -msgid "Finnish:" -msgstr "Finlandais :" +msgid "Path to VDR Recordings on your workstation:" +msgstr "Chemin vers les Enregistrements VDR sur votre poste de travail :" -msgid "Dutch:" -msgstr "Hollandais :" +msgid "MIME type for live streaming:" +msgstr "Type MIME pour l'Emission de flux en direct :" -msgid "Russian:" -msgstr "Russe" +msgid "Suffix for live streaming:" +msgstr "Suffixe pour les flux en direct :" -msgid "Czech:" -msgstr "Tchèque :" +msgid "MIME type for recordings streaming:" +msgstr "Type MIME pour l'Emission d'Enregistrements :" -msgid "Italian:" -msgstr "Italien :" +msgid "Suffix for recordings streaming:" +msgstr "Suffixe pour les flux d'Enregistrements :" -msgid "Information" -msgstr "Information" +msgid "Bandwidth of Streams:" +msgstr "Bande Passante Flux :" -msgid "VDRAdmin-AM version:" -msgstr "Version de VDRAdmin-AM :" +msgid "External Search" +msgstr "Recherche Extenre" -msgid "VDR version:" -msgstr "Version de VDR :" +msgid "URL:" +msgstr "URL :" -msgid "Supported features in VDR:" -msgstr "Options supportées par VDR :" +msgid "Title:" +msgstr "Titre :" -msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgstr "Plugin de Recherche dans les données EPG (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch</a>)" +msgid "User-defined search:" +msgstr "Recherches définies par l'utilisateur :" -msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgstr "Plugin de Streaming Live (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev</a>)" +msgid "Expert" +msgstr "Expert" -msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgstr "Renommer les Enregistrements (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Patch Liemikuutio</a>)" +msgid "Update EPG data in background:" +msgstr "Mettre à jour les données EPG en tâche de fond :" -msgid "Getting Help and Reporting Bugs" -msgstr "Avoir de l'Aide et Rapporter les Bugs" +msgid "Update EPG every:" +msgstr "Mettre à jour les données EPG toutes les :" -msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." -msgstr "Si vous avez besoin d'aide, merci de regarder en priorité sur l'aide en ligne. Ici <img src=\"bilder/help.png\" alt=\"\" />." +msgid "Channel Selections" +msgstr "Sélections Chaînes" -msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" -msgstr "Si vous ne trouvez pas l'information recherchée, vous pouvez essayer d'obtenir de l'aide sur <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> si vous comprenez l'allemand. Merci d'utiliser le topic de l'annonce si possible, recherchez : " +msgid "Show channels without EPG information:" +msgstr "Voir les chaînes sans les informations EPG :" -msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." -msgstr "Si vous croyez avoir trouvé un bug, merci de vérifier si c'est un bug non identifié dans <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">L'Outil de Gestion des Bugs VDRAdmin-AM</a>." +msgid "In \"AutoTimer\"?" +msgstr "Dans \"Auto-Programmations\" ?" -msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" -msgstr "<p>Ici vous pouvez éditer les paramètres d'une programmation automatique (AutoTimer). </p><p>Les Programmations Automatiques sont une fonction clé de VDRAdmin-AM. Une Programmation Automatique consiste en un ou plusieurs motifs et d'autres paramètres, qui sont recherchés dans l'Electronic Program Guide (EPG). Quand ces motifs sont trouvés, une Programmation Automatique est ajouté à VDR automatiquement pour cette diffusion. Cette fonctionnalité est très confortable pour enregistrer des séries diffusées irrégulièrement ou des films que vous ne voulez par manquer.</p>" +msgid "Apply" +msgstr "Appliquer" -msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." -msgstr "Activer ou désactiver cette Auto-Programmation. Les Auto-Programmations désactivées sont toujours stockées dans la liste des Auto-programmation, aussi elles peuvent être activées à tout moment, mais cependant elles n'enregistre rien. Au dessus vous pouvez régler ceci à \"Une Fois\", donc cette Auto-Programmation programme seulement la prochaine (et unique!) occurrence de la diffusion." +#, fuzzy +msgid "EPG Search Blacklists" +msgstr "Utiliser des \"listes noires\" :" -msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Only broadcasts will match if they contain <strong>all</strong> items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as Blacklist-string) or only one episode (when using \"Enterprise~Azati Prime\" as Blacklist-string)." -msgstr "Choisir les bons critères de recherches décidera soit que seules les diffusions recherchés ou les diffusions ayant un nom similaires voire même rien ne sera enregistré.<br />La Casse n'est pas importante, \"X-Files\" concorde avec tout ce que \"x-files\" fera concorder. Vous pouvez régler de multiples critères de recherche en les séparants par des espaces. Les diffusions concorderont seulement si elles contiennent <strong>tous</strong> les critères.<br />Utiliser de préférence uniquement des chiffres et des lettres, car l'EPG omet souvent les virgules, parenthèses, et autres caractères.<br />Les experts peuvent aussi utiliser les expressions régulières, mais vous devrez étudier les sources de VDRAdmin-AM (fonctionnalité non documentée).<br /><br />Vous pouvez exclure des diffusions et donc elle ne seront pas enregistré même si elle concordent avec une Auto-Programmation. Néanmoins vous devez entrer ses titres dans le fichier <i>vdradmind.bl</i>, un évènement par ligne. Ce fichier doit être situé dans votre répertoire de configuration de VDRAdmin-AM. Si cette chaîne de caractères est trouvé soit dans <u>titre</u> ou dans <u>titre~soustitre</u>de l'EPG, cet évenement ne sera pas programmé. Donc sous pouvez désactivé des épisodes complets (par exemple en utilisant \"Enterprise\" comme chaîne de caractère) ou seulement un épisode (en utilisant \"Enterprise~Azati Prime\" comme chaîne de caractères)." +#, fuzzy +msgid "New Blacklist" +msgstr "Utiliser des \"listes noires\" :" -msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." -msgstr "Ici, vous pouvez définir les sections du guide électronique des programmes où VDRAdmin-AM recherchera le motif de recherche." +msgid "Search pattern" +msgstr "Rechercher un motif" -msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." -msgstr "Utilisez ces cases à cocher pour limiter la recherche de diffusions concordantes à un jeu de jours." +msgid "From" +msgstr "De" -msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." -msgstr "La chaîne à rechercher pour des diffusion concordantes ou \"toutes\" pour rechercher dans toutes les chaînes connues ou désirées. Vous pouvez définir les chaînes désirées pour l'Auto-programmation dans \"Configuration\"." +msgid "To" +msgstr "A" -msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Une diffusion doit démarrer après l'horaire entrée pour être concordante. Le premier champ est pour \"heure\", le second pour \"minute\"." +#, fuzzy +msgid "Delete blacklist?" +msgstr "Utiliser des \"listes noires\" :" -msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Une diffusion doit s'arrêter avant l'horaire entrée pour être concordante. Le premier champ est pour \"heure\", le second pour \"minute\"." +#, fuzzy +msgid "Delete Selected Blacklists" +msgstr "Supprimer Recherches Sélectionnées" -msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." -msgstr "Sélectionnez cette option à \"oui\" si toutes les programmations programmées par cette Auto-Programmation devraient avoir des marges de début/fin individuelles et entrez les valeurs dans les deux prochains champs." +#, fuzzy +msgid "Delete all selected blacklists?" +msgstr "Supprimer toutes les Recherches Sélectionnées ?" -msgid "The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG." -msgstr "Le nombre de minutes que VDRAdmin-AM soustrait aux heures de début trouvées dans les données EPG." +msgid "EPG search" +msgstr "recherche EPG" -msgid "The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG." -msgstr "Le nombre de minutes que VDRAdmin-AM ajoute aux heures de fin trouvées dans les données EPG." +msgid "EPG Search" +msgstr "Recherche EPG" -msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." -msgstr "Cochez cette case si vous voulez que VDRAdmin-AM ajoute le sous-titre EPG de la diffusion au nom du fichier de l'enregistrement." +msgid "Use template" +msgstr "Utiliser un modèle" -msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." -msgstr "Si vous activez ceci, VDRAdmin-AM suivra les programmations qu'il aura automatiquement créées. Ceci est utile si vous voulez désactiver ou supprimer les programmations automatiquement créées dans la liste des programmations." +msgid "New Search" +msgstr "Nouvelle Recherche" -msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." -msgstr "Le répertoire où cette Programmation Automatique va placer les enregistrements. Si le nom devait contenir des sous répertoires, ceux-ci devraient être délimités par le caractère '~' (le caractère '/' peut faire partie du nom d'un exécutable).<br />VDRAdmin-AM ajoutera le titre et le sous-titre (si la case \"Episode\" est cochée) du programme diffusé à ce nom.<br /><br />Vous pouvez aussi utiliser d'autres noms clé qui sont remplacés par les valeurs fournies par exemple par <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - deviendra le titre de l'évènement.</li><li>%Subtitle% - deviendra le sous-titre de l'évènement.</li><li>%Director% - deviendra le metteur en scène de l'évènement.</li><li>%Date% - deviendra la date de l'enregistrement.</li><li>%Category% - deviendra la catégorie de l'évènement (Film/Série/...).</li><li>%Genre% - deviendra le genre de l'évènement (Drame/Tragédie/..).</li><li>%Year% - deviendra l'année de production.</li><li>%Country% - deviendra le pays de production.</li><li>%Originaltitle% - deviendra le titre original de l'évènement.</li><li>%FSK% - deviendra le FSK (??) de l'évènement.</li><li>%Episode% - deviendra le titre de l'épisode de l'évènement.</li><li>%Rating% - deviendra la note de l'évènement donnée par le fournisseur de l'EPG.</li></ul><h4>Remarque : </h4>Si vous utilisez les noms clé ci-dessus, il est de votre responsabilité de fournir le <strong>nom complet du fichier </strong> de l'enregistrement ! VDRAdmin-AM n'ajoutera rien à la chaîne de caractères obtenue." +#, fuzzy +msgid "Edit Template" +msgstr "Gabarit :" -msgid "Timer" -msgstr "Programmation" +msgid "Settings" +msgstr "Paramètres" -msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" -msgstr "<p>Ici vous trouverez une liste des programmations connues par VDR.</p><p> En haut vous trouverez un graphique montrant les programmations au jour le jour. Cela permet d'appréhender rapidement ce qu'il se passe sur une journée et vous aide à découvrir les programmations conflictuelles. Survoler avec la souris une programmation permet d'afficher une bulle d'aide contenant le titre, la priorité, la durée de vie, la durée de celle-ci.</p><p> En dessous du graphe, vous trouverez une liste des programmations montrant quelques informations sur les programmations. Vous pouvez changer l'ordre d'affichage en cliquant sur les descriptions des colonnes.</p><p> Pour chaque enregistrement, vous avez les options suivantes : <dl><dt> Changer son état </dt><dd> En cliquant sur \"Oui\", \"Non\", \"VPS\" or \"Auto\" dans la colonne \"Activé\" .</dd><dt> Voir rapidement sa priorité et sa durée de vie</dt><dd> En survolant de la souris le titre de la programmation.</dd><dt> Voir ses données EPG </dt><dd> Les programmations qui ont le paramètre <span class=\"ref_label\"> Vérification de l'auto-programmation</span> à \"Identification de Transmission\" montreront les données EPG si vous cliquez sur le titre de la programmation.</dd><dt> Editer la programmation</dt><dd>Vous pouvez éditer la programmation en cliquant sur <img src=\"bilder/edit.png\" alt=\"éditer\" />.</dd><dt> Supprimer une programmation </dt><dd> Pour supprimer une programmation vous devez cliquer sur <img src=\"bilder/delete.png\" alt=\"supprimer\" />.</dd></dl></p><p> Les états de programmation sont indiqués par des cases de couleurs différentes (dans le vue avec graphique) ou des images (dans la vue par liste) : <br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> La programmation est OK et enregistrera.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> La programmation est conflictuelle avec une autre programmation. Cela n'est pas critique, tant que vous avez assez de cartes DVB que d'enregistrements.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> La programmation est critique et a beaucoup de chances de ne <strong>pas</strong> enregistrer.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> La programmation n'est pas active.</p><p> En plus de ces fonctions vous pouvez ajouter une nouvelle programmation en cliquant sur <input type=\"submit\" class=\"submit\" value=\"Nouvelle Programmation\"/> en haut et vous pouvez supprimer plusieurs programmations en cochant plusieurs programmations dans la dernière coloone de ces programmations et en cliquant sur <input type=\"submit\" class=\"submit\" value=\"Supprimer les Programmations Sélectionnées\"/>.</p><p> Vous pouvez <input type=\"submit\" class=\"submit\" value=\"activer\"/> et <input type=\"submit\" class=\"submit\" value=\"désactiver\"/> les programmations sélectionnées.</p>" +msgid "Action" +msgstr "Action" -msgid "Playing Today" -msgstr "Joué Aujourd'hui" +msgid "Find" +msgstr "Rechercher" -msgid "starting at" -msgstr "Commence à" +msgid "Show Favorites" +msgstr "Montrer les Favoris" + +msgid "Delete Selected Searches" +msgstr "Supprimer Recherches Sélectionnées" + +msgid "Delete all selected searches?" +msgstr "Supprimer toutes les Recherches Sélectionnées ?" + +msgid "Execute Selected Searches" +msgstr "Executer les Recherches Sélectionnées" + +msgid "Duration" +msgstr "Durée" + +msgid "More Information" +msgstr "Plus d'Informations" + +msgid "Channels" +msgstr "Chaînes" + +msgid "Record" +msgstr "Enregistrer" #, fuzzy msgid "Add New Blacklist" @@ -485,10 +533,6 @@ msgstr "Utiliser des \"listes noires\" :" msgid "Add New Template" msgstr "Ajouter Nouvelle Auto-Programmation" -#, fuzzy -msgid "Edit Template" -msgstr "Gabarit :" - msgid "Add New Search" msgstr "Ajouter une Nouvelle Recherche" @@ -504,9 +548,6 @@ msgstr "Vous n'avez ni sélectionné\\ntitre, ni sous-titre, ni description.\\nV msgid "Hide results" msgstr "Cacher les résultats" -msgid "Settings" -msgstr "Paramètres" - #, fuzzy msgid "Name:" msgstr "Nom" @@ -695,264 +736,147 @@ msgstr "Supprimer Programmation ?" msgid "Save as template" msgstr "Enregistrer en tant que modèle" -msgid "Create New Timer" -msgstr "Créer Nouvelle Programmation" - -msgid "Buffer:" -msgstr "Tampon :" - -msgid "Use VPS:" -msgstr "Utiliser VPS :" - -msgid "readonly" -msgstr "lecture seule" - -msgid "Timer has been set by AutoTimer pattern:" -msgstr "La programmation a été auto-programmée avec le modèle :" - -msgid "No Help Available" -msgstr "Pas d'aide disponible" - -msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgstr "<p>Aucune aide n'est disponible. Pour ajouter ou changer du texte contactez <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org.</a>.</p>" +msgid "Run" +msgstr "Exécuter" msgid "Error!" msgstr "Erreur !" -msgid "TV" -msgstr "TV" +msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" +msgstr "<p>Ici vous trouverez une liste des programmations automatiques (ou AutoTimer) connues de VDRAdmin-AM.</p><p>Cette liste montre des informations sur ces Programmations Automatiques. Vous pouvez changer l'ordre de cette liste en cliquant les descriptions des colonnes.</p><p>Pour chaque Programmation Automatique vous avez les options suivantes :<dl><dt> Changer son état</dt><dd> En cliquant sur \"Oui\" ou \"Non\" dans la colonne \"Activé\".</dd><dt> Voir rapidement sa priorité et sa durée de vie</dt><dd>En survolant de la sourie le titre de la Programmation Automatique.</dd><dt>Editer la Programmation Automatique</dt><dd> Vous pouvez éditer une Programmation Automatique en cliquant sur<img src=\"bilder/edit.png\" alt=\"editer\" />.</dd><dt> Supprimer une Programmation Automatique </dt><dd> Pour supprimer une Programmation Automatique vous devez cliquer sur <img src=\"bilder/delete.png\" alt=\"supprimer\" />.</dd></dl></p><p> Les états de toutes les Programmations Automatiques sont indiqués par des images de couleurs différentes : <br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> La Programmation Automatique est OK and se programmera automatiquement.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactivée\" align=\"middle\" /> La Programmation Automatique n'est pas activée.</p><p> En plus de ces fonctions vous pouvez ajouter une nouvelle Programmation Automatique en cliquant sur <input type=\"submit\" class=\"submit\" value=\"Nouvelle Programmation Automatique\"/> en haut et vous pouvez supprimer plusieurs Programmations Automatiques en cochant les case dans la dernière colonne de celles-ci et en cliquant sur <input type=\"submit\" class=\"submit\" value=\"Supprimer les Programmations Automatiques Sélectionnées\"/>.</p><p> Cliquez <input type=\"submit\" class=\"submit\" value=\"Forcer la Mise à Jour\"/> pour forcer VDRAdmin-AM à se reconnecter à VDR, récupérer les données EPG courantes et vérifier and les modèles de Programmations Automatiques.</p>" -msgid "Interval:" -msgstr "Intervalle :" +msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgstr "<p>Ici vous pouvez éditer les paramètres d'une programmation automatique (AutoTimer). </p><p>Les Programmations Automatiques sont une fonction clé de VDRAdmin-AM. Une Programmation Automatique consiste en un ou plusieurs motifs et d'autres paramètres, qui sont recherchés dans l'Electronic Program Guide (EPG). Quand ces motifs sont trouvés, une Programmation Automatique est ajouté à VDR automatiquement pour cette diffusion. Cette fonctionnalité est très confortable pour enregistrer des séries diffusées irrégulièrement ou des films que vous ne voulez par manquer.</p>" -msgid "sec." -msgstr "sec." +msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." +msgstr "Activer ou désactiver cette Auto-Programmation. Les Auto-Programmations désactivées sont toujours stockées dans la liste des Auto-programmation, aussi elles peuvent être activées à tout moment, mais cependant elles n'enregistre rien. Au dessus vous pouvez régler ceci à \"Une Fois\", donc cette Auto-Programmation programme seulement la prochaine (et unique!) occurrence de la diffusion." -msgid "G" -msgstr "R" +msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Broadcasts will match only if they match <strong>all</strong> configured search items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as blacklist string) or only one episode (when using \"Enterprise~Azati Prime\" as blacklist string)." +msgstr "Choisir les bons critères de recherches décidera soit que seules les diffusions recherchés ou les diffusions ayant un nom similaires voire même rien ne sera enregistré.<br />La Casse n'est pas importante, \"X-Files\" concorde avec tout ce que \"x-files\" fera concorder. Vous pouvez régler de multiples critères de recherche en les séparants par des espaces. Les diffusions concorderont seulement si elles contiennent <strong>tous</strong> les critères.<br />Utiliser de préférence uniquement des chiffres et des lettres, car l'EPG omet souvent les virgules, parenthèses, et autres caractères.<br />Les experts peuvent aussi utiliser les expressions régulières, mais vous devrez étudier les sources de VDRAdmin-AM (fonctionnalité non documentée).<br /><br />Vous pouvez exclure des diffusions et donc elle ne seront pas enregistré même si elle concordent avec une Auto-Programmation. Néanmoins vous devez entrer ses titres dans le fichier <i>vdradmind.bl</i>, un évènement par ligne. Ce fichier doit être situé dans votre répertoire de configuration de VDRAdmin-AM. Si cette chaîne de caractères est trouvé soit dans <u>titre</u> ou dans <u>titre~soustitre</u>de l'EPG, cet évenement ne sera pas programmé. Donc sous pouvez désactivé des épisodes complets (par exemple en utilisant \"Enterprise\" comme chaîne de caractère) ou seulement un épisode (en utilisant \"Enterprise~Azati Prime\" comme chaîne de caractères)." -msgid "Grab the picture!" -msgstr "Rafraîchir!" +msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." +msgstr "Ici, vous pouvez définir les sections du guide électronique des programmes où VDRAdmin-AM recherchera le motif de recherche." -msgid "Size:" -msgstr "Taille :" +msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." +msgstr "Utilisez ces cases à cocher pour limiter la recherche de diffusions concordantes à un jeu de jours." -msgid "Open in separate window" -msgstr "Ouvrir dans une nouvelle fenêtre" +msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." +msgstr "La chaîne à rechercher pour des diffusion concordantes ou \"toutes\" pour rechercher dans toutes les chaînes connues ou désirées. Vous pouvez définir les chaînes désirées pour l'Auto-programmation dans \"Configuration\"." -msgid "Playing Today?" -msgstr "Aujourd'hui ?" +msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Une diffusion doit démarrer après l'horaire entrée pour être concordante. Le premier champ est pour \"heure\", le second pour \"minute\"." -msgid "Timeline" -msgstr "Chronologie" +msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Une diffusion doit s'arrêter avant l'horaire entrée pour être concordante. Le premier champ est pour \"heure\", le second pour \"minute\"." -msgid "EPG Search" -msgstr "Recherche EPG" +msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." +msgstr "Sélectionnez cette option à \"oui\" si toutes les programmations programmées par cette Auto-Programmation devraient avoir des marges de début/fin individuelles et entrez les valeurs dans les deux prochains champs." -msgid "Recordings" -msgstr "Enregistrements" +msgid "The number of minutes VDRAdmin-AM subtracts from the broadcast's start time found in the EPG." +msgstr "Le nombre de minutes que VDRAdmin-AM soustrait aux heures de début trouvées dans les données EPG." -msgid "Remote Control" -msgstr "Télécommande" +msgid "The number of minutes VDRAdmin-AM adds to the broadcast's stop time found in the EPG." +msgstr "Le nombre de minutes que VDRAdmin-AM ajoute aux heures de fin trouvées dans les données EPG." -msgid "Watch TV" -msgstr "Regarder TV" +msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." +msgstr "Un entier dans l'intervalle <strong>0...99</strong>, définissant la <strong>priorité</strong> de cette programmation et de l'enregitrement créé par cette programmation. <strong>0</strong> représente la valeur la plus faible, <strong>99</strong> la plus haute. La priorité est utilisée pour décider quelle programmation devrait être démarrée dans le cas où deux ou plus de programmation possèdent la même heure <strong>début</strong>. La première programmation dans la liste avec la priorité la plus haute sera utilisée.<br /><br />Cette valeur est aussi stockée avec l'enregistrement, et est utilisée plus tard pour décider quel enregistrement doit être supprimé du disque pour libérer de la place pour un nouvel enregistrement. Si le disque est plein et qu'un nouvel enregistrement nécessite plus de place, un enregistrement avec la plus faible priorité (et dont <strong>durée de vie</strong> garantie sera dépassée) sera enlevé.<br /><br />Si toutes les cartes DVB disponibles sont actuellement occupés, une programmation avec une priorité plus élevée interrompra la programmation avec la priorité la plus faible pour démarrer l'enregistrement." -msgid "Commands" -msgstr "Commandes" +msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." +msgstr "La durée de vie <strong>garantie</strong> (en jours) d'un enregistrement créé pas cette programmation. <strong>0</strong> signifie que cet enregistrement peut être automatiquement supprimé à n'importe quelle moment par un enregistrement avec une priorité plus haute. <strong>99</strong> signifie que cet enregistrement ne sera jamais automatiquement supprimé. Tout nombre dans l'interval <strong>1...98</strong> signifie que cet enregistrement ne peut être automatiquement supprimé en faveur d'un nouvel enregistrement, jusqu'à ce que le nombre de jour donné depuis la date de <strong>démarrage</strong> de l'enregistrement soit dépassé." -msgid "Configuration" -msgstr "Configuration" +msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." +msgstr "Cochez cette case si vous voulez que VDRAdmin-AM ajoute le sous-titre EPG de la diffusion au nom du fichier de l'enregistrement." -msgid "Search" -msgstr "Rechercher" +msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." +msgstr "Si vous activez ceci, VDRAdmin-AM suivra les programmations qu'il aura automatiquement créées. Ceci est utile si vous voulez désactiver ou supprimer les programmations automatiquement créées dans la liste des programmations." + +msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." +msgstr "Le répertoire où cette Programmation Automatique va placer les enregistrements. Si le nom devait contenir des sous répertoires, ceux-ci devraient être délimités par le caractère '~' (le caractère '/' peut faire partie du nom d'un exécutable).<br />VDRAdmin-AM ajoutera le titre et le sous-titre (si la case \"Episode\" est cochée) du programme diffusé à ce nom.<br /><br />Vous pouvez aussi utiliser d'autres noms clé qui sont remplacés par les valeurs fournies par exemple par <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - deviendra le titre de l'évènement.</li><li>%Subtitle% - deviendra le sous-titre de l'évènement.</li><li>%Director% - deviendra le metteur en scène de l'évènement.</li><li>%Date% - deviendra la date de l'enregistrement.</li><li>%Category% - deviendra la catégorie de l'évènement (Film/Série/...).</li><li>%Genre% - deviendra le genre de l'évènement (Drame/Tragédie/..).</li><li>%Year% - deviendra l'année de production.</li><li>%Country% - deviendra le pays de production.</li><li>%Originaltitle% - deviendra le titre original de l'évènement.</li><li>%FSK% - deviendra le FSK (??) de l'évènement.</li><li>%Episode% - deviendra le titre de l'épisode de l'évènement.</li><li>%Rating% - deviendra la note de l'évènement donnée par le fournisseur de l'EPG.</li></ul><h4>Remarque : </h4>Si vous utilisez les noms clé ci-dessus, il est de votre responsabilité de fournir le <strong>nom complet du fichier </strong> de l'enregistrement ! VDRAdmin-AM n'ajoutera rien à la chaîne de caractères obtenue." msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" msgstr "<p>Vous pouvez changer ici les réglages généraux et de base pour les programmations, les Auto-Programmations, la sélection des chaînes et les paramétrages de diffusion.</p>" -msgid "General Settings" -msgstr "Paramètres Généraux" - -msgid "VDR" -msgstr "VDR" - -msgid "Identification" -msgstr "Identification" - -msgid "Streaming" -msgstr "Emission de Flux" - -msgid "Expert" -msgstr "Expert" - -msgid "External Search" -msgstr "Recherche Extenre" - -msgid "Channel Selections" -msgstr "Sélections Chaînes" - -msgid "Skin:" -msgstr "Thème :" - msgid "The skin you want to use." msgstr "Le thème que vous désirez utiliser." -msgid "Login Page:" -msgstr "Page de Démarrage :" - msgid "The page you want to see at first connect to VDRAdmin-AM." msgstr "La page que vous désirez voir à la première connexion à VDRAdmin-AM." -msgid "Number of channels to use:" -msgstr "Nombre de chaînes à utiliser :" - msgid "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." msgstr "VDRAdmin-AM va charger le présent nombre de chaînes de VDR et ne montrer que celles qui ont les champs qui peuvent être sélectionnés. Cela limite aussi les Informations EPG. VDRAdmin-AM ne va lire que ce dont il a besoin, ce qui va réduire la consommation mémoire et augmenter la performance. <strong>0</strong> désactive cette option et VDRAdmin-AM va utiliser toutes les chaînes." -msgid "Local net (no login required):" -msgstr "Réseau local (login non nécessaire) :" - msgid "Here you can specify an IP address or range that can login without providing login information. For example: \"192.168.0.0/24\" will include any IP starting with \"192.168.0\", \"192.168.0.123/32\" will only match \"192.168.0.123\"." msgstr "Vous pouvez spécifier ici une adresse IP ou une plage pour laquelle aucune authentification ne sera demandée. Par exemple : \"192.168.0.0/24\" inclura toute adresse commençant par \"192.168.0\", \"192.168.0.123/32\" inclura seulement \"192.168.0.123\"." -msgid "Language:" -msgstr "Langue :" - msgid "Here you can set the localization VDRAdmin-AM should use." msgstr "Ici vous pouvez définir la langue de VDRAdmin-AM." -msgid "Save settings on exit:" -msgstr "Enregistrer les paramètres en quittant :" - msgid "With this option the settings will be saved if VDRAdmin-AM exits. This will also save settings not available on the \"Configuration\" menu like interval and size in TV, sorting in the lists and current view in \"What's on now\"." msgstr "Avec cette option, les paramètres seront sauvegardés si VDRAdmin-AM existe. Cela enregistrera aussi les paramètres non disponibles dans le menu \"Configuration\" comme l'intervalle et la taille sur la TV, tri des listes et la vue courante dans \"En ce Moment\"." msgid "Top" msgstr "Haut" -msgid "Number of DVB cards:" -msgstr "Nbre de Cartes DVB :" - msgid "The number of DVB cards VDR can access. Depending on this value VDRAdmin-AM will calculate critical timers in the <span class=\"ref_menu\">Timer</span> menu." msgstr "Le nombre de carte DVB auxquelles VDR peut accéder. Suivant cette valeur VDRAdmin-AM calculera les programmations critiques an le menu <span class=\"ref_menu\">Programmation</span>." -msgid "Path to recordings:" -msgstr "Chemin des Enregistrements VDR :" - msgid "The path to VDR's recordings. It's used so that VDRAdmin-AM can locate the recordings when using <span class=\"ref_label\">Recordings Streaming</span> and <span class=\"ref_file\">reccmds.conf</span> in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Le Chemin vers les enregistrements de VDR. Ceci est utilisé pour que VDR puisse situer les enregistrements lorsque l'on utilise <span class=\"ref_label\">Emission d'Enregistrements</span> et <span class=\"ref_file\">reccmds.conf</span> dans le menu <span class=\"ref_menu\">Enregistrements</span>." -msgid "Path to configuration files:" -msgstr "Chemin vers les fichiers de configuration :" - msgid "The path where VDR's configuration files are located. If this directory contains the file <span class=\"ref_file\">reccmds.conf</span> its content is shown in a selectbox in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Le chemin où la configuration de VDR se situe. Si ce répertoire contient le fichier <span class=\"ref_file\">reccmds.conf</span> son contenu est affiché dans une boite de sélection dans le menu <span class=\"ref_menu\">Enregistrements</span>." -msgid "Path to EPG images:" -msgstr "Chemin vers les images EPG :" - msgid "The path where the EPG images are stored." msgstr "Le chemin dans lequel les images EPG sont stockées." -msgid "Username:" -msgstr "Identifiant :" - msgid "The username for the main user, i.e. the user having the most privileges." msgstr "Le nom d l'utilisateur principal, celui possédant le plus de privilèges." -msgid "Password:" -msgstr "Mot de Passe :" - msgid "The main user's password." msgstr "Le mot de passe de l'utilisateur principal." -msgid "Guest Account:" -msgstr "Compte d'Invité :" - msgid "If you want a user account having only limited privileges, this is for you. The guest user cannot modify anything, it's only allowed to view the EPG, timers, AutoTimers and recordings listings." msgstr "Si vous voulez un compte utilisateur possédant seulement des droits limités, ceci est pour vous. L'utilisateur invité ne peut rien modifier. Il est seulement autoriser à voir le guides électronique des programmes, les programmations, les Auto-Programmations et la liste des enregistrements." -msgid "Guest Username:" -msgstr "Identifiant Invité :" - msgid "The username for the guest user." msgstr "Le nom de l'utilisateur invité." -msgid "Guest Password:" -msgstr "Mot de Passe Invité :" - msgid "The guest user's password." msgstr "Le mot de passe de l'invité." -msgid "Hours:" -msgstr "Heures :" - msgid "The number of hours to show in the timeline." msgstr "Le nombre d'heures à afficher dans la chronologie." -msgid "Times:" -msgstr "Périodes :" - msgid "A comma separated list of times in <strong>hh:mm</strong> format that appear in the selectbox placed at the top." msgstr "Une liste d'horaires séparés par des virgules au format <strong>hh:mm</strong> qui apparaissent dans la boites de sélection placée en haut." -msgid "Tooltips:" -msgstr "Bulles d'aide :" - msgid "Here you can (de-)activate the tooltips." msgstr "Ici vous (dés-)activer les bulles d'aide." -msgid "Active:" -msgstr "Active :" - msgid "Activate or deactivate the AutoTimer function." msgstr "Active ou désactive la fonction d'Auto-Programmation." -msgid "Send email after programming timer:" -msgstr "Envoyer email après création programmation :" - msgid "VDRAdmin-AM will send an email whenever an event matches an AutoTimer and a timer has been programmed if you enable this feature." msgstr "VDRAdmin-AM va envoyer un email à chaque fois qu'un évènement va correspondre à une auto-programmation et qu'une programmation a été programmée si vous activez cette option." -msgid "Send email as:" -msgstr "Envoyer mail en tant que :" - msgid "Here you set the sending email address of the generated email." msgstr "Ici vous allez définir le nom de domaine de provenance de l'email généré." -msgid "Send email to:" -msgstr "Envoyer mail à :" - msgid "The email address the email is sent to." msgstr "L'adresse email de destination." -msgid "Mail server:" -msgstr "Serveur smtp :" - msgid "The outgoing mail server." msgstr "Le serveur smtp d'envoi des emails." -msgid "SMTPAuth user:" -msgstr "Identifiant smtp :" - msgid "If you need to authenticate yourself at the outgoing mail server, you have to supply the username and the password below. Leaving this field empty will disable SMTPAuth." msgstr "Si vous avez besoin de vous authentifier sur votre serveur smtp, vous devez fournir vos identifiants ci-dessous. Laissez ces champs vide implique qu'il n'y a pas d'authentification smtp." -msgid "SMTPAuth password:" -msgstr "Mot de Passe smtp :" - msgid "The password for the SMTPAuth user." msgstr "Le Mot de Passe pour le serveur SMTP." -msgid "Tooltips in timeline:" -msgstr "Bulles d'aide dans la chronologie :" - msgid "Here you can (de-)activate the tooltips in the timeline." msgstr "Ici vous pouvez (dés-)activer les bulles d'aide dans la chronologie." -msgid "Tooltips in list:" -msgstr "Bulles d'aide dans la liste :" - msgid "Here you can (de-)activate the tooltips in the list." msgstr "Ici vous pouvez (dés-)activer les bulles d'aide dans la liste." @@ -962,51 +886,27 @@ msgstr "Ajouter résumé dans les nouvelles programmations :" msgid "If you don't want VDRAdmin-AM to add the summary taken from EPG to new timers you can switch it off here." msgstr "Si vous ne voulez pas que VDRAdmin-AM ajoute le résumé de l'EPG dans les nouvelles programmations vous pouvez désactiver cette option." -msgid "Live Streaming:" -msgstr "Emission de Flux en direct :" - msgid "Enable or disable live streaming using the <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. You also have to set the correct <span class=\"ref_label\">HTTP Port for Streamdev</span> below." msgstr "Active ou Désactive la diffusion en directe en utilisant <a href=\"http://www.magoa.net/linux/\">le plugin streamdev</a>. Vous devez aussi définir le réglage correct du <span class=\"ref_label\">Port HTTP pour Streamdev</span> ci-dessous." -msgid "HTTP Port of Streamdev (also possible 3000/ts):" -msgstr "Port HTTP Streamdev (aussi possible 3000/ts) :" - msgid "Here you have to set the port number your VDR's streamdev server listens for connections. Additionally you can also provide the stream type you like to use." msgstr "Vous pouvez ici régler le numéro de port sur lequel le serveur streamdev de VDR sera à l'écoute pour toute connexion. Additionnellement vous pouvez aussi fournir le type de flux que vous désirez utiliser." -msgid "Recordings Streaming:" -msgstr "Emission d'Enregistrements" - msgid "Enable or disable streaming of recordings.<br />Well actually this is no real \"streaming\", but you have to setup your workstation so that it can access VDR's recordings. You can use for example Samba or NFS for this. VDRAdmin-AM simply generates a playlist that contains all parts of the recording and sends this to your browser. If your browser and media player are configured correctly you will see the recording on your workstation's display." msgstr "Active ou désactive la diffusion des enregistrements.<br />Actuellement ceci n'est un réel \"streaming\", mais vous avez à parametrer votre station pour quelle puisse accéder aux enregistrements de VDR. Vous pouvez utiliser par exemple Samba or NFS pour cette tâche. VDRAdmin-AM générera simplement une liste de lecture qui contiendra tous les enregistrements et l'enverra à votre navigateur. Si votre navigateur et votre lecteur de média sont configurés correctement, vous pourrez voir les enregistrements sur votre station." -msgid "Path to VDR Recordings on your workstation:" -msgstr "Chemin vers les Enregistrements VDR sur votre poste de travail :" - msgid "This is the path where your workstation can access VDR's recordings. This depends on your VDR and workstation setup, for example \"\\\\vdr\\videos\" or \"V:\\\" (on Windows) or \"/mnt/videos\" (on Linux)." msgstr "Ceci est le chemin où votre station peut accéder au enregistrements de VDR. Cela dépend des réglages de votre VDR et de votre station, par exemple \"\\\\vdr\\videos\" ou \"V:\\\" (sur Windows) ou \"/mnt/videos\" (sur Linux)." -msgid "MIME type for live streaming:" -msgstr "Type MIME pour l'Emission de flux en direct :" - msgid "The MIME type to send when using live streaming. Defaults to \"video/x-mpegurl\"." msgstr "Le Type MIME envoyé quand vous envoyez du flux en direct. Par défaut, le type MIME est \"video/x-mpegurl\"." -msgid "Suffix for live streaming:" -msgstr "Suffixe pour les flux en direct :" - msgid "The suffix to use for live streaming. Defaults to \"m3u\"." msgstr "L'extension à utiliser pour l'émission de flux en direct. Par défaut, l'extension est \"video/x-mpegurl\"." -msgid "MIME type for recordings streaming:" -msgstr "Type MIME pour l'Emission d'Enregistrements :" - msgid "The MIME type to send when using recordings streaming. Defaults to \"video/x-mpegurl\"." msgstr "Le type MIME à envoyer lors de l'envoi de flux d'enregistrements. Par défaut \"video/x-mpegurl\"." -msgid "Suffix for recordings streaming:" -msgstr "Suffixe pour les flux d'Enregistrements :" - msgid "The suffix to use for recordings streaming. Defaults to \"m3u\"." msgstr "L'extension à utiliser pour l'envoi de flux d'enregistrements. Par défaut \"m3u\"." @@ -1022,50 +922,23 @@ msgstr "" msgid "<p>This section is for experts <strong>only</strong>, i.e. you know what you are doing!</p>" msgstr "<p>Cette section est pour les experts <strong>seulement</strong>. Vous devez savoir ce que vous faites!</p>" -msgid "Update EPG data in background:" -msgstr "Mettre à jour les données EPG en tâche de fond :" - msgid "If set to \"yes\" VDRAdmin-AM will periodically refresh its local EPG cache. Else the EPG will be refreshed if the user accesses any EPG view at the web interface and the timeout set at \"Update EPG every\" has been reached." msgstr "Si l'option est \"oui\" VDRAdmin-AM rafraichira périodiquement son cache local EPG. Sinon l'EPG sera rafraichit si l'utilisateur accède à n'importe quelle vue EPG dans l'interface web et que le timeout choisit dans \"Mise à jour EPG tous les\" aura été atteint." -msgid "Update EPG every:" -msgstr "Mettre à jour les données EPG toutes les :" - msgid "The interval, the EPG data is refreshed from VDR and AutoTimer updates are performed (if AutoTimer feature is used)." msgstr "L'intervalle durant lequel les données du guide éléctronique des programmes sont vérifiées pour mettre à jour les Auto-Programmations (si les Auto-Programmations sont activées)." msgid "<p>If you want to limit the number of channels used in some parts of VDRAdmin-AM, this is for you!</p><p>Use the radio buttons to activate or deactivate the wanted channels in the named menu.</p><p>To add channels to the list of wanted channels you have to select them in the left side selectbox and click <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. If you want to remove channels from the list of wanted channels you have to select them in the right side selectbox and click <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" msgstr "<p>Si vous voulez limiter le nombre de chaînes utilisées dans certaines parties de VDRAdmin-AM, cette option est faite pour vous !</p><p>Utilisez le radio bouton pour activer ou désactiver les chaînes désirées le menu.</p><p>Pour ajouter des chaînes dans la liste des chaînes désirées, vous devez les sélectionner sur le côté gauche de la liste de sélection et cliquez sur <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. Si vous voulez enlever des chaînes de la liste des chaînes désirées, vous devez les sélectionner dans la liste de sélection de droite et cliquez sur <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" -msgid "Show channels without EPG information:" -msgstr "Voir les chaînes sans les informations EPG :" - msgid "Usually channels that don't have EPG information are hidden in all EPG views. If you don't want them to be hidden you have to set this option to \"yes\"." msgstr "De manière générale, les chaînes qui n'ont pas d'information EPG sont cachées dans toutes les vues EPG. Si vous ne voulez pas les cacher, activez (\"oui\") cette option." -msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" -msgstr "<p>Ici vous trouverez une liste des programmations automatiques (ou AutoTimer) connues de VDRAdmin-AM.</p><p>Cette liste montre des informations sur ces Programmations Automatiques. Vous pouvez changer l'ordre de cette liste en cliquant les descriptions des colonnes.</p><p>Pour chaque Programmation Automatique vous avez les options suivantes :<dl><dt> Changer son état</dt><dd> En cliquant sur \"Oui\" ou \"Non\" dans la colonne \"Activé\".</dd><dt> Voir rapidement sa priorité et sa durée de vie</dt><dd>En survolant de la sourie le titre de la Programmation Automatique.</dd><dt>Editer la Programmation Automatique</dt><dd> Vous pouvez éditer une Programmation Automatique en cliquant sur<img src=\"bilder/edit.png\" alt=\"editer\" />.</dd><dt> Supprimer une Programmation Automatique </dt><dd> Pour supprimer une Programmation Automatique vous devez cliquer sur <img src=\"bilder/delete.png\" alt=\"supprimer\" />.</dd></dl></p><p> Les états de toutes les Programmations Automatiques sont indiqués par des images de couleurs différentes : <br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> La Programmation Automatique est OK and se programmera automatiquement.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactivée\" align=\"middle\" /> La Programmation Automatique n'est pas activée.</p><p> En plus de ces fonctions vous pouvez ajouter une nouvelle Programmation Automatique en cliquant sur <input type=\"submit\" class=\"submit\" value=\"Nouvelle Programmation Automatique\"/> en haut et vous pouvez supprimer plusieurs Programmations Automatiques en cochant les case dans la dernière colonne de celles-ci et en cliquant sur <input type=\"submit\" class=\"submit\" value=\"Supprimer les Programmations Automatiques Sélectionnées\"/>.</p><p> Cliquez <input type=\"submit\" class=\"submit\" value=\"Forcer la Mise à Jour\"/> pour forcer VDRAdmin-AM à se reconnecter à VDR, récupérer les données EPG courantes et vérifier and les modèles de Programmations Automatiques.</p>" - -msgid "Your Browser does not support frames!" -msgstr "Votre Navigateur ne supporte pas les cadres !" - -msgid "Rename Recording" -msgstr "Nom Original d'Enregistrement :" - -msgid "Original Name of Recording:" -msgstr "Nom Original d'Enregistrement :" - -msgid "New Name of Recording:" -msgstr "Nouveau Nom d'Enregistrement :" - -msgid "Subtitle:" -msgstr "Sous-titre :" - -msgid "Rename" -msgstr "Renommer" +msgid "Edit Timer" +msgstr "Editer Programmation" -msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" -msgstr "<p>Ici vous trouverez une liste des enregistrements connus de VDR. L'entête montrera aussi les espaces disques utilisés en libres selon VDR.</p><p>La liste vous montre certaines informations sur les enregistrements. Vous pouvez changer l'ordre ce cette liste en cliquant sur la description de la colonne. Au dessus de la liste vous verrez le chemin de navigation. Si vous voulez voir le contenu des répertoires précédents vous devrez cliquant sur leurs noms dans le chemin.</p><p> Chaque ligne contient ces informations : <dl><dt>Date</dt><dd>La Date de création de l'enregistrement. Dans le cas d'un répertoire, cela montrera le nombre d'enregistrements que ce répertoire contient.</dd><dt>Heure</dt><dd>L'heure de création de l'enregistrement.Dans le cas d'un répertoire, cela montrera le nombre de <strong>nouveaux</strong> enregistrements que ce répertoire contient.</dd><dt>Nom</dt><dd>Le nom de l'enregistrement ou du répertoire. Cliquez dessus pour voir le résumé de l'enregistrement ou naviguer dans le répertoire.</dd><dt>Renommer (<img src=\"bilder/edit.png\" alt=\"editer\" />)</dt><dd>Renommer un enregistrement.<br /><h4> Remarque : </h4> Cele ne marque que si VDR a la commande SVDRPort <u>RENR</u> qui ne fait pas partie de base de VDR mais qui peut être ajouter grâce à un patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> ou <span class=\"ref_file\">enAIO-v2.2+</span> permettent d'ajouter cette commande.</dd><dt>Supprimer (<img src=\"bilder/delete.png\" alt=\"supprimer\" />)</dt><dd>Supprimer un enregistrement.</dd><dt>Emettre un flux (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>Cette colonne n'est visible que si vous avez activé et configuré <span class=\"ref_label\">L'émission de Flux d'Enregistrement</span> dans le menu de <span class=\"ref_menu\">Configuration</span>. Vous pouvez regarder l'enregistrement sur votre station de travail.</dd></dl></p><p>En plus de ces fonctions vous pouvez supprimer plusieurs enregistrements en même temps en cochant les cases de la dernière colonne de ceux-ci et en cliquant sur <input type=\"submit\" class=\"submit\" value=\"Supprimer les Enregistrements Sélectionnés\"/>.</p><p>Si vous avez défini le chemin des fichiers de configuration de VDR et que vous avez des entrées dans le <span class=\"ref_file\">reccmds.conf</span> de VDR vous pouvez exécuter ces commandes pour les enregistrements sélectionnées en sélectionnant la commande désirée dans la liste de sélection située près de <span class=\"ref_label\"> Commandes : </span> et en pressant sur le bouton <input type=\"submit\" class=\"submit\" value=\"Exécuter\"/>.</p><p>Utilisez <input type=\"submit\" class=\"submit\" value=\"Rafraîchir\"/> pour forcer VDR à rafraîchir sa liste d'enregistrements.</p>" +msgid "Edit EPG" +msgstr "Editer EPG" msgid "<p>Here you can edit the descriptive fields of an existing EPG entry.</p>" msgstr "<p>Ici vous pouvez modifier les champs de description d'une entrée EPG.</p>" @@ -1109,139 +982,116 @@ msgstr "Pistes audio (lecture seule)" msgid "If available this field shows the audio track(s). It cannot be changed." msgstr "Si des piste(s) audio existe(nt), ce champ les montrera. Il ne peut pas être modifié." -msgid "Duration:" -msgstr "Durée :" - -msgid "min" -msgstr "min" - -msgid "Transponder:" -msgstr "Transpondeur :" - -msgid "CA-System:" -msgstr "Système CA :" - -msgid "New Timer" -msgstr "Nouvelle Programmation" - -msgid "Date" -msgstr "Date" - -msgid "Edit timer status?" -msgstr "Changer Statut Programmation ?" +msgid "No Help Available" +msgstr "Pas d'aide disponible" -msgid "This timer is inactive!" -msgstr "Cette Programmation est inactive !" +msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgstr "<p>Aucune aide n'est disponible. Pour ajouter ou changer du texte contactez <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org.</a>.</p>" -msgid "This timer is impossible!" -msgstr "Cette Programmation est impossible !" +msgid "Recordings" +msgstr "Enregistrements" -msgid "No more timers on other transponders possible!" -msgstr "Pas plus de Programmations possibles sur d'autres transpondeurs !" +msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" +msgstr "<p>Ici vous trouverez une liste des enregistrements connus de VDR. L'entête montrera aussi les espaces disques utilisés en libres selon VDR.</p><p>La liste vous montre certaines informations sur les enregistrements. Vous pouvez changer l'ordre ce cette liste en cliquant sur la description de la colonne. Au dessus de la liste vous verrez le chemin de navigation. Si vous voulez voir le contenu des répertoires précédents vous devrez cliquant sur leurs noms dans le chemin.</p><p> Chaque ligne contient ces informations : <dl><dt>Date</dt><dd>La Date de création de l'enregistrement. Dans le cas d'un répertoire, cela montrera le nombre d'enregistrements que ce répertoire contient.</dd><dt>Heure</dt><dd>L'heure de création de l'enregistrement.Dans le cas d'un répertoire, cela montrera le nombre de <strong>nouveaux</strong> enregistrements que ce répertoire contient.</dd><dt>Nom</dt><dd>Le nom de l'enregistrement ou du répertoire. Cliquez dessus pour voir le résumé de l'enregistrement ou naviguer dans le répertoire.</dd><dt>Renommer (<img src=\"bilder/edit.png\" alt=\"editer\" />)</dt><dd>Renommer un enregistrement.<br /><h4> Remarque : </h4> Cele ne marque que si VDR a la commande SVDRPort <u>RENR</u> qui ne fait pas partie de base de VDR mais qui peut être ajouter grâce à un patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> ou <span class=\"ref_file\">enAIO-v2.2+</span> permettent d'ajouter cette commande.</dd><dt>Supprimer (<img src=\"bilder/delete.png\" alt=\"supprimer\" />)</dt><dd>Supprimer un enregistrement.</dd><dt>Emettre un flux (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>Cette colonne n'est visible que si vous avez activé et configuré <span class=\"ref_label\">L'émission de Flux d'Enregistrement</span> dans le menu de <span class=\"ref_menu\">Configuration</span>. Vous pouvez regarder l'enregistrement sur votre station de travail.</dd></dl></p><p>En plus de ces fonctions vous pouvez supprimer plusieurs enregistrements en même temps en cochant les cases de la dernière colonne de ceux-ci et en cliquant sur <input type=\"submit\" class=\"submit\" value=\"Supprimer les Enregistrements Sélectionnés\"/>.</p><p>Si vous avez défini le chemin des fichiers de configuration de VDR et que vous avez des entrées dans le <span class=\"ref_file\">reccmds.conf</span> de VDR vous pouvez exécuter ces commandes pour les enregistrements sélectionnées en sélectionnant la commande désirée dans la liste de sélection située près de <span class=\"ref_label\"> Commandes : </span> et en pressant sur le bouton <input type=\"submit\" class=\"submit\" value=\"Exécuter\"/>.</p><p>Utilisez <input type=\"submit\" class=\"submit\" value=\"Rafraîchir\"/> pour forcer VDR à rafraîchir sa liste d'enregistrements.</p>" -msgid "Timer OK." -msgstr "Programmation OK." +msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" +msgstr "<p>Ici vous trouverez une liste des programmations connues par VDR.</p><p> En haut vous trouverez un graphique montrant les programmations au jour le jour. Cela permet d'appréhender rapidement ce qu'il se passe sur une journée et vous aide à découvrir les programmations conflictuelles. Survoler avec la souris une programmation permet d'afficher une bulle d'aide contenant le titre, la priorité, la durée de vie, la durée de celle-ci.</p><p> En dessous du graphe, vous trouverez une liste des programmations montrant quelques informations sur les programmations. Vous pouvez changer l'ordre d'affichage en cliquant sur les descriptions des colonnes.</p><p> Pour chaque enregistrement, vous avez les options suivantes : <dl><dt> Changer son état </dt><dd> En cliquant sur \"Oui\", \"Non\", \"VPS\" or \"Auto\" dans la colonne \"Activé\" .</dd><dt> Voir rapidement sa priorité et sa durée de vie</dt><dd> En survolant de la souris le titre de la programmation.</dd><dt> Voir ses données EPG </dt><dd> Les programmations qui ont le paramètre <span class=\"ref_label\"> Vérification de l'auto-programmation</span> à \"Identification de Transmission\" montreront les données EPG si vous cliquez sur le titre de la programmation.</dd><dt> Editer la programmation</dt><dd>Vous pouvez éditer la programmation en cliquant sur <img src=\"bilder/edit.png\" alt=\"éditer\" />.</dd><dt> Supprimer une programmation </dt><dd> Pour supprimer une programmation vous devez cliquer sur <img src=\"bilder/delete.png\" alt=\"supprimer\" />.</dd></dl></p><p> Les états de programmation sont indiqués par des cases de couleurs différentes (dans le vue avec graphique) ou des images (dans la vue par liste) : <br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> La programmation est OK et enregistrera.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> La programmation est conflictuelle avec une autre programmation. Cela n'est pas critique, tant que vous avez assez de cartes DVB que d'enregistrements.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> La programmation est critique et a beaucoup de chances de ne <strong>pas</strong> enregistrer.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> La programmation n'est pas active.</p><p> En plus de ces fonctions vous pouvez ajouter une nouvelle programmation en cliquant sur <input type=\"submit\" class=\"submit\" value=\"Nouvelle Programmation\"/> en haut et vous pouvez supprimer plusieurs programmations en cochant plusieurs programmations dans la dernière coloone de ces programmations et en cliquant sur <input type=\"submit\" class=\"submit\" value=\"Supprimer les Programmations Sélectionnées\"/>.</p><p> Vous pouvez <input type=\"submit\" class=\"submit\" value=\"activer\"/> et <input type=\"submit\" class=\"submit\" value=\"désactiver\"/> les programmations sélectionnées.</p>" -msgid "Auto" -msgstr "Auto" +msgid "<p>Here you can edit a timer's settings.</p>" +msgstr "<p>Ici vous pouvez modifier un programmation.</p>" -msgid "activate" -msgstr "activer" +msgid "Timer Active:" +msgstr "Programmation Active :" -msgid "inactivate" -msgstr "désactiver" +msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." +msgstr "Active ou désactive une programmation. Les programmations désactivés sont toujours stockées dans la liste des programmations et peuvent être activées à nouveau, mais elles n'enregistrent néanmoins plus rien." -msgid "selected timers" -msgstr "programmations sélectionnées" +msgid "AutoTimer Checking:" +msgstr "Vérification Auto-Programmation :" -msgid "Delete Selected Timers" -msgstr "Supprimer Programmations Sélectionnées" +msgid "Depending on how this timer has been programmed you have up to three possible settings:" +msgstr "Suivant comment cette programmation à été définie,vous avez jusqu'à trois possibilités :" -msgid "No timers defined!" -msgstr "Aucune Programmation définie !" +msgid "Transmission Identification" +msgstr "Identification Transmission" -#, fuzzy -msgid "EPG Search Blacklists" -msgstr "Utiliser des \"listes noires\" :" +msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." +msgstr "Surveille cette programmation en utilisant l'identification fournie par le guide électronique des programmes. Notez que cela fonctionne seulement si l'identification est fixe et unique! Cette option n'est pas disponible avec les programmations créées dans VDR." -#, fuzzy -msgid "New Blacklist" -msgstr "Utiliser des \"listes noires\" :" +msgid "Time" +msgstr "Horaires" -msgid "Search pattern" -msgstr "Rechercher un motif" +msgid "Monitor this timer using the start and stop time." +msgstr "Surveille cette programmation en utilisant l'horaire de démarrage et d'arrêt." -msgid "From" -msgstr "De" +msgid "off" +msgstr "off" -msgid "To" -msgstr "A" +msgid "Do not monitor this timer." +msgstr "Ne surveille pas cette programmation." -#, fuzzy -msgid "Delete blacklist?" -msgstr "Utiliser des \"listes noires\" :" +msgid "The channel to record." +msgstr "La chaîne à enregistrer." -#, fuzzy -msgid "Delete Selected Blacklists" -msgstr "Supprimer Recherches Sélectionnées" +msgid "Day Of Recording:" +msgstr "Jour d'Enregistrement :" -#, fuzzy -msgid "Delete all selected blacklists?" -msgstr "Supprimer toutes les Recherches Sélectionnées ?" +msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." +msgstr "Le jour où la programmation doit être active. Vous pouvez entrer le jour selon 2 formats : <ul><li>2 chiffres (JJ). Cela utilisera le mois et l'année courante.</li><li> ou la norme ISO (AAAA-MM-JJ). Vous pouvez programmer des programmations aussi loin dans le futur que vous le désirez.</li></ul>Dans le cas où vous voulez programmer une programmation répétitive, vous pouvez utiliser les 7 cases à cocher en dessous du champ texte. Cochez les cases des jours pour lesquels vous désirez que la programmation soit active." -msgid "EPG search" -msgstr "recherche EPG" +msgid "Start Time:" +msgstr "Heure De Début :" -msgid "Use template" -msgstr "Utiliser un modèle" +msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Ceci est l'heure de démarrage de la programmation. Le premier champ texte est pour \"heure\", le second pour \"minute\"." -msgid "New Search" -msgstr "Nouvelle Recherche" +msgid "End Time:" +msgstr "Heure De Fin :" -msgid "Action" -msgstr "Action" +msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Ceci est l'heure de fin de la programmation. Le premier champ texte est pour \"heure\", le second pour \"minute\"." -msgid "Find" -msgstr "Rechercher" +msgid "Title of Recording:" +msgstr "Titre de l'Enregistrement :" -msgid "Show Favorites" -msgstr "Montrer les Favoris" +msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." +msgstr "Le <strong>nom de fichier</strong> que cette programmation va donner à un enregistrement. Si ce nom devait contenir des sous-répertoires, ceux-ci devraient être délimités par '~' (le caractère '/' peut faire partie du nom d'un programme).<br /><br /> Si les mots clé <strong> TITLE </strong> et/ou <strong> EPISODE</strong> sont présents, ils seront remplacés par le titre et l'information sur l'épisode contenue dans les données EPG présentes au moment du lancement de l'enregistrement (si ces données existent). Si au moment de l'enregistrement ces variables ne peuvent être définies, <strong> TITLE </strong> sera remplacé par le nom de la chaîne, et <strong> EPISODE </strong> sera vide." -msgid "Delete Selected Searches" -msgstr "Supprimer Recherches Sélectionnées" +msgid "Summary:" +msgstr "Résumé :" -msgid "Delete all selected searches?" -msgstr "Supprimer toutes les Recherches Sélectionnées ?" +msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." +msgstr "Texte arbitraire qui décrit l'enregistrement fait par cette programmation. Si ce champ n'est pas vide, son contenu sera écrit dans le fichier <span class=\"ref_file\">summary.vdr</span> ou <span class=\"ref_file\">info.vdr</span>, le fichier de l'enregistrement." -msgid "Execute Selected Searches" -msgstr "Executer les Recherches Sélectionnées" +msgid "Your Browser does not support frames!" +msgstr "Votre Navigateur ne supporte pas les cadres !" -msgid "Duration" -msgstr "Durée" +msgid "What's On Now?" +msgstr "En ce Moment ?" -msgid "Template:" -msgstr "Gabarit :" +msgid "Playing Today?" +msgstr "Aujourd'hui ?" -msgid "Also used for other EPG views!" -msgstr "Aussi utilisé pour d'autres vues EPG !" +msgid "Remote Control" +msgstr "Télécommande" -msgid "Bandwidth of Streams:" -msgstr "Bande Passante Flux :" +msgid "Watch TV" +msgstr "Regarder TV" -msgid "URL:" -msgstr "URL :" +msgid "Commands" +msgstr "Commandes" -msgid "Title:" -msgstr "Titre :" +msgid "Search" +msgstr "Rechercher" -msgid "User-defined search:" -msgstr "Recherches définies par l'utilisateur :" +msgid "Authorization Required" +msgstr "Autorisation Requise" -msgid "In \"AutoTimer\"?" -msgstr "Dans \"Auto-Programmations\" ?" +msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." +msgstr "Le serveur n'a pas pu vérifier que vous êtes autorisé à accéder au document demandé. Ou vous avez fourni de mauvaises informations (par ex. mauvais mot de passe), ou votre navigateur n'a pu fournir les informations requises." -msgid "Apply" -msgstr "Appliquer" +msgid "VPS" +msgstr "VPS" msgid "close" msgstr "fermer" @@ -1261,23 +1111,77 @@ msgstr "Piste vidéo :" msgid "Audio tracks:" msgstr "Piste audio :" +msgid "Video tracks" +msgstr "Pistes vidéo" + +msgid "Audio tracks" +msgstr "Pistes audio" + +msgid "TV select" +msgstr "Zapper" + +msgid "Stream" +msgstr "Flux" + +msgid "Channel group:" +msgstr "Groupe de la Chaîne :" + +msgid "Go!" +msgstr "Ok !" + +msgid "Search for other show times" +msgstr "Rechercher d'autres moments de diffusion" + +msgid "No Information" +msgstr "Pas d'Information" + +msgid "No EPG information available" +msgstr "Pas d'information EPG disponible" + +msgid "Playing Today" +msgstr "Joué Aujourd'hui" + +msgid "starting at" +msgstr "Commence à" + +msgid "What's on:" +msgstr "En ce moment :" + +msgid "at" +msgstr "à" + msgid "now" msgstr "maintenant" msgid "to" msgstr "à" +msgid "Duration:" +msgstr "Durée :" + +msgid "min" +msgstr "min" + msgid "at:" msgstr "à :" msgid "You need JavaScript to use the timeline!" msgstr "Vous avez besoin de JavaScript pour utiliser la chronologie !" -msgid "Authorization Required" -msgstr "Autorisation Requise" +msgid "Rename Recording" +msgstr "Nom Original d'Enregistrement :" -msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." -msgstr "Le serveur n'a pas pu vérifier que vous êtes autorisé à accéder au document demandé. Ou vous avez fourni de mauvaises informations (par ex. mauvais mot de passe), ou votre navigateur n'a pu fournir les informations requises." +msgid "Original Name of Recording:" +msgstr "Nom Original d'Enregistrement :" + +msgid "New Name of Recording:" +msgstr "Nouveau Nom d'Enregistrement :" + +msgid "Subtitle:" +msgstr "Sous-titre :" + +msgid "Rename" +msgstr "Renommer" msgid "Total:" msgstr "Total :" @@ -1288,6 +1192,9 @@ msgstr "h" msgid "Free:" msgstr "Libre :" +msgid "Date" +msgstr "Date" + msgid "Total" msgstr "Total" @@ -1309,6 +1216,9 @@ msgstr "Rafraîchir" msgid "Commands:" msgstr "Commandes :" +msgid "Really run this command?" +msgstr "Voulez-vous réellement exécuter cette commande ?" + msgid "Delete Selected Recordings" msgstr "Supprimer Enregistrements Sélectionnés" @@ -1318,6 +1228,105 @@ msgstr "Supprimer Enregistrements Sélectionnés ?" msgid "No recordings available" msgstr "Aucun enregistrement disponible" +msgid "Transponder:" +msgstr "Transpondeur :" + +msgid "CA-System:" +msgstr "Système CA :" + +msgid "New Timer" +msgstr "Nouvelle Programmation" + +msgid "Edit timer status?" +msgstr "Changer Statut Programmation ?" + +msgid "This timer is inactive!" +msgstr "Cette Programmation est inactive !" + +msgid "This timer is impossible!" +msgstr "Cette Programmation est impossible !" + +msgid "No more timers on other transponders possible!" +msgstr "Pas plus de Programmations possibles sur d'autres transpondeurs !" + +msgid "Timer OK." +msgstr "Programmation OK." + +msgid "Auto" +msgstr "Auto" + +msgid "activate" +msgstr "activer" + +msgid "inactivate" +msgstr "désactiver" + +msgid "selected timers" +msgstr "programmations sélectionnées" + +msgid "Delete Selected Timers" +msgstr "Supprimer Programmations Sélectionnées" + +msgid "No timers defined!" +msgstr "Aucune Programmation définie !" + +msgid "Create New Timer" +msgstr "Créer Nouvelle Programmation" + +msgid "Buffer:" +msgstr "Tampon :" + +msgid "Use VPS:" +msgstr "Utiliser VPS :" + +msgid "readonly" +msgstr "lecture seule" + +msgid "Timer has been set by AutoTimer pattern:" +msgstr "La programmation a été auto-programmée avec le modèle :" + +msgid "TV" +msgstr "TV" + +msgid "Interval:" +msgstr "Intervalle :" + +msgid "sec." +msgstr "sec." + +msgid "G" +msgstr "R" + +msgid "Grab the picture!" +msgstr "Rafraîchir!" + +msgid "Size:" +msgstr "Taille :" + +msgid "Open in separate window" +msgstr "Ouvrir dans une nouvelle fenêtre" + +msgid "VDR Commands" +msgstr "Commandes VDR" + +msgid "Export channels as playlist:" +msgstr "Exporter les chaînes en tant que playlist :" + +msgid "Number of lines to show:" +msgstr "Nombre de lignes à montrer :" + +msgid "unlimited" +msgstr "illimité" + +msgid "SVDRP commands:" +msgstr "Commandes SVDRP :" + +msgid "Commands defined in commands.conf:" +msgstr "Commandes définies dans commands.conf :" + +msgid "Output" +msgstr "Sortie" + msgid "What's your VDR hostname (e.g video.intra.net)?" msgstr "Quel est votre Nom d'hôte (ex video.intra.net) ?" @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: VDRAdmin-AM-3.6.3\n" +"Project-Id-Version: VDRAdmin-AM-3.6.4\n" "Report-Msgid-Bugs-To: Andreas Mair <andreas@vdr-developer.org>\n" -"POT-Creation-Date: 2008-12-18 08:25+0100\n" -"PO-Revision-Date: 2008-12-03 00:49+0100\n" +"POT-Creation-Date: 2009-12-30 13:26+0100\n" +"PO-Revision-Date: 2009-02-08 19:45+0100\n" "Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n" "Language-Team: Diego Pierotto <vdr-italian@tiscali.it>\n" "MIME-Version: 1.0\n" @@ -20,177 +20,108 @@ msgstr "" msgid "ISO-8859-1" msgstr "ISO-8859-1" -msgid "What's On Now?" -msgstr "In programmazione adesso" - -msgid "Channel group:" -msgstr "Gruppo canali:" - -msgid "What's on:" -msgstr "In programmazione:" - -msgid "at" -msgstr "alle" - -msgid "o'clock" -msgstr "in punto" - -msgid "More Information" -msgstr "Altre informazioni" - -msgid "Channels" -msgstr "Canali" - -msgid "Stream" -msgstr "Trasmetti" - -msgid "TV select" -msgstr "Seleziona TV" - -msgid "Search for other show times" -msgstr "Cerca altri spettacoli" - -msgid "No Information" -msgstr "Nessuna informazione" - -msgid "Edit" -msgstr "Modifica" - -msgid "Record" -msgstr "Registra" - -msgid "No EPG information available" -msgstr "Nessuna informazione EPG disponibile" - -msgid "Edit EPG" -msgstr "Modifica EPG" - -msgid "Help" -msgstr "Aiuto" - -msgid "Channel" -msgstr "Canale" - -msgid "Time" -msgstr "Ora" +msgid "About" +msgstr "Info" -msgid "Title" -msgstr "Titolo" +msgid "License" +msgstr "Licenza" -msgid "Subtitle" -msgstr "Sottotitolo" +msgid "Authors" +msgstr "Autori" -msgid "Description" -msgstr "Descrizione" +msgid "Current author (VDRAdmin-AM branch):" +msgstr "Autore attuale (ramo VDRAdmin-AM):" -msgid "VPS" -msgstr "VPS" +msgid "Original author (VDRAdmin):" +msgstr "Autore originale (VDRAdmin):" -msgid "Video tracks" -msgstr "Tracce video" +msgid "Translation Team" +msgstr "Gruppo traduzione" -msgid "Audio tracks" -msgstr "Tracce audio" +msgid "English:" +msgstr "Inglese:" -msgid "Save" -msgstr "Salva" +msgid "German:" +msgstr "Tedesco:" -msgid "Cancel" -msgstr "Annulla" +msgid "French:" +msgstr "Francese:" -msgid "Edit Timer" -msgstr "Modifica timer" +msgid "At the moment unmaintained, former translations by:" +msgstr "Al momento non mantenuto, vecchie traduzioni di:" -msgid "<p>Here you can edit a timer's settings.</p>" -msgstr "<p>Qui puoi modificare le impostazioni dei timer.</p>" +msgid "Spanish:" +msgstr "Spagnolo:" -msgid "Timer Active:" -msgstr "Timer attivo:" +msgid "Finnish:" +msgstr "Finlandese:" -msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." -msgstr "Attiva o disattiva questo timer. I timer disattivati sono salvati sempre nell'elenco dei timer in modo che tu possa attivarli ancora, ma non registrano niente nel frattempo." +msgid "Dutch:" +msgstr "Olandese:" -msgid "AutoTimer Checking:" -msgstr "Verifica timer automatici:" +msgid "Russian:" +msgstr "Russo:" -msgid "Depending on how this timer has been programmed you have up to three possible settings:" -msgstr "A seconda di come questo timer è stato programmato hai fino a 3 possibili impostazioni:" +msgid "Czech:" +msgstr "Ceco:" -msgid "Transmission Identification" -msgstr "Identificazione trasmissione" +msgid "Italian:" +msgstr "Italiano:" -msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." -msgstr "Monitora questo timer utilizzando l'identificazione usata dall'EPG. Nota che questo funziona solo se l'identificazione fornita è un valore fisso ed unico! Questa opzione non è disponibile con i timer programmati in VDR." +msgid "Information" +msgstr "Informazioni" -msgid "Monitor this timer using the start and stop time." -msgstr "Monitora questo timer utilizzando l'ora di inizio e fine." +msgid "VDRAdmin-AM version:" +msgstr "Versione VDRAdmin-AM:" -msgid "off" -msgstr "disattivo" +msgid "VDR version:" +msgstr "Versione VDR:" -msgid "Do not monitor this timer." -msgstr "Non monitorare questo timer." +msgid "Supported features in VDR:" +msgstr "Funzioni supportate da VDR:" -msgid "Channel:" -msgstr "Canale:" +msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgstr "Ricerca EPG (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">Plugin EPGSearch</a>)" -msgid "The channel to record." -msgstr "Canale da registrare." +msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgstr "Trasmissione TV dal vivo (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Plugin Streamdev</a>)" -msgid "Day Of Recording:" -msgstr "Giorno registrazione:" +msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgstr "Rinomina registrazioni (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Patch di Liemikuutio</a>)" -msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." -msgstr "Il giorno in cui il timer dovrebbe attivarsi. Puoi inserire il giorno in 2 formati: <ul><li>Due caratteri (GG). Questo userà il mese e l'anno corrente.</li><li>Modo ISO (AAAA-MM-GG). Programma i tuoi timer per il futuro come vuoi.</li></ul>Nel caso tu voglia programmare un timer ricorsivo puoi usare le 7 caselle sotto il campo di testo. Spunta la casella per ogni giorno in cui vuoi attivare il timer." +msgid "Getting Help and Reporting Bugs" +msgstr "Chiedi aiuto e riporta errori" -msgid "Start Time:" -msgstr "Ora inizio:" +msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." +msgstr "Se hai bisogno di aiuto prova a usare l'aiuto in linea che troverai in alcune pagine. Puoi accedervi cliccando <img src=\"bilder/help.png\" alt=\"\" />." -msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Questa è l'ora in cui il timer dovrebbe avviare la registrazione. Il primo campo di testo è per l'\"ora\", il secondo per i \"minuti\"." +msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" +msgstr "Se questo non ti fornisce le informazioni di cui hai bisogno puoi provare a chiedere aiuto nel <a href=\"http://www.vdrportal.de\" target=\"_blank\">Portale VDR</a> se capisci il tedesco. Usa la sezione annunci se possibile, cerca:" -msgid "End Time:" -msgstr "Ora fine:" +msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." +msgstr "Se pensi di aver trovato un errore verifica che sia uno nuovo e riportalo nel <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">Sistema di raccolta errori di VDRAdmin-AM</a>." -msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Questa è l'ora in cui il timer dovrebbe fermare la registrazione. Il primo campo di testo è per l'\"ora\", il secondo per i \"minuti\"." +msgid "AutoTimer" +msgstr "Timer automatico" msgid "Priority:" msgstr "Priorità:" -msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." -msgstr "Un valore integer nel range <strong>0...99</strong>, definisce la <strong>priorità</strong> di questo timer e delle registrazioni create da questo timer. <strong>0</strong> rappresenta il valore più basso, <strong>99</strong> il più alto. La priorità è usata per decidere quale timer inizierà nel caso ci siano 2 o più timer con la stessa esatta ora di <strong>avvio</strong>. Verrà usato il primo timer nella lista con la priorità più alta.<br /><br />Questo valore è salvato anche con la registrazione ed è usato più tardi per rimuoverla dal disco in modo da liberare spazio per nuove registrazioni. Se il disco è pieno e una nuova registrazione ha bisogno di spazio, una registrazione esistente con una priorità più bassa (e la cui <strong>scadenza</strong> è garantita) sarà rimossa.<br /><br />Se tutte le schede DVB disponibili sono attualmente occupate, un timer con una priorità più alta interromperà il timer con la priorità più bassa per poter iniziare la registrazione." - msgid "Lifetime:" msgstr "Scadenza:" -msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." -msgstr "La scadenza <strong>garantita</strong> (in giorni) di una registrazione creata da questo timer. <strong>0</strong> significa che questa registrazione può essere automaticamente eliminata a qualsiasi ora da una nuova registrazione con priorità più alta. <strong>99</strong> significa che questa registrazione non sarà mai eliminata automaticamente. Qualsiasi numero nel range <strong>1...98</strong> significa che questa registrazione non può essere automaticamente eliminata in favore di una nuova registrazione, finché il numero di giorni impostato dall'ora di <strong>avvio</strong> della registrazione sarà passato." - -msgid "Title of Recording:" -msgstr "Titolo registrazione:" - -msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." -msgstr "Il <strong>nome file</strong> che questo timer assegnerà alla registrazione. Se il nome conterrà sottodirectory, queste devono essere delimitate da '~' (dal momento che il carattere '/' può essere parte del nome di un programma).<br /><br />Le parole chiave speciali <strong>TITOLO</strong> ed <strong>EPISODIO</strong>, se presenti, saranno sostituite dalle informazioni del titolo e dell'episodio dei dati EPG all'ora di registrazione (se questi dati sono disponibili). Se all'ora di registrazione questi non possono essere determinati, il <strong>TITOLO</strong> predefinito sarà il nome canale, e l'<strong>EPISODIO</strong> predefinito sarà lasciato vuoto." - -msgid "Summary:" -msgstr "Sommario:" - -msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." -msgstr "Testo arbitrario che descrive la registrazione fatta da questo timer. Se il campo non è vuoto, il suo contenuto sarà sovrascritto nel file di registrazione <span class=\"ref_file\">summary.vdr</span> oppure <span class=\"ref_file\">info.vdr</span>." - -msgid "Go!" -msgstr "Vai!" - -msgid "AutoTimer" -msgstr "Timer automatico" - msgid "New AutoTimer" msgstr "Nuovo timer automatico" +msgid "Help" +msgstr "Aiuto" + msgid "Active" msgstr "Attivo" +msgid "Channel" +msgstr "Canale" + msgid "Start" msgstr "Inizio" @@ -209,6 +140,9 @@ msgstr "Sì" msgid "No" msgstr "No" +msgid "Edit" +msgstr "Modifica" + msgid "Delete timer?" msgstr "Eliminare timer?" @@ -227,33 +161,6 @@ msgstr "Eliminare tutti i timer selezionati?" msgid "No AutoTimers defined!" msgstr "Nessun timer automatico definito!" -msgid "VDR Commands" -msgstr "Comandi VDR" - -msgid "Export channels as playlist:" -msgstr "Esporta i canali come lista esecuzione:" - -msgid "Number of lines to show:" -msgstr "Numero di righe da mostrare:" - -msgid "unlimited" -msgstr "illimitate" - -msgid "SVDRP commands:" -msgstr "Comandi SVDR:" - -msgid "Run" -msgstr "Esegui" - -msgid "Really run this command?" -msgstr "Sicuro di eseguire questo comando?" - -msgid "Commands defined in commands.conf:" -msgstr "Comandi definiti in commands.conf:" - -msgid "Output" -msgstr "Risultato" - msgid "Add New AutoTimer" msgstr "Aggiungi nuovo timer automatico" @@ -272,6 +179,15 @@ msgstr "Cerca valori:" msgid "Search in:" msgstr "Cerca in:" +msgid "Title" +msgstr "Titolo" + +msgid "Subtitle" +msgstr "Sottotitolo" + +msgid "Description" +msgstr "Descrizione" + msgid "Search only on these days:" msgstr "Cerca solo in questi giorni:" @@ -296,12 +212,18 @@ msgstr "Sabato" msgid "Sunday" msgstr "Domenica" +msgid "Channel:" +msgstr "Canale:" + msgid "all" msgstr "tutti" msgid "Starts After:" msgstr "Inizia dopo:" +msgid "o'clock" +msgstr "in punto" + msgid "Ends Before:" msgstr "Finisce prima:" @@ -326,9 +248,15 @@ msgstr "Ricorda timer programmati:" msgid "Directory:" msgstr "Directory:" +msgid "Save" +msgstr "Salva" + msgid "Test" msgstr "Prova" +msgid "Cancel" +msgstr "Annulla" + msgid "Broadcasted" msgstr "Trasmesso" @@ -338,140 +266,254 @@ msgstr "Salvato in" msgid "No matches found!" msgstr "Nessun valore trovato!" -msgid "About" -msgstr "Info" +msgid "Configuration" +msgstr "Configurazione" -msgid "License" -msgstr "Licenza" +msgid "General Settings" +msgstr "Impostazioni generali" -msgid "Authors" -msgstr "Autori" +msgid "Template:" +msgstr "Modello:" -msgid "Current author (VDRAdmin-AM branch):" -msgstr "Autore attuale (ramo VDRAdmin-AM):" +msgid "Skin:" +msgstr "Stile interfaccia:" -msgid "Original author (VDRAdmin):" -msgstr "Autore originale (VDRAdmin):" +msgid "Login Page:" +msgstr "Pagina di accesso:" -msgid "Translation Team" -msgstr "Gruppo traduzione" +msgid "Number of channels to use:" +msgstr "Numero di canali da usare:" -msgid "English:" -msgstr "Inglese:" +msgid "Local net (no login required):" +msgstr "Rete locale (nessun accesso richiesto):" -msgid "German:" -msgstr "Tedesco:" +msgid "Language:" +msgstr "Lingua:" -msgid "French:" -msgstr "Francese:" +msgid "Save settings on exit:" +msgstr "Salva impostazioni all'uscita:" -msgid "At the moment unmaintained, former translations by:" -msgstr "Al momento non mantenuto, vecchie traduzioni di:" +msgid "VDR" +msgstr "VDR" -msgid "Spanish:" -msgstr "Spagnolo:" +msgid "Number of DVB cards:" +msgstr "Numero di schede DVB:" -msgid "Finnish:" -msgstr "Finlandese:" +msgid "Path to recordings:" +msgstr "Percorso delle registrazioni:" -msgid "Dutch:" -msgstr "Olandese:" +msgid "Path to configuration files:" +msgstr "Percorso files di configurazione:" -msgid "Russian:" -msgstr "Russo:" +msgid "Path to EPG images:" +msgstr "Percorso immagini EPG:" -msgid "Czech:" -msgstr "Ceco:" +msgid "Identification" +msgstr "Identificazione" -msgid "Italian:" -msgstr "Italiano:" +msgid "Username:" +msgstr "Nome utente:" -msgid "Information" -msgstr "Informazioni" +msgid "Password:" +msgstr "Password:" -msgid "VDRAdmin-AM version:" -msgstr "Versione VDRAdmin-AM:" +msgid "Guest Account:" +msgstr "Account Guest:" -msgid "VDR version:" -msgstr "Versione VDR:" +msgid "Guest Username:" +msgstr "Nome utente Guest:" -msgid "Supported features in VDR:" -msgstr "Funzioni supportate da VDR:" +msgid "Guest Password:" +msgstr "Password Guest:" -msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgstr "Ricerca EPG (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">Plugin EPGSearch</a>)" +msgid "Timeline" +msgstr "Linea temporale" -msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgstr "Trasmissione TV dal vivo (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Plugin Streamdev</a>)" +msgid "Hours:" +msgstr "Ore:" -msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgstr "Rinomina registrazioni (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Patch di Liemikuutio</a>)" +msgid "Times:" +msgstr "Periodi:" -msgid "Getting Help and Reporting Bugs" -msgstr "Chiedi aiuto e riporta errori" +msgid "Also used for other EPG views!" +msgstr "Usato anche per altre viste EPG!" -msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." -msgstr "Se hai bisogno di aiuto prova a usare l'aiuto in linea che troverai in alcune pagine. Puoi accedervi cliccando <img src=\"bilder/help.png\" alt=\"\" />." +msgid "Tooltips:" +msgstr "Dettagli:" -msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" -msgstr "Se questo non ti fornisce le informazioni di cui hai bisogno puoi provare a chiedere aiuto nel <a href=\"http://www.vdrportal.de\" target=\"_blank\">Portale VDR</a> se capisci il tedesco. Usa la sezione annunci se possibile, cerca:" +msgid "Active:" +msgstr "Attivo:" -msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." -msgstr "Se pensi di aver trovato un errore verifica che sia uno nuovo e riportalo nel <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">Sistema di raccolta errori di VDRAdmin-AM</a>." +msgid "Send email after programming timer:" +msgstr "Invia email dopo la programmazione del timer:" -msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" -msgstr "<p>Qui puoi modificare le impostazioni dei timer automatici (AutoTimer).</p><p>Il timer automatico è una funzione chiave di VDRAdmin-AM. Un timer automatico consiste in uno o più termini di ricerca e alcune altre impostazioni, che cercano regolarmente nella Guida Programmi Elettronici (EPG). Se un timer automatico corrisponde allora aggiunge un timer a VDR automaticamente per quella trasmissione. Questo è molto comodo per serie o film trasmessi irregolarmente che tu non vuoi perdere.</p>" +msgid "Send email as:" +msgstr "Invia email come:" -msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." -msgstr "Attiva o disattiva questo timer automatico. I timer automatici disattivati sono ancora salvati nell'elenco dei timer automatici in modo che possano ancora essere attivati, ma non registreranno niente nel frattempo. Sopra quello puoi impostare questo come \"solo una volta\" in modo che questo timer automatico si programmi solo alla prossima (unica!) trasmissione corrispondente." +msgid "Send email to:" +msgstr "Invia email a:" -msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Only broadcasts will match if they contain <strong>all</strong> items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as Blacklist-string) or only one episode (when using \"Enterprise~Azati Prime\" as Blacklist-string)." -msgstr "Scegliendo i valori corretti di ricerca decidi se solo le trasmissioni volute o le trasmissioni che hanno nomi simili o anche nessuna sarà registrata.<br />Il maiuscolo non importa, \"X-Files\" corrisponde a qualsiasi cosa \"x-files\" incontrerà. Puoi impostare valori di ricerca multipli separandoli con degli spazi. Le trasmissioni corrisponderanno solo se contengono <strong>tutti</strong> i valori.<br />Dovresti piuttosto usare lettere e numeri per la ricerca dei valori, visto che l'EPG spesso omette le virgole, parentesi e altri caratteri.<br />Gli esperti possono anche usare espressioni regolari, ma devi aver bisogno di più informazione dai sorgenti di VDRAdmin-AM (caratteristica non documentata).<br /><br />Puoi escludere le trasmissioni in modo che non siano registrate se corrispondessero a un timer automatico. Perciò devi inserire quei titoli nel file <i>vdradmind.bl</i>, un evento per riga. Questo file deve essere posizionato nella tua directory di configurazione di VDRAdmin-AM. Se questa stringa viene trovata sia nel <u>titolo</u> dell'EPG che nel <u>titolo~sottotitolo</u>, questo evento non sarà programmato dai timer automatici. Puoi così disabilitare episodi completi (per esempio quando usi \"Enterprise\" come stringa della lista esclusioni) o solo un episodio (quando usi \"Enterprise~Azati Prime\" come stringa della lista nera)." +msgid "Mail server:" +msgstr "Server di posta:" -msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." -msgstr "Qui puoi definire le sezioni EPG dove VDRAdmin-AM dovrebbe guardare per la ricerca del valore." +msgid "SMTPAuth user:" +msgstr "Utente autenticazione SMTP:" -msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." -msgstr "Utilizza queste caselle di verifica per limitare la ricerca delle trasmissioni corrispondenti ad un insieme di giorni della settimana." +msgid "SMTPAuth password:" +msgstr "Password autenticazione SMTP:" -msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." -msgstr "Canale da cercare per le trasmissioni corrispondenti oppure \"tutti\" per cercare in tutti i canali noti e voluti. Puoi definire i canali voluti nei timer automatici nella \"Configurazione\"." +msgid "Track schedule changes by:" +msgstr "" -msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Una trasmissione deve iniziare dopo che l'ora qui inserita corrisponda. Il primo campo di testo è per l'\"ora\", il secondo per i \"minuti\"." +msgid "Broadcast time" +msgstr "" -msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Una trasmissione deve finire prima che l'orario qui inserito corrisponda. Il primo campo di testo è per l' \"ora\", il secondo per i \"minuti\"." +msgid "Event id" +msgstr "" -msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." -msgstr "Imposta questa opzione come \"sì\" se tutti i timer programmati da questo timer automatico dovrebbero avere margini individuali di avvio/chiusura e inserisci i valori nelle prossime 2 caselle di testo." +msgid "Timer" +msgstr "Timer" -msgid "The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG." -msgstr "Numero di minuti che VDRAdmin-AM sottrae dall'ora di avvio delle trasmissioni trovate nell'EPG." +msgid "Tooltips in timeline:" +msgstr "Dettagli nella linea temporale:" -msgid "The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG." -msgstr "Numero di minuti che VDRAdmin-AM aggiunge all'ora di chiusura delle trasmissioni trovate nell'EPG." +msgid "Tooltips in list:" +msgstr "Dettagli nell'elenco:" -msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." -msgstr "Seleziona questa casella se vuoi che VDRAdmin-AM aggiunga il sottotitolo EPG della trasmissione al nome file della registrazione." +msgid "Streaming" +msgstr "Trasmissione" -msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." -msgstr "Se abiliti questo VDRAdmin-AM traccerà i timer che ha programmato automaticamente. Questo è utile se vuoi disattivare o eliminare i timers che sono stati programmati automaticamente nella lista dei timers." +msgid "Live Streaming:" +msgstr "Trasmissione dal vivo:" -msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." -msgstr "La directory dove i timer automatici posizioneranno le registrazioni. Se il nome conterrà sottodirectory, queste devono essere delimitate da '~' (dal momento che il carattere '/' può essere parte di un normale nome programma).<br />VDRAdmin-AM metterà in coda il titolo e il sottotitolo della trasmissione corrispondente (se la spunta \"Episodio\" è segnata) nella directory qui specificata.<br /><br />Puoi anche usare le seguenti parole chiave che sono sostituite nel finale del nome file dai valori forniti per esempio <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - diventerà il titolo dell'evento.</li><li>%Subtitle% - diventerà il sottotitolo dell'evento.</li><li>%Director% - diventerà il direttore dell'evento.</li><li>%Date% - diventerà la data della registrazione.</li><li>%Category% - diventerà la categoria dell'evento (Spielfilm/Serie/...).</li><li>%Genre% - diventerà il genere dell'evento (Drama/Krimi/..).</li><li>%Year% - diventerà l'anno di produzione.</li><li>%Country% - diventerà il paese di produzione.</li><li>%Originaltitle% - diventerà il titolo originale dell'evento.</li><li>%FSK% - diventerà la FSK dell'evento.</li><li>%Episode% - diventerà il titolo dell'episodio dell'evento.</li><li>%Rating% - diventerà la valutazione dell'evento del fornitore dell'EPG.</li></ul><h4>Nota:</h4>Se usi le parole chiave di sopra è tua responsabilità fornire il <strong>nome file completo</strong> per le registrazioni! VDRAdmin-AM non includerà niente alla stringa risultante." +msgid "HTTP Port of Streamdev (also possible 3000/ts):" +msgstr "Porta HTTP di Streamdev (possibile anche 3000/ts):" -msgid "Timer" -msgstr "Timer" +msgid "Recordings Streaming:" +msgstr "Trasmissione registrazioni:" -msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" -msgstr "<p>Qui troverai un elenco dei timer noti a VDR.</p><p>In cima troverai un diagramma che mostra i timers giornalieri graficamente. Questo fornisce una vista veloce su cosa stia succedendo in un giorno specifico e ti aiuta a trovare i timers in conflitto. Spostando il cursore del mouse sopra ciascuna casella dei timer sarà visualizzato un dettaglio contenente il titolo del timer, la priorità, la scadenza e la durata.</p><p>Sotto il diagramma troverai l'elenco dei timer che ti mostrano alcune informazioni sui timers. Puoi modificare l'ordine della lista cliccando sull'intestazione delle colonne.</p><p>Per ciascun timer hai le seguenti opzioni:<dl><dt>Impostare lo stato</dt><dd>Cliccando su \"Sì\", \"No\", \"VPS\" o \"Auto\" nella colonna \"Attiva\".</dd><dt>Vedere velocemente la priorità e la durata</dt><dd>Puntando il cursore del mouse nel titolo del timer.</dd><dt>Vedere il valore EPG</dt><dd>I timers che hanno impostato <span class=\"ref_label\">Verifica timer automatici</span> per \"Identificazione Trasmissione\" ti mostreranno il valore EPG corrispondente se fai click sul titolo del timer.</dd><dt>Modificare il timer</dt><dd>Puoi modificare il timer cliccando <img src=\"bilder/edit.png\" alt=\"modifica\" />.</dd><dt>Eliminare il timer</dt><dd>Per eliminare un timer fai click su <img src=\"bilder/delete.png\" alt=\"elimina\" />.</dd></dl></p><p>Lo stato di ciascun timer è indicato a seconda delle caselle colorate (vedi diagramma) o immagini (vedi elenco):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Il timer è OK e registrerà.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Conflitti di timers con altri uguali. Questo non è critico, se tu hai abbastanza schede DVB per le registrazioni in parallelo.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Il timer è critico e molto probabilmente <strong>non</strong> registrerà.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Il timer non è attivo.</p><p>In aggiunta a queste funzioni puoi aggiungere un nuovo timer cliccando su <input type=\"submit\" class=\"submit\" value=\"Nuovo timer\"/> in cima e puoi eliminare un numero di timers alla volta cliccando nella casella dell'ultima colonna di quei timers e cliccando <input type=\"submit\" class=\"submit\" value=\"Elimina timer selezionati\"/>.</p><p>Puoi <input type=\"submit\" class=\"submit\" value=\"attivare\"/> e <input type=\"submit\" class=\"submit\" value=\"disattivare\"/> i timers selezionati.</p>" +msgid "Path to VDR Recordings on your workstation:" +msgstr "Percorso di registrazione VDR sul tuo pc:" -msgid "Playing Today" -msgstr "In esecuzione oggi" +msgid "MIME type for live streaming:" +msgstr "Tipo MIME per trasmissione dal vivo:" -msgid "starting at" -msgstr "inizio alle" +msgid "Suffix for live streaming:" +msgstr "Suffisso per trasmissione dal vivo:" + +msgid "MIME type for recordings streaming:" +msgstr "Tipo MIME per trasmissione registrazioni:" + +msgid "Suffix for recordings streaming:" +msgstr "Suffisso per trasmissione registrazioni:" + +msgid "Bandwidth of Streams:" +msgstr "Ampiezza di banda delle trasmissioni:" + +msgid "External Search" +msgstr "Ricerca esterna" + +msgid "URL:" +msgstr "URL:" + +msgid "Title:" +msgstr "Titolo:" + +msgid "User-defined search:" +msgstr "Ricerca definita dall'utente:" + +msgid "Expert" +msgstr "Esperto" + +msgid "Update EPG data in background:" +msgstr "Aggiorna i dati EPG in sottofondo:" + +msgid "Update EPG every:" +msgstr "Aggiorna EPG ogni:" + +msgid "Channel Selections" +msgstr "Selezione canali" + +msgid "Show channels without EPG information:" +msgstr "Mostra canali senza informazione EPG:" + +msgid "In \"AutoTimer\"?" +msgstr "In \"Timer automatici\"?" + +msgid "Apply" +msgstr "Applica" + +msgid "EPG Search Blacklists" +msgstr "Lista esclusione ricerca EPG" + +msgid "New Blacklist" +msgstr "Nuova lista esclusione" + +msgid "Search pattern" +msgstr "Cerca valore" + +msgid "From" +msgstr "Da" + +msgid "To" +msgstr "A" + +msgid "Delete blacklist?" +msgstr "Eliminare lista esclusione?" + +msgid "Delete Selected Blacklists" +msgstr "Elimina liste esclusioni selezionate" + +msgid "Delete all selected blacklists?" +msgstr "Eliminare tutte le liste esclusioni selezionate?" + +msgid "EPG search" +msgstr "Ricerca EPG" + +msgid "EPG Search" +msgstr "Ricerca EPG" + +msgid "Use template" +msgstr "Utilizza modello" + +msgid "New Search" +msgstr "Nuova ricerca" + +msgid "Edit Template" +msgstr "Modifica modello" + +msgid "Settings" +msgstr "Impostazioni" + +msgid "Action" +msgstr "Azione" + +msgid "Find" +msgstr "Trova" + +msgid "Show Favorites" +msgstr "Mostra Preferiti" + +msgid "Delete Selected Searches" +msgstr "Elimina ricerche selezionate" + +msgid "Delete all selected searches?" +msgstr "Eliminare tutte le ricerche selezionate?" + +msgid "Execute Selected Searches" +msgstr "Esegui ricerche selezionate" + +msgid "Duration" +msgstr "Durata" + +msgid "More Information" +msgstr "Altre informazioni" + +msgid "Channels" +msgstr "Canali" + +msgid "Record" +msgstr "Registra" msgid "Add New Blacklist" msgstr "Aggiungi nuova lista esclusione" @@ -482,9 +524,6 @@ msgstr "Modifica lista esclusione" msgid "Add New Template" msgstr "Aggiungi nuovo modello" -msgid "Edit Template" -msgstr "Modifica modello" - msgid "Add New Search" msgstr "Aggiungi nuova ricerca" @@ -500,9 +539,6 @@ msgstr "Non hai selezionato almeno uno tra\\ntitolo, sottotitolo o descrizione.\ msgid "Hide results" msgstr "Nascondi risultati" -msgid "Settings" -msgstr "Impostazioni" - msgid "Name:" msgstr "Nome:" @@ -680,264 +716,147 @@ msgstr "Eliminare questo modello?" msgid "Save as template" msgstr "Salva come modello" -msgid "Create New Timer" -msgstr "Crea nuovo timer" - -msgid "Buffer:" -msgstr "Buffer:" - -msgid "Use VPS:" -msgstr "Utilizza VPS:" - -msgid "readonly" -msgstr "solo lettura" - -msgid "Timer has been set by AutoTimer pattern:" -msgstr "Timer impostato dal valore timer automatico:" - -msgid "No Help Available" -msgstr "Nessun aiuto disponibile" - -msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgstr "<p>Nessun aiuto ancora disponibile. Per aggiungere o cambiare il testo contatta <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgid "Run" +msgstr "Esegui" msgid "Error!" msgstr "Errore!" -msgid "TV" -msgstr "TV" +msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" +msgstr "<p>Qui troverai un elenco dei timer automatici (AutoTimer) noti a VDRAdmin-AM.</p><p>Questa lista mostra alcune informazioni sui timer automatici. Puoi cambiare l'ordinamento dell'elenco cliccando sul titolo della colonna.</p><p>Per ciascun timer automatico hai le seguenti opzioni:<dl><dt>Imposta lo stato</dt><dd>Clicca su \"Sì\" o \"No\" nella colonna \"Attivo\" per vedere l'attività.</dd><dt>Vedi velocemente la priorità e la scadenza</dt><dd>Puntando il cursore del mouse nel titolo del timer automatico.</dd><dt>Modifica il timer automatico</dt><dd>Puoi modificare un timer automatico cliccando <img src=\"bilder/edit.png\" alt=\"modifica\" />.</dd><dt>Elimina il timer automatico</dt><dd>Per eliminare un timer automatico fai click su <img src=\"bilder/delete.png\" alt=\"elimina\" />.</dd></dl></p><p>Lo stato di ciascun timer automatico è indicato con diverse immagini colorate:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"attivo\" align=\"middle\" /> Il timer automatico è OK e programmerà automaticamente le trasmissioni corrispondenti.<br /><img src=\"bilder/poempl_grau.png\" alt=\"disattivo\" align=\"middle\" /> Il timer automatico non è attivo.</p><p>In aggiunta a queste funzionalità puoi aggiungere un nuovo timer automatico cliccando <input type=\"submit\" class=\"submit\" value=\"Nuovo timer automatico\"/> in cima e puoi eliminare un numero di timer automatici alla volta spuntando la casella nell'ultima colonna di quei timer e cliccando <input type=\"submit\" class=\"submit\" value=\"Elimina timer automatici selezionati\"/>.</p><p>Clicca <input type=\"submit\" class=\"submit\" value=\"Forza Aggiornamento\"/> per forzare VDRAdmin-AM a riconnettersi a VDR, raccogliere l'EPG attuale e verificare la corrispondenza dei timer automatici.</p>" -msgid "Interval:" -msgstr "Intervallo:" +msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgstr "<p>Qui puoi modificare le impostazioni dei timer automatici (AutoTimer).</p><p>Il timer automatico è una funzione chiave di VDRAdmin-AM. Un timer automatico consiste in uno o più termini di ricerca e alcune altre impostazioni, che cercano regolarmente nella Guida Programmi Elettronici (EPG). Se un timer automatico corrisponde allora aggiunge un timer a VDR automaticamente per quella trasmissione. Questo è molto comodo per serie o film trasmessi irregolarmente che tu non vuoi perdere.</p>" -msgid "sec." -msgstr "sec." +msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." +msgstr "Attiva o disattiva questo timer automatico. I timer automatici disattivati sono ancora salvati nell'elenco dei timer automatici in modo che possano ancora essere attivati, ma non registreranno niente nel frattempo. Sopra quello puoi impostare questo come \"solo una volta\" in modo che questo timer automatico si programmi solo alla prossima (unica!) trasmissione corrispondente." -msgid "G" -msgstr "C" +msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Broadcasts will match only if they match <strong>all</strong> configured search items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as blacklist string) or only one episode (when using \"Enterprise~Azati Prime\" as blacklist string)." +msgstr "Scegliendo i valori corretti di ricerca decidi se solo le trasmissioni volute o le trasmissioni che hanno nomi simili o anche nessuna sarà registrata.<br />Il maiuscolo non importa, \"X-Files\" corrisponde a qualsiasi cosa \"x-files\" incontrerà. Puoi impostare valori di ricerca multipli separandoli con degli spazi. Le trasmissioni corrisponderanno solo se contengono <strong>tutti</strong> i valori.<br />Dovresti piuttosto usare lettere e numeri per la ricerca dei valori, visto che l'EPG spesso omette le virgole, parentesi e altri caratteri.<br />Gli esperti possono anche usare espressioni regolari, ma devi aver bisogno di più informazione dai sorgenti di VDRAdmin-AM (caratteristica non documentata).<br /><br />Puoi escludere le trasmissioni in modo che non siano registrate se corrispondessero a un timer automatico. Perciò devi inserire quei titoli nel file <i>vdradmind.bl</i>, un evento per riga. Questo file deve essere posizionato nella tua directory di configurazione di VDRAdmin-AM. Se questa stringa viene trovata sia nel <u>titolo</u> dell'EPG che nel <u>titolo~sottotitolo</u>, questo evento non sarà programmato dai timer automatici. Puoi così disabilitare episodi completi (per esempio quando usi \"Enterprise\" come stringa della lista esclusioni) o solo un episodio (quando usi \"Enterprise~Azati Prime\" come stringa della lista nera)." -msgid "Grab the picture!" -msgstr "Cattura immagine!" +msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." +msgstr "Qui puoi definire le sezioni EPG dove VDRAdmin-AM dovrebbe guardare per la ricerca del valore." -msgid "Size:" -msgstr "Dimensione:" +msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." +msgstr "Utilizza queste caselle di verifica per limitare la ricerca delle trasmissioni corrispondenti ad un insieme di giorni della settimana." -msgid "Open in separate window" -msgstr "Apri in una nuova finestra" +msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." +msgstr "Canale da cercare per le trasmissioni corrispondenti oppure \"tutti\" per cercare in tutti i canali noti e voluti. Puoi definire i canali voluti nei timer automatici nella \"Configurazione\"." -msgid "Playing Today?" -msgstr "In esecuzione oggi" +msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Una trasmissione deve iniziare dopo che l'ora qui inserita corrisponda. Il primo campo di testo è per l'\"ora\", il secondo per i \"minuti\"." -msgid "Timeline" -msgstr "Linea temporale" +msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Una trasmissione deve finire prima che l'orario qui inserito corrisponda. Il primo campo di testo è per l' \"ora\", il secondo per i \"minuti\"." -msgid "EPG Search" -msgstr "Ricerca EPG" +msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." +msgstr "Imposta questa opzione come \"sì\" se tutti i timer programmati da questo timer automatico dovrebbero avere margini individuali di avvio/chiusura e inserisci i valori nelle prossime 2 caselle di testo." -msgid "Recordings" -msgstr "Registrazioni" +msgid "The number of minutes VDRAdmin-AM subtracts from the broadcast's start time found in the EPG." +msgstr "Numero di minuti che VDRAdmin-AM sottrae dall'ora di avvio delle trasmissioni trovate nell'EPG." -msgid "Remote Control" -msgstr "Telecomando" +msgid "The number of minutes VDRAdmin-AM adds to the broadcast's stop time found in the EPG." +msgstr "Numero di minuti che VDRAdmin-AM aggiunge all'ora di chiusura delle trasmissioni trovate nell'EPG." -msgid "Watch TV" -msgstr "Guarda TV" +msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." +msgstr "Un valore integer nel range <strong>0...99</strong>, definisce la <strong>priorità</strong> di questo timer e delle registrazioni create da questo timer. <strong>0</strong> rappresenta il valore più basso, <strong>99</strong> il più alto. La priorità è usata per decidere quale timer inizierà nel caso ci siano 2 o più timer con la stessa esatta ora di <strong>avvio</strong>. Verrà usato il primo timer nella lista con la priorità più alta.<br /><br />Questo valore è salvato anche con la registrazione ed è usato più tardi per rimuoverla dal disco in modo da liberare spazio per nuove registrazioni. Se il disco è pieno e una nuova registrazione ha bisogno di spazio, una registrazione esistente con una priorità più bassa (e la cui <strong>scadenza</strong> è garantita) sarà rimossa.<br /><br />Se tutte le schede DVB disponibili sono attualmente occupate, un timer con una priorità più alta interromperà il timer con la priorità più bassa per poter iniziare la registrazione." -msgid "Commands" -msgstr "Comandi" +msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." +msgstr "La scadenza <strong>garantita</strong> (in giorni) di una registrazione creata da questo timer. <strong>0</strong> significa che questa registrazione può essere automaticamente eliminata a qualsiasi ora da una nuova registrazione con priorità più alta. <strong>99</strong> significa che questa registrazione non sarà mai eliminata automaticamente. Qualsiasi numero nel range <strong>1...98</strong> significa che questa registrazione non può essere automaticamente eliminata in favore di una nuova registrazione, finché il numero di giorni impostato dall'ora di <strong>avvio</strong> della registrazione sarà passato." -msgid "Configuration" -msgstr "Configurazione" +msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." +msgstr "Seleziona questa casella se vuoi che VDRAdmin-AM aggiunga il sottotitolo EPG della trasmissione al nome file della registrazione." -msgid "Search" -msgstr "Cerca" +msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." +msgstr "Se abiliti questo VDRAdmin-AM traccerà i timer che ha programmato automaticamente. Questo è utile se vuoi disattivare o eliminare i timers che sono stati programmati automaticamente nella lista dei timers." + +msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." +msgstr "La directory dove i timer automatici posizioneranno le registrazioni. Se il nome conterrà sottodirectory, queste devono essere delimitate da '~' (dal momento che il carattere '/' può essere parte di un normale nome programma).<br />VDRAdmin-AM metterà in coda il titolo e il sottotitolo della trasmissione corrispondente (se la spunta \"Episodio\" è segnata) nella directory qui specificata.<br /><br />Puoi anche usare le seguenti parole chiave che sono sostituite nel finale del nome file dai valori forniti per esempio <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - diventerà il titolo dell'evento.</li><li>%Subtitle% - diventerà il sottotitolo dell'evento.</li><li>%Director% - diventerà il direttore dell'evento.</li><li>%Date% - diventerà la data della registrazione.</li><li>%Category% - diventerà la categoria dell'evento (Spielfilm/Serie/...).</li><li>%Genre% - diventerà il genere dell'evento (Drama/Krimi/..).</li><li>%Year% - diventerà l'anno di produzione.</li><li>%Country% - diventerà il paese di produzione.</li><li>%Originaltitle% - diventerà il titolo originale dell'evento.</li><li>%FSK% - diventerà la FSK dell'evento.</li><li>%Episode% - diventerà il titolo dell'episodio dell'evento.</li><li>%Rating% - diventerà la valutazione dell'evento del fornitore dell'EPG.</li></ul><h4>Nota:</h4>Se usi le parole chiave di sopra è tua responsabilità fornire il <strong>nome file completo</strong> per le registrazioni! VDRAdmin-AM non includerà niente alla stringa risultante." msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" msgstr "<p>Qui puoi cambiare le impostazioni generali e di base per i timer, timer automatici, selezione canale e parametri di trasmissione.</p>" -msgid "General Settings" -msgstr "Impostazioni generali" - -msgid "VDR" -msgstr "VDR" - -msgid "Identification" -msgstr "Identificazione" - -msgid "Streaming" -msgstr "Trasmissione" - -msgid "Expert" -msgstr "Esperto" - -msgid "External Search" -msgstr "Ricerca esterna" - -msgid "Channel Selections" -msgstr "Selezione canali" - -msgid "Skin:" -msgstr "Stile interfaccia:" - msgid "The skin you want to use." msgstr "Lo stile interfaccia che vuoi usare." -msgid "Login Page:" -msgstr "Pagina di accesso:" - msgid "The page you want to see at first connect to VDRAdmin-AM." msgstr "La pagina che vuoi vedere alla prima connessione a VDRAdmin-AM." -msgid "Number of channels to use:" -msgstr "Numero di canali da usare:" - msgid "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." msgstr "VDRAdmin-AM caricherà il numero di canali fornito da VDR e mostrerà solo quelli in qualunque campo dove i canali possano essere selezionati. Questo limita anche l'informazione EPG che VDRAdmin-AM leggerà in modo che tu possa usarla per ridurre l'uso di memoria di VDRAdmin-AM ed incrementare le sue performance. <strong>0</strong> disattiva questa opzione e VDRAdmin-AM userà tutti i canali disponibili." -msgid "Local net (no login required):" -msgstr "Rete locale (nessun accesso richiesto):" - msgid "Here you can specify an IP address or range that can login without providing login information. For example: \"192.168.0.0/24\" will include any IP starting with \"192.168.0\", \"192.168.0.123/32\" will only match \"192.168.0.123\"." msgstr "Qui puoi specificare un indirizzo IP o il range che può connettersi senza fornire informazioni di accesso. Per esempio: \"192.168.0.0/24\" includerà qualunque IP che comincia con \"192.168.0\", \"192.168.0.123/32\" corrisponderà solo a \"192.168.0.123\"." -msgid "Language:" -msgstr "Lingua:" - msgid "Here you can set the localization VDRAdmin-AM should use." msgstr "Qui puoi impostare la lingua che VDRAdmin-AM dovrebbe usare." -msgid "Save settings on exit:" -msgstr "Salva impostazioni all'uscita:" - msgid "With this option the settings will be saved if VDRAdmin-AM exits. This will also save settings not available on the \"Configuration\" menu like interval and size in TV, sorting in the lists and current view in \"What's on now\"." msgstr "Con questa opzione le impostazioni saranno salvate se VDRAdmin-AM esiste. Questo salverà anche le impostazioni non disponibili nel menu \"Configurazione\" come l'intervallo e la dimensione nella TV, ordine nell'elenco e la vista corrente \"In programmazione adesso\"." msgid "Top" msgstr "In alto" -msgid "Number of DVB cards:" -msgstr "Numero di schede DVB:" - msgid "The number of DVB cards VDR can access. Depending on this value VDRAdmin-AM will calculate critical timers in the <span class=\"ref_menu\">Timer</span> menu." msgstr "Numero di schede DVB a cui VDR può accedere. A seconda di questo valore VDRAdmin-AM calcolerà i timer critici nel menu <span class=\"ref_menu\">Timer</span>." -msgid "Path to recordings:" -msgstr "Percorso delle registrazioni:" - msgid "The path to VDR's recordings. It's used so that VDRAdmin-AM can locate the recordings when using <span class=\"ref_label\">Recordings Streaming</span> and <span class=\"ref_file\">reccmds.conf</span> in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Percorso per le registrazioni di VDR. Viene usato in modo che VDRAdmin-AM possa trovare le registrazioni quando usa la <span class=\"ref_label\">Registrazione Trasmissione</span> e <span class=\"ref_file\">reccmds.conf</span> nel menu <span class=\"ref_menu\">Registrazioni</span>." -msgid "Path to configuration files:" -msgstr "Percorso files di configurazione:" - msgid "The path where VDR's configuration files are located. If this directory contains the file <span class=\"ref_file\">reccmds.conf</span> its content is shown in a selectbox in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Percorso dove i file di configurazione di VDR sono salvati. Se questa directory contiene il file <span class=\"ref_file\">reccmds.conf</span> il suo contenuto è mostrato nella casella di selezione nel menu <span class=\"ref_menu\">Registrazioni</span>." -msgid "Path to EPG images:" -msgstr "Percorso immagini EPG:" - msgid "The path where the EPG images are stored." msgstr "Percorso dove sono salvate le immagini EPG." -msgid "Username:" -msgstr "Nome utente:" - msgid "The username for the main user, i.e. the user having the most privileges." msgstr "Nome utente per l'account principale, per esempio l'utente con più privilegi." -msgid "Password:" -msgstr "Password:" - msgid "The main user's password." msgstr "Password account principale." -msgid "Guest Account:" -msgstr "Account Guest:" - msgid "If you want a user account having only limited privileges, this is for you. The guest user cannot modify anything, it's only allowed to view the EPG, timers, AutoTimers and recordings listings." msgstr "Se vuoi un account utente che abbia solo permessi limitati, questo è per te. L'utente guest non può modificare niente, può solo vedere l'EPG, i timer, i timer automatici e l'elenco delle registrazioni." -msgid "Guest Username:" -msgstr "Nome utente Guest:" - msgid "The username for the guest user." msgstr "Nome utente dell'account guest." -msgid "Guest Password:" -msgstr "Password Guest:" - msgid "The guest user's password." msgstr "Password account guest." -msgid "Hours:" -msgstr "Ore:" - msgid "The number of hours to show in the timeline." msgstr "Numero di ore da mostrare nella linea temporale." -msgid "Times:" -msgstr "Periodi:" - msgid "A comma separated list of times in <strong>hh:mm</strong> format that appear in the selectbox placed at the top." msgstr "Un elenco di orari nel formato comma separated <strong>hh:mm</strong> che compare nella casella di selezione posizionata in cima." -msgid "Tooltips:" -msgstr "Dettagli:" - msgid "Here you can (de-)activate the tooltips." msgstr "Qui puoi (dis)attivare i dettagli." -msgid "Active:" -msgstr "Attivo:" - msgid "Activate or deactivate the AutoTimer function." msgstr "Attiva o disattiva la funzione timer automatici." -msgid "Send email after programming timer:" -msgstr "Invia email dopo la programmazione del timer:" - msgid "VDRAdmin-AM will send an email whenever an event matches an AutoTimer and a timer has been programmed if you enable this feature." msgstr "VDRAdmin-AM invierà un'email se un evento corrisponde ad un timer automatico e un timer è stato programmato abilitando questa opzione." -msgid "Send email as:" -msgstr "Invia email come:" - msgid "Here you set the sending email address of the generated email." msgstr "Qui puoi impostare l'invio all'indirizzo email del messaggio generato." -msgid "Send email to:" -msgstr "Invia email a:" - msgid "The email address the email is sent to." msgstr "L'indirizzo email a cui il messaggio viene inviato." -msgid "Mail server:" -msgstr "Server di posta:" - msgid "The outgoing mail server." msgstr "Server di posta in uscita." -msgid "SMTPAuth user:" -msgstr "Utente autenticazione SMTP:" - msgid "If you need to authenticate yourself at the outgoing mail server, you have to supply the username and the password below. Leaving this field empty will disable SMTPAuth." msgstr "Se devi autenticarti per l'invio di email, allora devi fornire sotto il nome utente e la password. Lasciando questo campo vuoto si disattiverà l'autenticazione SMTP." -msgid "SMTPAuth password:" -msgstr "Password autenticazione SMTP:" - msgid "The password for the SMTPAuth user." msgstr "Password per l'utente di autenticazione SMTP." -msgid "Tooltips in timeline:" -msgstr "Dettagli nella linea temporale:" - msgid "Here you can (de-)activate the tooltips in the timeline." msgstr "Qui puoi (dis)attivare i dettagli nella linea temporale." -msgid "Tooltips in list:" -msgstr "Dettagli nell'elenco:" - msgid "Here you can (de-)activate the tooltips in the list." msgstr "Qui puoi (dis)attivare i dettagli nell'elenco." @@ -947,51 +866,27 @@ msgstr "Aggiungi sommario ai nuovi timer:" msgid "If you don't want VDRAdmin-AM to add the summary taken from EPG to new timers you can switch it off here." msgstr "Se non vuoi che VDRAdmin-AM aggiunga il sommario preso dall'EPG nei nuovi timer puoi disattivarlo qui." -msgid "Live Streaming:" -msgstr "Trasmissione dal vivo:" - msgid "Enable or disable live streaming using the <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. You also have to set the correct <span class=\"ref_label\">HTTP Port for Streamdev</span> below." msgstr "Abilita o disabilita la trasmissione dal vivo usando il <a href=\"http://www.magoa.net/linux/\">plugin streamdev</a>. Devi anche impostare sotto la corretta <span class=\"ref_label\">porta HTTP per Streamdev</span>." -msgid "HTTP Port of Streamdev (also possible 3000/ts):" -msgstr "Porta HTTP di Streamdev (possibile anche 3000/ts):" - msgid "Here you have to set the port number your VDR's streamdev server listens for connections. Additionally you can also provide the stream type you like to use." msgstr "Qui devi impostare il numero di porta in cui il server streamdev di VDR ascolta per effettuare le connessioni. Puoi anche fornire il tipo di trasmissione che utilizzi." -msgid "Recordings Streaming:" -msgstr "Trasmissione registrazioni:" - msgid "Enable or disable streaming of recordings.<br />Well actually this is no real \"streaming\", but you have to setup your workstation so that it can access VDR's recordings. You can use for example Samba or NFS for this. VDRAdmin-AM simply generates a playlist that contains all parts of the recording and sends this to your browser. If your browser and media player are configured correctly you will see the recording on your workstation's display." msgstr "Abilita o disabilita la trasmissione delle registrazioni.<br />Anche se attualmente questa non è una vera \"trasmissione\", ma devi impostare il tuo pc affinché possa accedere alle registrazioni di VDR. Puoi usare per esempio Samba o NFS per questo. VDRAdmin-AM semplicemente genera una lista di esecuzione che contiene tutte le parti della registrazione e invia questo al tuo browser. Se il tuo browser e media player sono configurati correttamente vedrai la registrazione visualizzata sul tuo pc." -msgid "Path to VDR Recordings on your workstation:" -msgstr "Percorso di registrazione VDR sul tuo pc:" - msgid "This is the path where your workstation can access VDR's recordings. This depends on your VDR and workstation setup, for example \"\\\\vdr\\videos\" or \"V:\\\" (on Windows) or \"/mnt/videos\" (on Linux)." msgstr "Questo è il percorso in cui il tuo computer può accedere alle registrazioni di VDR. Questo dipende dalle impostazioni di VDR e del tuo pc, per esempio \"\\\\vdr\\videos\" oppure \"V:\\\" (su Windows) o \"/mnt/videos\" (su GNU/Linux)." -msgid "MIME type for live streaming:" -msgstr "Tipo MIME per trasmissione dal vivo:" - msgid "The MIME type to send when using live streaming. Defaults to \"video/x-mpegurl\"." msgstr "Tipo MIME da inviare quando si usa la trasmissione dal vivo. Il valore predefinito è \"video/x-mpegurl\"." -msgid "Suffix for live streaming:" -msgstr "Suffisso per trasmissione dal vivo:" - msgid "The suffix to use for live streaming. Defaults to \"m3u\"." msgstr "Suffisso da usare per le trasmissioni dal vivo. Il valore predefinito è \"m3u\". " -msgid "MIME type for recordings streaming:" -msgstr "Tipo MIME per trasmissione registrazioni:" - msgid "The MIME type to send when using recordings streaming. Defaults to \"video/x-mpegurl\"." msgstr "Il tipo MIME da inviare quando si utilizza la trasmissione delle registrazioni. Il valore predefinito è \"video/x-mpegurl\"." -msgid "Suffix for recordings streaming:" -msgstr "Suffisso per trasmissione registrazioni:" - msgid "The suffix to use for recordings streaming. Defaults to \"m3u\"." msgstr "Suffisso da usare per trasmettere la registrazione. Il valore predefinito è \"m3u\"." @@ -1007,50 +902,23 @@ msgstr "Cambia il nome server per adattarlo alle tue impostazioni" msgid "<p>This section is for experts <strong>only</strong>, i.e. you know what you are doing!</p>" msgstr "<p>Questa sezione è per <strong>soli</strong> esperti, del tipo: sai cosa stai facendo!</p>" -msgid "Update EPG data in background:" -msgstr "Aggiorna i dati EPG in sottofondo:" - msgid "If set to \"yes\" VDRAdmin-AM will periodically refresh its local EPG cache. Else the EPG will be refreshed if the user accesses any EPG view at the web interface and the timeout set at \"Update EPG every\" has been reached." msgstr "Se imposti \"sì\" VDRAdmin-AM aggiornerà periodicamente la sua cache EPG locale. Inoltre l'EPG sarà aggiornato se l'utente accede a qualsiasi vista EPG nell'interfaccia web e la scadenza impostata in \"Aggiorna EPG ogni\" è stata raggiunta." -msgid "Update EPG every:" -msgstr "Aggiorna EPG ogni:" - msgid "The interval, the EPG data is refreshed from VDR and AutoTimer updates are performed (if AutoTimer feature is used)." msgstr "L'intervallo, i dati EPG sono aggiornati da VDR e gli aggiornamenti sono eseguiti dai timer automatici (se la funzione AutoTimer viene usata)." msgid "<p>If you want to limit the number of channels used in some parts of VDRAdmin-AM, this is for you!</p><p>Use the radio buttons to activate or deactivate the wanted channels in the named menu.</p><p>To add channels to the list of wanted channels you have to select them in the left side selectbox and click <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. If you want to remove channels from the list of wanted channels you have to select them in the right side selectbox and click <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" msgstr "<p>Se vuoi limitare il numero di canali usati in alcune parti di VDRAdmin-AM, questo è per te!</p><p>Utilizza i pulsanti radio per attivare o disattivare i canali preferiti nel menu indicato.</p><p>Per aggiungere canali alla lista dei canali preferiti devi selezionarli nella casella di selezione del lato sinistro e cliccare <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. Se vuoi rimuovere canali dalla lista dei canali preferiti devi selezionarli nella casella di selezione del lato destro e cliccare <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" -msgid "Show channels without EPG information:" -msgstr "Mostra canali senza informazione EPG:" - msgid "Usually channels that don't have EPG information are hidden in all EPG views. If you don't want them to be hidden you have to set this option to \"yes\"." msgstr "Di solito i canali che non hanno informazione EPG sono nascosti nelle viste EPG. Se non vuoi che siano nascosti devi impostare questa opzione come \"sì\"." -msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" -msgstr "<p>Qui troverai un elenco dei timer automatici (AutoTimer) noti a VDRAdmin-AM.</p><p>Questa lista mostra alcune informazioni sui timer automatici. Puoi cambiare l'ordinamento dell'elenco cliccando sul titolo della colonna.</p><p>Per ciascun timer automatico hai le seguenti opzioni:<dl><dt>Imposta lo stato</dt><dd>Clicca su \"Sì\" o \"No\" nella colonna \"Attivo\" per vedere l'attività.</dd><dt>Vedi velocemente la priorità e la scadenza</dt><dd>Puntando il cursore del mouse nel titolo del timer automatico.</dd><dt>Modifica il timer automatico</dt><dd>Puoi modificare un timer automatico cliccando <img src=\"bilder/edit.png\" alt=\"modifica\" />.</dd><dt>Elimina il timer automatico</dt><dd>Per eliminare un timer automatico fai click su <img src=\"bilder/delete.png\" alt=\"elimina\" />.</dd></dl></p><p>Lo stato di ciascun timer automatico è indicato con diverse immagini colorate:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"attivo\" align=\"middle\" /> Il timer automatico è OK e programmerà automaticamente le trasmissioni corrispondenti.<br /><img src=\"bilder/poempl_grau.png\" alt=\"disattivo\" align=\"middle\" /> Il timer automatico non è attivo.</p><p>In aggiunta a queste funzionalità puoi aggiungere un nuovo timer automatico cliccando <input type=\"submit\" class=\"submit\" value=\"Nuovo timer automatico\"/> in cima e puoi eliminare un numero di timer automatici alla volta spuntando la casella nell'ultima colonna di quei timer e cliccando <input type=\"submit\" class=\"submit\" value=\"Elimina timer automatici selezionati\"/>.</p><p>Clicca <input type=\"submit\" class=\"submit\" value=\"Forza Aggiornamento\"/> per forzare VDRAdmin-AM a riconnettersi a VDR, raccogliere l'EPG attuale e verificare la corrispondenza dei timer automatici.</p>" - -msgid "Your Browser does not support frames!" -msgstr "Il tuo browser non supporta i frames!" - -msgid "Rename Recording" -msgstr "Rinomina registrazione" - -msgid "Original Name of Recording:" -msgstr "Nome registrazione originale:" - -msgid "New Name of Recording:" -msgstr "Nuovo nome registrazione:" - -msgid "Subtitle:" -msgstr "Sottotitolo:" - -msgid "Rename" -msgstr "Rinomina" +msgid "Edit Timer" +msgstr "Modifica timer" -msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" -msgstr "<p>Qui troverai un elenco dei timer noti a VDR. L'intestazione mostrerà anche lo spazio disco totale e disponibile di VDR.</p><p>L'elenco mostra alcune informazioni sulle registrazioni. Puoi cambiare l'ordine della lista cliccando sull'intestazione della colonna. Sopra la lista vedrai il percorso di navigazione. Se vuoi vedere i contenuti delle directory precedenti dovrai cliccare sul suo nome in quel percorso.</p><p>Ciascuna riga contiene queste informazioni:<dl><dt>Data</dt><dd>La data in cui la registrazione è stata effettuata. Nel caso di directory questo mostrerà il numero di registrazioni delle directory contenute.</dd><dt>Ora</dt><dd>L'ora in cui la registrazione è stata effettuata. Nel caso di directory questo mostrerà il numero di <strong>nuove</strong> registrazioni che la directory contiene.</dd><dt>Nome</dt><dd>Il nome registrazione o della directory. Fai click per mostrare il sommario delle registrazioni oppure aprire la directory.</dd><dt>Rinomina (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rinomina una registrazione.<br /><h4>Nota:</h4>Questo funziona soltanto se VDR ha il comando SVDRPort <u>RENR</u> che non è integrato ma disponibile attraverso una patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> o <span class=\"ref_file\">enAIO-v2.2+</span> che fornisce questo comando.</dd><dt>Elimina (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Elimina una registrazione.</dd><dt>Trasmetti (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>Questa colonna è mostrata solo se hai attivato e configurato la <span class=\"ref_label\">Registrazione delle trasmissioni</span> nel menu di <span class=\"ref_menu\">Configurazione</span>. Puoi guardare la registrazione nel tuo pc.</dd></dl></p><p>In aggiunta a queste funzioni puoi eliminare un numero di registrazioni alla volta cliccando l'ultima casella ma solo una colonna di quelle registrazioni e cliccando <input type=\"submit\" class=\"submit\" value=\"Elimina registrazioni selezionate\"/>.</p><p>Se hai impostato il percorso dei files di configurazione di VDR e hai valori nel file <span class=\"ref_file\">reccmds.conf</span> di VDR puoi eseguire questi comandi per la registrazione selezionando il comando voluto nella casella di selezione posizionata vicino a <span class=\"ref_label\">Comandi:</span> e premendo il pulsante <input type=\"submit\" class=\"submit\" value=\"Esegui\"/>.</p><p>Utilizza <input type=\"submit\" class=\"submit\" value=\"Aggiorna\"/> per forzare a ricaricare l'elenco delle registrazioni di VDR.</p>" +msgid "Edit EPG" +msgstr "Modifica EPG" msgid "<p>Here you can edit the descriptive fields of an existing EPG entry.</p>" msgstr "<p>Qui puoi modificare i campi descrittivi di un valore EPG esistente.</p>" @@ -1094,134 +962,116 @@ msgstr "Tracce audio (sola lettura)" msgid "If available this field shows the audio track(s). It cannot be changed." msgstr "Se disponibile questo campo mostra le tracce audio. Non può essere modificato." -msgid "Duration:" -msgstr "Durata:" - -msgid "min" -msgstr "min" - -msgid "Transponder:" -msgstr "Transponder:" - -msgid "CA-System:" -msgstr "Sistema CA:" - -msgid "New Timer" -msgstr "Nuovo timer" - -msgid "Date" -msgstr "Data" - -msgid "Edit timer status?" -msgstr "Modificare stato timer?" +msgid "No Help Available" +msgstr "Nessun aiuto disponibile" -msgid "This timer is inactive!" -msgstr "Questo timer è inattivo!" +msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgstr "<p>Nessun aiuto ancora disponibile. Per aggiungere o cambiare il testo contatta <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgid "This timer is impossible!" -msgstr "Questo timer è impossibile!" +msgid "Recordings" +msgstr "Registrazioni" -msgid "No more timers on other transponders possible!" -msgstr "Nessun altro timer è possibile sugli altri transponder!" +msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" +msgstr "<p>Qui troverai un elenco dei timer noti a VDR. L'intestazione mostrerà anche lo spazio disco totale e disponibile di VDR.</p><p>L'elenco mostra alcune informazioni sulle registrazioni. Puoi cambiare l'ordine della lista cliccando sull'intestazione della colonna. Sopra la lista vedrai il percorso di navigazione. Se vuoi vedere i contenuti delle directory precedenti dovrai cliccare sul suo nome in quel percorso.</p><p>Ciascuna riga contiene queste informazioni:<dl><dt>Data</dt><dd>La data in cui la registrazione è stata effettuata. Nel caso di directory questo mostrerà il numero di registrazioni delle directory contenute.</dd><dt>Ora</dt><dd>L'ora in cui la registrazione è stata effettuata. Nel caso di directory questo mostrerà il numero di <strong>nuove</strong> registrazioni che la directory contiene.</dd><dt>Nome</dt><dd>Il nome registrazione o della directory. Fai click per mostrare il sommario delle registrazioni oppure aprire la directory.</dd><dt>Rinomina (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rinomina una registrazione.<br /><h4>Nota:</h4>Questo funziona soltanto se VDR ha il comando SVDRPort <u>RENR</u> che non è integrato ma disponibile attraverso una patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> o <span class=\"ref_file\">enAIO-v2.2+</span> che fornisce questo comando.</dd><dt>Elimina (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Elimina una registrazione.</dd><dt>Trasmetti (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>Questa colonna è mostrata solo se hai attivato e configurato la <span class=\"ref_label\">Registrazione delle trasmissioni</span> nel menu di <span class=\"ref_menu\">Configurazione</span>. Puoi guardare la registrazione nel tuo pc.</dd></dl></p><p>In aggiunta a queste funzioni puoi eliminare un numero di registrazioni alla volta cliccando l'ultima casella ma solo una colonna di quelle registrazioni e cliccando <input type=\"submit\" class=\"submit\" value=\"Elimina registrazioni selezionate\"/>.</p><p>Se hai impostato il percorso dei files di configurazione di VDR e hai valori nel file <span class=\"ref_file\">reccmds.conf</span> di VDR puoi eseguire questi comandi per la registrazione selezionando il comando voluto nella casella di selezione posizionata vicino a <span class=\"ref_label\">Comandi:</span> e premendo il pulsante <input type=\"submit\" class=\"submit\" value=\"Esegui\"/>.</p><p>Utilizza <input type=\"submit\" class=\"submit\" value=\"Aggiorna\"/> per forzare a ricaricare l'elenco delle registrazioni di VDR.</p>" -msgid "Timer OK." -msgstr "Timer OK." +msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" +msgstr "<p>Qui troverai un elenco dei timer noti a VDR.</p><p>In cima troverai un diagramma che mostra i timers giornalieri graficamente. Questo fornisce una vista veloce su cosa stia succedendo in un giorno specifico e ti aiuta a trovare i timers in conflitto. Spostando il cursore del mouse sopra ciascuna casella dei timer sarà visualizzato un dettaglio contenente il titolo del timer, la priorità, la scadenza e la durata.</p><p>Sotto il diagramma troverai l'elenco dei timer che ti mostrano alcune informazioni sui timers. Puoi modificare l'ordine della lista cliccando sull'intestazione delle colonne.</p><p>Per ciascun timer hai le seguenti opzioni:<dl><dt>Impostare lo stato</dt><dd>Cliccando su \"Sì\", \"No\", \"VPS\" o \"Auto\" nella colonna \"Attiva\".</dd><dt>Vedere velocemente la priorità e la durata</dt><dd>Puntando il cursore del mouse nel titolo del timer.</dd><dt>Vedere il valore EPG</dt><dd>I timers che hanno impostato <span class=\"ref_label\">Verifica timer automatici</span> per \"Identificazione Trasmissione\" ti mostreranno il valore EPG corrispondente se fai click sul titolo del timer.</dd><dt>Modificare il timer</dt><dd>Puoi modificare il timer cliccando <img src=\"bilder/edit.png\" alt=\"modifica\" />.</dd><dt>Eliminare il timer</dt><dd>Per eliminare un timer fai click su <img src=\"bilder/delete.png\" alt=\"elimina\" />.</dd></dl></p><p>Lo stato di ciascun timer è indicato a seconda delle caselle colorate (vedi diagramma) o immagini (vedi elenco):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Il timer è OK e registrerà.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Conflitti di timers con altri uguali. Questo non è critico, se tu hai abbastanza schede DVB per le registrazioni in parallelo.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Il timer è critico e molto probabilmente <strong>non</strong> registrerà.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Il timer non è attivo.</p><p>In aggiunta a queste funzioni puoi aggiungere un nuovo timer cliccando su <input type=\"submit\" class=\"submit\" value=\"Nuovo timer\"/> in cima e puoi eliminare un numero di timers alla volta cliccando nella casella dell'ultima colonna di quei timers e cliccando <input type=\"submit\" class=\"submit\" value=\"Elimina timer selezionati\"/>.</p><p>Puoi <input type=\"submit\" class=\"submit\" value=\"attivare\"/> e <input type=\"submit\" class=\"submit\" value=\"disattivare\"/> i timers selezionati.</p>" -msgid "Auto" -msgstr "Auto" +msgid "<p>Here you can edit a timer's settings.</p>" +msgstr "<p>Qui puoi modificare le impostazioni dei timer.</p>" -msgid "activate" -msgstr "attiva" +msgid "Timer Active:" +msgstr "Timer attivo:" -msgid "inactivate" -msgstr "disattiva" +msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." +msgstr "Attiva o disattiva questo timer. I timer disattivati sono salvati sempre nell'elenco dei timer in modo che tu possa attivarli ancora, ma non registrano niente nel frattempo." -msgid "selected timers" -msgstr "timer selezionati" +msgid "AutoTimer Checking:" +msgstr "Verifica timer automatici:" -msgid "Delete Selected Timers" -msgstr "Elimina timer selezionati" +msgid "Depending on how this timer has been programmed you have up to three possible settings:" +msgstr "A seconda di come questo timer è stato programmato hai fino a 3 possibili impostazioni:" -msgid "No timers defined!" -msgstr "Nessun timer definito!" +msgid "Transmission Identification" +msgstr "Identificazione trasmissione" -msgid "EPG Search Blacklists" -msgstr "Lista esclusione ricerca EPG" +msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." +msgstr "Monitora questo timer utilizzando l'identificazione usata dall'EPG. Nota che questo funziona solo se l'identificazione fornita è un valore fisso ed unico! Questa opzione non è disponibile con i timer programmati in VDR." -msgid "New Blacklist" -msgstr "Nuova lista esclusione" +msgid "Time" +msgstr "Ora" -msgid "Search pattern" -msgstr "Cerca valore" +msgid "Monitor this timer using the start and stop time." +msgstr "Monitora questo timer utilizzando l'ora di inizio e fine." -msgid "From" -msgstr "Da" +msgid "off" +msgstr "disattivo" -msgid "To" -msgstr "A" +msgid "Do not monitor this timer." +msgstr "Non monitorare questo timer." -msgid "Delete blacklist?" -msgstr "Eliminare lista esclusione?" +msgid "The channel to record." +msgstr "Canale da registrare." -msgid "Delete Selected Blacklists" -msgstr "Elimina liste esclusioni selezionate" +msgid "Day Of Recording:" +msgstr "Giorno registrazione:" -msgid "Delete all selected blacklists?" -msgstr "Eliminare tutte le liste esclusioni selezionate?" +msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." +msgstr "Il giorno in cui il timer dovrebbe attivarsi. Puoi inserire il giorno in 2 formati: <ul><li>Due caratteri (GG). Questo userà il mese e l'anno corrente.</li><li>Modo ISO (AAAA-MM-GG). Programma i tuoi timer per il futuro come vuoi.</li></ul>Nel caso tu voglia programmare un timer ricorsivo puoi usare le 7 caselle sotto il campo di testo. Spunta la casella per ogni giorno in cui vuoi attivare il timer." -msgid "EPG search" -msgstr "Ricerca EPG" +msgid "Start Time:" +msgstr "Ora inizio:" -msgid "Use template" -msgstr "Utilizza modello" +msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Questa è l'ora in cui il timer dovrebbe avviare la registrazione. Il primo campo di testo è per l'\"ora\", il secondo per i \"minuti\"." -msgid "New Search" -msgstr "Nuova ricerca" +msgid "End Time:" +msgstr "Ora fine:" -msgid "Action" -msgstr "Azione" +msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Questa è l'ora in cui il timer dovrebbe fermare la registrazione. Il primo campo di testo è per l'\"ora\", il secondo per i \"minuti\"." -msgid "Find" -msgstr "Trova" +msgid "Title of Recording:" +msgstr "Titolo registrazione:" -msgid "Show Favorites" -msgstr "Mostra Preferiti" +msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." +msgstr "Il <strong>nome file</strong> che questo timer assegnerà alla registrazione. Se il nome conterrà sottodirectory, queste devono essere delimitate da '~' (dal momento che il carattere '/' può essere parte del nome di un programma).<br /><br />Le parole chiave speciali <strong>TITOLO</strong> ed <strong>EPISODIO</strong>, se presenti, saranno sostituite dalle informazioni del titolo e dell'episodio dei dati EPG all'ora di registrazione (se questi dati sono disponibili). Se all'ora di registrazione questi non possono essere determinati, il <strong>TITOLO</strong> predefinito sarà il nome canale, e l'<strong>EPISODIO</strong> predefinito sarà lasciato vuoto." -msgid "Delete Selected Searches" -msgstr "Elimina ricerche selezionate" +msgid "Summary:" +msgstr "Sommario:" -msgid "Delete all selected searches?" -msgstr "Eliminare tutte le ricerche selezionate?" +msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." +msgstr "Testo arbitrario che descrive la registrazione fatta da questo timer. Se il campo non è vuoto, il suo contenuto sarà sovrascritto nel file di registrazione <span class=\"ref_file\">summary.vdr</span> oppure <span class=\"ref_file\">info.vdr</span>." -msgid "Execute Selected Searches" -msgstr "Esegui ricerche selezionate" +msgid "Your Browser does not support frames!" +msgstr "Il tuo browser non supporta i frames!" -msgid "Duration" -msgstr "Durata" +msgid "What's On Now?" +msgstr "In programmazione adesso" -msgid "Template:" -msgstr "Modello:" +msgid "Playing Today?" +msgstr "In esecuzione oggi" -msgid "Also used for other EPG views!" -msgstr "Usato anche per altre viste EPG!" +msgid "Remote Control" +msgstr "Telecomando" -msgid "Bandwidth of Streams:" -msgstr "Ampiezza di banda delle trasmissioni:" +msgid "Watch TV" +msgstr "Guarda TV" -msgid "URL:" -msgstr "URL:" +msgid "Commands" +msgstr "Comandi" -msgid "Title:" -msgstr "Titolo:" +msgid "Search" +msgstr "Cerca" -msgid "User-defined search:" -msgstr "Ricerca definita dall'utente:" +msgid "Authorization Required" +msgstr "Richiesta autorizzazione" -msgid "In \"AutoTimer\"?" -msgstr "In \"Timer automatici\"?" +msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." +msgstr "Questo server non può verificare se tu sei autorizzato ad accedere al documento richiesto. Inoltre hai fornito le credenziali errate (esempio: password sbagliata), oppure il tuo browser non capisce come fornire le credenziali richieste." -msgid "Apply" -msgstr "Applica" +msgid "VPS" +msgstr "VPS" msgid "close" msgstr "chiudi" @@ -1241,23 +1091,77 @@ msgstr "Tracce video:" msgid "Audio tracks:" msgstr "Tracce audio:" +msgid "Video tracks" +msgstr "Tracce video" + +msgid "Audio tracks" +msgstr "Tracce audio" + +msgid "TV select" +msgstr "Seleziona TV" + +msgid "Stream" +msgstr "Trasmetti" + +msgid "Channel group:" +msgstr "Gruppo canali:" + +msgid "Go!" +msgstr "Vai!" + +msgid "Search for other show times" +msgstr "Cerca altri spettacoli" + +msgid "No Information" +msgstr "Nessuna informazione" + +msgid "No EPG information available" +msgstr "Nessuna informazione EPG disponibile" + +msgid "Playing Today" +msgstr "In esecuzione oggi" + +msgid "starting at" +msgstr "inizio alle" + +msgid "What's on:" +msgstr "In programmazione:" + +msgid "at" +msgstr "alle" + msgid "now" msgstr "adesso" msgid "to" msgstr "a" +msgid "Duration:" +msgstr "Durata:" + +msgid "min" +msgstr "min" + msgid "at:" msgstr "alle:" msgid "You need JavaScript to use the timeline!" msgstr "Serve Javascript per usare la linea temporale!" -msgid "Authorization Required" -msgstr "Richiesta autorizzazione" +msgid "Rename Recording" +msgstr "Rinomina registrazione" -msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." -msgstr "Questo server non può verificare se tu sei autorizzato ad accedere al documento richiesto. Inoltre hai fornito le credenziali errate (esempio: password sbagliata), oppure il tuo browser non capisce come fornire le credenziali richieste." +msgid "Original Name of Recording:" +msgstr "Nome registrazione originale:" + +msgid "New Name of Recording:" +msgstr "Nuovo nome registrazione:" + +msgid "Subtitle:" +msgstr "Sottotitolo:" + +msgid "Rename" +msgstr "Rinomina" msgid "Total:" msgstr "Totale:" @@ -1268,6 +1172,9 @@ msgstr "h" msgid "Free:" msgstr "Disponibile:" +msgid "Date" +msgstr "Data" + msgid "Total" msgstr "Totale" @@ -1289,6 +1196,9 @@ msgstr "Aggiorna" msgid "Commands:" msgstr "Comandi:" +msgid "Really run this command?" +msgstr "Sicuro di eseguire questo comando?" + msgid "Delete Selected Recordings" msgstr "Elimina registrazioni selezionate" @@ -1298,6 +1208,105 @@ msgstr "Eliminare tutte le registrazioni selezionate?" msgid "No recordings available" msgstr "Nessuna registrazione disponibile" +msgid "Transponder:" +msgstr "Transponder:" + +msgid "CA-System:" +msgstr "Sistema CA:" + +msgid "New Timer" +msgstr "Nuovo timer" + +msgid "Edit timer status?" +msgstr "Modificare stato timer?" + +msgid "This timer is inactive!" +msgstr "Questo timer è inattivo!" + +msgid "This timer is impossible!" +msgstr "Questo timer è impossibile!" + +msgid "No more timers on other transponders possible!" +msgstr "Nessun altro timer è possibile sugli altri transponder!" + +msgid "Timer OK." +msgstr "Timer OK." + +msgid "Auto" +msgstr "Auto" + +msgid "activate" +msgstr "attiva" + +msgid "inactivate" +msgstr "disattiva" + +msgid "selected timers" +msgstr "timer selezionati" + +msgid "Delete Selected Timers" +msgstr "Elimina timer selezionati" + +msgid "No timers defined!" +msgstr "Nessun timer definito!" + +msgid "Create New Timer" +msgstr "Crea nuovo timer" + +msgid "Buffer:" +msgstr "Buffer:" + +msgid "Use VPS:" +msgstr "Utilizza VPS:" + +msgid "readonly" +msgstr "solo lettura" + +msgid "Timer has been set by AutoTimer pattern:" +msgstr "Timer impostato dal valore timer automatico:" + +msgid "TV" +msgstr "TV" + +msgid "Interval:" +msgstr "Intervallo:" + +msgid "sec." +msgstr "sec." + +msgid "G" +msgstr "C" + +msgid "Grab the picture!" +msgstr "Cattura immagine!" + +msgid "Size:" +msgstr "Dimensione:" + +msgid "Open in separate window" +msgstr "Apri in una nuova finestra" + +msgid "VDR Commands" +msgstr "Comandi VDR" + +msgid "Export channels as playlist:" +msgstr "Esporta i canali come lista esecuzione:" + +msgid "Number of lines to show:" +msgstr "Numero di righe da mostrare:" + +msgid "unlimited" +msgstr "illimitate" + +msgid "SVDRP commands:" +msgstr "Comandi SVDR:" + +msgid "Commands defined in commands.conf:" +msgstr "Comandi definiti in commands.conf:" + +msgid "Output" +msgstr "Risultato" + msgid "What's your VDR hostname (e.g video.intra.net)?" msgstr "Nome sistema di VDR (ad esempio video.intra.net)?" @@ -1430,11 +1439,11 @@ msgstr "Programmi" #, perl-format msgid "Can't write configuration file %s! Reason: %s" -msgstr "" +msgstr "Impossibile scrivere il file di configurazione %s! Motivo: %s" #, perl-format msgid "Configuration file %s not writeable! Configuration won't be saved!" -msgstr "" +msgstr "File di configurazione %s non modificabile! La configurazione non sarà salvata!" msgid "Timers" msgstr "Timer" diff --git a/po/it_IT.utf8.po b/po/it_IT.utf8.po index 5b20cdc..8f65693 100644 --- a/po/it_IT.utf8.po +++ b/po/it_IT.utf8.po @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: VDRAdmin-AM-3.6.3\n" +"Project-Id-Version: VDRAdmin-AM-3.6.4\n" "Report-Msgid-Bugs-To: Andreas Mair <andreas@vdr-developer.org>\n" -"POT-Creation-Date: 2008-12-18 08:25+0100\n" -"PO-Revision-Date: 2008-12-03 00:49+0100\n" +"POT-Creation-Date: 2009-12-30 13:26+0100\n" +"PO-Revision-Date: 2009-02-08 19:45+0100\n" "Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n" "Language-Team: Diego Pierotto <vdr-italian@tiscali.it>\n" "MIME-Version: 1.0\n" @@ -20,177 +20,108 @@ msgstr "" msgid "ISO-8859-1" msgstr "UTF-8" -msgid "What's On Now?" -msgstr "In programmazione adesso" - -msgid "Channel group:" -msgstr "Gruppo canali:" - -msgid "What's on:" -msgstr "In programmazione:" - -msgid "at" -msgstr "alle" - -msgid "o'clock" -msgstr "in punto" - -msgid "More Information" -msgstr "Altre informazioni" - -msgid "Channels" -msgstr "Canali" - -msgid "Stream" -msgstr "Trasmetti" - -msgid "TV select" -msgstr "Seleziona TV" - -msgid "Search for other show times" -msgstr "Cerca altri spettacoli" - -msgid "No Information" -msgstr "Nessuna informazione" - -msgid "Edit" -msgstr "Modifica" - -msgid "Record" -msgstr "Registra" - -msgid "No EPG information available" -msgstr "Nessuna informazione EPG disponibile" - -msgid "Edit EPG" -msgstr "Modifica EPG" - -msgid "Help" -msgstr "Aiuto" - -msgid "Channel" -msgstr "Canale" - -msgid "Time" -msgstr "Ora" +msgid "About" +msgstr "Info" -msgid "Title" -msgstr "Titolo" +msgid "License" +msgstr "Licenza" -msgid "Subtitle" -msgstr "Sottotitolo" +msgid "Authors" +msgstr "Autori" -msgid "Description" -msgstr "Descrizione" +msgid "Current author (VDRAdmin-AM branch):" +msgstr "Autore attuale (ramo VDRAdmin-AM):" -msgid "VPS" -msgstr "VPS" +msgid "Original author (VDRAdmin):" +msgstr "Autore originale (VDRAdmin):" -msgid "Video tracks" -msgstr "Tracce video" +msgid "Translation Team" +msgstr "Gruppo traduzione" -msgid "Audio tracks" -msgstr "Tracce audio" +msgid "English:" +msgstr "Inglese:" -msgid "Save" -msgstr "Salva" +msgid "German:" +msgstr "Tedesco:" -msgid "Cancel" -msgstr "Annulla" +msgid "French:" +msgstr "Francese:" -msgid "Edit Timer" -msgstr "Modifica timer" +msgid "At the moment unmaintained, former translations by:" +msgstr "Al momento non mantenuto, vecchie traduzioni di:" -msgid "<p>Here you can edit a timer's settings.</p>" -msgstr "<p>Qui puoi modificare le impostazioni dei timer.</p>" +msgid "Spanish:" +msgstr "Spagnolo:" -msgid "Timer Active:" -msgstr "Timer attivo:" +msgid "Finnish:" +msgstr "Finlandese:" -msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." -msgstr "Attiva o disattiva questo timer. I timer disattivati sono salvati sempre nell'elenco dei timer in modo che tu possa attivarli ancora, ma non registrano niente nel frattempo." +msgid "Dutch:" +msgstr "Olandese:" -msgid "AutoTimer Checking:" -msgstr "Verifica timer automatici:" +msgid "Russian:" +msgstr "Russo:" -msgid "Depending on how this timer has been programmed you have up to three possible settings:" -msgstr "A seconda di come questo timer è stato programmato hai fino a 3 possibili impostazioni:" +msgid "Czech:" +msgstr "Ceco:" -msgid "Transmission Identification" -msgstr "Identificazione trasmissione" +msgid "Italian:" +msgstr "Italiano:" -msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." -msgstr "Monitora questo timer utilizzando l'identificazione usata dall'EPG. Nota che questo funziona solo se l'identificazione fornita è un valore fisso ed unico! Questa opzione non è disponibile con i timer programmati in VDR." +msgid "Information" +msgstr "Informazioni" -msgid "Monitor this timer using the start and stop time." -msgstr "Monitora questo timer utilizzando l'ora di inizio e fine." +msgid "VDRAdmin-AM version:" +msgstr "Versione VDRAdmin-AM:" -msgid "off" -msgstr "disattivo" +msgid "VDR version:" +msgstr "Versione VDR:" -msgid "Do not monitor this timer." -msgstr "Non monitorare questo timer." +msgid "Supported features in VDR:" +msgstr "Funzioni supportate da VDR:" -msgid "Channel:" -msgstr "Canale:" +msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgstr "Ricerca EPG (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">Plugin EPGSearch</a>)" -msgid "The channel to record." -msgstr "Canale da registrare." +msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgstr "Trasmissione TV dal vivo (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Plugin Streamdev</a>)" -msgid "Day Of Recording:" -msgstr "Giorno registrazione:" +msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgstr "Rinomina registrazioni (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Patch di Liemikuutio</a>)" -msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." -msgstr "Il giorno in cui il timer dovrebbe attivarsi. Puoi inserire il giorno in 2 formati: <ul><li>Due caratteri (GG). Questo userà il mese e l'anno corrente.</li><li>Modo ISO (AAAA-MM-GG). Programma i tuoi timer per il futuro come vuoi.</li></ul>Nel caso tu voglia programmare un timer ricorsivo puoi usare le 7 caselle sotto il campo di testo. Spunta la casella per ogni giorno in cui vuoi attivare il timer." +msgid "Getting Help and Reporting Bugs" +msgstr "Chiedi aiuto e riporta errori" -msgid "Start Time:" -msgstr "Ora inizio:" +msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." +msgstr "Se hai bisogno di aiuto prova a usare l'aiuto in linea che troverai in alcune pagine. Puoi accedervi cliccando <img src=\"bilder/help.png\" alt=\"\" />." -msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Questa è l'ora in cui il timer dovrebbe avviare la registrazione. Il primo campo di testo è per l'\"ora\", il secondo per i \"minuti\"." +msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" +msgstr "Se questo non ti fornisce le informazioni di cui hai bisogno puoi provare a chiedere aiuto nel <a href=\"http://www.vdrportal.de\" target=\"_blank\">Portale VDR</a> se capisci il tedesco. Usa la sezione annunci se possibile, cerca:" -msgid "End Time:" -msgstr "Ora fine:" +msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." +msgstr "Se pensi di aver trovato un errore verifica che sia uno nuovo e riportalo nel <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">Sistema di raccolta errori di VDRAdmin-AM</a>." -msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Questa è l'ora in cui il timer dovrebbe fermare la registrazione. Il primo campo di testo è per l'\"ora\", il secondo per i \"minuti\"." +msgid "AutoTimer" +msgstr "Timer automatico" msgid "Priority:" msgstr "Priorità :" -msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." -msgstr "Un valore integer nel range <strong>0...99</strong>, definisce la <strong>priorità </strong> di questo timer e delle registrazioni create da questo timer. <strong>0</strong> rappresenta il valore più basso, <strong>99</strong> il più alto. La priorità è usata per decidere quale timer inizierà nel caso ci siano 2 o più timer con la stessa esatta ora di <strong>avvio</strong>. Verrà usato il primo timer nella lista con la priorità più alta.<br /><br />Questo valore è salvato anche con la registrazione ed è usato più tardi per rimuoverla dal disco in modo da liberare spazio per nuove registrazioni. Se il disco è pieno e una nuova registrazione ha bisogno di spazio, una registrazione esistente con una priorità più bassa (e la cui <strong>scadenza</strong> è garantita) sarà rimossa.<br /><br />Se tutte le schede DVB disponibili sono attualmente occupate, un timer con una priorità più alta interromperà il timer con la priorità più bassa per poter iniziare la registrazione." - msgid "Lifetime:" msgstr "Scadenza:" -msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." -msgstr "La scadenza <strong>garantita</strong> (in giorni) di una registrazione creata da questo timer. <strong>0</strong> significa che questa registrazione può essere automaticamente eliminata a qualsiasi ora da una nuova registrazione con priorità più alta. <strong>99</strong> significa che questa registrazione non sarà mai eliminata automaticamente. Qualsiasi numero nel range <strong>1...98</strong> significa che questa registrazione non può essere automaticamente eliminata in favore di una nuova registrazione, finché il numero di giorni impostato dall'ora di <strong>avvio</strong> della registrazione sarà passato." - -msgid "Title of Recording:" -msgstr "Titolo registrazione:" - -msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." -msgstr "Il <strong>nome file</strong> che questo timer assegnerà alla registrazione. Se il nome conterrà sottodirectory, queste devono essere delimitate da '~' (dal momento che il carattere '/' può essere parte del nome di un programma).<br /><br />Le parole chiave speciali <strong>TITOLO</strong> ed <strong>EPISODIO</strong>, se presenti, saranno sostituite dalle informazioni del titolo e dell'episodio dei dati EPG all'ora di registrazione (se questi dati sono disponibili). Se all'ora di registrazione questi non possono essere determinati, il <strong>TITOLO</strong> predefinito sarà il nome canale, e l'<strong>EPISODIO</strong> predefinito sarà lasciato vuoto." - -msgid "Summary:" -msgstr "Sommario:" - -msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." -msgstr "Testo arbitrario che descrive la registrazione fatta da questo timer. Se il campo non è vuoto, il suo contenuto sarà sovrascritto nel file di registrazione <span class=\"ref_file\">summary.vdr</span> oppure <span class=\"ref_file\">info.vdr</span>." - -msgid "Go!" -msgstr "Vai!" - -msgid "AutoTimer" -msgstr "Timer automatico" - msgid "New AutoTimer" msgstr "Nuovo timer automatico" +msgid "Help" +msgstr "Aiuto" + msgid "Active" msgstr "Attivo" +msgid "Channel" +msgstr "Canale" + msgid "Start" msgstr "Inizio" @@ -209,6 +140,9 @@ msgstr "Sì" msgid "No" msgstr "No" +msgid "Edit" +msgstr "Modifica" + msgid "Delete timer?" msgstr "Eliminare timer?" @@ -227,33 +161,6 @@ msgstr "Eliminare tutti i timer selezionati?" msgid "No AutoTimers defined!" msgstr "Nessun timer automatico definito!" -msgid "VDR Commands" -msgstr "Comandi VDR" - -msgid "Export channels as playlist:" -msgstr "Esporta i canali come lista esecuzione:" - -msgid "Number of lines to show:" -msgstr "Numero di righe da mostrare:" - -msgid "unlimited" -msgstr "illimitate" - -msgid "SVDRP commands:" -msgstr "Comandi SVDR:" - -msgid "Run" -msgstr "Esegui" - -msgid "Really run this command?" -msgstr "Sicuro di eseguire questo comando?" - -msgid "Commands defined in commands.conf:" -msgstr "Comandi definiti in commands.conf:" - -msgid "Output" -msgstr "Risultato" - msgid "Add New AutoTimer" msgstr "Aggiungi nuovo timer automatico" @@ -272,6 +179,15 @@ msgstr "Cerca valori:" msgid "Search in:" msgstr "Cerca in:" +msgid "Title" +msgstr "Titolo" + +msgid "Subtitle" +msgstr "Sottotitolo" + +msgid "Description" +msgstr "Descrizione" + msgid "Search only on these days:" msgstr "Cerca solo in questi giorni:" @@ -296,12 +212,18 @@ msgstr "Sabato" msgid "Sunday" msgstr "Domenica" +msgid "Channel:" +msgstr "Canale:" + msgid "all" msgstr "tutti" msgid "Starts After:" msgstr "Inizia dopo:" +msgid "o'clock" +msgstr "in punto" + msgid "Ends Before:" msgstr "Finisce prima:" @@ -326,9 +248,15 @@ msgstr "Ricorda timer programmati:" msgid "Directory:" msgstr "Directory:" +msgid "Save" +msgstr "Salva" + msgid "Test" msgstr "Prova" +msgid "Cancel" +msgstr "Annulla" + msgid "Broadcasted" msgstr "Trasmesso" @@ -338,140 +266,254 @@ msgstr "Salvato in" msgid "No matches found!" msgstr "Nessun valore trovato!" -msgid "About" -msgstr "Info" +msgid "Configuration" +msgstr "Configurazione" -msgid "License" -msgstr "Licenza" +msgid "General Settings" +msgstr "Impostazioni generali" -msgid "Authors" -msgstr "Autori" +msgid "Template:" +msgstr "Modello:" -msgid "Current author (VDRAdmin-AM branch):" -msgstr "Autore attuale (ramo VDRAdmin-AM):" +msgid "Skin:" +msgstr "Stile interfaccia:" -msgid "Original author (VDRAdmin):" -msgstr "Autore originale (VDRAdmin):" +msgid "Login Page:" +msgstr "Pagina di accesso:" -msgid "Translation Team" -msgstr "Gruppo traduzione" +msgid "Number of channels to use:" +msgstr "Numero di canali da usare:" -msgid "English:" -msgstr "Inglese:" +msgid "Local net (no login required):" +msgstr "Rete locale (nessun accesso richiesto):" -msgid "German:" -msgstr "Tedesco:" +msgid "Language:" +msgstr "Lingua:" -msgid "French:" -msgstr "Francese:" +msgid "Save settings on exit:" +msgstr "Salva impostazioni all'uscita:" -msgid "At the moment unmaintained, former translations by:" -msgstr "Al momento non mantenuto, vecchie traduzioni di:" +msgid "VDR" +msgstr "VDR" -msgid "Spanish:" -msgstr "Spagnolo:" +msgid "Number of DVB cards:" +msgstr "Numero di schede DVB:" -msgid "Finnish:" -msgstr "Finlandese:" +msgid "Path to recordings:" +msgstr "Percorso delle registrazioni:" -msgid "Dutch:" -msgstr "Olandese:" +msgid "Path to configuration files:" +msgstr "Percorso files di configurazione:" -msgid "Russian:" -msgstr "Russo:" +msgid "Path to EPG images:" +msgstr "Percorso immagini EPG:" -msgid "Czech:" -msgstr "Ceco:" +msgid "Identification" +msgstr "Identificazione" -msgid "Italian:" -msgstr "Italiano:" +msgid "Username:" +msgstr "Nome utente:" -msgid "Information" -msgstr "Informazioni" +msgid "Password:" +msgstr "Password:" -msgid "VDRAdmin-AM version:" -msgstr "Versione VDRAdmin-AM:" +msgid "Guest Account:" +msgstr "Account Guest:" -msgid "VDR version:" -msgstr "Versione VDR:" +msgid "Guest Username:" +msgstr "Nome utente Guest:" -msgid "Supported features in VDR:" -msgstr "Funzioni supportate da VDR:" +msgid "Guest Password:" +msgstr "Password Guest:" -msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgstr "Ricerca EPG (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">Plugin EPGSearch</a>)" +msgid "Timeline" +msgstr "Linea temporale" -msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgstr "Trasmissione TV dal vivo (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Plugin Streamdev</a>)" +msgid "Hours:" +msgstr "Ore:" -msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgstr "Rinomina registrazioni (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Patch di Liemikuutio</a>)" +msgid "Times:" +msgstr "Periodi:" -msgid "Getting Help and Reporting Bugs" -msgstr "Chiedi aiuto e riporta errori" +msgid "Also used for other EPG views!" +msgstr "Usato anche per altre viste EPG!" -msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." -msgstr "Se hai bisogno di aiuto prova a usare l'aiuto in linea che troverai in alcune pagine. Puoi accedervi cliccando <img src=\"bilder/help.png\" alt=\"\" />." +msgid "Tooltips:" +msgstr "Dettagli:" -msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" -msgstr "Se questo non ti fornisce le informazioni di cui hai bisogno puoi provare a chiedere aiuto nel <a href=\"http://www.vdrportal.de\" target=\"_blank\">Portale VDR</a> se capisci il tedesco. Usa la sezione annunci se possibile, cerca:" +msgid "Active:" +msgstr "Attivo:" -msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." -msgstr "Se pensi di aver trovato un errore verifica che sia uno nuovo e riportalo nel <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">Sistema di raccolta errori di VDRAdmin-AM</a>." +msgid "Send email after programming timer:" +msgstr "Invia email dopo la programmazione del timer:" -msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" -msgstr "<p>Qui puoi modificare le impostazioni dei timer automatici (AutoTimer).</p><p>Il timer automatico è una funzione chiave di VDRAdmin-AM. Un timer automatico consiste in uno o più termini di ricerca e alcune altre impostazioni, che cercano regolarmente nella Guida Programmi Elettronici (EPG). Se un timer automatico corrisponde allora aggiunge un timer a VDR automaticamente per quella trasmissione. Questo è molto comodo per serie o film trasmessi irregolarmente che tu non vuoi perdere.</p>" +msgid "Send email as:" +msgstr "Invia email come:" -msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." -msgstr "Attiva o disattiva questo timer automatico. I timer automatici disattivati sono ancora salvati nell'elenco dei timer automatici in modo che possano ancora essere attivati, ma non registreranno niente nel frattempo. Sopra quello puoi impostare questo come \"solo una volta\" in modo che questo timer automatico si programmi solo alla prossima (unica!) trasmissione corrispondente." +msgid "Send email to:" +msgstr "Invia email a:" -msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Only broadcasts will match if they contain <strong>all</strong> items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as Blacklist-string) or only one episode (when using \"Enterprise~Azati Prime\" as Blacklist-string)." -msgstr "Scegliendo i valori corretti di ricerca decidi se solo le trasmissioni volute o le trasmissioni che hanno nomi simili o anche nessuna sarà registrata.<br />Il maiuscolo non importa, \"X-Files\" corrisponde a qualsiasi cosa \"x-files\" incontrerà . Puoi impostare valori di ricerca multipli separandoli con degli spazi. Le trasmissioni corrisponderanno solo se contengono <strong>tutti</strong> i valori.<br />Dovresti piuttosto usare lettere e numeri per la ricerca dei valori, visto che l'EPG spesso omette le virgole, parentesi e altri caratteri.<br />Gli esperti possono anche usare espressioni regolari, ma devi aver bisogno di più informazione dai sorgenti di VDRAdmin-AM (caratteristica non documentata).<br /><br />Puoi escludere le trasmissioni in modo che non siano registrate se corrispondessero a un timer automatico. Perciò devi inserire quei titoli nel file <i>vdradmind.bl</i>, un evento per riga. Questo file deve essere posizionato nella tua directory di configurazione di VDRAdmin-AM. Se questa stringa viene trovata sia nel <u>titolo</u> dell'EPG che nel <u>titolo~sottotitolo</u>, questo evento non sarà programmato dai timer automatici. Puoi così disabilitare episodi completi (per esempio quando usi \"Enterprise\" come stringa della lista esclusioni) o solo un episodio (quando usi \"Enterprise~Azati Prime\" come stringa della lista nera)." +msgid "Mail server:" +msgstr "Server di posta:" -msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." -msgstr "Qui puoi definire le sezioni EPG dove VDRAdmin-AM dovrebbe guardare per la ricerca del valore." +msgid "SMTPAuth user:" +msgstr "Utente autenticazione SMTP:" -msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." -msgstr "Utilizza queste caselle di verifica per limitare la ricerca delle trasmissioni corrispondenti ad un insieme di giorni della settimana." +msgid "SMTPAuth password:" +msgstr "Password autenticazione SMTP:" -msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." -msgstr "Canale da cercare per le trasmissioni corrispondenti oppure \"tutti\" per cercare in tutti i canali noti e voluti. Puoi definire i canali voluti nei timer automatici nella \"Configurazione\"." +msgid "Track schedule changes by:" +msgstr "" -msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Una trasmissione deve iniziare dopo che l'ora qui inserita corrisponda. Il primo campo di testo è per l'\"ora\", il secondo per i \"minuti\"." +msgid "Broadcast time" +msgstr "" -msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Una trasmissione deve finire prima che l'orario qui inserito corrisponda. Il primo campo di testo è per l' \"ora\", il secondo per i \"minuti\"." +msgid "Event id" +msgstr "" -msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." -msgstr "Imposta questa opzione come \"sì\" se tutti i timer programmati da questo timer automatico dovrebbero avere margini individuali di avvio/chiusura e inserisci i valori nelle prossime 2 caselle di testo." +msgid "Timer" +msgstr "Timer" -msgid "The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG." -msgstr "Numero di minuti che VDRAdmin-AM sottrae dall'ora di avvio delle trasmissioni trovate nell'EPG." +msgid "Tooltips in timeline:" +msgstr "Dettagli nella linea temporale:" -msgid "The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG." -msgstr "Numero di minuti che VDRAdmin-AM aggiunge all'ora di chiusura delle trasmissioni trovate nell'EPG." +msgid "Tooltips in list:" +msgstr "Dettagli nell'elenco:" -msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." -msgstr "Seleziona questa casella se vuoi che VDRAdmin-AM aggiunga il sottotitolo EPG della trasmissione al nome file della registrazione." +msgid "Streaming" +msgstr "Trasmissione" -msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." -msgstr "Se abiliti questo VDRAdmin-AM traccerà i timer che ha programmato automaticamente. Questo è utile se vuoi disattivare o eliminare i timers che sono stati programmati automaticamente nella lista dei timers." +msgid "Live Streaming:" +msgstr "Trasmissione dal vivo:" -msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." -msgstr "La directory dove i timer automatici posizioneranno le registrazioni. Se il nome conterrà sottodirectory, queste devono essere delimitate da '~' (dal momento che il carattere '/' può essere parte di un normale nome programma).<br />VDRAdmin-AM metterà in coda il titolo e il sottotitolo della trasmissione corrispondente (se la spunta \"Episodio\" è segnata) nella directory qui specificata.<br /><br />Puoi anche usare le seguenti parole chiave che sono sostituite nel finale del nome file dai valori forniti per esempio <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - diventerà il titolo dell'evento.</li><li>%Subtitle% - diventerà il sottotitolo dell'evento.</li><li>%Director% - diventerà il direttore dell'evento.</li><li>%Date% - diventerà la data della registrazione.</li><li>%Category% - diventerà la categoria dell'evento (Spielfilm/Serie/...).</li><li>%Genre% - diventerà il genere dell'evento (Drama/Krimi/..).</li><li>%Year% - diventerà l'anno di produzione.</li><li>%Country% - diventerà il paese di produzione.</li><li>%Originaltitle% - diventerà il titolo originale dell'evento.</li><li>%FSK% - diventerà la FSK dell'evento.</li><li>%Episode% - diventerà il titolo dell'episodio dell'evento.</li><li>%Rating% - diventerà la valutazione dell'evento del fornitore dell'EPG.</li></ul><h4>Nota:</h4>Se usi le parole chiave di sopra è tua responsabilità fornire il <strong>nome file completo</strong> per le registrazioni! VDRAdmin-AM non includerà niente alla stringa risultante." +msgid "HTTP Port of Streamdev (also possible 3000/ts):" +msgstr "Porta HTTP di Streamdev (possibile anche 3000/ts):" -msgid "Timer" -msgstr "Timer" +msgid "Recordings Streaming:" +msgstr "Trasmissione registrazioni:" -msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" -msgstr "<p>Qui troverai un elenco dei timer noti a VDR.</p><p>In cima troverai un diagramma che mostra i timers giornalieri graficamente. Questo fornisce una vista veloce su cosa stia succedendo in un giorno specifico e ti aiuta a trovare i timers in conflitto. Spostando il cursore del mouse sopra ciascuna casella dei timer sarà visualizzato un dettaglio contenente il titolo del timer, la priorità , la scadenza e la durata.</p><p>Sotto il diagramma troverai l'elenco dei timer che ti mostrano alcune informazioni sui timers. Puoi modificare l'ordine della lista cliccando sull'intestazione delle colonne.</p><p>Per ciascun timer hai le seguenti opzioni:<dl><dt>Impostare lo stato</dt><dd>Cliccando su \"Sì\", \"No\", \"VPS\" o \"Auto\" nella colonna \"Attiva\".</dd><dt>Vedere velocemente la priorità e la durata</dt><dd>Puntando il cursore del mouse nel titolo del timer.</dd><dt>Vedere il valore EPG</dt><dd>I timers che hanno impostato <span class=\"ref_label\">Verifica timer automatici</span> per \"Identificazione Trasmissione\" ti mostreranno il valore EPG corrispondente se fai click sul titolo del timer.</dd><dt>Modificare il timer</dt><dd>Puoi modificare il timer cliccando <img src=\"bilder/edit.png\" alt=\"modifica\" />.</dd><dt>Eliminare il timer</dt><dd>Per eliminare un timer fai click su <img src=\"bilder/delete.png\" alt=\"elimina\" />.</dd></dl></p><p>Lo stato di ciascun timer è indicato a seconda delle caselle colorate (vedi diagramma) o immagini (vedi elenco):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Il timer è OK e registrerà .<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Conflitti di timers con altri uguali. Questo non è critico, se tu hai abbastanza schede DVB per le registrazioni in parallelo.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Il timer è critico e molto probabilmente <strong>non</strong> registrerà .<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Il timer non è attivo.</p><p>In aggiunta a queste funzioni puoi aggiungere un nuovo timer cliccando su <input type=\"submit\" class=\"submit\" value=\"Nuovo timer\"/> in cima e puoi eliminare un numero di timers alla volta cliccando nella casella dell'ultima colonna di quei timers e cliccando <input type=\"submit\" class=\"submit\" value=\"Elimina timer selezionati\"/>.</p><p>Puoi <input type=\"submit\" class=\"submit\" value=\"attivare\"/> e <input type=\"submit\" class=\"submit\" value=\"disattivare\"/> i timers selezionati.</p>" +msgid "Path to VDR Recordings on your workstation:" +msgstr "Percorso di registrazione VDR sul tuo pc:" -msgid "Playing Today" -msgstr "In esecuzione oggi" +msgid "MIME type for live streaming:" +msgstr "Tipo MIME per trasmissione dal vivo:" -msgid "starting at" -msgstr "inizio alle" +msgid "Suffix for live streaming:" +msgstr "Suffisso per trasmissione dal vivo:" + +msgid "MIME type for recordings streaming:" +msgstr "Tipo MIME per trasmissione registrazioni:" + +msgid "Suffix for recordings streaming:" +msgstr "Suffisso per trasmissione registrazioni:" + +msgid "Bandwidth of Streams:" +msgstr "Ampiezza di banda delle trasmissioni:" + +msgid "External Search" +msgstr "Ricerca esterna" + +msgid "URL:" +msgstr "URL:" + +msgid "Title:" +msgstr "Titolo:" + +msgid "User-defined search:" +msgstr "Ricerca definita dall'utente:" + +msgid "Expert" +msgstr "Esperto" + +msgid "Update EPG data in background:" +msgstr "Aggiorna i dati EPG in sottofondo:" + +msgid "Update EPG every:" +msgstr "Aggiorna EPG ogni:" + +msgid "Channel Selections" +msgstr "Selezione canali" + +msgid "Show channels without EPG information:" +msgstr "Mostra canali senza informazione EPG:" + +msgid "In \"AutoTimer\"?" +msgstr "In \"Timer automatici\"?" + +msgid "Apply" +msgstr "Applica" + +msgid "EPG Search Blacklists" +msgstr "Lista esclusione ricerca EPG" + +msgid "New Blacklist" +msgstr "Nuova lista esclusione" + +msgid "Search pattern" +msgstr "Cerca valore" + +msgid "From" +msgstr "Da" + +msgid "To" +msgstr "A" + +msgid "Delete blacklist?" +msgstr "Eliminare lista esclusione?" + +msgid "Delete Selected Blacklists" +msgstr "Elimina liste esclusioni selezionate" + +msgid "Delete all selected blacklists?" +msgstr "Eliminare tutte le liste esclusioni selezionate?" + +msgid "EPG search" +msgstr "Ricerca EPG" + +msgid "EPG Search" +msgstr "Ricerca EPG" + +msgid "Use template" +msgstr "Utilizza modello" + +msgid "New Search" +msgstr "Nuova ricerca" + +msgid "Edit Template" +msgstr "Modifica modello" + +msgid "Settings" +msgstr "Impostazioni" + +msgid "Action" +msgstr "Azione" + +msgid "Find" +msgstr "Trova" + +msgid "Show Favorites" +msgstr "Mostra Preferiti" + +msgid "Delete Selected Searches" +msgstr "Elimina ricerche selezionate" + +msgid "Delete all selected searches?" +msgstr "Eliminare tutte le ricerche selezionate?" + +msgid "Execute Selected Searches" +msgstr "Esegui ricerche selezionate" + +msgid "Duration" +msgstr "Durata" + +msgid "More Information" +msgstr "Altre informazioni" + +msgid "Channels" +msgstr "Canali" + +msgid "Record" +msgstr "Registra" msgid "Add New Blacklist" msgstr "Aggiungi nuova lista esclusione" @@ -482,9 +524,6 @@ msgstr "Modifica lista esclusione" msgid "Add New Template" msgstr "Aggiungi nuovo modello" -msgid "Edit Template" -msgstr "Modifica modello" - msgid "Add New Search" msgstr "Aggiungi nuova ricerca" @@ -500,9 +539,6 @@ msgstr "Non hai selezionato almeno uno tra\\ntitolo, sottotitolo o descrizione.\ msgid "Hide results" msgstr "Nascondi risultati" -msgid "Settings" -msgstr "Impostazioni" - msgid "Name:" msgstr "Nome:" @@ -680,264 +716,147 @@ msgstr "Eliminare questo modello?" msgid "Save as template" msgstr "Salva come modello" -msgid "Create New Timer" -msgstr "Crea nuovo timer" - -msgid "Buffer:" -msgstr "Buffer:" - -msgid "Use VPS:" -msgstr "Utilizza VPS:" - -msgid "readonly" -msgstr "solo lettura" - -msgid "Timer has been set by AutoTimer pattern:" -msgstr "Timer impostato dal valore timer automatico:" - -msgid "No Help Available" -msgstr "Nessun aiuto disponibile" - -msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgstr "<p>Nessun aiuto ancora disponibile. Per aggiungere o cambiare il testo contatta <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgid "Run" +msgstr "Esegui" msgid "Error!" msgstr "Errore!" -msgid "TV" -msgstr "TV" +msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" +msgstr "<p>Qui troverai un elenco dei timer automatici (AutoTimer) noti a VDRAdmin-AM.</p><p>Questa lista mostra alcune informazioni sui timer automatici. Puoi cambiare l'ordinamento dell'elenco cliccando sul titolo della colonna.</p><p>Per ciascun timer automatico hai le seguenti opzioni:<dl><dt>Imposta lo stato</dt><dd>Clicca su \"Sì\" o \"No\" nella colonna \"Attivo\" per vedere l'attività .</dd><dt>Vedi velocemente la priorità e la scadenza</dt><dd>Puntando il cursore del mouse nel titolo del timer automatico.</dd><dt>Modifica il timer automatico</dt><dd>Puoi modificare un timer automatico cliccando <img src=\"bilder/edit.png\" alt=\"modifica\" />.</dd><dt>Elimina il timer automatico</dt><dd>Per eliminare un timer automatico fai click su <img src=\"bilder/delete.png\" alt=\"elimina\" />.</dd></dl></p><p>Lo stato di ciascun timer automatico è indicato con diverse immagini colorate:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"attivo\" align=\"middle\" /> Il timer automatico è OK e programmerà automaticamente le trasmissioni corrispondenti.<br /><img src=\"bilder/poempl_grau.png\" alt=\"disattivo\" align=\"middle\" /> Il timer automatico non è attivo.</p><p>In aggiunta a queste funzionalità puoi aggiungere un nuovo timer automatico cliccando <input type=\"submit\" class=\"submit\" value=\"Nuovo timer automatico\"/> in cima e puoi eliminare un numero di timer automatici alla volta spuntando la casella nell'ultima colonna di quei timer e cliccando <input type=\"submit\" class=\"submit\" value=\"Elimina timer automatici selezionati\"/>.</p><p>Clicca <input type=\"submit\" class=\"submit\" value=\"Forza Aggiornamento\"/> per forzare VDRAdmin-AM a riconnettersi a VDR, raccogliere l'EPG attuale e verificare la corrispondenza dei timer automatici.</p>" -msgid "Interval:" -msgstr "Intervallo:" +msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgstr "<p>Qui puoi modificare le impostazioni dei timer automatici (AutoTimer).</p><p>Il timer automatico è una funzione chiave di VDRAdmin-AM. Un timer automatico consiste in uno o più termini di ricerca e alcune altre impostazioni, che cercano regolarmente nella Guida Programmi Elettronici (EPG). Se un timer automatico corrisponde allora aggiunge un timer a VDR automaticamente per quella trasmissione. Questo è molto comodo per serie o film trasmessi irregolarmente che tu non vuoi perdere.</p>" -msgid "sec." -msgstr "sec." +msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." +msgstr "Attiva o disattiva questo timer automatico. I timer automatici disattivati sono ancora salvati nell'elenco dei timer automatici in modo che possano ancora essere attivati, ma non registreranno niente nel frattempo. Sopra quello puoi impostare questo come \"solo una volta\" in modo che questo timer automatico si programmi solo alla prossima (unica!) trasmissione corrispondente." -msgid "G" -msgstr "C" +msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Broadcasts will match only if they match <strong>all</strong> configured search items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as blacklist string) or only one episode (when using \"Enterprise~Azati Prime\" as blacklist string)." +msgstr "Scegliendo i valori corretti di ricerca decidi se solo le trasmissioni volute o le trasmissioni che hanno nomi simili o anche nessuna sarà registrata.<br />Il maiuscolo non importa, \"X-Files\" corrisponde a qualsiasi cosa \"x-files\" incontrerà . Puoi impostare valori di ricerca multipli separandoli con degli spazi. Le trasmissioni corrisponderanno solo se contengono <strong>tutti</strong> i valori.<br />Dovresti piuttosto usare lettere e numeri per la ricerca dei valori, visto che l'EPG spesso omette le virgole, parentesi e altri caratteri.<br />Gli esperti possono anche usare espressioni regolari, ma devi aver bisogno di più informazione dai sorgenti di VDRAdmin-AM (caratteristica non documentata).<br /><br />Puoi escludere le trasmissioni in modo che non siano registrate se corrispondessero a un timer automatico. Perciò devi inserire quei titoli nel file <i>vdradmind.bl</i>, un evento per riga. Questo file deve essere posizionato nella tua directory di configurazione di VDRAdmin-AM. Se questa stringa viene trovata sia nel <u>titolo</u> dell'EPG che nel <u>titolo~sottotitolo</u>, questo evento non sarà programmato dai timer automatici. Puoi così disabilitare episodi completi (per esempio quando usi \"Enterprise\" come stringa della lista esclusioni) o solo un episodio (quando usi \"Enterprise~Azati Prime\" come stringa della lista nera)." -msgid "Grab the picture!" -msgstr "Cattura immagine!" +msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." +msgstr "Qui puoi definire le sezioni EPG dove VDRAdmin-AM dovrebbe guardare per la ricerca del valore." -msgid "Size:" -msgstr "Dimensione:" +msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." +msgstr "Utilizza queste caselle di verifica per limitare la ricerca delle trasmissioni corrispondenti ad un insieme di giorni della settimana." -msgid "Open in separate window" -msgstr "Apri in una nuova finestra" +msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." +msgstr "Canale da cercare per le trasmissioni corrispondenti oppure \"tutti\" per cercare in tutti i canali noti e voluti. Puoi definire i canali voluti nei timer automatici nella \"Configurazione\"." -msgid "Playing Today?" -msgstr "In esecuzione oggi" +msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Una trasmissione deve iniziare dopo che l'ora qui inserita corrisponda. Il primo campo di testo è per l'\"ora\", il secondo per i \"minuti\"." -msgid "Timeline" -msgstr "Linea temporale" +msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Una trasmissione deve finire prima che l'orario qui inserito corrisponda. Il primo campo di testo è per l' \"ora\", il secondo per i \"minuti\"." -msgid "EPG Search" -msgstr "Ricerca EPG" +msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." +msgstr "Imposta questa opzione come \"sì\" se tutti i timer programmati da questo timer automatico dovrebbero avere margini individuali di avvio/chiusura e inserisci i valori nelle prossime 2 caselle di testo." -msgid "Recordings" -msgstr "Registrazioni" +msgid "The number of minutes VDRAdmin-AM subtracts from the broadcast's start time found in the EPG." +msgstr "Numero di minuti che VDRAdmin-AM sottrae dall'ora di avvio delle trasmissioni trovate nell'EPG." -msgid "Remote Control" -msgstr "Telecomando" +msgid "The number of minutes VDRAdmin-AM adds to the broadcast's stop time found in the EPG." +msgstr "Numero di minuti che VDRAdmin-AM aggiunge all'ora di chiusura delle trasmissioni trovate nell'EPG." -msgid "Watch TV" -msgstr "Guarda TV" +msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." +msgstr "Un valore integer nel range <strong>0...99</strong>, definisce la <strong>priorità </strong> di questo timer e delle registrazioni create da questo timer. <strong>0</strong> rappresenta il valore più basso, <strong>99</strong> il più alto. La priorità è usata per decidere quale timer inizierà nel caso ci siano 2 o più timer con la stessa esatta ora di <strong>avvio</strong>. Verrà usato il primo timer nella lista con la priorità più alta.<br /><br />Questo valore è salvato anche con la registrazione ed è usato più tardi per rimuoverla dal disco in modo da liberare spazio per nuove registrazioni. Se il disco è pieno e una nuova registrazione ha bisogno di spazio, una registrazione esistente con una priorità più bassa (e la cui <strong>scadenza</strong> è garantita) sarà rimossa.<br /><br />Se tutte le schede DVB disponibili sono attualmente occupate, un timer con una priorità più alta interromperà il timer con la priorità più bassa per poter iniziare la registrazione." -msgid "Commands" -msgstr "Comandi" +msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." +msgstr "La scadenza <strong>garantita</strong> (in giorni) di una registrazione creata da questo timer. <strong>0</strong> significa che questa registrazione può essere automaticamente eliminata a qualsiasi ora da una nuova registrazione con priorità più alta. <strong>99</strong> significa che questa registrazione non sarà mai eliminata automaticamente. Qualsiasi numero nel range <strong>1...98</strong> significa che questa registrazione non può essere automaticamente eliminata in favore di una nuova registrazione, finché il numero di giorni impostato dall'ora di <strong>avvio</strong> della registrazione sarà passato." -msgid "Configuration" -msgstr "Configurazione" +msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." +msgstr "Seleziona questa casella se vuoi che VDRAdmin-AM aggiunga il sottotitolo EPG della trasmissione al nome file della registrazione." -msgid "Search" -msgstr "Cerca" +msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." +msgstr "Se abiliti questo VDRAdmin-AM traccerà i timer che ha programmato automaticamente. Questo è utile se vuoi disattivare o eliminare i timers che sono stati programmati automaticamente nella lista dei timers." + +msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." +msgstr "La directory dove i timer automatici posizioneranno le registrazioni. Se il nome conterrà sottodirectory, queste devono essere delimitate da '~' (dal momento che il carattere '/' può essere parte di un normale nome programma).<br />VDRAdmin-AM metterà in coda il titolo e il sottotitolo della trasmissione corrispondente (se la spunta \"Episodio\" è segnata) nella directory qui specificata.<br /><br />Puoi anche usare le seguenti parole chiave che sono sostituite nel finale del nome file dai valori forniti per esempio <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - diventerà il titolo dell'evento.</li><li>%Subtitle% - diventerà il sottotitolo dell'evento.</li><li>%Director% - diventerà il direttore dell'evento.</li><li>%Date% - diventerà la data della registrazione.</li><li>%Category% - diventerà la categoria dell'evento (Spielfilm/Serie/...).</li><li>%Genre% - diventerà il genere dell'evento (Drama/Krimi/..).</li><li>%Year% - diventerà l'anno di produzione.</li><li>%Country% - diventerà il paese di produzione.</li><li>%Originaltitle% - diventerà il titolo originale dell'evento.</li><li>%FSK% - diventerà la FSK dell'evento.</li><li>%Episode% - diventerà il titolo dell'episodio dell'evento.</li><li>%Rating% - diventerà la valutazione dell'evento del fornitore dell'EPG.</li></ul><h4>Nota:</h4>Se usi le parole chiave di sopra è tua responsabilità fornire il <strong>nome file completo</strong> per le registrazioni! VDRAdmin-AM non includerà niente alla stringa risultante." msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" msgstr "<p>Qui puoi cambiare le impostazioni generali e di base per i timer, timer automatici, selezione canale e parametri di trasmissione.</p>" -msgid "General Settings" -msgstr "Impostazioni generali" - -msgid "VDR" -msgstr "VDR" - -msgid "Identification" -msgstr "Identificazione" - -msgid "Streaming" -msgstr "Trasmissione" - -msgid "Expert" -msgstr "Esperto" - -msgid "External Search" -msgstr "Ricerca esterna" - -msgid "Channel Selections" -msgstr "Selezione canali" - -msgid "Skin:" -msgstr "Stile interfaccia:" - msgid "The skin you want to use." msgstr "Lo stile interfaccia che vuoi usare." -msgid "Login Page:" -msgstr "Pagina di accesso:" - msgid "The page you want to see at first connect to VDRAdmin-AM." msgstr "La pagina che vuoi vedere alla prima connessione a VDRAdmin-AM." -msgid "Number of channels to use:" -msgstr "Numero di canali da usare:" - msgid "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." msgstr "VDRAdmin-AM caricherà il numero di canali fornito da VDR e mostrerà solo quelli in qualunque campo dove i canali possano essere selezionati. Questo limita anche l'informazione EPG che VDRAdmin-AM leggerà in modo che tu possa usarla per ridurre l'uso di memoria di VDRAdmin-AM ed incrementare le sue performance. <strong>0</strong> disattiva questa opzione e VDRAdmin-AM userà tutti i canali disponibili." -msgid "Local net (no login required):" -msgstr "Rete locale (nessun accesso richiesto):" - msgid "Here you can specify an IP address or range that can login without providing login information. For example: \"192.168.0.0/24\" will include any IP starting with \"192.168.0\", \"192.168.0.123/32\" will only match \"192.168.0.123\"." msgstr "Qui puoi specificare un indirizzo IP o il range che può connettersi senza fornire informazioni di accesso. Per esempio: \"192.168.0.0/24\" includerà qualunque IP che comincia con \"192.168.0\", \"192.168.0.123/32\" corrisponderà solo a \"192.168.0.123\"." -msgid "Language:" -msgstr "Lingua:" - msgid "Here you can set the localization VDRAdmin-AM should use." msgstr "Qui puoi impostare la lingua che VDRAdmin-AM dovrebbe usare." -msgid "Save settings on exit:" -msgstr "Salva impostazioni all'uscita:" - msgid "With this option the settings will be saved if VDRAdmin-AM exits. This will also save settings not available on the \"Configuration\" menu like interval and size in TV, sorting in the lists and current view in \"What's on now\"." msgstr "Con questa opzione le impostazioni saranno salvate se VDRAdmin-AM esiste. Questo salverà anche le impostazioni non disponibili nel menu \"Configurazione\" come l'intervallo e la dimensione nella TV, ordine nell'elenco e la vista corrente \"In programmazione adesso\"." msgid "Top" msgstr "In alto" -msgid "Number of DVB cards:" -msgstr "Numero di schede DVB:" - msgid "The number of DVB cards VDR can access. Depending on this value VDRAdmin-AM will calculate critical timers in the <span class=\"ref_menu\">Timer</span> menu." msgstr "Numero di schede DVB a cui VDR può accedere. A seconda di questo valore VDRAdmin-AM calcolerà i timer critici nel menu <span class=\"ref_menu\">Timer</span>." -msgid "Path to recordings:" -msgstr "Percorso delle registrazioni:" - msgid "The path to VDR's recordings. It's used so that VDRAdmin-AM can locate the recordings when using <span class=\"ref_label\">Recordings Streaming</span> and <span class=\"ref_file\">reccmds.conf</span> in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Percorso per le registrazioni di VDR. Viene usato in modo che VDRAdmin-AM possa trovare le registrazioni quando usa la <span class=\"ref_label\">Registrazione Trasmissione</span> e <span class=\"ref_file\">reccmds.conf</span> nel menu <span class=\"ref_menu\">Registrazioni</span>." -msgid "Path to configuration files:" -msgstr "Percorso files di configurazione:" - msgid "The path where VDR's configuration files are located. If this directory contains the file <span class=\"ref_file\">reccmds.conf</span> its content is shown in a selectbox in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Percorso dove i file di configurazione di VDR sono salvati. Se questa directory contiene il file <span class=\"ref_file\">reccmds.conf</span> il suo contenuto è mostrato nella casella di selezione nel menu <span class=\"ref_menu\">Registrazioni</span>." -msgid "Path to EPG images:" -msgstr "Percorso immagini EPG:" - msgid "The path where the EPG images are stored." msgstr "Percorso dove sono salvate le immagini EPG." -msgid "Username:" -msgstr "Nome utente:" - msgid "The username for the main user, i.e. the user having the most privileges." msgstr "Nome utente per l'account principale, per esempio l'utente con più privilegi." -msgid "Password:" -msgstr "Password:" - msgid "The main user's password." msgstr "Password account principale." -msgid "Guest Account:" -msgstr "Account Guest:" - msgid "If you want a user account having only limited privileges, this is for you. The guest user cannot modify anything, it's only allowed to view the EPG, timers, AutoTimers and recordings listings." msgstr "Se vuoi un account utente che abbia solo permessi limitati, questo è per te. L'utente guest non può modificare niente, può solo vedere l'EPG, i timer, i timer automatici e l'elenco delle registrazioni." -msgid "Guest Username:" -msgstr "Nome utente Guest:" - msgid "The username for the guest user." msgstr "Nome utente dell'account guest." -msgid "Guest Password:" -msgstr "Password Guest:" - msgid "The guest user's password." msgstr "Password account guest." -msgid "Hours:" -msgstr "Ore:" - msgid "The number of hours to show in the timeline." msgstr "Numero di ore da mostrare nella linea temporale." -msgid "Times:" -msgstr "Periodi:" - msgid "A comma separated list of times in <strong>hh:mm</strong> format that appear in the selectbox placed at the top." msgstr "Un elenco di orari nel formato comma separated <strong>hh:mm</strong> che compare nella casella di selezione posizionata in cima." -msgid "Tooltips:" -msgstr "Dettagli:" - msgid "Here you can (de-)activate the tooltips." msgstr "Qui puoi (dis)attivare i dettagli." -msgid "Active:" -msgstr "Attivo:" - msgid "Activate or deactivate the AutoTimer function." msgstr "Attiva o disattiva la funzione timer automatici." -msgid "Send email after programming timer:" -msgstr "Invia email dopo la programmazione del timer:" - msgid "VDRAdmin-AM will send an email whenever an event matches an AutoTimer and a timer has been programmed if you enable this feature." msgstr "VDRAdmin-AM invierà un'email se un evento corrisponde ad un timer automatico e un timer è stato programmato abilitando questa opzione." -msgid "Send email as:" -msgstr "Invia email come:" - msgid "Here you set the sending email address of the generated email." msgstr "Qui puoi impostare l'invio all'indirizzo email del messaggio generato." -msgid "Send email to:" -msgstr "Invia email a:" - msgid "The email address the email is sent to." msgstr "L'indirizzo email a cui il messaggio viene inviato." -msgid "Mail server:" -msgstr "Server di posta:" - msgid "The outgoing mail server." msgstr "Server di posta in uscita." -msgid "SMTPAuth user:" -msgstr "Utente autenticazione SMTP:" - msgid "If you need to authenticate yourself at the outgoing mail server, you have to supply the username and the password below. Leaving this field empty will disable SMTPAuth." msgstr "Se devi autenticarti per l'invio di email, allora devi fornire sotto il nome utente e la password. Lasciando questo campo vuoto si disattiverà l'autenticazione SMTP." -msgid "SMTPAuth password:" -msgstr "Password autenticazione SMTP:" - msgid "The password for the SMTPAuth user." msgstr "Password per l'utente di autenticazione SMTP." -msgid "Tooltips in timeline:" -msgstr "Dettagli nella linea temporale:" - msgid "Here you can (de-)activate the tooltips in the timeline." msgstr "Qui puoi (dis)attivare i dettagli nella linea temporale." -msgid "Tooltips in list:" -msgstr "Dettagli nell'elenco:" - msgid "Here you can (de-)activate the tooltips in the list." msgstr "Qui puoi (dis)attivare i dettagli nell'elenco." @@ -947,51 +866,27 @@ msgstr "Aggiungi sommario ai nuovi timer:" msgid "If you don't want VDRAdmin-AM to add the summary taken from EPG to new timers you can switch it off here." msgstr "Se non vuoi che VDRAdmin-AM aggiunga il sommario preso dall'EPG nei nuovi timer puoi disattivarlo qui." -msgid "Live Streaming:" -msgstr "Trasmissione dal vivo:" - msgid "Enable or disable live streaming using the <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. You also have to set the correct <span class=\"ref_label\">HTTP Port for Streamdev</span> below." msgstr "Abilita o disabilita la trasmissione dal vivo usando il <a href=\"http://www.magoa.net/linux/\">plugin streamdev</a>. Devi anche impostare sotto la corretta <span class=\"ref_label\">porta HTTP per Streamdev</span>." -msgid "HTTP Port of Streamdev (also possible 3000/ts):" -msgstr "Porta HTTP di Streamdev (possibile anche 3000/ts):" - msgid "Here you have to set the port number your VDR's streamdev server listens for connections. Additionally you can also provide the stream type you like to use." msgstr "Qui devi impostare il numero di porta in cui il server streamdev di VDR ascolta per effettuare le connessioni. Puoi anche fornire il tipo di trasmissione che utilizzi." -msgid "Recordings Streaming:" -msgstr "Trasmissione registrazioni:" - msgid "Enable or disable streaming of recordings.<br />Well actually this is no real \"streaming\", but you have to setup your workstation so that it can access VDR's recordings. You can use for example Samba or NFS for this. VDRAdmin-AM simply generates a playlist that contains all parts of the recording and sends this to your browser. If your browser and media player are configured correctly you will see the recording on your workstation's display." msgstr "Abilita o disabilita la trasmissione delle registrazioni.<br />Anche se attualmente questa non è una vera \"trasmissione\", ma devi impostare il tuo pc affinché possa accedere alle registrazioni di VDR. Puoi usare per esempio Samba o NFS per questo. VDRAdmin-AM semplicemente genera una lista di esecuzione che contiene tutte le parti della registrazione e invia questo al tuo browser. Se il tuo browser e media player sono configurati correttamente vedrai la registrazione visualizzata sul tuo pc." -msgid "Path to VDR Recordings on your workstation:" -msgstr "Percorso di registrazione VDR sul tuo pc:" - msgid "This is the path where your workstation can access VDR's recordings. This depends on your VDR and workstation setup, for example \"\\\\vdr\\videos\" or \"V:\\\" (on Windows) or \"/mnt/videos\" (on Linux)." msgstr "Questo è il percorso in cui il tuo computer può accedere alle registrazioni di VDR. Questo dipende dalle impostazioni di VDR e del tuo pc, per esempio \"\\\\vdr\\videos\" oppure \"V:\\\" (su Windows) o \"/mnt/videos\" (su GNU/Linux)." -msgid "MIME type for live streaming:" -msgstr "Tipo MIME per trasmissione dal vivo:" - msgid "The MIME type to send when using live streaming. Defaults to \"video/x-mpegurl\"." msgstr "Tipo MIME da inviare quando si usa la trasmissione dal vivo. Il valore predefinito è \"video/x-mpegurl\"." -msgid "Suffix for live streaming:" -msgstr "Suffisso per trasmissione dal vivo:" - msgid "The suffix to use for live streaming. Defaults to \"m3u\"." msgstr "Suffisso da usare per le trasmissioni dal vivo. Il valore predefinito è \"m3u\". " -msgid "MIME type for recordings streaming:" -msgstr "Tipo MIME per trasmissione registrazioni:" - msgid "The MIME type to send when using recordings streaming. Defaults to \"video/x-mpegurl\"." msgstr "Il tipo MIME da inviare quando si utilizza la trasmissione delle registrazioni. Il valore predefinito è \"video/x-mpegurl\"." -msgid "Suffix for recordings streaming:" -msgstr "Suffisso per trasmissione registrazioni:" - msgid "The suffix to use for recordings streaming. Defaults to \"m3u\"." msgstr "Suffisso da usare per trasmettere la registrazione. Il valore predefinito è \"m3u\"." @@ -1007,50 +902,23 @@ msgstr "Cambia il nome server per adattarlo alle tue impostazioni" msgid "<p>This section is for experts <strong>only</strong>, i.e. you know what you are doing!</p>" msgstr "<p>Questa sezione è per <strong>soli</strong> esperti, del tipo: sai cosa stai facendo!</p>" -msgid "Update EPG data in background:" -msgstr "Aggiorna i dati EPG in sottofondo:" - msgid "If set to \"yes\" VDRAdmin-AM will periodically refresh its local EPG cache. Else the EPG will be refreshed if the user accesses any EPG view at the web interface and the timeout set at \"Update EPG every\" has been reached." msgstr "Se imposti \"sì\" VDRAdmin-AM aggiornerà periodicamente la sua cache EPG locale. Inoltre l'EPG sarà aggiornato se l'utente accede a qualsiasi vista EPG nell'interfaccia web e la scadenza impostata in \"Aggiorna EPG ogni\" è stata raggiunta." -msgid "Update EPG every:" -msgstr "Aggiorna EPG ogni:" - msgid "The interval, the EPG data is refreshed from VDR and AutoTimer updates are performed (if AutoTimer feature is used)." msgstr "L'intervallo, i dati EPG sono aggiornati da VDR e gli aggiornamenti sono eseguiti dai timer automatici (se la funzione AutoTimer viene usata)." msgid "<p>If you want to limit the number of channels used in some parts of VDRAdmin-AM, this is for you!</p><p>Use the radio buttons to activate or deactivate the wanted channels in the named menu.</p><p>To add channels to the list of wanted channels you have to select them in the left side selectbox and click <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. If you want to remove channels from the list of wanted channels you have to select them in the right side selectbox and click <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" msgstr "<p>Se vuoi limitare il numero di canali usati in alcune parti di VDRAdmin-AM, questo è per te!</p><p>Utilizza i pulsanti radio per attivare o disattivare i canali preferiti nel menu indicato.</p><p>Per aggiungere canali alla lista dei canali preferiti devi selezionarli nella casella di selezione del lato sinistro e cliccare <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. Se vuoi rimuovere canali dalla lista dei canali preferiti devi selezionarli nella casella di selezione del lato destro e cliccare <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" -msgid "Show channels without EPG information:" -msgstr "Mostra canali senza informazione EPG:" - msgid "Usually channels that don't have EPG information are hidden in all EPG views. If you don't want them to be hidden you have to set this option to \"yes\"." msgstr "Di solito i canali che non hanno informazione EPG sono nascosti nelle viste EPG. Se non vuoi che siano nascosti devi impostare questa opzione come \"sì\"." -msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" -msgstr "<p>Qui troverai un elenco dei timer automatici (AutoTimer) noti a VDRAdmin-AM.</p><p>Questa lista mostra alcune informazioni sui timer automatici. Puoi cambiare l'ordinamento dell'elenco cliccando sul titolo della colonna.</p><p>Per ciascun timer automatico hai le seguenti opzioni:<dl><dt>Imposta lo stato</dt><dd>Clicca su \"Sì\" o \"No\" nella colonna \"Attivo\" per vedere l'attività .</dd><dt>Vedi velocemente la priorità e la scadenza</dt><dd>Puntando il cursore del mouse nel titolo del timer automatico.</dd><dt>Modifica il timer automatico</dt><dd>Puoi modificare un timer automatico cliccando <img src=\"bilder/edit.png\" alt=\"modifica\" />.</dd><dt>Elimina il timer automatico</dt><dd>Per eliminare un timer automatico fai click su <img src=\"bilder/delete.png\" alt=\"elimina\" />.</dd></dl></p><p>Lo stato di ciascun timer automatico è indicato con diverse immagini colorate:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"attivo\" align=\"middle\" /> Il timer automatico è OK e programmerà automaticamente le trasmissioni corrispondenti.<br /><img src=\"bilder/poempl_grau.png\" alt=\"disattivo\" align=\"middle\" /> Il timer automatico non è attivo.</p><p>In aggiunta a queste funzionalità puoi aggiungere un nuovo timer automatico cliccando <input type=\"submit\" class=\"submit\" value=\"Nuovo timer automatico\"/> in cima e puoi eliminare un numero di timer automatici alla volta spuntando la casella nell'ultima colonna di quei timer e cliccando <input type=\"submit\" class=\"submit\" value=\"Elimina timer automatici selezionati\"/>.</p><p>Clicca <input type=\"submit\" class=\"submit\" value=\"Forza Aggiornamento\"/> per forzare VDRAdmin-AM a riconnettersi a VDR, raccogliere l'EPG attuale e verificare la corrispondenza dei timer automatici.</p>" - -msgid "Your Browser does not support frames!" -msgstr "Il tuo browser non supporta i frames!" - -msgid "Rename Recording" -msgstr "Rinomina registrazione" - -msgid "Original Name of Recording:" -msgstr "Nome registrazione originale:" - -msgid "New Name of Recording:" -msgstr "Nuovo nome registrazione:" - -msgid "Subtitle:" -msgstr "Sottotitolo:" - -msgid "Rename" -msgstr "Rinomina" +msgid "Edit Timer" +msgstr "Modifica timer" -msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" -msgstr "<p>Qui troverai un elenco dei timer noti a VDR. L'intestazione mostrerà anche lo spazio disco totale e disponibile di VDR.</p><p>L'elenco mostra alcune informazioni sulle registrazioni. Puoi cambiare l'ordine della lista cliccando sull'intestazione della colonna. Sopra la lista vedrai il percorso di navigazione. Se vuoi vedere i contenuti delle directory precedenti dovrai cliccare sul suo nome in quel percorso.</p><p>Ciascuna riga contiene queste informazioni:<dl><dt>Data</dt><dd>La data in cui la registrazione è stata effettuata. Nel caso di directory questo mostrerà il numero di registrazioni delle directory contenute.</dd><dt>Ora</dt><dd>L'ora in cui la registrazione è stata effettuata. Nel caso di directory questo mostrerà il numero di <strong>nuove</strong> registrazioni che la directory contiene.</dd><dt>Nome</dt><dd>Il nome registrazione o della directory. Fai click per mostrare il sommario delle registrazioni oppure aprire la directory.</dd><dt>Rinomina (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rinomina una registrazione.<br /><h4>Nota:</h4>Questo funziona soltanto se VDR ha il comando SVDRPort <u>RENR</u> che non è integrato ma disponibile attraverso una patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> o <span class=\"ref_file\">enAIO-v2.2+</span> che fornisce questo comando.</dd><dt>Elimina (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Elimina una registrazione.</dd><dt>Trasmetti (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>Questa colonna è mostrata solo se hai attivato e configurato la <span class=\"ref_label\">Registrazione delle trasmissioni</span> nel menu di <span class=\"ref_menu\">Configurazione</span>. Puoi guardare la registrazione nel tuo pc.</dd></dl></p><p>In aggiunta a queste funzioni puoi eliminare un numero di registrazioni alla volta cliccando l'ultima casella ma solo una colonna di quelle registrazioni e cliccando <input type=\"submit\" class=\"submit\" value=\"Elimina registrazioni selezionate\"/>.</p><p>Se hai impostato il percorso dei files di configurazione di VDR e hai valori nel file <span class=\"ref_file\">reccmds.conf</span> di VDR puoi eseguire questi comandi per la registrazione selezionando il comando voluto nella casella di selezione posizionata vicino a <span class=\"ref_label\">Comandi:</span> e premendo il pulsante <input type=\"submit\" class=\"submit\" value=\"Esegui\"/>.</p><p>Utilizza <input type=\"submit\" class=\"submit\" value=\"Aggiorna\"/> per forzare a ricaricare l'elenco delle registrazioni di VDR.</p>" +msgid "Edit EPG" +msgstr "Modifica EPG" msgid "<p>Here you can edit the descriptive fields of an existing EPG entry.</p>" msgstr "<p>Qui puoi modificare i campi descrittivi di un valore EPG esistente.</p>" @@ -1094,134 +962,116 @@ msgstr "Tracce audio (sola lettura)" msgid "If available this field shows the audio track(s). It cannot be changed." msgstr "Se disponibile questo campo mostra le tracce audio. Non può essere modificato." -msgid "Duration:" -msgstr "Durata:" - -msgid "min" -msgstr "min" - -msgid "Transponder:" -msgstr "Transponder:" - -msgid "CA-System:" -msgstr "Sistema CA:" - -msgid "New Timer" -msgstr "Nuovo timer" - -msgid "Date" -msgstr "Data" - -msgid "Edit timer status?" -msgstr "Modificare stato timer?" +msgid "No Help Available" +msgstr "Nessun aiuto disponibile" -msgid "This timer is inactive!" -msgstr "Questo timer è inattivo!" +msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgstr "<p>Nessun aiuto ancora disponibile. Per aggiungere o cambiare il testo contatta <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgid "This timer is impossible!" -msgstr "Questo timer è impossibile!" +msgid "Recordings" +msgstr "Registrazioni" -msgid "No more timers on other transponders possible!" -msgstr "Nessun altro timer è possibile sugli altri transponder!" +msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" +msgstr "<p>Qui troverai un elenco dei timer noti a VDR. L'intestazione mostrerà anche lo spazio disco totale e disponibile di VDR.</p><p>L'elenco mostra alcune informazioni sulle registrazioni. Puoi cambiare l'ordine della lista cliccando sull'intestazione della colonna. Sopra la lista vedrai il percorso di navigazione. Se vuoi vedere i contenuti delle directory precedenti dovrai cliccare sul suo nome in quel percorso.</p><p>Ciascuna riga contiene queste informazioni:<dl><dt>Data</dt><dd>La data in cui la registrazione è stata effettuata. Nel caso di directory questo mostrerà il numero di registrazioni delle directory contenute.</dd><dt>Ora</dt><dd>L'ora in cui la registrazione è stata effettuata. Nel caso di directory questo mostrerà il numero di <strong>nuove</strong> registrazioni che la directory contiene.</dd><dt>Nome</dt><dd>Il nome registrazione o della directory. Fai click per mostrare il sommario delle registrazioni oppure aprire la directory.</dd><dt>Rinomina (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rinomina una registrazione.<br /><h4>Nota:</h4>Questo funziona soltanto se VDR ha il comando SVDRPort <u>RENR</u> che non è integrato ma disponibile attraverso una patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> o <span class=\"ref_file\">enAIO-v2.2+</span> che fornisce questo comando.</dd><dt>Elimina (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Elimina una registrazione.</dd><dt>Trasmetti (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>Questa colonna è mostrata solo se hai attivato e configurato la <span class=\"ref_label\">Registrazione delle trasmissioni</span> nel menu di <span class=\"ref_menu\">Configurazione</span>. Puoi guardare la registrazione nel tuo pc.</dd></dl></p><p>In aggiunta a queste funzioni puoi eliminare un numero di registrazioni alla volta cliccando l'ultima casella ma solo una colonna di quelle registrazioni e cliccando <input type=\"submit\" class=\"submit\" value=\"Elimina registrazioni selezionate\"/>.</p><p>Se hai impostato il percorso dei files di configurazione di VDR e hai valori nel file <span class=\"ref_file\">reccmds.conf</span> di VDR puoi eseguire questi comandi per la registrazione selezionando il comando voluto nella casella di selezione posizionata vicino a <span class=\"ref_label\">Comandi:</span> e premendo il pulsante <input type=\"submit\" class=\"submit\" value=\"Esegui\"/>.</p><p>Utilizza <input type=\"submit\" class=\"submit\" value=\"Aggiorna\"/> per forzare a ricaricare l'elenco delle registrazioni di VDR.</p>" -msgid "Timer OK." -msgstr "Timer OK." +msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" +msgstr "<p>Qui troverai un elenco dei timer noti a VDR.</p><p>In cima troverai un diagramma che mostra i timers giornalieri graficamente. Questo fornisce una vista veloce su cosa stia succedendo in un giorno specifico e ti aiuta a trovare i timers in conflitto. Spostando il cursore del mouse sopra ciascuna casella dei timer sarà visualizzato un dettaglio contenente il titolo del timer, la priorità , la scadenza e la durata.</p><p>Sotto il diagramma troverai l'elenco dei timer che ti mostrano alcune informazioni sui timers. Puoi modificare l'ordine della lista cliccando sull'intestazione delle colonne.</p><p>Per ciascun timer hai le seguenti opzioni:<dl><dt>Impostare lo stato</dt><dd>Cliccando su \"Sì\", \"No\", \"VPS\" o \"Auto\" nella colonna \"Attiva\".</dd><dt>Vedere velocemente la priorità e la durata</dt><dd>Puntando il cursore del mouse nel titolo del timer.</dd><dt>Vedere il valore EPG</dt><dd>I timers che hanno impostato <span class=\"ref_label\">Verifica timer automatici</span> per \"Identificazione Trasmissione\" ti mostreranno il valore EPG corrispondente se fai click sul titolo del timer.</dd><dt>Modificare il timer</dt><dd>Puoi modificare il timer cliccando <img src=\"bilder/edit.png\" alt=\"modifica\" />.</dd><dt>Eliminare il timer</dt><dd>Per eliminare un timer fai click su <img src=\"bilder/delete.png\" alt=\"elimina\" />.</dd></dl></p><p>Lo stato di ciascun timer è indicato a seconda delle caselle colorate (vedi diagramma) o immagini (vedi elenco):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Il timer è OK e registrerà .<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Conflitti di timers con altri uguali. Questo non è critico, se tu hai abbastanza schede DVB per le registrazioni in parallelo.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Il timer è critico e molto probabilmente <strong>non</strong> registrerà .<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Il timer non è attivo.</p><p>In aggiunta a queste funzioni puoi aggiungere un nuovo timer cliccando su <input type=\"submit\" class=\"submit\" value=\"Nuovo timer\"/> in cima e puoi eliminare un numero di timers alla volta cliccando nella casella dell'ultima colonna di quei timers e cliccando <input type=\"submit\" class=\"submit\" value=\"Elimina timer selezionati\"/>.</p><p>Puoi <input type=\"submit\" class=\"submit\" value=\"attivare\"/> e <input type=\"submit\" class=\"submit\" value=\"disattivare\"/> i timers selezionati.</p>" -msgid "Auto" -msgstr "Auto" +msgid "<p>Here you can edit a timer's settings.</p>" +msgstr "<p>Qui puoi modificare le impostazioni dei timer.</p>" -msgid "activate" -msgstr "attiva" +msgid "Timer Active:" +msgstr "Timer attivo:" -msgid "inactivate" -msgstr "disattiva" +msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." +msgstr "Attiva o disattiva questo timer. I timer disattivati sono salvati sempre nell'elenco dei timer in modo che tu possa attivarli ancora, ma non registrano niente nel frattempo." -msgid "selected timers" -msgstr "timer selezionati" +msgid "AutoTimer Checking:" +msgstr "Verifica timer automatici:" -msgid "Delete Selected Timers" -msgstr "Elimina timer selezionati" +msgid "Depending on how this timer has been programmed you have up to three possible settings:" +msgstr "A seconda di come questo timer è stato programmato hai fino a 3 possibili impostazioni:" -msgid "No timers defined!" -msgstr "Nessun timer definito!" +msgid "Transmission Identification" +msgstr "Identificazione trasmissione" -msgid "EPG Search Blacklists" -msgstr "Lista esclusione ricerca EPG" +msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." +msgstr "Monitora questo timer utilizzando l'identificazione usata dall'EPG. Nota che questo funziona solo se l'identificazione fornita è un valore fisso ed unico! Questa opzione non è disponibile con i timer programmati in VDR." -msgid "New Blacklist" -msgstr "Nuova lista esclusione" +msgid "Time" +msgstr "Ora" -msgid "Search pattern" -msgstr "Cerca valore" +msgid "Monitor this timer using the start and stop time." +msgstr "Monitora questo timer utilizzando l'ora di inizio e fine." -msgid "From" -msgstr "Da" +msgid "off" +msgstr "disattivo" -msgid "To" -msgstr "A" +msgid "Do not monitor this timer." +msgstr "Non monitorare questo timer." -msgid "Delete blacklist?" -msgstr "Eliminare lista esclusione?" +msgid "The channel to record." +msgstr "Canale da registrare." -msgid "Delete Selected Blacklists" -msgstr "Elimina liste esclusioni selezionate" +msgid "Day Of Recording:" +msgstr "Giorno registrazione:" -msgid "Delete all selected blacklists?" -msgstr "Eliminare tutte le liste esclusioni selezionate?" +msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." +msgstr "Il giorno in cui il timer dovrebbe attivarsi. Puoi inserire il giorno in 2 formati: <ul><li>Due caratteri (GG). Questo userà il mese e l'anno corrente.</li><li>Modo ISO (AAAA-MM-GG). Programma i tuoi timer per il futuro come vuoi.</li></ul>Nel caso tu voglia programmare un timer ricorsivo puoi usare le 7 caselle sotto il campo di testo. Spunta la casella per ogni giorno in cui vuoi attivare il timer." -msgid "EPG search" -msgstr "Ricerca EPG" +msgid "Start Time:" +msgstr "Ora inizio:" -msgid "Use template" -msgstr "Utilizza modello" +msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Questa è l'ora in cui il timer dovrebbe avviare la registrazione. Il primo campo di testo è per l'\"ora\", il secondo per i \"minuti\"." -msgid "New Search" -msgstr "Nuova ricerca" +msgid "End Time:" +msgstr "Ora fine:" -msgid "Action" -msgstr "Azione" +msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Questa è l'ora in cui il timer dovrebbe fermare la registrazione. Il primo campo di testo è per l'\"ora\", il secondo per i \"minuti\"." -msgid "Find" -msgstr "Trova" +msgid "Title of Recording:" +msgstr "Titolo registrazione:" -msgid "Show Favorites" -msgstr "Mostra Preferiti" +msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." +msgstr "Il <strong>nome file</strong> che questo timer assegnerà alla registrazione. Se il nome conterrà sottodirectory, queste devono essere delimitate da '~' (dal momento che il carattere '/' può essere parte del nome di un programma).<br /><br />Le parole chiave speciali <strong>TITOLO</strong> ed <strong>EPISODIO</strong>, se presenti, saranno sostituite dalle informazioni del titolo e dell'episodio dei dati EPG all'ora di registrazione (se questi dati sono disponibili). Se all'ora di registrazione questi non possono essere determinati, il <strong>TITOLO</strong> predefinito sarà il nome canale, e l'<strong>EPISODIO</strong> predefinito sarà lasciato vuoto." -msgid "Delete Selected Searches" -msgstr "Elimina ricerche selezionate" +msgid "Summary:" +msgstr "Sommario:" -msgid "Delete all selected searches?" -msgstr "Eliminare tutte le ricerche selezionate?" +msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." +msgstr "Testo arbitrario che descrive la registrazione fatta da questo timer. Se il campo non è vuoto, il suo contenuto sarà sovrascritto nel file di registrazione <span class=\"ref_file\">summary.vdr</span> oppure <span class=\"ref_file\">info.vdr</span>." -msgid "Execute Selected Searches" -msgstr "Esegui ricerche selezionate" +msgid "Your Browser does not support frames!" +msgstr "Il tuo browser non supporta i frames!" -msgid "Duration" -msgstr "Durata" +msgid "What's On Now?" +msgstr "In programmazione adesso" -msgid "Template:" -msgstr "Modello:" +msgid "Playing Today?" +msgstr "In esecuzione oggi" -msgid "Also used for other EPG views!" -msgstr "Usato anche per altre viste EPG!" +msgid "Remote Control" +msgstr "Telecomando" -msgid "Bandwidth of Streams:" -msgstr "Ampiezza di banda delle trasmissioni:" +msgid "Watch TV" +msgstr "Guarda TV" -msgid "URL:" -msgstr "URL:" +msgid "Commands" +msgstr "Comandi" -msgid "Title:" -msgstr "Titolo:" +msgid "Search" +msgstr "Cerca" -msgid "User-defined search:" -msgstr "Ricerca definita dall'utente:" +msgid "Authorization Required" +msgstr "Richiesta autorizzazione" -msgid "In \"AutoTimer\"?" -msgstr "In \"Timer automatici\"?" +msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." +msgstr "Questo server non può verificare se tu sei autorizzato ad accedere al documento richiesto. Inoltre hai fornito le credenziali errate (esempio: password sbagliata), oppure il tuo browser non capisce come fornire le credenziali richieste." -msgid "Apply" -msgstr "Applica" +msgid "VPS" +msgstr "VPS" msgid "close" msgstr "chiudi" @@ -1241,23 +1091,77 @@ msgstr "Tracce video:" msgid "Audio tracks:" msgstr "Tracce audio:" +msgid "Video tracks" +msgstr "Tracce video" + +msgid "Audio tracks" +msgstr "Tracce audio" + +msgid "TV select" +msgstr "Seleziona TV" + +msgid "Stream" +msgstr "Trasmetti" + +msgid "Channel group:" +msgstr "Gruppo canali:" + +msgid "Go!" +msgstr "Vai!" + +msgid "Search for other show times" +msgstr "Cerca altri spettacoli" + +msgid "No Information" +msgstr "Nessuna informazione" + +msgid "No EPG information available" +msgstr "Nessuna informazione EPG disponibile" + +msgid "Playing Today" +msgstr "In esecuzione oggi" + +msgid "starting at" +msgstr "inizio alle" + +msgid "What's on:" +msgstr "In programmazione:" + +msgid "at" +msgstr "alle" + msgid "now" msgstr "adesso" msgid "to" msgstr "a" +msgid "Duration:" +msgstr "Durata:" + +msgid "min" +msgstr "min" + msgid "at:" msgstr "alle:" msgid "You need JavaScript to use the timeline!" msgstr "Serve Javascript per usare la linea temporale!" -msgid "Authorization Required" -msgstr "Richiesta autorizzazione" +msgid "Rename Recording" +msgstr "Rinomina registrazione" -msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." -msgstr "Questo server non può verificare se tu sei autorizzato ad accedere al documento richiesto. Inoltre hai fornito le credenziali errate (esempio: password sbagliata), oppure il tuo browser non capisce come fornire le credenziali richieste." +msgid "Original Name of Recording:" +msgstr "Nome registrazione originale:" + +msgid "New Name of Recording:" +msgstr "Nuovo nome registrazione:" + +msgid "Subtitle:" +msgstr "Sottotitolo:" + +msgid "Rename" +msgstr "Rinomina" msgid "Total:" msgstr "Totale:" @@ -1268,6 +1172,9 @@ msgstr "h" msgid "Free:" msgstr "Disponibile:" +msgid "Date" +msgstr "Data" + msgid "Total" msgstr "Totale" @@ -1289,6 +1196,9 @@ msgstr "Aggiorna" msgid "Commands:" msgstr "Comandi:" +msgid "Really run this command?" +msgstr "Sicuro di eseguire questo comando?" + msgid "Delete Selected Recordings" msgstr "Elimina registrazioni selezionate" @@ -1298,6 +1208,105 @@ msgstr "Eliminare tutte le registrazioni selezionate?" msgid "No recordings available" msgstr "Nessuna registrazione disponibile" +msgid "Transponder:" +msgstr "Transponder:" + +msgid "CA-System:" +msgstr "Sistema CA:" + +msgid "New Timer" +msgstr "Nuovo timer" + +msgid "Edit timer status?" +msgstr "Modificare stato timer?" + +msgid "This timer is inactive!" +msgstr "Questo timer è inattivo!" + +msgid "This timer is impossible!" +msgstr "Questo timer è impossibile!" + +msgid "No more timers on other transponders possible!" +msgstr "Nessun altro timer è possibile sugli altri transponder!" + +msgid "Timer OK." +msgstr "Timer OK." + +msgid "Auto" +msgstr "Auto" + +msgid "activate" +msgstr "attiva" + +msgid "inactivate" +msgstr "disattiva" + +msgid "selected timers" +msgstr "timer selezionati" + +msgid "Delete Selected Timers" +msgstr "Elimina timer selezionati" + +msgid "No timers defined!" +msgstr "Nessun timer definito!" + +msgid "Create New Timer" +msgstr "Crea nuovo timer" + +msgid "Buffer:" +msgstr "Buffer:" + +msgid "Use VPS:" +msgstr "Utilizza VPS:" + +msgid "readonly" +msgstr "solo lettura" + +msgid "Timer has been set by AutoTimer pattern:" +msgstr "Timer impostato dal valore timer automatico:" + +msgid "TV" +msgstr "TV" + +msgid "Interval:" +msgstr "Intervallo:" + +msgid "sec." +msgstr "sec." + +msgid "G" +msgstr "C" + +msgid "Grab the picture!" +msgstr "Cattura immagine!" + +msgid "Size:" +msgstr "Dimensione:" + +msgid "Open in separate window" +msgstr "Apri in una nuova finestra" + +msgid "VDR Commands" +msgstr "Comandi VDR" + +msgid "Export channels as playlist:" +msgstr "Esporta i canali come lista esecuzione:" + +msgid "Number of lines to show:" +msgstr "Numero di righe da mostrare:" + +msgid "unlimited" +msgstr "illimitate" + +msgid "SVDRP commands:" +msgstr "Comandi SVDR:" + +msgid "Commands defined in commands.conf:" +msgstr "Comandi definiti in commands.conf:" + +msgid "Output" +msgstr "Risultato" + msgid "What's your VDR hostname (e.g video.intra.net)?" msgstr "Nome sistema di VDR (ad esempio video.intra.net)?" @@ -1430,11 +1439,11 @@ msgstr "Programmi" #, perl-format msgid "Can't write configuration file %s! Reason: %s" -msgstr "" +msgstr "Impossibile scrivere il file di configurazione %s! Motivo: %s" #, perl-format msgid "Configuration file %s not writeable! Configuration won't be saved!" -msgstr "" +msgstr "File di configurazione %s non modificabile! La configurazione non sarà salvata!" msgid "Timers" msgstr "Timer" @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: VDRAdmin-AM-3.6.3\n" "Report-Msgid-Bugs-To: Andreas Mair <andreas@vdr-developer.org>\n" -"POT-Creation-Date: 2008-12-18 08:25+0100\n" +"POT-Creation-Date: 2009-12-30 13:26+0100\n" "PO-Revision-Date: 2008-12-01 19:49+0100\n" "Last-Translator: Roel Koelewijn <roel.koelewijn@gmail.com>\n" "Language-Team: Nederlands <nl@li.org>\n" @@ -22,177 +22,108 @@ msgstr "" msgid "ISO-8859-1" msgstr "ISO-8859-1" -msgid "What's On Now?" -msgstr "Wat is er nu op?" - -msgid "Channel group:" -msgstr "Kanaal groep:" - -msgid "What's on:" -msgstr "Wat is er op:" - -msgid "at" -msgstr "om" - -msgid "o'clock" -msgstr "Uur" - -msgid "More Information" -msgstr "Meer informatie" - -msgid "Channels" -msgstr "Kanalen" - -msgid "Stream" -msgstr "Stream" - -msgid "TV select" -msgstr "Selecteer programma" - -msgid "Search for other show times" -msgstr "Zoek naar andere programma tijden" - -msgid "No Information" -msgstr "Geen informatie" - -msgid "Edit" -msgstr "Bewerken" - -msgid "Record" -msgstr "Opnemen" - -msgid "No EPG information available" -msgstr "Geen informatie EPG informatie beschikbaar" - -msgid "Edit EPG" -msgstr "Bewerk EPG" - -msgid "Help" -msgstr "Help" - -msgid "Channel" -msgstr "Kanaal" - -msgid "Time" -msgstr "Tijd" +msgid "About" +msgstr "Over" -msgid "Title" -msgstr "Titel" +msgid "License" +msgstr "Licentie" -msgid "Subtitle" -msgstr "Ondertitel" +msgid "Authors" +msgstr "Auteurs" -msgid "Description" -msgstr "Omschrijving" +msgid "Current author (VDRAdmin-AM branch):" +msgstr "Huidige auteur (VDRAdmin-AM branch):" -msgid "VPS" -msgstr "VPS" +msgid "Original author (VDRAdmin):" +msgstr "Originele auteur van (VDRAdmin):" -msgid "Video tracks" -msgstr "Video sporen:" +msgid "Translation Team" +msgstr "Vertalers team" -msgid "Audio tracks" -msgstr "Audio sporen" +msgid "English:" +msgstr "Engels:" -msgid "Save" -msgstr "Opslaan" +msgid "German:" +msgstr "Duits:" -msgid "Cancel" -msgstr "Annuleren" +msgid "French:" +msgstr "Frans:" -msgid "Edit Timer" -msgstr "Timer bewerken" +msgid "At the moment unmaintained, former translations by:" +msgstr "Op dit moment niet onderhouden, eerdere vertalingen door:" -msgid "<p>Here you can edit a timer's settings.</p>" -msgstr "<p>Hier kunt u de timer instellingen bewerken.</p>" +msgid "Spanish:" +msgstr "Spaans:" -msgid "Timer Active:" -msgstr "Actieve timers:" +msgid "Finnish:" +msgstr "Fins:" -msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." -msgstr "Activeer of deactiveer deze timer. Gedeactiveerde timers worden wel bewaard in de timer lijst zodat deze wel weer geactiveerd kunnen worden, maar ondertussen nemen ze niets op." +msgid "Dutch:" +msgstr "Nederlands:" -msgid "AutoTimer Checking:" -msgstr "Auto timer controle" +msgid "Russian:" +msgstr "Russies" -msgid "Depending on how this timer has been programmed you have up to three possible settings:" -msgstr "Afhankelijk van hoe deze timer is geprogrammeerd heeft u tot en met drie mogelijkheden:" +msgid "Czech:" +msgstr "Tjechies:" -msgid "Transmission Identification" -msgstr "Verzend identificatie" +msgid "Italian:" +msgstr "Italiaans:" -msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." -msgstr "Gebruik deze timer door de EPG informatie in de gaten te houden. Let op! dit werkt alleen als de informatie een vaste en unieke waarde heeft. Deze optie is niet beschikbaar met timers geprogrammeerd in VDR." +msgid "Information" +msgstr "Informatie" -msgid "Monitor this timer using the start and stop time." -msgstr "Gebruik deze timer door gebruikt te maken van de start en stop tijd." +msgid "VDRAdmin-AM version:" +msgstr "VDRAdmin-AM versie:" -msgid "off" -msgstr "Uit " +msgid "VDR version:" +msgstr "VDR versie:" -msgid "Do not monitor this timer." -msgstr "Houd deze timer niet in de gaten." +msgid "Supported features in VDR:" +msgstr "Ondersteunde elementen in VDR" -msgid "Channel:" -msgstr "Kanaal" +msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgstr "Autotimer(Vanaf versie 3.5 is de autotimer vervallen en<br> word nu gebruik gemaakt van de plugin \"EPG zoeken\" <a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgid "The channel to record." -msgstr "Het op te nemen kanaal." +msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgstr "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgid "Day Of Recording:" -msgstr "Dag van opname" +msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgstr "Hernoem opnames (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." -msgstr "De dag dat de timer aktief word. U kunt de dag op twee manieren invoeren. <ul><li>Met twee cijfers (DD). Deze zal gebruik maken van de huidige maand en jaar .</li><li>ISO norm (YYYY-MM-DD). Programmeer de timer zo ver in de toekomst als u wilt. </li></ul>In het geval u een herhalende timer wilt programmeren kunt u gebruik maken van de zeven aanvink vakjes onder het tekstveld. Vink het vakje aan voor iedere dag dat u de timer aktief wilt hebben." +msgid "Getting Help and Reporting Bugs" +msgstr "Voor het verkrijgen van hulp en melden van bugs" -msgid "Start Time:" -msgstr "Start tijd:" +msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." +msgstr "Als u hulp nodig heeft probeer dan eerst de online hulp, u zult enige pagina's vinden. U kunt dit bezoeken door op <img src=\"bilder/help.png\" alt=\"\" /> te klikken." -msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Dit is de tijd dat de timer moet beginnen met opnemen. Het eerste veld is voor \"uur\", de tweede voor de \"minuten\"." +msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" +msgstr "Als dit niet de informatie verschaft die u zoekt dan kunt u het proberen op <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> als u de Duitse taal verstaat. Gebruik graag de bekendmakingen draad indien mogelijk, zoek naar:" -msgid "End Time:" -msgstr "Eind tijd" +msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." +msgstr "Als u denkt een bug gevonden te hebben controleer dan graag eerst of dit een nieuwe is en meld het in de <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking systeem</a>." -msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Dit is de tijd dat de timer moet stoppen met opnemen. Het eerste veld is voor \"uur\", de tweede voor de \"minuten\"." +msgid "AutoTimer" +msgstr "AutoTimer" msgid "Priority:" msgstr "Prioriteit:" -msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." -msgstr "Een getal in het bereik<strong>0...99</strong>, bepaald de <strong>prioriteit</strong>van deze timer en de opnames aangemaakt door deze timer <strong>0</strong> geeft de laagst mogelijke waarde aan, <strong>99</strong> de hoogste. De prioriteit wordt gebruikt als er twee of meer timers gelijktijdig starten, de timer met de hoogste prioriteit heeft voorrang en zal worden opgenomen<br /><br />Deze waarde wordt ook opgeslagen bij de opname en word later gebruikt om een opname te verwijderen om ruimte vrij te maken voor een nieuwe opname. Als de schijf vol raakt en een nieuwe opname heeft meer ruimte nodig dan zal een bestaande opname met de laagste prioriteit ( en die zijn gegarandeerde levensduur al voorbij is) zal worden verwijderd.<br /><br /> Als alle DVB kaarten bezet zijn met een timer dan zal de timer met de laagste prioriteit onderbroken worden om de opname met een hogere prioriteit op te gaan nemen." - msgid "Lifetime:" msgstr "Levensduur:" -msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." -msgstr "De <strong>gegarandeerde</strong> levensduur (in dagen) van een opname gecreëerd door deze timer <strong>0</strong> betekend dat deze opname automatisch verwijderd zal worden door een nieuwe timer met een hogere prioriteit.<strong>99</strong> betekend dat deze opname nooit automatisch verwijderd zal worden. Ieder nummer in het bereik van <strong>1...98</strong> betekend dat de opname niet automatisch verwijderd zal worden om plaats te maken voor een nieuwe opname, alleen als de levensduur van de opname voorbij is." - -msgid "Title of Recording:" -msgstr "Titel van opname:" - -msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." -msgstr "De <strong>bestandsnaam</strong> die de timer aan de opname zal geven. Als de naam sub mappen zal bevatten dan zullen deze gescheiden worden door '~'(aangezien het '/' karakter een leesteken kan zijn in een programma naam).<br /><br /> Als de speciale sleutelwoorden<strong>TITEL</strong> en <strong>AFLEVERING</strong> aanwezig zijn zullen deze vervangen worden door de titel en aflevering informatie uit de EPG informatie op het tijdstip van opname (als de gegevens beschikbaar zijn). Als deze informatie niet beschikbaar is dan zal <strong>TITEL</strong> vervangen worden door de naam van het kanaal en <strong>AFLEVERING</strong> zal leeg blijven." - -msgid "Summary:" -msgstr "Omschrijving:" - -msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." -msgstr "Aanvullende informatie die een beschrijving geeft van de opname gemaakt door deze timer. Als dit veld niet leeg is dan zal de inhoud geschreven worden naar <span class=\"ref_file\">summary.vdr</span> of <span class=\"ref_file\">info.vdr</span> bestand behorende bij deze opname." - -msgid "Go!" -msgstr "Ga!" - -msgid "AutoTimer" -msgstr "AutoTimer" - msgid "New AutoTimer" msgstr "Nieuwe AutoTimer" +msgid "Help" +msgstr "Help" + msgid "Active" msgstr "Aktief" +msgid "Channel" +msgstr "Kanaal" + msgid "Start" msgstr "Start" @@ -211,6 +142,9 @@ msgstr "Ja" msgid "No" msgstr "Nee" +msgid "Edit" +msgstr "Bewerken" + msgid "Delete timer?" msgstr "Timer verwijderen? " @@ -229,33 +163,6 @@ msgstr "Verwijder alle geselecteerde timers?" msgid "No AutoTimers defined!" msgstr "Geen Auto timers ingesteld!" -msgid "VDR Commands" -msgstr "VDR Commando's:" - -msgid "Export channels as playlist:" -msgstr "Exporteer de kanalen als afspeellijst" - -msgid "Number of lines to show:" -msgstr "Aantal te tonen regels:" - -msgid "unlimited" -msgstr "Onbeperkt" - -msgid "SVDRP commands:" -msgstr "SVDRP commando's:" - -msgid "Run" -msgstr "Uitvoeren" - -msgid "Really run this command?" -msgstr "Dit commando echt uitvoeren?" - -msgid "Commands defined in commands.conf:" -msgstr "Commando's gedefinieerd in commands.conf:" - -msgid "Output" -msgstr "Uitvoer" - msgid "Add New AutoTimer" msgstr "Nieuwe auto timer toevoegen " @@ -274,6 +181,15 @@ msgstr "Zoek patronen:" msgid "Search in:" msgstr "Zoeken in: " +msgid "Title" +msgstr "Titel" + +msgid "Subtitle" +msgstr "Ondertitel" + +msgid "Description" +msgstr "Omschrijving" + msgid "Search only on these days:" msgstr "Alleen zoeken op deze dagen:" @@ -298,12 +214,18 @@ msgstr "Zaterdag" msgid "Sunday" msgstr "Zondag" +msgid "Channel:" +msgstr "Kanaal" + msgid "all" msgstr "Alle" msgid "Starts After:" msgstr "Start na: " +msgid "o'clock" +msgstr "Uur" + msgid "Ends Before:" msgstr "Eindigd voor: " @@ -328,9 +250,15 @@ msgstr "Herinner geprogrammeerde timer:" msgid "Directory:" msgstr "Map:" +msgid "Save" +msgstr "Opslaan" + msgid "Test" msgstr "Test" +msgid "Cancel" +msgstr "Annuleren" + msgid "Broadcasted" msgstr "Uitgezonden" @@ -340,140 +268,254 @@ msgstr "Opgeslagen in" msgid "No matches found!" msgstr "Geen overeenkomsten gevonden!" -msgid "About" -msgstr "Over" +msgid "Configuration" +msgstr "Configuratie" -msgid "License" -msgstr "Licentie" +msgid "General Settings" +msgstr "Algemene instellingen" -msgid "Authors" -msgstr "Auteurs" +msgid "Template:" +msgstr "Sjabloon:" -msgid "Current author (VDRAdmin-AM branch):" -msgstr "Huidige auteur (VDRAdmin-AM branch):" +msgid "Skin:" +msgstr "Skin:" -msgid "Original author (VDRAdmin):" -msgstr "Originele auteur van (VDRAdmin):" +msgid "Login Page:" +msgstr "Inlog pagina:" -msgid "Translation Team" -msgstr "Vertalers team" +msgid "Number of channels to use:" +msgstr "Aantal te tonen kanalen:" -msgid "English:" -msgstr "Engels:" +msgid "Local net (no login required):" +msgstr "Lokaal netwerk (geen login benodigd):" -msgid "German:" -msgstr "Duits:" +msgid "Language:" +msgstr "Taal:" -msgid "French:" -msgstr "Frans:" +msgid "Save settings on exit:" +msgstr "Instellingen opslaan bij afsluiten:" -msgid "At the moment unmaintained, former translations by:" -msgstr "Op dit moment niet onderhouden, eerdere vertalingen door:" +msgid "VDR" +msgstr "VDR" -msgid "Spanish:" -msgstr "Spaans:" +msgid "Number of DVB cards:" +msgstr "Aantal DVB kaarten:" -msgid "Finnish:" -msgstr "Fins:" +msgid "Path to recordings:" +msgstr "Pad voor opnames:" -msgid "Dutch:" -msgstr "Nederlands:" +msgid "Path to configuration files:" +msgstr "Pad naar configuratie bestanden:" -msgid "Russian:" -msgstr "Russies" +msgid "Path to EPG images:" +msgstr "Pad naar EPG beelden:" -msgid "Czech:" -msgstr "Tjechies:" +msgid "Identification" +msgstr "Identificatie" -msgid "Italian:" -msgstr "Italiaans:" +msgid "Username:" +msgstr "Gebruikersnaam:" -msgid "Information" -msgstr "Informatie" +msgid "Password:" +msgstr "Wachtwoord:" -msgid "VDRAdmin-AM version:" -msgstr "VDRAdmin-AM versie:" +msgid "Guest Account:" +msgstr "Gast Account:" -msgid "VDR version:" -msgstr "VDR versie:" +msgid "Guest Username:" +msgstr "Gebruikersnaam gast:" -msgid "Supported features in VDR:" -msgstr "Ondersteunde elementen in VDR" +msgid "Guest Password:" +msgstr "Wachtwoord gast" -msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgstr "Autotimer(Vanaf versie 3.5 is de autotimer vervallen en<br> word nu gebruik gemaakt van de plugin \"EPG zoeken\" <a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgid "Timeline" +msgstr "Tijdlijn" -msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgstr "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgid "Hours:" +msgstr "Uur:" -msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgstr "Hernoem opnames (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgid "Times:" +msgstr "Tijden:" -msgid "Getting Help and Reporting Bugs" -msgstr "Voor het verkrijgen van hulp en melden van bugs" +msgid "Also used for other EPG views!" +msgstr "Word ook gebruikt voor andere EPG" -msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." -msgstr "Als u hulp nodig heeft probeer dan eerst de online hulp, u zult enige pagina's vinden. U kunt dit bezoeken door op <img src=\"bilder/help.png\" alt=\"\" /> te klikken." +msgid "Tooltips:" +msgstr "Handigheden:" -msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" -msgstr "Als dit niet de informatie verschaft die u zoekt dan kunt u het proberen op <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> als u de Duitse taal verstaat. Gebruik graag de bekendmakingen draad indien mogelijk, zoek naar:" +msgid "Active:" +msgstr "Aktief:" -msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." -msgstr "Als u denkt een bug gevonden te hebben controleer dan graag eerst of dit een nieuwe is en meld het in de <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking systeem</a>." +msgid "Send email after programming timer:" +msgstr "Stuur email na het programmeren van de timer:" -msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" -msgstr "<p>Hier kunt u de instellingen van de automatische timers (AutoTimer) bewerken.</p><p>De auto timer is een sleutel eigenschap van VDRAdmin-AM. Een auto timer bevat een of meer zoek termen en andere instellingen waarnaar regelmatig gezocht word in de Elektronische Programma Gids (EPG). Bij een overeenkomst word een timer toegevoegd. Dit is zeer gemakkelijk voor onregelmatig uitgezonden series of voor film die u niet wilt missen.</p> " +msgid "Send email as:" +msgstr "Stuur email als:" -msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." -msgstr "Activeer of deactiveer deze auto timer. Als ze zijn gedeactiveerd worden ze nog steeds bewaard in de auto timer lijst zodat ze weer opnieuw geactiveerd kunnen worden, maar ondertussen nemen ze niets op. Bovendien kunt u dit instellen op \"eenmalig\" zodat deze auto timer alleen de eerst volgende overeenkomstige programma zal opnemen." +msgid "Send email to:" +msgstr "Stuur email naar:" -msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Only broadcasts will match if they contain <strong>all</strong> items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as Blacklist-string) or only one episode (when using \"Enterprise~Azati Prime\" as Blacklist-string)." -msgstr "Het kiezen van de juiste zoekpatronen maakt het verschil tussen het opnemen van gewenste uitzendingen, uitzendingen met gelijksoortige namen of dat er niets opgenomen word <br />hoofd of kleine letters maken niet uit, \"X-Files\" of \"x-files\" leidt tot hetzelfde resultaat. U kunt meerdere zoekpatronen gebruiken door ze te scheiden door spaties. Alleen programma's die <strong>alle</strong> zoektermen bevatten zullen leiden tot een opname .<br />U kunt beter alleen cijfers en letters gebruiken voor de zoekpatronen omdat het bij de EPG vaak de leestekens ontbreken.<br /> Gevorderden kunnen ook standaard uitdrukkingen gebruiken, maar dan moet u de benodigde informatie halen van de VDRAdmin-AM broncode (ongedocumenteerd aspect).<br /><br /> U kunt bepaalde programma's uitsluiten zodat deze niet worden opgenomen ondanks dat deze overeenkomen met een auto timer. Hiervoor moet u <i>vdradmind.bl</i> bewerken en hier de titels in plaatsen, een gebeurtenis per regel. Dit bestand moet staan in de VDRAdmin-AM's configuratie map. Als de zoekterm word gevonden in de EPG <u>titel</u> of in <u>titel~subtitel</u>, dan zal dit programma niet worden opgenomen door de auto timer. Zodoende kunt u complete afleveringen uitsluiten (bijvoorbeeld \"Enterprise\" zwarte lijst zoekterm) of alleen een opname (door gebruikt te maken van \"Enterprise~Azati Prime\" als zwarte lijst zoekterm)." +msgid "Mail server:" +msgstr "Mail server:" -msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." -msgstr "Hier kunt u aangeven de EPG delen aangeven waar VDRAdmin-AM moet zoeken naar zoekpatronen." +msgid "SMTPAuth user:" +msgstr "SMTPAuth gebruiker:" -msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." -msgstr "Gebruik deze hokjes om het zoeken te beperken op bepaalde dagen." +msgid "SMTPAuth password:" +msgstr "SMTPAuth Wachtwoord:" -msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." -msgstr "Het kanaal waar naar gezocht moet worden voor overeenkomstige programma's of \"alle\" om te zoeken in alle bekende of gewenste kanalen. U kunt de gewenste kanalen voor de auto timer aangeven in \"Configuratie\"." +msgid "Track schedule changes by:" +msgstr "" -msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Een programma moet starten na de hier ingegeven tijd om in aanmerking te komen voor opname. Het eerste veld is voor \"Uur\", de tweede voor \"minuut\"." +msgid "Broadcast time" +msgstr "" -msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Een programma moet stoppen na de hier ingegeven tijd om in aanmerking te komen voor opname. Het eerste veld is voor \"Uur\", de tweede voor \"minuut\"." +msgid "Event id" +msgstr "" -msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." -msgstr "Stel deze optie in op \"ja\" als alle timers die ingesteld zijn met deze autotimer individuele start/stop marges moeten hebben en vul de waarden in in de twee volgende vakken." +msgid "Timer" +msgstr "Timer" -msgid "The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG." -msgstr "Het aantal minuten dat VDRAdmin-AM in mindering brengt van de uitzend start tijd die gevonden is in de EPG." +msgid "Tooltips in timeline:" +msgstr "Handigheden in de tijdlijn:" -msgid "The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG." -msgstr "Het aantal minuten dat VDRAdmin-AM in toevoegd aan de stop tijd die gevonden is in de EPG." +msgid "Tooltips in list:" +msgstr "Handigheden in lijst:" -msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." -msgstr "Vink dit vakje aan als u VDRAdmin-AM de titel wilt laten toevoegen die gevonden is in de EPG informatie aan de opname's bestandsnaam." +msgid "Streaming" +msgstr "Streaming" -msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." -msgstr "Als u dit activeerd dan zal VDRAdmin-AM de timers volgen die ze al automatisch heeft geprogrammeerd. Dit handig als u timers wilt activeren of verwijderen die automatisch zijn geprogrammeerd in de timer lijst." +msgid "Live Streaming:" +msgstr "Live Streaming:" -msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." -msgstr "De map waar deze auto timer zijn opnames in zal plaatsen. Als de naam submappen bevat dan zullen deze aangeven moeten worden door een '~' aangezien het '/' karakter een deel kan uitmaken van een programma naam. .<br />VDRAdmin-AM zal de overeenkomstige programma naam en titel gebruiken (als de \"aflevering\" aanvinkvak is gemarkeerd) naar de hier aangegeven map.<br /><br /> U kunt ook de volgende sleutelwoorden gebruiken die worden vervangen voor de uiteindelijke bestandsnaam door waarden opgegeven door bijvoorbeeld <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Titel% - zal de naam worden van de gebeurtenis .</li><li>%Subtitel% zal de subtitel worden van de gebeurtenis .</li><li>%Datum% - zal de datum worden van de opname .</li><li>%Categorie% zal de categorie worden van de gebeurtenis (speelfilm, serie,...) .</li><li>%Genre% - zal het genre worden van de gebeurtenis (Drama/Krimi/..).</li><li>%Jaar% - zal het jaar worden van de productie .</li> <li>%Origineletitel% zal de originele titel worden van de gebeurtenis </li><li>%FSK% - zal de FSK worden van de gebeurtenis .</li><li>%Aflevering% - zal de afleverings titel worden van de gebeurtenis .</li><li>%Waardering% - zal de waardering worden van de gebeurtenis van de EPG informatie .</li></ul><h4>Let op:</h4>Als u bovenstaande sleutelwoorden gebruikt dan is het uw eigen verantwoording om een <strong>volledige bestandsnaam</strong> te geven aan de opnames! VDRAdmin-AM zal niets toevoegen aan de resulterende reeks." +msgid "HTTP Port of Streamdev (also possible 3000/ts):" +msgstr "HTTP Poort van Streamdev (ook mogelijk 3000/ts):" -msgid "Timer" -msgstr "Timer" +msgid "Recordings Streaming:" +msgstr "Streaming opnames:" -msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" -msgstr "<p>Hier vind u een lijst van timer die bekend zijn bij VDR.</p><p> Boven in zult u een lijst vinden die de timers van een dag grafisch weergeven. Dit voorziet in een snel overzicht van wat er gaande is op een bepaalde dag en helpt in het vinden van overlappende timers. Door de muis cursor boven iedere timerbox te plaatsen zal er een tooltip weergegeven worden die de timers titel, prioriteit, levensduur en lengte van opname zal tonen</p><p>Onder de lijst kunt u de timer lijst vinden die u enige informatie toont van de timers. U kunt lijst opsomming veranderen door op het kopje van de kolom te klikken.</p><p>Voor iedere timer heeft u de volgende opties: <dl><dt>De activiteit instellen</dt><dd>door te klikken op \"Ja\", \"Nee\", \"VPS\" of \"Auto\" in de \"Aktief\" kolom.</dd><dt>Om snel de prioriteit en levensduur te tonen</dt><dd> Door de muis cursor over de timers titel te bewegen</dd><dt>kunt u de EPG informatie tonen .</dt><dd>Timers die zijn ingesteld op <span class=\"ref_label\">AutoTimer Controle</span> tot \"Transmissie Identificatie\" zal de overeenkomstige EPG informatie tonen als u klikt op de timer titel.</dd><dt>Bewerken van een timer</dt><dd>U kunt een timer bewerken door te klikken op<img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Verwijder de timer</dt><dd> Om een timer te verwijderen klik op <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Iedere timers activiteit wordt getoond door verschillend gekleurde vakjes (in de overzichtslijst) of beelden (in de lijst overzicht):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK en zal worden opgenomen.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timers die elkaar overlappen. dit is geen probleem zolang er voldoende DVB kaarten aanwezig zijn om gelijktijdig te kunne opnemen.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> De timer overlapt en zal hoogstwaarschijnlijk <strong>niet</strong> worden opgenomen.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is niet aktief.</p><p>Naast deze functies kunt u een nieuwe timer toevoegen door op boven in<input type=\"submit\" class=\"submit\" value=\"New Timer\"/> te klikken en u kunt een aantal timers verwijderen door eenmaal op het selectie vakje in de laatste kolom te klikken en dan op <input type=\"submit\" class=\"submit\" value=\"Verwijder geselecteerde timers\"/>.</p> te klikken." +msgid "Path to VDR Recordings on your workstation:" +msgstr "Pad naar VDR opnames op uw werkstation:" -msgid "Playing Today" -msgstr "Programma vandaag " +msgid "MIME type for live streaming:" +msgstr "Mime type voor live streaming:" -msgid "starting at" -msgstr "start om" +msgid "Suffix for live streaming:" +msgstr "Extensie voor Live Streaming:" + +msgid "MIME type for recordings streaming:" +msgstr "MIME type voor opgenomen Streaming:" + +msgid "Suffix for recordings streaming:" +msgstr "Extensie voor opgenomen Streaming:" + +msgid "Bandwidth of Streams:" +msgstr "Bandbreedte van streams:" + +msgid "External Search" +msgstr "Extern zoeken" + +msgid "URL:" +msgstr "URL:" + +msgid "Title:" +msgstr "Titel:" + +msgid "User-defined search:" +msgstr "Gebruikers definieert zoeken" + +msgid "Expert" +msgstr "Expert" + +msgid "Update EPG data in background:" +msgstr "Bijwerken van EPG gegevens in de achtergrond:" + +msgid "Update EPG every:" +msgstr "Werk EPG bij iedere:" + +msgid "Channel Selections" +msgstr "Kanaal selecties" + +msgid "Show channels without EPG information:" +msgstr "Toon kanalen zonder EPG informatie:" + +msgid "In \"AutoTimer\"?" +msgstr "In \"AutoTimer\"?" + +msgid "Apply" +msgstr "Toepassen" + +msgid "EPG Search Blacklists" +msgstr "EPG zoeken zwarte lijsten" + +msgid "New Blacklist" +msgstr "Nieuwe zwarte lijst" + +msgid "Search pattern" +msgstr "Zoek patroon" + +msgid "From" +msgstr "van" + +msgid "To" +msgstr "Naar" + +msgid "Delete blacklist?" +msgstr "Verwijder zwarte lijst?" + +msgid "Delete Selected Blacklists" +msgstr "Verwijder geselecteerde zwarte lijst" + +msgid "Delete all selected blacklists?" +msgstr "Verwijder alle geselecteerde zwarte lijsten?" + +msgid "EPG search" +msgstr "Auto timer" + +msgid "EPG Search" +msgstr "Auto timer" + +msgid "Use template" +msgstr "Gebruik sjabloon" + +msgid "New Search" +msgstr "Nieuwe zoekopdracht" + +msgid "Edit Template" +msgstr "Sjabloon bewerken" + +msgid "Settings" +msgstr "Instellingen" + +msgid "Action" +msgstr "Aktie" + +msgid "Find" +msgstr "Vinden" + +msgid "Show Favorites" +msgstr "Toon favorieten" + +msgid "Delete Selected Searches" +msgstr "Verwijder geselecteerde zoek opdrachten" + +msgid "Delete all selected searches?" +msgstr "Verwijder alle geselecteerde zoek opdrachten?" + +msgid "Execute Selected Searches" +msgstr "Uitvoeren geselecteerde zoek opdrachten" + +msgid "Duration" +msgstr "Duur" + +msgid "More Information" +msgstr "Meer informatie" + +msgid "Channels" +msgstr "Kanalen" + +msgid "Record" +msgstr "Opnemen" msgid "Add New Blacklist" msgstr "Zwarte lijsten toevoegen" @@ -484,9 +526,6 @@ msgstr "Bewerk zwarte lijst" msgid "Add New Template" msgstr "Nieuw sjabloon toevoegen " -msgid "Edit Template" -msgstr "Sjabloon bewerken" - msgid "Add New Search" msgstr "Voeg nieuw zoekpatroon toe" @@ -502,9 +541,6 @@ msgstr "U moet tenminste één \\ntitel, ondertitel of omschrijving selecteren. msgid "Hide results" msgstr "Verberg resultaten" -msgid "Settings" -msgstr "Instellingen" - msgid "Name:" msgstr "Naam:" @@ -682,264 +718,147 @@ msgstr "Dit sjabloon verwijderen? " msgid "Save as template" msgstr "Opslaan als sjabloon" -msgid "Create New Timer" -msgstr "Nieuwe timer instellen" - -msgid "Buffer:" -msgstr "Buffer:" - -msgid "Use VPS:" -msgstr "Gebruik VPS" - -msgid "readonly" -msgstr "Alleen lezen" - -msgid "Timer has been set by AutoTimer pattern:" -msgstr "De timer is ingesteld door de auto timer zoek opdracht:" - -msgid "No Help Available" -msgstr "Geen help beschikbaar" - -msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgstr "<p>Nog geen hulp beschikbaar: Voor toevoegen of veranderen van tekst graag contact opnemen met<a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgid "Run" +msgstr "Uitvoeren" msgid "Error!" msgstr "Fout!" -msgid "TV" -msgstr "TV" +msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" +msgstr "<p>Hier vind u de lijst van automatische timers (AutoTimer) die bekend zijn bij VDRAdmin-AM.</p><p>De lijst toont enige informatie over auto timers. U kunt de lijst's sortering veranderen door op de kolom hoofden te klikken.</p><p> Voor iedere autotimer heeft u de volgende mogelijkheden:<dl><dt>De status instellen </dt><dd>door te klikken op \"Ja\" of \"Nee\" in de \"Actief\"kolom om de activiteit te wisselen.</dd><dt>Het snel bekijken van de prioriteit en levensduur </dt><dd> door de muiscursor over de auto timers titel te bewegen.</dd><dt>Bewerk de autotimer </dt><dd>U kunt een auto timer bewerken door te klikken op<img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Verwijder de auto timer</dt><dd>Om een auto timer te verwijderen klik op <img src=\"bilder/delete.png\" alt=\"verwijderen\" />.</dd></dl></p><p>De status van iedere auto timer word aangeduid door verschillend gekleurde afbeeldingen<br /><img src=\"bilder/poempl_gruen.png\" alt=\"aan\" align=\"middle\" /> auto timer is OK en zal overeenkomstige programma's opnemen<br /><img src=\"bilder/poempl_grau.png\" alt=\"uit\" align=\"middle\" /> auto timer is niet aktief.</p><p>Aanvullend bij deze functies kunt u een nieuwe auto timer toevoegen door te klikken op <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/>bovenin kunt u een aantal auto timers verwijderen door ze aan te vinken in de laatste kolom van deze timers en klik dan op <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Klik <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> om VDRAdmin-AM te dwingen om her te verbinden met VDR, de laatste EPG data op te halen en te controleren voor overeenkomstige timers.</p>" -msgid "Interval:" -msgstr "Interval:" +msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgstr "<p>Hier kunt u de instellingen van de automatische timers (AutoTimer) bewerken.</p><p>De auto timer is een sleutel eigenschap van VDRAdmin-AM. Een auto timer bevat een of meer zoek termen en andere instellingen waarnaar regelmatig gezocht word in de Elektronische Programma Gids (EPG). Bij een overeenkomst word een timer toegevoegd. Dit is zeer gemakkelijk voor onregelmatig uitgezonden series of voor film die u niet wilt missen.</p> " -msgid "sec." -msgstr "sec." +msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." +msgstr "Activeer of deactiveer deze auto timer. Als ze zijn gedeactiveerd worden ze nog steeds bewaard in de auto timer lijst zodat ze weer opnieuw geactiveerd kunnen worden, maar ondertussen nemen ze niets op. Bovendien kunt u dit instellen op \"eenmalig\" zodat deze auto timer alleen de eerst volgende overeenkomstige programma zal opnemen." -msgid "G" -msgstr "G" +msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Broadcasts will match only if they match <strong>all</strong> configured search items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as blacklist string) or only one episode (when using \"Enterprise~Azati Prime\" as blacklist string)." +msgstr "Het kiezen van de juiste zoekpatronen maakt het verschil tussen het opnemen van gewenste uitzendingen, uitzendingen met gelijksoortige namen of dat er niets opgenomen word <br />hoofd of kleine letters maken niet uit, \"X-Files\" of \"x-files\" leidt tot hetzelfde resultaat. U kunt meerdere zoekpatronen gebruiken door ze te scheiden door spaties. Alleen programma's die <strong>alle</strong> zoektermen bevatten zullen leiden tot een opname .<br />U kunt beter alleen cijfers en letters gebruiken voor de zoekpatronen omdat het bij de EPG vaak de leestekens ontbreken.<br /> Gevorderden kunnen ook standaard uitdrukkingen gebruiken, maar dan moet u de benodigde informatie halen van de VDRAdmin-AM broncode (ongedocumenteerd aspect).<br /><br /> U kunt bepaalde programma's uitsluiten zodat deze niet worden opgenomen ondanks dat deze overeenkomen met een auto timer. Hiervoor moet u <i>vdradmind.bl</i> bewerken en hier de titels in plaatsen, een gebeurtenis per regel. Dit bestand moet staan in de VDRAdmin-AM's configuratie map. Als de zoekterm word gevonden in de EPG <u>titel</u> of in <u>titel~subtitel</u>, dan zal dit programma niet worden opgenomen door de auto timer. Zodoende kunt u complete afleveringen uitsluiten (bijvoorbeeld \"Enterprise\" zwarte lijst zoekterm) of alleen een opname (door gebruikt te maken van \"Enterprise~Azati Prime\" als zwarte lijst zoekterm)." -msgid "Grab the picture!" -msgstr "Snapshot maken!" +msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." +msgstr "Hier kunt u aangeven de EPG delen aangeven waar VDRAdmin-AM moet zoeken naar zoekpatronen." -msgid "Size:" -msgstr "Grootte:" +msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." +msgstr "Gebruik deze hokjes om het zoeken te beperken op bepaalde dagen." -msgid "Open in separate window" -msgstr "In apart venster openen" +msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." +msgstr "Het kanaal waar naar gezocht moet worden voor overeenkomstige programma's of \"alle\" om te zoeken in alle bekende of gewenste kanalen. U kunt de gewenste kanalen voor de auto timer aangeven in \"Configuratie\"." -msgid "Playing Today?" -msgstr "Speelt vandaag?" +msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Een programma moet starten na de hier ingegeven tijd om in aanmerking te komen voor opname. Het eerste veld is voor \"Uur\", de tweede voor \"minuut\"." -msgid "Timeline" -msgstr "Tijdlijn" +msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Een programma moet stoppen na de hier ingegeven tijd om in aanmerking te komen voor opname. Het eerste veld is voor \"Uur\", de tweede voor \"minuut\"." -msgid "EPG Search" -msgstr "Auto timer" +msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." +msgstr "Stel deze optie in op \"ja\" als alle timers die ingesteld zijn met deze autotimer individuele start/stop marges moeten hebben en vul de waarden in in de twee volgende vakken." -msgid "Recordings" -msgstr "Opnames" +msgid "The number of minutes VDRAdmin-AM subtracts from the broadcast's start time found in the EPG." +msgstr "Het aantal minuten dat VDRAdmin-AM in mindering brengt van de uitzend start tijd die gevonden is in de EPG." -msgid "Remote Control" -msgstr "Afstands bediening " +msgid "The number of minutes VDRAdmin-AM adds to the broadcast's stop time found in the EPG." +msgstr "Het aantal minuten dat VDRAdmin-AM in toevoegd aan de stop tijd die gevonden is in de EPG." -msgid "Watch TV" -msgstr "TV bekijken" +msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." +msgstr "Een getal in het bereik<strong>0...99</strong>, bepaald de <strong>prioriteit</strong>van deze timer en de opnames aangemaakt door deze timer <strong>0</strong> geeft de laagst mogelijke waarde aan, <strong>99</strong> de hoogste. De prioriteit wordt gebruikt als er twee of meer timers gelijktijdig starten, de timer met de hoogste prioriteit heeft voorrang en zal worden opgenomen<br /><br />Deze waarde wordt ook opgeslagen bij de opname en word later gebruikt om een opname te verwijderen om ruimte vrij te maken voor een nieuwe opname. Als de schijf vol raakt en een nieuwe opname heeft meer ruimte nodig dan zal een bestaande opname met de laagste prioriteit ( en die zijn gegarandeerde levensduur al voorbij is) zal worden verwijderd.<br /><br /> Als alle DVB kaarten bezet zijn met een timer dan zal de timer met de laagste prioriteit onderbroken worden om de opname met een hogere prioriteit op te gaan nemen." -msgid "Commands" -msgstr "Commando's" +msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." +msgstr "De <strong>gegarandeerde</strong> levensduur (in dagen) van een opname gecreëerd door deze timer <strong>0</strong> betekend dat deze opname automatisch verwijderd zal worden door een nieuwe timer met een hogere prioriteit.<strong>99</strong> betekend dat deze opname nooit automatisch verwijderd zal worden. Ieder nummer in het bereik van <strong>1...98</strong> betekend dat de opname niet automatisch verwijderd zal worden om plaats te maken voor een nieuwe opname, alleen als de levensduur van de opname voorbij is." -msgid "Configuration" -msgstr "Configuratie" +msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." +msgstr "Vink dit vakje aan als u VDRAdmin-AM de titel wilt laten toevoegen die gevonden is in de EPG informatie aan de opname's bestandsnaam." -msgid "Search" -msgstr "Zoeken" +msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." +msgstr "Als u dit activeerd dan zal VDRAdmin-AM de timers volgen die ze al automatisch heeft geprogrammeerd. Dit handig als u timers wilt activeren of verwijderen die automatisch zijn geprogrammeerd in de timer lijst." + +msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." +msgstr "De map waar deze auto timer zijn opnames in zal plaatsen. Als de naam submappen bevat dan zullen deze aangeven moeten worden door een '~' aangezien het '/' karakter een deel kan uitmaken van een programma naam. .<br />VDRAdmin-AM zal de overeenkomstige programma naam en titel gebruiken (als de \"aflevering\" aanvinkvak is gemarkeerd) naar de hier aangegeven map.<br /><br /> U kunt ook de volgende sleutelwoorden gebruiken die worden vervangen voor de uiteindelijke bestandsnaam door waarden opgegeven door bijvoorbeeld <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Titel% - zal de naam worden van de gebeurtenis .</li><li>%Subtitel% zal de subtitel worden van de gebeurtenis .</li><li>%Datum% - zal de datum worden van de opname .</li><li>%Categorie% zal de categorie worden van de gebeurtenis (speelfilm, serie,...) .</li><li>%Genre% - zal het genre worden van de gebeurtenis (Drama/Krimi/..).</li><li>%Jaar% - zal het jaar worden van de productie .</li> <li>%Origineletitel% zal de originele titel worden van de gebeurtenis </li><li>%FSK% - zal de FSK worden van de gebeurtenis .</li><li>%Aflevering% - zal de afleverings titel worden van de gebeurtenis .</li><li>%Waardering% - zal de waardering worden van de gebeurtenis van de EPG informatie .</li></ul><h4>Let op:</h4>Als u bovenstaande sleutelwoorden gebruikt dan is het uw eigen verantwoording om een <strong>volledige bestandsnaam</strong> te geven aan de opnames! VDRAdmin-AM zal niets toevoegen aan de resulterende reeks." msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" msgstr "<p>Hier kunt u de algemene en basis instellingen veranderen voor de timers, auto timer, kanaal selectie en streaming parameters.</p>" -msgid "General Settings" -msgstr "Algemene instellingen" - -msgid "VDR" -msgstr "VDR" - -msgid "Identification" -msgstr "Identificatie" - -msgid "Streaming" -msgstr "Streaming" - -msgid "Expert" -msgstr "Expert" - -msgid "External Search" -msgstr "Extern zoeken" - -msgid "Channel Selections" -msgstr "Kanaal selecties" - -msgid "Skin:" -msgstr "Skin:" - msgid "The skin you want to use." msgstr "De skin die u wilt gebruiken." -msgid "Login Page:" -msgstr "Inlog pagina:" - msgid "The page you want to see at first connect to VDRAdmin-AM." msgstr "De pagina die u als eerste wilt zien als VDRAdmin-AM start." -msgid "Number of channels to use:" -msgstr "Aantal te tonen kanalen:" - msgid "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." msgstr "VDRAdmin-AM zal de kanalen laden van de VDR en alleen aanwezig in deze ieder veld waar een kanaal kan worden geselecteerd. Dit beperkt ook de EPG informatie die VDRAdmin-AM zal lezen zodat het geheugen gebruikt van VDRAdmin-AM beperkt zal worden en de prestaties zal verbeteren. <strong>0</strong>als deze functie is uitgeschakeld dan zal VDRAdmin-AM alle beschikbare kanalen gebruiken." -msgid "Local net (no login required):" -msgstr "Lokaal netwerk (geen login benodigd):" - msgid "Here you can specify an IP address or range that can login without providing login information. For example: \"192.168.0.0/24\" will include any IP starting with \"192.168.0\", \"192.168.0.123/32\" will only match \"192.168.0.123\"." msgstr "Hier kunt u een IP adres opgeven of bereik die kan inloggen zonder login informatie. Bijvoorbeeld:\"192.168.0.0/24\" zal ieder IP adres toestaan dat begint met \"192.168.0\", \"192.168.0.123/32\" zal alleen \"192.168.0.123\" toestaan." -msgid "Language:" -msgstr "Taal:" - msgid "Here you can set the localization VDRAdmin-AM should use." msgstr "Hier kunt u de taal instellen die VDRAdmin-AM moet gebruiken." -msgid "Save settings on exit:" -msgstr "Instellingen opslaan bij afsluiten:" - msgid "With this option the settings will be saved if VDRAdmin-AM exits. This will also save settings not available on the \"Configuration\" menu like interval and size in TV, sorting in the lists and current view in \"What's on now\"." msgstr "Met deze optie worden de instellingen bewaard als VDRAdmin-AM afgesloten word. Dit bewaard ook de instellingen van het niet beschikbare op het \"Configuratie\" menu zoals interval en formaat in TV, het sorteren van de lijsten en huidig beeld in \"Wat is er nu op\"." msgid "Top" msgstr "Boven" -msgid "Number of DVB cards:" -msgstr "Aantal DVB kaarten:" - msgid "The number of DVB cards VDR can access. Depending on this value VDRAdmin-AM will calculate critical timers in the <span class=\"ref_menu\">Timer</span> menu." msgstr "Het aantal kaarten dat VDR kan benaderen. Afhankelijk van deze waarde zal VDRAdmin-AM de timers berekenen in het <span class=\"ref_menu\">Timer</span> menu." -msgid "Path to recordings:" -msgstr "Pad voor opnames:" - msgid "The path to VDR's recordings. It's used so that VDRAdmin-AM can locate the recordings when using <span class=\"ref_label\">Recordings Streaming</span> and <span class=\"ref_file\">reccmds.conf</span> in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Pad naar de VDR opnames. Deze word zo gebruikt dat VDRAdmin-AM de opnames kan lokaliseren wanneer <span class=\"ref_label\">Streaming opnames</span> gebruikt word en <span class=\"ref_file\">reccmds.conf</span> in de <span class=\"ref_menu\">opnames</span> menu." -msgid "Path to configuration files:" -msgstr "Pad naar configuratie bestanden:" - msgid "The path where VDR's configuration files are located. If this directory contains the file <span class=\"ref_file\">reccmds.conf</span> its content is shown in a selectbox in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Het pad waar de VDR's configuratie bestanden staan. Als deze map het bestand <span class=\"ref_file\">reccmds.conf</span> bevat dan zal de inhoud getoond worden in een selectie vak in de <span class=\"ref_menu\">opnames</span> menu." -msgid "Path to EPG images:" -msgstr "Pad naar EPG beelden:" - msgid "The path where the EPG images are stored." msgstr "Het pad waar de EPG beelden zijn opgeslagen." -msgid "Username:" -msgstr "Gebruikersnaam:" - msgid "The username for the main user, i.e. the user having the most privileges." msgstr "De gebruikersnaam voor de hoofdgebruiker, met andere woorden, de gebruiker met de meeste rechten." -msgid "Password:" -msgstr "Wachtwoord:" - msgid "The main user's password." msgstr "De hoofdgebruikers wachtwoord." -msgid "Guest Account:" -msgstr "Gast Account:" - msgid "If you want a user account having only limited privileges, this is for you. The guest user cannot modify anything, it's only allowed to view the EPG, timers, AutoTimers and recordings listings." msgstr "Als u een gebruikers account wilt hebben met alleen beperkte rechten, dat is dit iets voor u. De gast gebruiker kan niets veranderen, deze heeft alleen toestemming om de EPG timers, autotimer en opnames te bekijken. " -msgid "Guest Username:" -msgstr "Gebruikersnaam gast:" - msgid "The username for the guest user." msgstr "De gebruikersnaam van de gast gebruiker." -msgid "Guest Password:" -msgstr "Wachtwoord gast" - msgid "The guest user's password." msgstr "Het wachtwoord van de gast gebruiker." -msgid "Hours:" -msgstr "Uur:" - msgid "The number of hours to show in the timeline." msgstr "Het aantal uren die getoond worden in de tijdlijn. " -msgid "Times:" -msgstr "Tijden:" - msgid "A comma separated list of times in <strong>hh:mm</strong> format that appear in the selectbox placed at the top." msgstr "Een komma gescheiden lijst van tijden in <strong>uu:mm</strong> formaat die verschijnt in het selectie vak die zich boven bevind." -msgid "Tooltips:" -msgstr "Handigheden:" - msgid "Here you can (de-)activate the tooltips." msgstr "Hier kunt u de handigheden (de)activeren." -msgid "Active:" -msgstr "Aktief:" - msgid "Activate or deactivate the AutoTimer function." msgstr "Activeer of deactiveer de autotimer functie." -msgid "Send email after programming timer:" -msgstr "Stuur email na het programmeren van de timer:" - msgid "VDRAdmin-AM will send an email whenever an event matches an AutoTimer and a timer has been programmed if you enable this feature." msgstr "VDRAdmin-AM zal een email sturen als een gebeurtenis overeenkomt met een autotimer en een timer is geprogrammeerd als u dit activeerd in de toekomst." -msgid "Send email as:" -msgstr "Stuur email als:" - msgid "Here you set the sending email address of the generated email." msgstr "Hier kunt u de afzender instellen van de aangemaakte email." -msgid "Send email to:" -msgstr "Stuur email naar:" - msgid "The email address the email is sent to." msgstr "Het email adres, de email is gestuurd naar:" -msgid "Mail server:" -msgstr "Mail server:" - msgid "The outgoing mail server." msgstr "De uitgaande mail server." -msgid "SMTPAuth user:" -msgstr "SMTPAuth gebruiker:" - msgid "If you need to authenticate yourself at the outgoing mail server, you have to supply the username and the password below. Leaving this field empty will disable SMTPAuth." msgstr "Als u zich moet identificeren voor SMTPAuth de uitgaande mail server dan moet u uw gebruikersnaam en wachtwoord hieronder invoeren. Als dit veld leeg is dan zal SMTPAuth niet aktief zijn." -msgid "SMTPAuth password:" -msgstr "SMTPAuth Wachtwoord:" - msgid "The password for the SMTPAuth user." msgstr "Het wachtwoord voor de SMTPAuth gebruiker." -msgid "Tooltips in timeline:" -msgstr "Handigheden in de tijdlijn:" - msgid "Here you can (de-)activate the tooltips in the timeline." msgstr "Hier kunt u de handigheen (de)activeren in de tijdlijn." -msgid "Tooltips in list:" -msgstr "Handigheden in lijst:" - msgid "Here you can (de-)activate the tooltips in the list." msgstr "Hier kunt u de handigheen (de)activeren in de lijst." @@ -949,51 +868,27 @@ msgstr "Voeg beschrijving toe aan nieuwe timers:" msgid "If you don't want VDRAdmin-AM to add the summary taken from EPG to new timers you can switch it off here." msgstr "Als u niet wilt dat VDRAdmin-AM de programma informatie uit de EPG overneemt aan nieuwe timer dan kunt u dat hier uitzetten." -msgid "Live Streaming:" -msgstr "Live Streaming:" - msgid "Enable or disable live streaming using the <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. You also have to set the correct <span class=\"ref_label\">HTTP Port for Streamdev</span> below." msgstr "Activeer of deactiveer live streaming door gebruik te maken van de <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. U moet ook de juiste <span class=\"ref_label\">HTTP Poort voor Streamdev</span>instellen hieronder." -msgid "HTTP Port of Streamdev (also possible 3000/ts):" -msgstr "HTTP Poort van Streamdev (ook mogelijk 3000/ts):" - msgid "Here you have to set the port number your VDR's streamdev server listens for connections. Additionally you can also provide the stream type you like to use." msgstr "Hier moet u het poort nummer instellen waar uw VDR's streamdev server naar luistert voor verbindingen. Tevens is het mogelijk de stream type in te stellen die u wilt gebruiken." -msgid "Recordings Streaming:" -msgstr "Streaming opnames:" - msgid "Enable or disable streaming of recordings.<br />Well actually this is no real \"streaming\", but you have to setup your workstation so that it can access VDR's recordings. You can use for example Samba or NFS for this. VDRAdmin-AM simply generates a playlist that contains all parts of the recording and sends this to your browser. If your browser and media player are configured correctly you will see the recording on your workstation's display." msgstr "Het aan of uitzetten van streaming van opnames<br />Het is eigenlijk wel geen echte \"streaming\", maar u moet u werkstation instellen zodat deze de VDR opnames kan benaderen. U kunt bijvoorbeeld Samba of NFS hiervoor gebruiken. VDRAdmin-AM maakt gewoon een afspeellijst aan die alle delen van de opname bevat en stuurt dit naar uw browser. Als uw browser en media speler juist zijn ingesteld dan kunt u de opname op uw werkstations beeldscherm bekijken." -msgid "Path to VDR Recordings on your workstation:" -msgstr "Pad naar VDR opnames op uw werkstation:" - msgid "This is the path where your workstation can access VDR's recordings. This depends on your VDR and workstation setup, for example \"\\\\vdr\\videos\" or \"V:\\\" (on Windows) or \"/mnt/videos\" (on Linux)." msgstr "Dit is het pad waar uw werkstation de VDR opnames kan benaderen. Dit hangt af de instellingen van de VDR en werkstation. bijvoorbeeld \"\\\\vdr\\videos\" of \"V:\\\" (op Windows) of \"/mnt/videos\" (op Linux)." -msgid "MIME type for live streaming:" -msgstr "Mime type voor live streaming:" - msgid "The MIME type to send when using live streaming. Defaults to \"video/x-mpegurl\"." msgstr "Het MIME type te gebruiken voor live streaming. standaard is \"video/x-mpegurl\"." -msgid "Suffix for live streaming:" -msgstr "Extensie voor Live Streaming:" - msgid "The suffix to use for live streaming. Defaults to \"m3u\"." msgstr "De extensie voor live streaming. Standaard is \"m3u\"." -msgid "MIME type for recordings streaming:" -msgstr "MIME type voor opgenomen Streaming:" - msgid "The MIME type to send when using recordings streaming. Defaults to \"video/x-mpegurl\"." msgstr "Het MIME type te gebruiken voor opgenomen streaming. standaard is \"video/x-mpegurl\"." -msgid "Suffix for recordings streaming:" -msgstr "Extensie voor opgenomen Streaming:" - msgid "The suffix to use for recordings streaming. Defaults to \"m3u\"." msgstr "De extensie voor opgenomen streaming. Standaard is \"m3u\"." @@ -1009,50 +904,23 @@ msgstr "Graag deze hostnaam naar uw lokale behoeften aanpassen!" msgid "<p>This section is for experts <strong>only</strong>, i.e. you know what you are doing!</p>" msgstr "<p>Deze afdeling is voor deskundigen<strong>alleen</strong>, met andere woorden, als goed weet waar u mee bezig bent!</p>" -msgid "Update EPG data in background:" -msgstr "Bijwerken van EPG gegevens in de achtergrond:" - msgid "If set to \"yes\" VDRAdmin-AM will periodically refresh its local EPG cache. Else the EPG will be refreshed if the user accesses any EPG view at the web interface and the timeout set at \"Update EPG every\" has been reached." msgstr "Als het ingesteld staat op \"ja\" dan zal VDRAdmin-AM met intervallen zijn lokale EPG cache verversen. Anders word de EPG pas ververst als de gebruiker met een EPG bezoek op de web interface benadert en de timeout instelling \"Ververs EPG iedere\" bereikt is" -msgid "Update EPG every:" -msgstr "Werk EPG bij iedere:" - msgid "The interval, the EPG data is refreshed from VDR and AutoTimer updates are performed (if AutoTimer feature is used)." msgstr "De interval dat EPG data wordt ververst van VDR en auto timer updates worden uitgevoerd. (Als de auto timer functie word gebruikt)." msgid "<p>If you want to limit the number of channels used in some parts of VDRAdmin-AM, this is for you!</p><p>Use the radio buttons to activate or deactivate the wanted channels in the named menu.</p><p>To add channels to the list of wanted channels you have to select them in the left side selectbox and click <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. If you want to remove channels from the list of wanted channels you have to select them in the right side selectbox and click <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" msgstr "<p>Als u het aantal kanalen wilt beperken die in sommige delen van VDRAdmin-AM gebruikt worden, dan is dit iets voor u!</p><p>Gebruik de selectie vakken om de gewenste kanalen de activeren of deactiveren in het genoemde menu.</p><p>Om kanalen toe te voegen in de lijst van gewenste kanalen dan moet u de gewenste kanalen selecteren in de linkerlijst van het selectie vak en klikken op <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. Als u kanalen van deze lijst wilt verwijderen selecteer dan uit deze lijst de te verwijderen kanalen en klik op<input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" -msgid "Show channels without EPG information:" -msgstr "Toon kanalen zonder EPG informatie:" - msgid "Usually channels that don't have EPG information are hidden in all EPG views. If you don't want them to be hidden you have to set this option to \"yes\"." msgstr "Normaal gesproken worden kanalen verborgen die geen EPG informatie hebben. Als u deze niet verborgen wilt hebben moet u deze optie op \"ja\" zetten." -msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" -msgstr "<p>Hier vind u de lijst van automatische timers (AutoTimer) die bekend zijn bij VDRAdmin-AM.</p><p>De lijst toont enige informatie over auto timers. U kunt de lijst's sortering veranderen door op de kolom hoofden te klikken.</p><p> Voor iedere autotimer heeft u de volgende mogelijkheden:<dl><dt>De status instellen </dt><dd>door te klikken op \"Ja\" of \"Nee\" in de \"Actief\"kolom om de activiteit te wisselen.</dd><dt>Het snel bekijken van de prioriteit en levensduur </dt><dd> door de muiscursor over de auto timers titel te bewegen.</dd><dt>Bewerk de autotimer </dt><dd>U kunt een auto timer bewerken door te klikken op<img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Verwijder de auto timer</dt><dd>Om een auto timer te verwijderen klik op <img src=\"bilder/delete.png\" alt=\"verwijderen\" />.</dd></dl></p><p>De status van iedere auto timer word aangeduid door verschillend gekleurde afbeeldingen<br /><img src=\"bilder/poempl_gruen.png\" alt=\"aan\" align=\"middle\" /> auto timer is OK en zal overeenkomstige programma's opnemen<br /><img src=\"bilder/poempl_grau.png\" alt=\"uit\" align=\"middle\" /> auto timer is niet aktief.</p><p>Aanvullend bij deze functies kunt u een nieuwe auto timer toevoegen door te klikken op <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/>bovenin kunt u een aantal auto timers verwijderen door ze aan te vinken in de laatste kolom van deze timers en klik dan op <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Klik <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> om VDRAdmin-AM te dwingen om her te verbinden met VDR, de laatste EPG data op te halen en te controleren voor overeenkomstige timers.</p>" - -msgid "Your Browser does not support frames!" -msgstr "UW browser ondersteund geen frames!" - -msgid "Rename Recording" -msgstr "Hernoemen opname" - -msgid "Original Name of Recording:" -msgstr "Originele naam van de opname: " - -msgid "New Name of Recording:" -msgstr "Nieuwe naam van de opname:" - -msgid "Subtitle:" -msgstr "Ondertitel:" - -msgid "Rename" -msgstr "Hernoemen" +msgid "Edit Timer" +msgstr "Timer bewerken" -msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" -msgstr "<p>Hier zult u een lijst vinden van opnames die bekend zijn bij VDR: De hoofdlijn zal ook de totale en vrije ruimte tonen die VDR beschikbaar heeft .</p><p>De lijst zal u enige informatie tonen over de opnames. U kunt de lijst sorteren door op de kolom hoofden te klikken. Boven de lijst zult u het navigatie pad aantreffen. Als u de inhoud van vorige mappen wil bekijken dan zult u op de naam moeten klikken in het pad.</p><p> Elke rij bevat de volgende informatie:<dl><dt>Datum</dt><dd> De datum van opname. In het geval van mappen worden het aantal opnames die in de map staan worden getoond.</dd><dt>Tijd</dt><dd> Het tijdstip van opname. Als het een map is dan zal het aantal <strong>nieuwe</strong>opnames getoond worden in de map.</dd><dt>Naam</dt><dd>De naam van opname of map naam. Klik erop om de beschrijving van de opname te tonen of de inhoud van de map te bekijken. </dd><dt>Hernoemen (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd> Hernoem een opname .<br /><h4>Let op:</h4>Dit werkt alleen als VDR de <u>RENR</u> SVDRPoort commando bevat wat geen kern mogelijkheid is van VDR maar beschikbaar is via een patch . <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> of <span class=\"ref_file\">enAIO-v2.2+</span> voorzien in dit commando.</dd><dt> Verwijder (<img src=\"bilder/delete.png\" alt=\"verwijder\" />)</dt><dd> Verwijder een opname </dd><dt>Stream (<img src=\"bilder/stream.jpg\" alt=\"stream\" />)</dt><dd> Deze kolom word alleen getoond als deze is geactiveerd en geconfigureerd <span class=\"ref_label\">Opnames Streaming</span></span> in de <span class=\"ref_menu\">Configuratie</span> menu. U kunt de opname bekijken op uw werkstation.</dd></dl></p><p> Aanvullend bij deze functies kunt u een aantal opnames verwijderen door te klikken in het aanvink vak van de opnames en te klikken op <input type=\"submit\" class=\"submit\" value=\"Verwijder geselecteerde opnames\"/>.</p><p>Als u het pad van de VDR configuratie bestanden heeft ingesteld en ingangen heeft staan in <span class=\"ref_file\">reccmds.conf</span> kunt u deze commando's uitvoeren voor de geselecteerde opnames door het gewenste commando aan te klikken in het aanvinkvak naast <span class=\"ref_label\">Commando's:</span> en te klikken op <input type=\"submit\" class=\"submit\" value=\"Run\"/> knop.</p>" +msgid "Edit EPG" +msgstr "Bewerk EPG" msgid "<p>Here you can edit the descriptive fields of an existing EPG entry.</p>" msgstr "<p>Hier kunt u de omschrijving van een bestaande EPG bewerken.</p>" @@ -1096,134 +964,116 @@ msgstr "Audio sporen (alleen lezen)" msgid "If available this field shows the audio track(s). It cannot be changed." msgstr "Indien beschikbaar toont dit veld de audio sporen. Dit kan niet veranderd worden." -msgid "Duration:" -msgstr "Duur:" - -msgid "min" -msgstr "min" - -msgid "Transponder:" -msgstr "Transponder:" - -msgid "CA-System:" -msgstr "CA-Systeem:" - -msgid "New Timer" -msgstr "Nieuwe timer" - -msgid "Date" -msgstr "Datum" - -msgid "Edit timer status?" -msgstr "Timer status bewerken?" +msgid "No Help Available" +msgstr "Geen help beschikbaar" -msgid "This timer is inactive!" -msgstr "Deze timer is niet aktief!" +msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgstr "<p>Nog geen hulp beschikbaar: Voor toevoegen of veranderen van tekst graag contact opnemen met<a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgid "This timer is impossible!" -msgstr "Deze timer is niet mogelijk!" +msgid "Recordings" +msgstr "Opnames" -msgid "No more timers on other transponders possible!" -msgstr "Geen andere timers op andere transponders mogelijk!" +msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" +msgstr "<p>Hier zult u een lijst vinden van opnames die bekend zijn bij VDR: De hoofdlijn zal ook de totale en vrije ruimte tonen die VDR beschikbaar heeft .</p><p>De lijst zal u enige informatie tonen over de opnames. U kunt de lijst sorteren door op de kolom hoofden te klikken. Boven de lijst zult u het navigatie pad aantreffen. Als u de inhoud van vorige mappen wil bekijken dan zult u op de naam moeten klikken in het pad.</p><p> Elke rij bevat de volgende informatie:<dl><dt>Datum</dt><dd> De datum van opname. In het geval van mappen worden het aantal opnames die in de map staan worden getoond.</dd><dt>Tijd</dt><dd> Het tijdstip van opname. Als het een map is dan zal het aantal <strong>nieuwe</strong>opnames getoond worden in de map.</dd><dt>Naam</dt><dd>De naam van opname of map naam. Klik erop om de beschrijving van de opname te tonen of de inhoud van de map te bekijken. </dd><dt>Hernoemen (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd> Hernoem een opname .<br /><h4>Let op:</h4>Dit werkt alleen als VDR de <u>RENR</u> SVDRPoort commando bevat wat geen kern mogelijkheid is van VDR maar beschikbaar is via een patch . <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> of <span class=\"ref_file\">enAIO-v2.2+</span> voorzien in dit commando.</dd><dt> Verwijder (<img src=\"bilder/delete.png\" alt=\"verwijder\" />)</dt><dd> Verwijder een opname </dd><dt>Stream (<img src=\"bilder/stream.jpg\" alt=\"stream\" />)</dt><dd> Deze kolom word alleen getoond als deze is geactiveerd en geconfigureerd <span class=\"ref_label\">Opnames Streaming</span></span> in de <span class=\"ref_menu\">Configuratie</span> menu. U kunt de opname bekijken op uw werkstation.</dd></dl></p><p> Aanvullend bij deze functies kunt u een aantal opnames verwijderen door te klikken in het aanvink vak van de opnames en te klikken op <input type=\"submit\" class=\"submit\" value=\"Verwijder geselecteerde opnames\"/>.</p><p>Als u het pad van de VDR configuratie bestanden heeft ingesteld en ingangen heeft staan in <span class=\"ref_file\">reccmds.conf</span> kunt u deze commando's uitvoeren voor de geselecteerde opnames door het gewenste commando aan te klikken in het aanvinkvak naast <span class=\"ref_label\">Commando's:</span> en te klikken op <input type=\"submit\" class=\"submit\" value=\"Run\"/> knop.</p>" -msgid "Timer OK." -msgstr "Timer OK." +msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" +msgstr "<p>Hier vind u een lijst van timer die bekend zijn bij VDR.</p><p> Boven in zult u een lijst vinden die de timers van een dag grafisch weergeven. Dit voorziet in een snel overzicht van wat er gaande is op een bepaalde dag en helpt in het vinden van overlappende timers. Door de muis cursor boven iedere timerbox te plaatsen zal er een tooltip weergegeven worden die de timers titel, prioriteit, levensduur en lengte van opname zal tonen</p><p>Onder de lijst kunt u de timer lijst vinden die u enige informatie toont van de timers. U kunt lijst opsomming veranderen door op het kopje van de kolom te klikken.</p><p>Voor iedere timer heeft u de volgende opties: <dl><dt>De activiteit instellen</dt><dd>door te klikken op \"Ja\", \"Nee\", \"VPS\" of \"Auto\" in de \"Aktief\" kolom.</dd><dt>Om snel de prioriteit en levensduur te tonen</dt><dd> Door de muis cursor over de timers titel te bewegen</dd><dt>kunt u de EPG informatie tonen .</dt><dd>Timers die zijn ingesteld op <span class=\"ref_label\">AutoTimer Controle</span> tot \"Transmissie Identificatie\" zal de overeenkomstige EPG informatie tonen als u klikt op de timer titel.</dd><dt>Bewerken van een timer</dt><dd>U kunt een timer bewerken door te klikken op<img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Verwijder de timer</dt><dd> Om een timer te verwijderen klik op <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Iedere timers activiteit wordt getoond door verschillend gekleurde vakjes (in de overzichtslijst) of beelden (in de lijst overzicht):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK en zal worden opgenomen.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timers die elkaar overlappen. dit is geen probleem zolang er voldoende DVB kaarten aanwezig zijn om gelijktijdig te kunne opnemen.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> De timer overlapt en zal hoogstwaarschijnlijk <strong>niet</strong> worden opgenomen.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is niet aktief.</p><p>Naast deze functies kunt u een nieuwe timer toevoegen door op boven in<input type=\"submit\" class=\"submit\" value=\"New Timer\"/> te klikken en u kunt een aantal timers verwijderen door eenmaal op het selectie vakje in de laatste kolom te klikken en dan op <input type=\"submit\" class=\"submit\" value=\"Verwijder geselecteerde timers\"/>.</p> te klikken." -msgid "Auto" -msgstr "Auto" +msgid "<p>Here you can edit a timer's settings.</p>" +msgstr "<p>Hier kunt u de timer instellingen bewerken.</p>" -msgid "activate" -msgstr "Activeren" +msgid "Timer Active:" +msgstr "Actieve timers:" -msgid "inactivate" -msgstr "niet aktief" +msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." +msgstr "Activeer of deactiveer deze timer. Gedeactiveerde timers worden wel bewaard in de timer lijst zodat deze wel weer geactiveerd kunnen worden, maar ondertussen nemen ze niets op." -msgid "selected timers" -msgstr "Geselecteerde timers" +msgid "AutoTimer Checking:" +msgstr "Auto timer controle" -msgid "Delete Selected Timers" -msgstr "Verwijder geselecteerde timers" +msgid "Depending on how this timer has been programmed you have up to three possible settings:" +msgstr "Afhankelijk van hoe deze timer is geprogrammeerd heeft u tot en met drie mogelijkheden:" -msgid "No timers defined!" -msgstr "Geen timers opgegeven!" +msgid "Transmission Identification" +msgstr "Verzend identificatie" -msgid "EPG Search Blacklists" -msgstr "EPG zoeken zwarte lijsten" +msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." +msgstr "Gebruik deze timer door de EPG informatie in de gaten te houden. Let op! dit werkt alleen als de informatie een vaste en unieke waarde heeft. Deze optie is niet beschikbaar met timers geprogrammeerd in VDR." -msgid "New Blacklist" -msgstr "Nieuwe zwarte lijst" +msgid "Time" +msgstr "Tijd" -msgid "Search pattern" -msgstr "Zoek patroon" +msgid "Monitor this timer using the start and stop time." +msgstr "Gebruik deze timer door gebruikt te maken van de start en stop tijd." -msgid "From" -msgstr "van" +msgid "off" +msgstr "Uit " -msgid "To" -msgstr "Naar" +msgid "Do not monitor this timer." +msgstr "Houd deze timer niet in de gaten." -msgid "Delete blacklist?" -msgstr "Verwijder zwarte lijst?" +msgid "The channel to record." +msgstr "Het op te nemen kanaal." -msgid "Delete Selected Blacklists" -msgstr "Verwijder geselecteerde zwarte lijst" +msgid "Day Of Recording:" +msgstr "Dag van opname" -msgid "Delete all selected blacklists?" -msgstr "Verwijder alle geselecteerde zwarte lijsten?" +msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." +msgstr "De dag dat de timer aktief word. U kunt de dag op twee manieren invoeren. <ul><li>Met twee cijfers (DD). Deze zal gebruik maken van de huidige maand en jaar .</li><li>ISO norm (YYYY-MM-DD). Programmeer de timer zo ver in de toekomst als u wilt. </li></ul>In het geval u een herhalende timer wilt programmeren kunt u gebruik maken van de zeven aanvink vakjes onder het tekstveld. Vink het vakje aan voor iedere dag dat u de timer aktief wilt hebben." -msgid "EPG search" -msgstr "Auto timer" +msgid "Start Time:" +msgstr "Start tijd:" -msgid "Use template" -msgstr "Gebruik sjabloon" +msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Dit is de tijd dat de timer moet beginnen met opnemen. Het eerste veld is voor \"uur\", de tweede voor de \"minuten\"." -msgid "New Search" -msgstr "Nieuwe zoekopdracht" +msgid "End Time:" +msgstr "Eind tijd" -msgid "Action" -msgstr "Aktie" +msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Dit is de tijd dat de timer moet stoppen met opnemen. Het eerste veld is voor \"uur\", de tweede voor de \"minuten\"." -msgid "Find" -msgstr "Vinden" +msgid "Title of Recording:" +msgstr "Titel van opname:" -msgid "Show Favorites" -msgstr "Toon favorieten" +msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." +msgstr "De <strong>bestandsnaam</strong> die de timer aan de opname zal geven. Als de naam sub mappen zal bevatten dan zullen deze gescheiden worden door '~'(aangezien het '/' karakter een leesteken kan zijn in een programma naam).<br /><br /> Als de speciale sleutelwoorden<strong>TITEL</strong> en <strong>AFLEVERING</strong> aanwezig zijn zullen deze vervangen worden door de titel en aflevering informatie uit de EPG informatie op het tijdstip van opname (als de gegevens beschikbaar zijn). Als deze informatie niet beschikbaar is dan zal <strong>TITEL</strong> vervangen worden door de naam van het kanaal en <strong>AFLEVERING</strong> zal leeg blijven." -msgid "Delete Selected Searches" -msgstr "Verwijder geselecteerde zoek opdrachten" +msgid "Summary:" +msgstr "Omschrijving:" -msgid "Delete all selected searches?" -msgstr "Verwijder alle geselecteerde zoek opdrachten?" +msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." +msgstr "Aanvullende informatie die een beschrijving geeft van de opname gemaakt door deze timer. Als dit veld niet leeg is dan zal de inhoud geschreven worden naar <span class=\"ref_file\">summary.vdr</span> of <span class=\"ref_file\">info.vdr</span> bestand behorende bij deze opname." -msgid "Execute Selected Searches" -msgstr "Uitvoeren geselecteerde zoek opdrachten" +msgid "Your Browser does not support frames!" +msgstr "UW browser ondersteund geen frames!" -msgid "Duration" -msgstr "Duur" +msgid "What's On Now?" +msgstr "Wat is er nu op?" -msgid "Template:" -msgstr "Sjabloon:" +msgid "Playing Today?" +msgstr "Speelt vandaag?" -msgid "Also used for other EPG views!" -msgstr "Word ook gebruikt voor andere EPG" +msgid "Remote Control" +msgstr "Afstands bediening " -msgid "Bandwidth of Streams:" -msgstr "Bandbreedte van streams:" +msgid "Watch TV" +msgstr "TV bekijken" -msgid "URL:" -msgstr "URL:" +msgid "Commands" +msgstr "Commando's" -msgid "Title:" -msgstr "Titel:" +msgid "Search" +msgstr "Zoeken" -msgid "User-defined search:" -msgstr "Gebruikers definieert zoeken" +msgid "Authorization Required" +msgstr "Toestemming benodigd" -msgid "In \"AutoTimer\"?" -msgstr "In \"AutoTimer\"?" +msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." +msgstr "De server kon niet controleren of u toestemming heeft om dit document te lezen. Waarschijnlijk heeft u een foutief wachtwoord gegeven of uw browser kan niet met wachtwoorden overweg." -msgid "Apply" -msgstr "Toepassen" +msgid "VPS" +msgstr "VPS" msgid "close" msgstr "sluiten" @@ -1243,23 +1093,77 @@ msgstr "Video tracks:" msgid "Audio tracks:" msgstr "Audio sporen:" +msgid "Video tracks" +msgstr "Video sporen:" + +msgid "Audio tracks" +msgstr "Audio sporen" + +msgid "TV select" +msgstr "Selecteer programma" + +msgid "Stream" +msgstr "Stream" + +msgid "Channel group:" +msgstr "Kanaal groep:" + +msgid "Go!" +msgstr "Ga!" + +msgid "Search for other show times" +msgstr "Zoek naar andere programma tijden" + +msgid "No Information" +msgstr "Geen informatie" + +msgid "No EPG information available" +msgstr "Geen informatie EPG informatie beschikbaar" + +msgid "Playing Today" +msgstr "Programma vandaag " + +msgid "starting at" +msgstr "start om" + +msgid "What's on:" +msgstr "Wat is er op:" + +msgid "at" +msgstr "om" + msgid "now" msgstr "nu" msgid "to" msgstr "naar " +msgid "Duration:" +msgstr "Duur:" + +msgid "min" +msgstr "min" + msgid "at:" msgstr "om:" msgid "You need JavaScript to use the timeline!" msgstr "U heeft Javascript nodig om de tijdlijn te gebruiken! " -msgid "Authorization Required" -msgstr "Toestemming benodigd" +msgid "Rename Recording" +msgstr "Hernoemen opname" -msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." -msgstr "De server kon niet controleren of u toestemming heeft om dit document te lezen. Waarschijnlijk heeft u een foutief wachtwoord gegeven of uw browser kan niet met wachtwoorden overweg." +msgid "Original Name of Recording:" +msgstr "Originele naam van de opname: " + +msgid "New Name of Recording:" +msgstr "Nieuwe naam van de opname:" + +msgid "Subtitle:" +msgstr "Ondertitel:" + +msgid "Rename" +msgstr "Hernoemen" msgid "Total:" msgstr "Totaal:" @@ -1270,6 +1174,9 @@ msgstr "u" msgid "Free:" msgstr "Vrij:" +msgid "Date" +msgstr "Datum" + msgid "Total" msgstr "Totaal" @@ -1291,6 +1198,9 @@ msgstr "Verversen" msgid "Commands:" msgstr "Commando's:" +msgid "Really run this command?" +msgstr "Dit commando echt uitvoeren?" + msgid "Delete Selected Recordings" msgstr "Geselecteerde opnames verwijderen" @@ -1300,6 +1210,105 @@ msgstr "Alle geselecteerde opnames verwijderen?" msgid "No recordings available" msgstr "Geen opnames beschikbaar" +msgid "Transponder:" +msgstr "Transponder:" + +msgid "CA-System:" +msgstr "CA-Systeem:" + +msgid "New Timer" +msgstr "Nieuwe timer" + +msgid "Edit timer status?" +msgstr "Timer status bewerken?" + +msgid "This timer is inactive!" +msgstr "Deze timer is niet aktief!" + +msgid "This timer is impossible!" +msgstr "Deze timer is niet mogelijk!" + +msgid "No more timers on other transponders possible!" +msgstr "Geen andere timers op andere transponders mogelijk!" + +msgid "Timer OK." +msgstr "Timer OK." + +msgid "Auto" +msgstr "Auto" + +msgid "activate" +msgstr "Activeren" + +msgid "inactivate" +msgstr "niet aktief" + +msgid "selected timers" +msgstr "Geselecteerde timers" + +msgid "Delete Selected Timers" +msgstr "Verwijder geselecteerde timers" + +msgid "No timers defined!" +msgstr "Geen timers opgegeven!" + +msgid "Create New Timer" +msgstr "Nieuwe timer instellen" + +msgid "Buffer:" +msgstr "Buffer:" + +msgid "Use VPS:" +msgstr "Gebruik VPS" + +msgid "readonly" +msgstr "Alleen lezen" + +msgid "Timer has been set by AutoTimer pattern:" +msgstr "De timer is ingesteld door de auto timer zoek opdracht:" + +msgid "TV" +msgstr "TV" + +msgid "Interval:" +msgstr "Interval:" + +msgid "sec." +msgstr "sec." + +msgid "G" +msgstr "G" + +msgid "Grab the picture!" +msgstr "Snapshot maken!" + +msgid "Size:" +msgstr "Grootte:" + +msgid "Open in separate window" +msgstr "In apart venster openen" + +msgid "VDR Commands" +msgstr "VDR Commando's:" + +msgid "Export channels as playlist:" +msgstr "Exporteer de kanalen als afspeellijst" + +msgid "Number of lines to show:" +msgstr "Aantal te tonen regels:" + +msgid "unlimited" +msgstr "Onbeperkt" + +msgid "SVDRP commands:" +msgstr "SVDRP commando's:" + +msgid "Commands defined in commands.conf:" +msgstr "Commando's gedefinieerd in commands.conf:" + +msgid "Output" +msgstr "Uitvoer" + msgid "What's your VDR hostname (e.g video.intra.net)?" msgstr "Wat de de hostnaam van de VDR (b.v. video.intra.net)?" diff --git a/po/nl_NL.utf8.po b/po/nl_NL.utf8.po index 3127616..2f83ac1 100644 --- a/po/nl_NL.utf8.po +++ b/po/nl_NL.utf8.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: VDRAdmin-AM-3.6.3\n" "Report-Msgid-Bugs-To: Andreas Mair <andreas@vdr-developer.org>\n" -"POT-Creation-Date: 2008-12-18 08:25+0100\n" +"POT-Creation-Date: 2009-12-30 13:26+0100\n" "PO-Revision-Date: 2008-12-01 19:49+0100\n" "Last-Translator: Roel Koelewijn <roel.koelewijn@gmail.com>\n" "Language-Team: Nederlands <nl@li.org>\n" @@ -22,177 +22,108 @@ msgstr "" msgid "ISO-8859-1" msgstr "UTF-8" -msgid "What's On Now?" -msgstr "Wat is er nu op?" - -msgid "Channel group:" -msgstr "Kanaal groep:" - -msgid "What's on:" -msgstr "Wat is er op:" - -msgid "at" -msgstr "om" - -msgid "o'clock" -msgstr "Uur" - -msgid "More Information" -msgstr "Meer informatie" - -msgid "Channels" -msgstr "Kanalen" - -msgid "Stream" -msgstr "Stream" - -msgid "TV select" -msgstr "Selecteer programma" - -msgid "Search for other show times" -msgstr "Zoek naar andere programma tijden" - -msgid "No Information" -msgstr "Geen informatie" - -msgid "Edit" -msgstr "Bewerken" - -msgid "Record" -msgstr "Opnemen" - -msgid "No EPG information available" -msgstr "Geen informatie EPG informatie beschikbaar" - -msgid "Edit EPG" -msgstr "Bewerk EPG" - -msgid "Help" -msgstr "Help" - -msgid "Channel" -msgstr "Kanaal" - -msgid "Time" -msgstr "Tijd" +msgid "About" +msgstr "Over" -msgid "Title" -msgstr "Titel" +msgid "License" +msgstr "Licentie" -msgid "Subtitle" -msgstr "Ondertitel" +msgid "Authors" +msgstr "Auteurs" -msgid "Description" -msgstr "Omschrijving" +msgid "Current author (VDRAdmin-AM branch):" +msgstr "Huidige auteur (VDRAdmin-AM branch):" -msgid "VPS" -msgstr "VPS" +msgid "Original author (VDRAdmin):" +msgstr "Originele auteur van (VDRAdmin):" -msgid "Video tracks" -msgstr "Video sporen:" +msgid "Translation Team" +msgstr "Vertalers team" -msgid "Audio tracks" -msgstr "Audio sporen" +msgid "English:" +msgstr "Engels:" -msgid "Save" -msgstr "Opslaan" +msgid "German:" +msgstr "Duits:" -msgid "Cancel" -msgstr "Annuleren" +msgid "French:" +msgstr "Frans:" -msgid "Edit Timer" -msgstr "Timer bewerken" +msgid "At the moment unmaintained, former translations by:" +msgstr "Op dit moment niet onderhouden, eerdere vertalingen door:" -msgid "<p>Here you can edit a timer's settings.</p>" -msgstr "<p>Hier kunt u de timer instellingen bewerken.</p>" +msgid "Spanish:" +msgstr "Spaans:" -msgid "Timer Active:" -msgstr "Actieve timers:" +msgid "Finnish:" +msgstr "Fins:" -msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." -msgstr "Activeer of deactiveer deze timer. Gedeactiveerde timers worden wel bewaard in de timer lijst zodat deze wel weer geactiveerd kunnen worden, maar ondertussen nemen ze niets op." +msgid "Dutch:" +msgstr "Nederlands:" -msgid "AutoTimer Checking:" -msgstr "Auto timer controle" +msgid "Russian:" +msgstr "Russies" -msgid "Depending on how this timer has been programmed you have up to three possible settings:" -msgstr "Afhankelijk van hoe deze timer is geprogrammeerd heeft u tot en met drie mogelijkheden:" +msgid "Czech:" +msgstr "Tjechies:" -msgid "Transmission Identification" -msgstr "Verzend identificatie" +msgid "Italian:" +msgstr "Italiaans:" -msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." -msgstr "Gebruik deze timer door de EPG informatie in de gaten te houden. Let op! dit werkt alleen als de informatie een vaste en unieke waarde heeft. Deze optie is niet beschikbaar met timers geprogrammeerd in VDR." +msgid "Information" +msgstr "Informatie" -msgid "Monitor this timer using the start and stop time." -msgstr "Gebruik deze timer door gebruikt te maken van de start en stop tijd." +msgid "VDRAdmin-AM version:" +msgstr "VDRAdmin-AM versie:" -msgid "off" -msgstr "Uit " +msgid "VDR version:" +msgstr "VDR versie:" -msgid "Do not monitor this timer." -msgstr "Houd deze timer niet in de gaten." +msgid "Supported features in VDR:" +msgstr "Ondersteunde elementen in VDR" -msgid "Channel:" -msgstr "Kanaal" +msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgstr "Autotimer(Vanaf versie 3.5 is de autotimer vervallen en<br> word nu gebruik gemaakt van de plugin \"EPG zoeken\" <a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgid "The channel to record." -msgstr "Het op te nemen kanaal." +msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgstr "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgid "Day Of Recording:" -msgstr "Dag van opname" +msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgstr "Hernoem opnames (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." -msgstr "De dag dat de timer aktief word. U kunt de dag op twee manieren invoeren. <ul><li>Met twee cijfers (DD). Deze zal gebruik maken van de huidige maand en jaar .</li><li>ISO norm (YYYY-MM-DD). Programmeer de timer zo ver in de toekomst als u wilt. </li></ul>In het geval u een herhalende timer wilt programmeren kunt u gebruik maken van de zeven aanvink vakjes onder het tekstveld. Vink het vakje aan voor iedere dag dat u de timer aktief wilt hebben." +msgid "Getting Help and Reporting Bugs" +msgstr "Voor het verkrijgen van hulp en melden van bugs" -msgid "Start Time:" -msgstr "Start tijd:" +msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." +msgstr "Als u hulp nodig heeft probeer dan eerst de online hulp, u zult enige pagina's vinden. U kunt dit bezoeken door op <img src=\"bilder/help.png\" alt=\"\" /> te klikken." -msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Dit is de tijd dat de timer moet beginnen met opnemen. Het eerste veld is voor \"uur\", de tweede voor de \"minuten\"." +msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" +msgstr "Als dit niet de informatie verschaft die u zoekt dan kunt u het proberen op <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> als u de Duitse taal verstaat. Gebruik graag de bekendmakingen draad indien mogelijk, zoek naar:" -msgid "End Time:" -msgstr "Eind tijd" +msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." +msgstr "Als u denkt een bug gevonden te hebben controleer dan graag eerst of dit een nieuwe is en meld het in de <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking systeem</a>." -msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Dit is de tijd dat de timer moet stoppen met opnemen. Het eerste veld is voor \"uur\", de tweede voor de \"minuten\"." +msgid "AutoTimer" +msgstr "AutoTimer" msgid "Priority:" msgstr "Prioriteit:" -msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." -msgstr "Een getal in het bereik<strong>0...99</strong>, bepaald de <strong>prioriteit</strong>van deze timer en de opnames aangemaakt door deze timer <strong>0</strong> geeft de laagst mogelijke waarde aan, <strong>99</strong> de hoogste. De prioriteit wordt gebruikt als er twee of meer timers gelijktijdig starten, de timer met de hoogste prioriteit heeft voorrang en zal worden opgenomen<br /><br />Deze waarde wordt ook opgeslagen bij de opname en word later gebruikt om een opname te verwijderen om ruimte vrij te maken voor een nieuwe opname. Als de schijf vol raakt en een nieuwe opname heeft meer ruimte nodig dan zal een bestaande opname met de laagste prioriteit ( en die zijn gegarandeerde levensduur al voorbij is) zal worden verwijderd.<br /><br /> Als alle DVB kaarten bezet zijn met een timer dan zal de timer met de laagste prioriteit onderbroken worden om de opname met een hogere prioriteit op te gaan nemen." - msgid "Lifetime:" msgstr "Levensduur:" -msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." -msgstr "De <strong>gegarandeerde</strong> levensduur (in dagen) van een opname gecreëerd door deze timer <strong>0</strong> betekend dat deze opname automatisch verwijderd zal worden door een nieuwe timer met een hogere prioriteit.<strong>99</strong> betekend dat deze opname nooit automatisch verwijderd zal worden. Ieder nummer in het bereik van <strong>1...98</strong> betekend dat de opname niet automatisch verwijderd zal worden om plaats te maken voor een nieuwe opname, alleen als de levensduur van de opname voorbij is." - -msgid "Title of Recording:" -msgstr "Titel van opname:" - -msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." -msgstr "De <strong>bestandsnaam</strong> die de timer aan de opname zal geven. Als de naam sub mappen zal bevatten dan zullen deze gescheiden worden door '~'(aangezien het '/' karakter een leesteken kan zijn in een programma naam).<br /><br /> Als de speciale sleutelwoorden<strong>TITEL</strong> en <strong>AFLEVERING</strong> aanwezig zijn zullen deze vervangen worden door de titel en aflevering informatie uit de EPG informatie op het tijdstip van opname (als de gegevens beschikbaar zijn). Als deze informatie niet beschikbaar is dan zal <strong>TITEL</strong> vervangen worden door de naam van het kanaal en <strong>AFLEVERING</strong> zal leeg blijven." - -msgid "Summary:" -msgstr "Omschrijving:" - -msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." -msgstr "Aanvullende informatie die een beschrijving geeft van de opname gemaakt door deze timer. Als dit veld niet leeg is dan zal de inhoud geschreven worden naar <span class=\"ref_file\">summary.vdr</span> of <span class=\"ref_file\">info.vdr</span> bestand behorende bij deze opname." - -msgid "Go!" -msgstr "Ga!" - -msgid "AutoTimer" -msgstr "AutoTimer" - msgid "New AutoTimer" msgstr "Nieuwe AutoTimer" +msgid "Help" +msgstr "Help" + msgid "Active" msgstr "Aktief" +msgid "Channel" +msgstr "Kanaal" + msgid "Start" msgstr "Start" @@ -211,6 +142,9 @@ msgstr "Ja" msgid "No" msgstr "Nee" +msgid "Edit" +msgstr "Bewerken" + msgid "Delete timer?" msgstr "Timer verwijderen? " @@ -229,33 +163,6 @@ msgstr "Verwijder alle geselecteerde timers?" msgid "No AutoTimers defined!" msgstr "Geen Auto timers ingesteld!" -msgid "VDR Commands" -msgstr "VDR Commando's:" - -msgid "Export channels as playlist:" -msgstr "Exporteer de kanalen als afspeellijst" - -msgid "Number of lines to show:" -msgstr "Aantal te tonen regels:" - -msgid "unlimited" -msgstr "Onbeperkt" - -msgid "SVDRP commands:" -msgstr "SVDRP commando's:" - -msgid "Run" -msgstr "Uitvoeren" - -msgid "Really run this command?" -msgstr "Dit commando echt uitvoeren?" - -msgid "Commands defined in commands.conf:" -msgstr "Commando's gedefinieerd in commands.conf:" - -msgid "Output" -msgstr "Uitvoer" - msgid "Add New AutoTimer" msgstr "Nieuwe auto timer toevoegen " @@ -274,6 +181,15 @@ msgstr "Zoek patronen:" msgid "Search in:" msgstr "Zoeken in: " +msgid "Title" +msgstr "Titel" + +msgid "Subtitle" +msgstr "Ondertitel" + +msgid "Description" +msgstr "Omschrijving" + msgid "Search only on these days:" msgstr "Alleen zoeken op deze dagen:" @@ -298,12 +214,18 @@ msgstr "Zaterdag" msgid "Sunday" msgstr "Zondag" +msgid "Channel:" +msgstr "Kanaal" + msgid "all" msgstr "Alle" msgid "Starts After:" msgstr "Start na: " +msgid "o'clock" +msgstr "Uur" + msgid "Ends Before:" msgstr "Eindigd voor: " @@ -328,9 +250,15 @@ msgstr "Herinner geprogrammeerde timer:" msgid "Directory:" msgstr "Map:" +msgid "Save" +msgstr "Opslaan" + msgid "Test" msgstr "Test" +msgid "Cancel" +msgstr "Annuleren" + msgid "Broadcasted" msgstr "Uitgezonden" @@ -340,140 +268,254 @@ msgstr "Opgeslagen in" msgid "No matches found!" msgstr "Geen overeenkomsten gevonden!" -msgid "About" -msgstr "Over" +msgid "Configuration" +msgstr "Configuratie" -msgid "License" -msgstr "Licentie" +msgid "General Settings" +msgstr "Algemene instellingen" -msgid "Authors" -msgstr "Auteurs" +msgid "Template:" +msgstr "Sjabloon:" -msgid "Current author (VDRAdmin-AM branch):" -msgstr "Huidige auteur (VDRAdmin-AM branch):" +msgid "Skin:" +msgstr "Skin:" -msgid "Original author (VDRAdmin):" -msgstr "Originele auteur van (VDRAdmin):" +msgid "Login Page:" +msgstr "Inlog pagina:" -msgid "Translation Team" -msgstr "Vertalers team" +msgid "Number of channels to use:" +msgstr "Aantal te tonen kanalen:" -msgid "English:" -msgstr "Engels:" +msgid "Local net (no login required):" +msgstr "Lokaal netwerk (geen login benodigd):" -msgid "German:" -msgstr "Duits:" +msgid "Language:" +msgstr "Taal:" -msgid "French:" -msgstr "Frans:" +msgid "Save settings on exit:" +msgstr "Instellingen opslaan bij afsluiten:" -msgid "At the moment unmaintained, former translations by:" -msgstr "Op dit moment niet onderhouden, eerdere vertalingen door:" +msgid "VDR" +msgstr "VDR" -msgid "Spanish:" -msgstr "Spaans:" +msgid "Number of DVB cards:" +msgstr "Aantal DVB kaarten:" -msgid "Finnish:" -msgstr "Fins:" +msgid "Path to recordings:" +msgstr "Pad voor opnames:" -msgid "Dutch:" -msgstr "Nederlands:" +msgid "Path to configuration files:" +msgstr "Pad naar configuratie bestanden:" -msgid "Russian:" -msgstr "Russies" +msgid "Path to EPG images:" +msgstr "Pad naar EPG beelden:" -msgid "Czech:" -msgstr "Tjechies:" +msgid "Identification" +msgstr "Identificatie" -msgid "Italian:" -msgstr "Italiaans:" +msgid "Username:" +msgstr "Gebruikersnaam:" -msgid "Information" -msgstr "Informatie" +msgid "Password:" +msgstr "Wachtwoord:" -msgid "VDRAdmin-AM version:" -msgstr "VDRAdmin-AM versie:" +msgid "Guest Account:" +msgstr "Gast Account:" -msgid "VDR version:" -msgstr "VDR versie:" +msgid "Guest Username:" +msgstr "Gebruikersnaam gast:" -msgid "Supported features in VDR:" -msgstr "Ondersteunde elementen in VDR" +msgid "Guest Password:" +msgstr "Wachtwoord gast" -msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgstr "Autotimer(Vanaf versie 3.5 is de autotimer vervallen en<br> word nu gebruik gemaakt van de plugin \"EPG zoeken\" <a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgid "Timeline" +msgstr "Tijdlijn" -msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgstr "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgid "Hours:" +msgstr "Uur:" -msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgstr "Hernoem opnames (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgid "Times:" +msgstr "Tijden:" -msgid "Getting Help and Reporting Bugs" -msgstr "Voor het verkrijgen van hulp en melden van bugs" +msgid "Also used for other EPG views!" +msgstr "Word ook gebruikt voor andere EPG" -msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." -msgstr "Als u hulp nodig heeft probeer dan eerst de online hulp, u zult enige pagina's vinden. U kunt dit bezoeken door op <img src=\"bilder/help.png\" alt=\"\" /> te klikken." +msgid "Tooltips:" +msgstr "Handigheden:" -msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" -msgstr "Als dit niet de informatie verschaft die u zoekt dan kunt u het proberen op <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> als u de Duitse taal verstaat. Gebruik graag de bekendmakingen draad indien mogelijk, zoek naar:" +msgid "Active:" +msgstr "Aktief:" -msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." -msgstr "Als u denkt een bug gevonden te hebben controleer dan graag eerst of dit een nieuwe is en meld het in de <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking systeem</a>." +msgid "Send email after programming timer:" +msgstr "Stuur email na het programmeren van de timer:" -msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" -msgstr "<p>Hier kunt u de instellingen van de automatische timers (AutoTimer) bewerken.</p><p>De auto timer is een sleutel eigenschap van VDRAdmin-AM. Een auto timer bevat een of meer zoek termen en andere instellingen waarnaar regelmatig gezocht word in de Elektronische Programma Gids (EPG). Bij een overeenkomst word een timer toegevoegd. Dit is zeer gemakkelijk voor onregelmatig uitgezonden series of voor film die u niet wilt missen.</p> " +msgid "Send email as:" +msgstr "Stuur email als:" -msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." -msgstr "Activeer of deactiveer deze auto timer. Als ze zijn gedeactiveerd worden ze nog steeds bewaard in de auto timer lijst zodat ze weer opnieuw geactiveerd kunnen worden, maar ondertussen nemen ze niets op. Bovendien kunt u dit instellen op \"eenmalig\" zodat deze auto timer alleen de eerst volgende overeenkomstige programma zal opnemen." +msgid "Send email to:" +msgstr "Stuur email naar:" -msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Only broadcasts will match if they contain <strong>all</strong> items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as Blacklist-string) or only one episode (when using \"Enterprise~Azati Prime\" as Blacklist-string)." -msgstr "Het kiezen van de juiste zoekpatronen maakt het verschil tussen het opnemen van gewenste uitzendingen, uitzendingen met gelijksoortige namen of dat er niets opgenomen word <br />hoofd of kleine letters maken niet uit, \"X-Files\" of \"x-files\" leidt tot hetzelfde resultaat. U kunt meerdere zoekpatronen gebruiken door ze te scheiden door spaties. Alleen programma's die <strong>alle</strong> zoektermen bevatten zullen leiden tot een opname .<br />U kunt beter alleen cijfers en letters gebruiken voor de zoekpatronen omdat het bij de EPG vaak de leestekens ontbreken.<br /> Gevorderden kunnen ook standaard uitdrukkingen gebruiken, maar dan moet u de benodigde informatie halen van de VDRAdmin-AM broncode (ongedocumenteerd aspect).<br /><br /> U kunt bepaalde programma's uitsluiten zodat deze niet worden opgenomen ondanks dat deze overeenkomen met een auto timer. Hiervoor moet u <i>vdradmind.bl</i> bewerken en hier de titels in plaatsen, een gebeurtenis per regel. Dit bestand moet staan in de VDRAdmin-AM's configuratie map. Als de zoekterm word gevonden in de EPG <u>titel</u> of in <u>titel~subtitel</u>, dan zal dit programma niet worden opgenomen door de auto timer. Zodoende kunt u complete afleveringen uitsluiten (bijvoorbeeld \"Enterprise\" zwarte lijst zoekterm) of alleen een opname (door gebruikt te maken van \"Enterprise~Azati Prime\" als zwarte lijst zoekterm)." +msgid "Mail server:" +msgstr "Mail server:" -msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." -msgstr "Hier kunt u aangeven de EPG delen aangeven waar VDRAdmin-AM moet zoeken naar zoekpatronen." +msgid "SMTPAuth user:" +msgstr "SMTPAuth gebruiker:" -msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." -msgstr "Gebruik deze hokjes om het zoeken te beperken op bepaalde dagen." +msgid "SMTPAuth password:" +msgstr "SMTPAuth Wachtwoord:" -msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." -msgstr "Het kanaal waar naar gezocht moet worden voor overeenkomstige programma's of \"alle\" om te zoeken in alle bekende of gewenste kanalen. U kunt de gewenste kanalen voor de auto timer aangeven in \"Configuratie\"." +msgid "Track schedule changes by:" +msgstr "" -msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Een programma moet starten na de hier ingegeven tijd om in aanmerking te komen voor opname. Het eerste veld is voor \"Uur\", de tweede voor \"minuut\"." +msgid "Broadcast time" +msgstr "" -msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Een programma moet stoppen na de hier ingegeven tijd om in aanmerking te komen voor opname. Het eerste veld is voor \"Uur\", de tweede voor \"minuut\"." +msgid "Event id" +msgstr "" -msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." -msgstr "Stel deze optie in op \"ja\" als alle timers die ingesteld zijn met deze autotimer individuele start/stop marges moeten hebben en vul de waarden in in de twee volgende vakken." +msgid "Timer" +msgstr "Timer" -msgid "The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG." -msgstr "Het aantal minuten dat VDRAdmin-AM in mindering brengt van de uitzend start tijd die gevonden is in de EPG." +msgid "Tooltips in timeline:" +msgstr "Handigheden in de tijdlijn:" -msgid "The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG." -msgstr "Het aantal minuten dat VDRAdmin-AM in toevoegd aan de stop tijd die gevonden is in de EPG." +msgid "Tooltips in list:" +msgstr "Handigheden in lijst:" -msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." -msgstr "Vink dit vakje aan als u VDRAdmin-AM de titel wilt laten toevoegen die gevonden is in de EPG informatie aan de opname's bestandsnaam." +msgid "Streaming" +msgstr "Streaming" -msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." -msgstr "Als u dit activeerd dan zal VDRAdmin-AM de timers volgen die ze al automatisch heeft geprogrammeerd. Dit handig als u timers wilt activeren of verwijderen die automatisch zijn geprogrammeerd in de timer lijst." +msgid "Live Streaming:" +msgstr "Live Streaming:" -msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." -msgstr "De map waar deze auto timer zijn opnames in zal plaatsen. Als de naam submappen bevat dan zullen deze aangeven moeten worden door een '~' aangezien het '/' karakter een deel kan uitmaken van een programma naam. .<br />VDRAdmin-AM zal de overeenkomstige programma naam en titel gebruiken (als de \"aflevering\" aanvinkvak is gemarkeerd) naar de hier aangegeven map.<br /><br /> U kunt ook de volgende sleutelwoorden gebruiken die worden vervangen voor de uiteindelijke bestandsnaam door waarden opgegeven door bijvoorbeeld <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Titel% - zal de naam worden van de gebeurtenis .</li><li>%Subtitel% zal de subtitel worden van de gebeurtenis .</li><li>%Datum% - zal de datum worden van de opname .</li><li>%Categorie% zal de categorie worden van de gebeurtenis (speelfilm, serie,...) .</li><li>%Genre% - zal het genre worden van de gebeurtenis (Drama/Krimi/..).</li><li>%Jaar% - zal het jaar worden van de productie .</li> <li>%Origineletitel% zal de originele titel worden van de gebeurtenis </li><li>%FSK% - zal de FSK worden van de gebeurtenis .</li><li>%Aflevering% - zal de afleverings titel worden van de gebeurtenis .</li><li>%Waardering% - zal de waardering worden van de gebeurtenis van de EPG informatie .</li></ul><h4>Let op:</h4>Als u bovenstaande sleutelwoorden gebruikt dan is het uw eigen verantwoording om een <strong>volledige bestandsnaam</strong> te geven aan de opnames! VDRAdmin-AM zal niets toevoegen aan de resulterende reeks." +msgid "HTTP Port of Streamdev (also possible 3000/ts):" +msgstr "HTTP Poort van Streamdev (ook mogelijk 3000/ts):" -msgid "Timer" -msgstr "Timer" +msgid "Recordings Streaming:" +msgstr "Streaming opnames:" -msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" -msgstr "<p>Hier vind u een lijst van timer die bekend zijn bij VDR.</p><p> Boven in zult u een lijst vinden die de timers van een dag grafisch weergeven. Dit voorziet in een snel overzicht van wat er gaande is op een bepaalde dag en helpt in het vinden van overlappende timers. Door de muis cursor boven iedere timerbox te plaatsen zal er een tooltip weergegeven worden die de timers titel, prioriteit, levensduur en lengte van opname zal tonen</p><p>Onder de lijst kunt u de timer lijst vinden die u enige informatie toont van de timers. U kunt lijst opsomming veranderen door op het kopje van de kolom te klikken.</p><p>Voor iedere timer heeft u de volgende opties: <dl><dt>De activiteit instellen</dt><dd>door te klikken op \"Ja\", \"Nee\", \"VPS\" of \"Auto\" in de \"Aktief\" kolom.</dd><dt>Om snel de prioriteit en levensduur te tonen</dt><dd> Door de muis cursor over de timers titel te bewegen</dd><dt>kunt u de EPG informatie tonen .</dt><dd>Timers die zijn ingesteld op <span class=\"ref_label\">AutoTimer Controle</span> tot \"Transmissie Identificatie\" zal de overeenkomstige EPG informatie tonen als u klikt op de timer titel.</dd><dt>Bewerken van een timer</dt><dd>U kunt een timer bewerken door te klikken op<img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Verwijder de timer</dt><dd> Om een timer te verwijderen klik op <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Iedere timers activiteit wordt getoond door verschillend gekleurde vakjes (in de overzichtslijst) of beelden (in de lijst overzicht):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK en zal worden opgenomen.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timers die elkaar overlappen. dit is geen probleem zolang er voldoende DVB kaarten aanwezig zijn om gelijktijdig te kunne opnemen.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> De timer overlapt en zal hoogstwaarschijnlijk <strong>niet</strong> worden opgenomen.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is niet aktief.</p><p>Naast deze functies kunt u een nieuwe timer toevoegen door op boven in<input type=\"submit\" class=\"submit\" value=\"New Timer\"/> te klikken en u kunt een aantal timers verwijderen door eenmaal op het selectie vakje in de laatste kolom te klikken en dan op <input type=\"submit\" class=\"submit\" value=\"Verwijder geselecteerde timers\"/>.</p> te klikken." +msgid "Path to VDR Recordings on your workstation:" +msgstr "Pad naar VDR opnames op uw werkstation:" -msgid "Playing Today" -msgstr "Programma vandaag " +msgid "MIME type for live streaming:" +msgstr "Mime type voor live streaming:" -msgid "starting at" -msgstr "start om" +msgid "Suffix for live streaming:" +msgstr "Extensie voor Live Streaming:" + +msgid "MIME type for recordings streaming:" +msgstr "MIME type voor opgenomen Streaming:" + +msgid "Suffix for recordings streaming:" +msgstr "Extensie voor opgenomen Streaming:" + +msgid "Bandwidth of Streams:" +msgstr "Bandbreedte van streams:" + +msgid "External Search" +msgstr "Extern zoeken" + +msgid "URL:" +msgstr "URL:" + +msgid "Title:" +msgstr "Titel:" + +msgid "User-defined search:" +msgstr "Gebruikers definieert zoeken" + +msgid "Expert" +msgstr "Expert" + +msgid "Update EPG data in background:" +msgstr "Bijwerken van EPG gegevens in de achtergrond:" + +msgid "Update EPG every:" +msgstr "Werk EPG bij iedere:" + +msgid "Channel Selections" +msgstr "Kanaal selecties" + +msgid "Show channels without EPG information:" +msgstr "Toon kanalen zonder EPG informatie:" + +msgid "In \"AutoTimer\"?" +msgstr "In \"AutoTimer\"?" + +msgid "Apply" +msgstr "Toepassen" + +msgid "EPG Search Blacklists" +msgstr "EPG zoeken zwarte lijsten" + +msgid "New Blacklist" +msgstr "Nieuwe zwarte lijst" + +msgid "Search pattern" +msgstr "Zoek patroon" + +msgid "From" +msgstr "van" + +msgid "To" +msgstr "Naar" + +msgid "Delete blacklist?" +msgstr "Verwijder zwarte lijst?" + +msgid "Delete Selected Blacklists" +msgstr "Verwijder geselecteerde zwarte lijst" + +msgid "Delete all selected blacklists?" +msgstr "Verwijder alle geselecteerde zwarte lijsten?" + +msgid "EPG search" +msgstr "Auto timer" + +msgid "EPG Search" +msgstr "Auto timer" + +msgid "Use template" +msgstr "Gebruik sjabloon" + +msgid "New Search" +msgstr "Nieuwe zoekopdracht" + +msgid "Edit Template" +msgstr "Sjabloon bewerken" + +msgid "Settings" +msgstr "Instellingen" + +msgid "Action" +msgstr "Aktie" + +msgid "Find" +msgstr "Vinden" + +msgid "Show Favorites" +msgstr "Toon favorieten" + +msgid "Delete Selected Searches" +msgstr "Verwijder geselecteerde zoek opdrachten" + +msgid "Delete all selected searches?" +msgstr "Verwijder alle geselecteerde zoek opdrachten?" + +msgid "Execute Selected Searches" +msgstr "Uitvoeren geselecteerde zoek opdrachten" + +msgid "Duration" +msgstr "Duur" + +msgid "More Information" +msgstr "Meer informatie" + +msgid "Channels" +msgstr "Kanalen" + +msgid "Record" +msgstr "Opnemen" msgid "Add New Blacklist" msgstr "Zwarte lijsten toevoegen" @@ -484,9 +526,6 @@ msgstr "Bewerk zwarte lijst" msgid "Add New Template" msgstr "Nieuw sjabloon toevoegen " -msgid "Edit Template" -msgstr "Sjabloon bewerken" - msgid "Add New Search" msgstr "Voeg nieuw zoekpatroon toe" @@ -502,9 +541,6 @@ msgstr "U moet tenminste één \\ntitel, ondertitel of omschrijving selecter msgid "Hide results" msgstr "Verberg resultaten" -msgid "Settings" -msgstr "Instellingen" - msgid "Name:" msgstr "Naam:" @@ -682,264 +718,147 @@ msgstr "Dit sjabloon verwijderen? " msgid "Save as template" msgstr "Opslaan als sjabloon" -msgid "Create New Timer" -msgstr "Nieuwe timer instellen" - -msgid "Buffer:" -msgstr "Buffer:" - -msgid "Use VPS:" -msgstr "Gebruik VPS" - -msgid "readonly" -msgstr "Alleen lezen" - -msgid "Timer has been set by AutoTimer pattern:" -msgstr "De timer is ingesteld door de auto timer zoek opdracht:" - -msgid "No Help Available" -msgstr "Geen help beschikbaar" - -msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgstr "<p>Nog geen hulp beschikbaar: Voor toevoegen of veranderen van tekst graag contact opnemen met<a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgid "Run" +msgstr "Uitvoeren" msgid "Error!" msgstr "Fout!" -msgid "TV" -msgstr "TV" +msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" +msgstr "<p>Hier vind u de lijst van automatische timers (AutoTimer) die bekend zijn bij VDRAdmin-AM.</p><p>De lijst toont enige informatie over auto timers. U kunt de lijst's sortering veranderen door op de kolom hoofden te klikken.</p><p> Voor iedere autotimer heeft u de volgende mogelijkheden:<dl><dt>De status instellen </dt><dd>door te klikken op \"Ja\" of \"Nee\" in de \"Actief\"kolom om de activiteit te wisselen.</dd><dt>Het snel bekijken van de prioriteit en levensduur </dt><dd> door de muiscursor over de auto timers titel te bewegen.</dd><dt>Bewerk de autotimer </dt><dd>U kunt een auto timer bewerken door te klikken op<img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Verwijder de auto timer</dt><dd>Om een auto timer te verwijderen klik op <img src=\"bilder/delete.png\" alt=\"verwijderen\" />.</dd></dl></p><p>De status van iedere auto timer word aangeduid door verschillend gekleurde afbeeldingen<br /><img src=\"bilder/poempl_gruen.png\" alt=\"aan\" align=\"middle\" /> auto timer is OK en zal overeenkomstige programma's opnemen<br /><img src=\"bilder/poempl_grau.png\" alt=\"uit\" align=\"middle\" /> auto timer is niet aktief.</p><p>Aanvullend bij deze functies kunt u een nieuwe auto timer toevoegen door te klikken op <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/>bovenin kunt u een aantal auto timers verwijderen door ze aan te vinken in de laatste kolom van deze timers en klik dan op <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Klik <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> om VDRAdmin-AM te dwingen om her te verbinden met VDR, de laatste EPG data op te halen en te controleren voor overeenkomstige timers.</p>" -msgid "Interval:" -msgstr "Interval:" +msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgstr "<p>Hier kunt u de instellingen van de automatische timers (AutoTimer) bewerken.</p><p>De auto timer is een sleutel eigenschap van VDRAdmin-AM. Een auto timer bevat een of meer zoek termen en andere instellingen waarnaar regelmatig gezocht word in de Elektronische Programma Gids (EPG). Bij een overeenkomst word een timer toegevoegd. Dit is zeer gemakkelijk voor onregelmatig uitgezonden series of voor film die u niet wilt missen.</p> " -msgid "sec." -msgstr "sec." +msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." +msgstr "Activeer of deactiveer deze auto timer. Als ze zijn gedeactiveerd worden ze nog steeds bewaard in de auto timer lijst zodat ze weer opnieuw geactiveerd kunnen worden, maar ondertussen nemen ze niets op. Bovendien kunt u dit instellen op \"eenmalig\" zodat deze auto timer alleen de eerst volgende overeenkomstige programma zal opnemen." -msgid "G" -msgstr "G" +msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Broadcasts will match only if they match <strong>all</strong> configured search items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as blacklist string) or only one episode (when using \"Enterprise~Azati Prime\" as blacklist string)." +msgstr "Het kiezen van de juiste zoekpatronen maakt het verschil tussen het opnemen van gewenste uitzendingen, uitzendingen met gelijksoortige namen of dat er niets opgenomen word <br />hoofd of kleine letters maken niet uit, \"X-Files\" of \"x-files\" leidt tot hetzelfde resultaat. U kunt meerdere zoekpatronen gebruiken door ze te scheiden door spaties. Alleen programma's die <strong>alle</strong> zoektermen bevatten zullen leiden tot een opname .<br />U kunt beter alleen cijfers en letters gebruiken voor de zoekpatronen omdat het bij de EPG vaak de leestekens ontbreken.<br /> Gevorderden kunnen ook standaard uitdrukkingen gebruiken, maar dan moet u de benodigde informatie halen van de VDRAdmin-AM broncode (ongedocumenteerd aspect).<br /><br /> U kunt bepaalde programma's uitsluiten zodat deze niet worden opgenomen ondanks dat deze overeenkomen met een auto timer. Hiervoor moet u <i>vdradmind.bl</i> bewerken en hier de titels in plaatsen, een gebeurtenis per regel. Dit bestand moet staan in de VDRAdmin-AM's configuratie map. Als de zoekterm word gevonden in de EPG <u>titel</u> of in <u>titel~subtitel</u>, dan zal dit programma niet worden opgenomen door de auto timer. Zodoende kunt u complete afleveringen uitsluiten (bijvoorbeeld \"Enterprise\" zwarte lijst zoekterm) of alleen een opname (door gebruikt te maken van \"Enterprise~Azati Prime\" als zwarte lijst zoekterm)." -msgid "Grab the picture!" -msgstr "Snapshot maken!" +msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." +msgstr "Hier kunt u aangeven de EPG delen aangeven waar VDRAdmin-AM moet zoeken naar zoekpatronen." -msgid "Size:" -msgstr "Grootte:" +msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." +msgstr "Gebruik deze hokjes om het zoeken te beperken op bepaalde dagen." -msgid "Open in separate window" -msgstr "In apart venster openen" +msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." +msgstr "Het kanaal waar naar gezocht moet worden voor overeenkomstige programma's of \"alle\" om te zoeken in alle bekende of gewenste kanalen. U kunt de gewenste kanalen voor de auto timer aangeven in \"Configuratie\"." -msgid "Playing Today?" -msgstr "Speelt vandaag?" +msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Een programma moet starten na de hier ingegeven tijd om in aanmerking te komen voor opname. Het eerste veld is voor \"Uur\", de tweede voor \"minuut\"." -msgid "Timeline" -msgstr "Tijdlijn" +msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Een programma moet stoppen na de hier ingegeven tijd om in aanmerking te komen voor opname. Het eerste veld is voor \"Uur\", de tweede voor \"minuut\"." -msgid "EPG Search" -msgstr "Auto timer" +msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." +msgstr "Stel deze optie in op \"ja\" als alle timers die ingesteld zijn met deze autotimer individuele start/stop marges moeten hebben en vul de waarden in in de twee volgende vakken." -msgid "Recordings" -msgstr "Opnames" +msgid "The number of minutes VDRAdmin-AM subtracts from the broadcast's start time found in the EPG." +msgstr "Het aantal minuten dat VDRAdmin-AM in mindering brengt van de uitzend start tijd die gevonden is in de EPG." -msgid "Remote Control" -msgstr "Afstands bediening " +msgid "The number of minutes VDRAdmin-AM adds to the broadcast's stop time found in the EPG." +msgstr "Het aantal minuten dat VDRAdmin-AM in toevoegd aan de stop tijd die gevonden is in de EPG." -msgid "Watch TV" -msgstr "TV bekijken" +msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." +msgstr "Een getal in het bereik<strong>0...99</strong>, bepaald de <strong>prioriteit</strong>van deze timer en de opnames aangemaakt door deze timer <strong>0</strong> geeft de laagst mogelijke waarde aan, <strong>99</strong> de hoogste. De prioriteit wordt gebruikt als er twee of meer timers gelijktijdig starten, de timer met de hoogste prioriteit heeft voorrang en zal worden opgenomen<br /><br />Deze waarde wordt ook opgeslagen bij de opname en word later gebruikt om een opname te verwijderen om ruimte vrij te maken voor een nieuwe opname. Als de schijf vol raakt en een nieuwe opname heeft meer ruimte nodig dan zal een bestaande opname met de laagste prioriteit ( en die zijn gegarandeerde levensduur al voorbij is) zal worden verwijderd.<br /><br /> Als alle DVB kaarten bezet zijn met een timer dan zal de timer met de laagste prioriteit onderbroken worden om de opname met een hogere prioriteit op te gaan nemen." -msgid "Commands" -msgstr "Commando's" +msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." +msgstr "De <strong>gegarandeerde</strong> levensduur (in dagen) van een opname gecreëerd door deze timer <strong>0</strong> betekend dat deze opname automatisch verwijderd zal worden door een nieuwe timer met een hogere prioriteit.<strong>99</strong> betekend dat deze opname nooit automatisch verwijderd zal worden. Ieder nummer in het bereik van <strong>1...98</strong> betekend dat de opname niet automatisch verwijderd zal worden om plaats te maken voor een nieuwe opname, alleen als de levensduur van de opname voorbij is." -msgid "Configuration" -msgstr "Configuratie" +msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." +msgstr "Vink dit vakje aan als u VDRAdmin-AM de titel wilt laten toevoegen die gevonden is in de EPG informatie aan de opname's bestandsnaam." -msgid "Search" -msgstr "Zoeken" +msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." +msgstr "Als u dit activeerd dan zal VDRAdmin-AM de timers volgen die ze al automatisch heeft geprogrammeerd. Dit handig als u timers wilt activeren of verwijderen die automatisch zijn geprogrammeerd in de timer lijst." + +msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." +msgstr "De map waar deze auto timer zijn opnames in zal plaatsen. Als de naam submappen bevat dan zullen deze aangeven moeten worden door een '~' aangezien het '/' karakter een deel kan uitmaken van een programma naam. .<br />VDRAdmin-AM zal de overeenkomstige programma naam en titel gebruiken (als de \"aflevering\" aanvinkvak is gemarkeerd) naar de hier aangegeven map.<br /><br /> U kunt ook de volgende sleutelwoorden gebruiken die worden vervangen voor de uiteindelijke bestandsnaam door waarden opgegeven door bijvoorbeeld <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Titel% - zal de naam worden van de gebeurtenis .</li><li>%Subtitel% zal de subtitel worden van de gebeurtenis .</li><li>%Datum% - zal de datum worden van de opname .</li><li>%Categorie% zal de categorie worden van de gebeurtenis (speelfilm, serie,...) .</li><li>%Genre% - zal het genre worden van de gebeurtenis (Drama/Krimi/..).</li><li>%Jaar% - zal het jaar worden van de productie .</li> <li>%Origineletitel% zal de originele titel worden van de gebeurtenis </li><li>%FSK% - zal de FSK worden van de gebeurtenis .</li><li>%Aflevering% - zal de afleverings titel worden van de gebeurtenis .</li><li>%Waardering% - zal de waardering worden van de gebeurtenis van de EPG informatie .</li></ul><h4>Let op:</h4>Als u bovenstaande sleutelwoorden gebruikt dan is het uw eigen verantwoording om een <strong>volledige bestandsnaam</strong> te geven aan de opnames! VDRAdmin-AM zal niets toevoegen aan de resulterende reeks." msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" msgstr "<p>Hier kunt u de algemene en basis instellingen veranderen voor de timers, auto timer, kanaal selectie en streaming parameters.</p>" -msgid "General Settings" -msgstr "Algemene instellingen" - -msgid "VDR" -msgstr "VDR" - -msgid "Identification" -msgstr "Identificatie" - -msgid "Streaming" -msgstr "Streaming" - -msgid "Expert" -msgstr "Expert" - -msgid "External Search" -msgstr "Extern zoeken" - -msgid "Channel Selections" -msgstr "Kanaal selecties" - -msgid "Skin:" -msgstr "Skin:" - msgid "The skin you want to use." msgstr "De skin die u wilt gebruiken." -msgid "Login Page:" -msgstr "Inlog pagina:" - msgid "The page you want to see at first connect to VDRAdmin-AM." msgstr "De pagina die u als eerste wilt zien als VDRAdmin-AM start." -msgid "Number of channels to use:" -msgstr "Aantal te tonen kanalen:" - msgid "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." msgstr "VDRAdmin-AM zal de kanalen laden van de VDR en alleen aanwezig in deze ieder veld waar een kanaal kan worden geselecteerd. Dit beperkt ook de EPG informatie die VDRAdmin-AM zal lezen zodat het geheugen gebruikt van VDRAdmin-AM beperkt zal worden en de prestaties zal verbeteren. <strong>0</strong>als deze functie is uitgeschakeld dan zal VDRAdmin-AM alle beschikbare kanalen gebruiken." -msgid "Local net (no login required):" -msgstr "Lokaal netwerk (geen login benodigd):" - msgid "Here you can specify an IP address or range that can login without providing login information. For example: \"192.168.0.0/24\" will include any IP starting with \"192.168.0\", \"192.168.0.123/32\" will only match \"192.168.0.123\"." msgstr "Hier kunt u een IP adres opgeven of bereik die kan inloggen zonder login informatie. Bijvoorbeeld:\"192.168.0.0/24\" zal ieder IP adres toestaan dat begint met \"192.168.0\", \"192.168.0.123/32\" zal alleen \"192.168.0.123\" toestaan." -msgid "Language:" -msgstr "Taal:" - msgid "Here you can set the localization VDRAdmin-AM should use." msgstr "Hier kunt u de taal instellen die VDRAdmin-AM moet gebruiken." -msgid "Save settings on exit:" -msgstr "Instellingen opslaan bij afsluiten:" - msgid "With this option the settings will be saved if VDRAdmin-AM exits. This will also save settings not available on the \"Configuration\" menu like interval and size in TV, sorting in the lists and current view in \"What's on now\"." msgstr "Met deze optie worden de instellingen bewaard als VDRAdmin-AM afgesloten word. Dit bewaard ook de instellingen van het niet beschikbare op het \"Configuratie\" menu zoals interval en formaat in TV, het sorteren van de lijsten en huidig beeld in \"Wat is er nu op\"." msgid "Top" msgstr "Boven" -msgid "Number of DVB cards:" -msgstr "Aantal DVB kaarten:" - msgid "The number of DVB cards VDR can access. Depending on this value VDRAdmin-AM will calculate critical timers in the <span class=\"ref_menu\">Timer</span> menu." msgstr "Het aantal kaarten dat VDR kan benaderen. Afhankelijk van deze waarde zal VDRAdmin-AM de timers berekenen in het <span class=\"ref_menu\">Timer</span> menu." -msgid "Path to recordings:" -msgstr "Pad voor opnames:" - msgid "The path to VDR's recordings. It's used so that VDRAdmin-AM can locate the recordings when using <span class=\"ref_label\">Recordings Streaming</span> and <span class=\"ref_file\">reccmds.conf</span> in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Pad naar de VDR opnames. Deze word zo gebruikt dat VDRAdmin-AM de opnames kan lokaliseren wanneer <span class=\"ref_label\">Streaming opnames</span> gebruikt word en <span class=\"ref_file\">reccmds.conf</span> in de <span class=\"ref_menu\">opnames</span> menu." -msgid "Path to configuration files:" -msgstr "Pad naar configuratie bestanden:" - msgid "The path where VDR's configuration files are located. If this directory contains the file <span class=\"ref_file\">reccmds.conf</span> its content is shown in a selectbox in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Het pad waar de VDR's configuratie bestanden staan. Als deze map het bestand <span class=\"ref_file\">reccmds.conf</span> bevat dan zal de inhoud getoond worden in een selectie vak in de <span class=\"ref_menu\">opnames</span> menu." -msgid "Path to EPG images:" -msgstr "Pad naar EPG beelden:" - msgid "The path where the EPG images are stored." msgstr "Het pad waar de EPG beelden zijn opgeslagen." -msgid "Username:" -msgstr "Gebruikersnaam:" - msgid "The username for the main user, i.e. the user having the most privileges." msgstr "De gebruikersnaam voor de hoofdgebruiker, met andere woorden, de gebruiker met de meeste rechten." -msgid "Password:" -msgstr "Wachtwoord:" - msgid "The main user's password." msgstr "De hoofdgebruikers wachtwoord." -msgid "Guest Account:" -msgstr "Gast Account:" - msgid "If you want a user account having only limited privileges, this is for you. The guest user cannot modify anything, it's only allowed to view the EPG, timers, AutoTimers and recordings listings." msgstr "Als u een gebruikers account wilt hebben met alleen beperkte rechten, dat is dit iets voor u. De gast gebruiker kan niets veranderen, deze heeft alleen toestemming om de EPG timers, autotimer en opnames te bekijken. " -msgid "Guest Username:" -msgstr "Gebruikersnaam gast:" - msgid "The username for the guest user." msgstr "De gebruikersnaam van de gast gebruiker." -msgid "Guest Password:" -msgstr "Wachtwoord gast" - msgid "The guest user's password." msgstr "Het wachtwoord van de gast gebruiker." -msgid "Hours:" -msgstr "Uur:" - msgid "The number of hours to show in the timeline." msgstr "Het aantal uren die getoond worden in de tijdlijn. " -msgid "Times:" -msgstr "Tijden:" - msgid "A comma separated list of times in <strong>hh:mm</strong> format that appear in the selectbox placed at the top." msgstr "Een komma gescheiden lijst van tijden in <strong>uu:mm</strong> formaat die verschijnt in het selectie vak die zich boven bevind." -msgid "Tooltips:" -msgstr "Handigheden:" - msgid "Here you can (de-)activate the tooltips." msgstr "Hier kunt u de handigheden (de)activeren." -msgid "Active:" -msgstr "Aktief:" - msgid "Activate or deactivate the AutoTimer function." msgstr "Activeer of deactiveer de autotimer functie." -msgid "Send email after programming timer:" -msgstr "Stuur email na het programmeren van de timer:" - msgid "VDRAdmin-AM will send an email whenever an event matches an AutoTimer and a timer has been programmed if you enable this feature." msgstr "VDRAdmin-AM zal een email sturen als een gebeurtenis overeenkomt met een autotimer en een timer is geprogrammeerd als u dit activeerd in de toekomst." -msgid "Send email as:" -msgstr "Stuur email als:" - msgid "Here you set the sending email address of the generated email." msgstr "Hier kunt u de afzender instellen van de aangemaakte email." -msgid "Send email to:" -msgstr "Stuur email naar:" - msgid "The email address the email is sent to." msgstr "Het email adres, de email is gestuurd naar:" -msgid "Mail server:" -msgstr "Mail server:" - msgid "The outgoing mail server." msgstr "De uitgaande mail server." -msgid "SMTPAuth user:" -msgstr "SMTPAuth gebruiker:" - msgid "If you need to authenticate yourself at the outgoing mail server, you have to supply the username and the password below. Leaving this field empty will disable SMTPAuth." msgstr "Als u zich moet identificeren voor SMTPAuth de uitgaande mail server dan moet u uw gebruikersnaam en wachtwoord hieronder invoeren. Als dit veld leeg is dan zal SMTPAuth niet aktief zijn." -msgid "SMTPAuth password:" -msgstr "SMTPAuth Wachtwoord:" - msgid "The password for the SMTPAuth user." msgstr "Het wachtwoord voor de SMTPAuth gebruiker." -msgid "Tooltips in timeline:" -msgstr "Handigheden in de tijdlijn:" - msgid "Here you can (de-)activate the tooltips in the timeline." msgstr "Hier kunt u de handigheen (de)activeren in de tijdlijn." -msgid "Tooltips in list:" -msgstr "Handigheden in lijst:" - msgid "Here you can (de-)activate the tooltips in the list." msgstr "Hier kunt u de handigheen (de)activeren in de lijst." @@ -949,51 +868,27 @@ msgstr "Voeg beschrijving toe aan nieuwe timers:" msgid "If you don't want VDRAdmin-AM to add the summary taken from EPG to new timers you can switch it off here." msgstr "Als u niet wilt dat VDRAdmin-AM de programma informatie uit de EPG overneemt aan nieuwe timer dan kunt u dat hier uitzetten." -msgid "Live Streaming:" -msgstr "Live Streaming:" - msgid "Enable or disable live streaming using the <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. You also have to set the correct <span class=\"ref_label\">HTTP Port for Streamdev</span> below." msgstr "Activeer of deactiveer live streaming door gebruik te maken van de <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. U moet ook de juiste <span class=\"ref_label\">HTTP Poort voor Streamdev</span>instellen hieronder." -msgid "HTTP Port of Streamdev (also possible 3000/ts):" -msgstr "HTTP Poort van Streamdev (ook mogelijk 3000/ts):" - msgid "Here you have to set the port number your VDR's streamdev server listens for connections. Additionally you can also provide the stream type you like to use." msgstr "Hier moet u het poort nummer instellen waar uw VDR's streamdev server naar luistert voor verbindingen. Tevens is het mogelijk de stream type in te stellen die u wilt gebruiken." -msgid "Recordings Streaming:" -msgstr "Streaming opnames:" - msgid "Enable or disable streaming of recordings.<br />Well actually this is no real \"streaming\", but you have to setup your workstation so that it can access VDR's recordings. You can use for example Samba or NFS for this. VDRAdmin-AM simply generates a playlist that contains all parts of the recording and sends this to your browser. If your browser and media player are configured correctly you will see the recording on your workstation's display." msgstr "Het aan of uitzetten van streaming van opnames<br />Het is eigenlijk wel geen echte \"streaming\", maar u moet u werkstation instellen zodat deze de VDR opnames kan benaderen. U kunt bijvoorbeeld Samba of NFS hiervoor gebruiken. VDRAdmin-AM maakt gewoon een afspeellijst aan die alle delen van de opname bevat en stuurt dit naar uw browser. Als uw browser en media speler juist zijn ingesteld dan kunt u de opname op uw werkstations beeldscherm bekijken." -msgid "Path to VDR Recordings on your workstation:" -msgstr "Pad naar VDR opnames op uw werkstation:" - msgid "This is the path where your workstation can access VDR's recordings. This depends on your VDR and workstation setup, for example \"\\\\vdr\\videos\" or \"V:\\\" (on Windows) or \"/mnt/videos\" (on Linux)." msgstr "Dit is het pad waar uw werkstation de VDR opnames kan benaderen. Dit hangt af de instellingen van de VDR en werkstation. bijvoorbeeld \"\\\\vdr\\videos\" of \"V:\\\" (op Windows) of \"/mnt/videos\" (op Linux)." -msgid "MIME type for live streaming:" -msgstr "Mime type voor live streaming:" - msgid "The MIME type to send when using live streaming. Defaults to \"video/x-mpegurl\"." msgstr "Het MIME type te gebruiken voor live streaming. standaard is \"video/x-mpegurl\"." -msgid "Suffix for live streaming:" -msgstr "Extensie voor Live Streaming:" - msgid "The suffix to use for live streaming. Defaults to \"m3u\"." msgstr "De extensie voor live streaming. Standaard is \"m3u\"." -msgid "MIME type for recordings streaming:" -msgstr "MIME type voor opgenomen Streaming:" - msgid "The MIME type to send when using recordings streaming. Defaults to \"video/x-mpegurl\"." msgstr "Het MIME type te gebruiken voor opgenomen streaming. standaard is \"video/x-mpegurl\"." -msgid "Suffix for recordings streaming:" -msgstr "Extensie voor opgenomen Streaming:" - msgid "The suffix to use for recordings streaming. Defaults to \"m3u\"." msgstr "De extensie voor opgenomen streaming. Standaard is \"m3u\"." @@ -1009,50 +904,23 @@ msgstr "Graag deze hostnaam naar uw lokale behoeften aanpassen!" msgid "<p>This section is for experts <strong>only</strong>, i.e. you know what you are doing!</p>" msgstr "<p>Deze afdeling is voor deskundigen<strong>alleen</strong>, met andere woorden, als goed weet waar u mee bezig bent!</p>" -msgid "Update EPG data in background:" -msgstr "Bijwerken van EPG gegevens in de achtergrond:" - msgid "If set to \"yes\" VDRAdmin-AM will periodically refresh its local EPG cache. Else the EPG will be refreshed if the user accesses any EPG view at the web interface and the timeout set at \"Update EPG every\" has been reached." msgstr "Als het ingesteld staat op \"ja\" dan zal VDRAdmin-AM met intervallen zijn lokale EPG cache verversen. Anders word de EPG pas ververst als de gebruiker met een EPG bezoek op de web interface benadert en de timeout instelling \"Ververs EPG iedere\" bereikt is" -msgid "Update EPG every:" -msgstr "Werk EPG bij iedere:" - msgid "The interval, the EPG data is refreshed from VDR and AutoTimer updates are performed (if AutoTimer feature is used)." msgstr "De interval dat EPG data wordt ververst van VDR en auto timer updates worden uitgevoerd. (Als de auto timer functie word gebruikt)." msgid "<p>If you want to limit the number of channels used in some parts of VDRAdmin-AM, this is for you!</p><p>Use the radio buttons to activate or deactivate the wanted channels in the named menu.</p><p>To add channels to the list of wanted channels you have to select them in the left side selectbox and click <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. If you want to remove channels from the list of wanted channels you have to select them in the right side selectbox and click <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" msgstr "<p>Als u het aantal kanalen wilt beperken die in sommige delen van VDRAdmin-AM gebruikt worden, dan is dit iets voor u!</p><p>Gebruik de selectie vakken om de gewenste kanalen de activeren of deactiveren in het genoemde menu.</p><p>Om kanalen toe te voegen in de lijst van gewenste kanalen dan moet u de gewenste kanalen selecteren in de linkerlijst van het selectie vak en klikken op <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. Als u kanalen van deze lijst wilt verwijderen selecteer dan uit deze lijst de te verwijderen kanalen en klik op<input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" -msgid "Show channels without EPG information:" -msgstr "Toon kanalen zonder EPG informatie:" - msgid "Usually channels that don't have EPG information are hidden in all EPG views. If you don't want them to be hidden you have to set this option to \"yes\"." msgstr "Normaal gesproken worden kanalen verborgen die geen EPG informatie hebben. Als u deze niet verborgen wilt hebben moet u deze optie op \"ja\" zetten." -msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" -msgstr "<p>Hier vind u de lijst van automatische timers (AutoTimer) die bekend zijn bij VDRAdmin-AM.</p><p>De lijst toont enige informatie over auto timers. U kunt de lijst's sortering veranderen door op de kolom hoofden te klikken.</p><p> Voor iedere autotimer heeft u de volgende mogelijkheden:<dl><dt>De status instellen </dt><dd>door te klikken op \"Ja\" of \"Nee\" in de \"Actief\"kolom om de activiteit te wisselen.</dd><dt>Het snel bekijken van de prioriteit en levensduur </dt><dd> door de muiscursor over de auto timers titel te bewegen.</dd><dt>Bewerk de autotimer </dt><dd>U kunt een auto timer bewerken door te klikken op<img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Verwijder de auto timer</dt><dd>Om een auto timer te verwijderen klik op <img src=\"bilder/delete.png\" alt=\"verwijderen\" />.</dd></dl></p><p>De status van iedere auto timer word aangeduid door verschillend gekleurde afbeeldingen<br /><img src=\"bilder/poempl_gruen.png\" alt=\"aan\" align=\"middle\" /> auto timer is OK en zal overeenkomstige programma's opnemen<br /><img src=\"bilder/poempl_grau.png\" alt=\"uit\" align=\"middle\" /> auto timer is niet aktief.</p><p>Aanvullend bij deze functies kunt u een nieuwe auto timer toevoegen door te klikken op <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/>bovenin kunt u een aantal auto timers verwijderen door ze aan te vinken in de laatste kolom van deze timers en klik dan op <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Klik <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> om VDRAdmin-AM te dwingen om her te verbinden met VDR, de laatste EPG data op te halen en te controleren voor overeenkomstige timers.</p>" - -msgid "Your Browser does not support frames!" -msgstr "UW browser ondersteund geen frames!" - -msgid "Rename Recording" -msgstr "Hernoemen opname" - -msgid "Original Name of Recording:" -msgstr "Originele naam van de opname: " - -msgid "New Name of Recording:" -msgstr "Nieuwe naam van de opname:" - -msgid "Subtitle:" -msgstr "Ondertitel:" - -msgid "Rename" -msgstr "Hernoemen" +msgid "Edit Timer" +msgstr "Timer bewerken" -msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" -msgstr "<p>Hier zult u een lijst vinden van opnames die bekend zijn bij VDR: De hoofdlijn zal ook de totale en vrije ruimte tonen die VDR beschikbaar heeft .</p><p>De lijst zal u enige informatie tonen over de opnames. U kunt de lijst sorteren door op de kolom hoofden te klikken. Boven de lijst zult u het navigatie pad aantreffen. Als u de inhoud van vorige mappen wil bekijken dan zult u op de naam moeten klikken in het pad.</p><p> Elke rij bevat de volgende informatie:<dl><dt>Datum</dt><dd> De datum van opname. In het geval van mappen worden het aantal opnames die in de map staan worden getoond.</dd><dt>Tijd</dt><dd> Het tijdstip van opname. Als het een map is dan zal het aantal <strong>nieuwe</strong>opnames getoond worden in de map.</dd><dt>Naam</dt><dd>De naam van opname of map naam. Klik erop om de beschrijving van de opname te tonen of de inhoud van de map te bekijken. </dd><dt>Hernoemen (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd> Hernoem een opname .<br /><h4>Let op:</h4>Dit werkt alleen als VDR de <u>RENR</u> SVDRPoort commando bevat wat geen kern mogelijkheid is van VDR maar beschikbaar is via een patch . <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> of <span class=\"ref_file\">enAIO-v2.2+</span> voorzien in dit commando.</dd><dt> Verwijder (<img src=\"bilder/delete.png\" alt=\"verwijder\" />)</dt><dd> Verwijder een opname </dd><dt>Stream (<img src=\"bilder/stream.jpg\" alt=\"stream\" />)</dt><dd> Deze kolom word alleen getoond als deze is geactiveerd en geconfigureerd <span class=\"ref_label\">Opnames Streaming</span></span> in de <span class=\"ref_menu\">Configuratie</span> menu. U kunt de opname bekijken op uw werkstation.</dd></dl></p><p> Aanvullend bij deze functies kunt u een aantal opnames verwijderen door te klikken in het aanvink vak van de opnames en te klikken op <input type=\"submit\" class=\"submit\" value=\"Verwijder geselecteerde opnames\"/>.</p><p>Als u het pad van de VDR configuratie bestanden heeft ingesteld en ingangen heeft staan in <span class=\"ref_file\">reccmds.conf</span> kunt u deze commando's uitvoeren voor de geselecteerde opnames door het gewenste commando aan te klikken in het aanvinkvak naast <span class=\"ref_label\">Commando's:</span> en te klikken op <input type=\"submit\" class=\"submit\" value=\"Run\"/> knop.</p>" +msgid "Edit EPG" +msgstr "Bewerk EPG" msgid "<p>Here you can edit the descriptive fields of an existing EPG entry.</p>" msgstr "<p>Hier kunt u de omschrijving van een bestaande EPG bewerken.</p>" @@ -1096,134 +964,116 @@ msgstr "Audio sporen (alleen lezen)" msgid "If available this field shows the audio track(s). It cannot be changed." msgstr "Indien beschikbaar toont dit veld de audio sporen. Dit kan niet veranderd worden." -msgid "Duration:" -msgstr "Duur:" - -msgid "min" -msgstr "min" - -msgid "Transponder:" -msgstr "Transponder:" - -msgid "CA-System:" -msgstr "CA-Systeem:" - -msgid "New Timer" -msgstr "Nieuwe timer" - -msgid "Date" -msgstr "Datum" - -msgid "Edit timer status?" -msgstr "Timer status bewerken?" +msgid "No Help Available" +msgstr "Geen help beschikbaar" -msgid "This timer is inactive!" -msgstr "Deze timer is niet aktief!" +msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgstr "<p>Nog geen hulp beschikbaar: Voor toevoegen of veranderen van tekst graag contact opnemen met<a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgid "This timer is impossible!" -msgstr "Deze timer is niet mogelijk!" +msgid "Recordings" +msgstr "Opnames" -msgid "No more timers on other transponders possible!" -msgstr "Geen andere timers op andere transponders mogelijk!" +msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" +msgstr "<p>Hier zult u een lijst vinden van opnames die bekend zijn bij VDR: De hoofdlijn zal ook de totale en vrije ruimte tonen die VDR beschikbaar heeft .</p><p>De lijst zal u enige informatie tonen over de opnames. U kunt de lijst sorteren door op de kolom hoofden te klikken. Boven de lijst zult u het navigatie pad aantreffen. Als u de inhoud van vorige mappen wil bekijken dan zult u op de naam moeten klikken in het pad.</p><p> Elke rij bevat de volgende informatie:<dl><dt>Datum</dt><dd> De datum van opname. In het geval van mappen worden het aantal opnames die in de map staan worden getoond.</dd><dt>Tijd</dt><dd> Het tijdstip van opname. Als het een map is dan zal het aantal <strong>nieuwe</strong>opnames getoond worden in de map.</dd><dt>Naam</dt><dd>De naam van opname of map naam. Klik erop om de beschrijving van de opname te tonen of de inhoud van de map te bekijken. </dd><dt>Hernoemen (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd> Hernoem een opname .<br /><h4>Let op:</h4>Dit werkt alleen als VDR de <u>RENR</u> SVDRPoort commando bevat wat geen kern mogelijkheid is van VDR maar beschikbaar is via een patch . <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> of <span class=\"ref_file\">enAIO-v2.2+</span> voorzien in dit commando.</dd><dt> Verwijder (<img src=\"bilder/delete.png\" alt=\"verwijder\" />)</dt><dd> Verwijder een opname </dd><dt>Stream (<img src=\"bilder/stream.jpg\" alt=\"stream\" />)</dt><dd> Deze kolom word alleen getoond als deze is geactiveerd en geconfigureerd <span class=\"ref_label\">Opnames Streaming</span></span> in de <span class=\"ref_menu\">Configuratie</span> menu. U kunt de opname bekijken op uw werkstation.</dd></dl></p><p> Aanvullend bij deze functies kunt u een aantal opnames verwijderen door te klikken in het aanvink vak van de opnames en te klikken op <input type=\"submit\" class=\"submit\" value=\"Verwijder geselecteerde opnames\"/>.</p><p>Als u het pad van de VDR configuratie bestanden heeft ingesteld en ingangen heeft staan in <span class=\"ref_file\">reccmds.conf</span> kunt u deze commando's uitvoeren voor de geselecteerde opnames door het gewenste commando aan te klikken in het aanvinkvak naast <span class=\"ref_label\">Commando's:</span> en te klikken op <input type=\"submit\" class=\"submit\" value=\"Run\"/> knop.</p>" -msgid "Timer OK." -msgstr "Timer OK." +msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" +msgstr "<p>Hier vind u een lijst van timer die bekend zijn bij VDR.</p><p> Boven in zult u een lijst vinden die de timers van een dag grafisch weergeven. Dit voorziet in een snel overzicht van wat er gaande is op een bepaalde dag en helpt in het vinden van overlappende timers. Door de muis cursor boven iedere timerbox te plaatsen zal er een tooltip weergegeven worden die de timers titel, prioriteit, levensduur en lengte van opname zal tonen</p><p>Onder de lijst kunt u de timer lijst vinden die u enige informatie toont van de timers. U kunt lijst opsomming veranderen door op het kopje van de kolom te klikken.</p><p>Voor iedere timer heeft u de volgende opties: <dl><dt>De activiteit instellen</dt><dd>door te klikken op \"Ja\", \"Nee\", \"VPS\" of \"Auto\" in de \"Aktief\" kolom.</dd><dt>Om snel de prioriteit en levensduur te tonen</dt><dd> Door de muis cursor over de timers titel te bewegen</dd><dt>kunt u de EPG informatie tonen .</dt><dd>Timers die zijn ingesteld op <span class=\"ref_label\">AutoTimer Controle</span> tot \"Transmissie Identificatie\" zal de overeenkomstige EPG informatie tonen als u klikt op de timer titel.</dd><dt>Bewerken van een timer</dt><dd>U kunt een timer bewerken door te klikken op<img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Verwijder de timer</dt><dd> Om een timer te verwijderen klik op <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Iedere timers activiteit wordt getoond door verschillend gekleurde vakjes (in de overzichtslijst) of beelden (in de lijst overzicht):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK en zal worden opgenomen.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timers die elkaar overlappen. dit is geen probleem zolang er voldoende DVB kaarten aanwezig zijn om gelijktijdig te kunne opnemen.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> De timer overlapt en zal hoogstwaarschijnlijk <strong>niet</strong> worden opgenomen.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is niet aktief.</p><p>Naast deze functies kunt u een nieuwe timer toevoegen door op boven in<input type=\"submit\" class=\"submit\" value=\"New Timer\"/> te klikken en u kunt een aantal timers verwijderen door eenmaal op het selectie vakje in de laatste kolom te klikken en dan op <input type=\"submit\" class=\"submit\" value=\"Verwijder geselecteerde timers\"/>.</p> te klikken." -msgid "Auto" -msgstr "Auto" +msgid "<p>Here you can edit a timer's settings.</p>" +msgstr "<p>Hier kunt u de timer instellingen bewerken.</p>" -msgid "activate" -msgstr "Activeren" +msgid "Timer Active:" +msgstr "Actieve timers:" -msgid "inactivate" -msgstr "niet aktief" +msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." +msgstr "Activeer of deactiveer deze timer. Gedeactiveerde timers worden wel bewaard in de timer lijst zodat deze wel weer geactiveerd kunnen worden, maar ondertussen nemen ze niets op." -msgid "selected timers" -msgstr "Geselecteerde timers" +msgid "AutoTimer Checking:" +msgstr "Auto timer controle" -msgid "Delete Selected Timers" -msgstr "Verwijder geselecteerde timers" +msgid "Depending on how this timer has been programmed you have up to three possible settings:" +msgstr "Afhankelijk van hoe deze timer is geprogrammeerd heeft u tot en met drie mogelijkheden:" -msgid "No timers defined!" -msgstr "Geen timers opgegeven!" +msgid "Transmission Identification" +msgstr "Verzend identificatie" -msgid "EPG Search Blacklists" -msgstr "EPG zoeken zwarte lijsten" +msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." +msgstr "Gebruik deze timer door de EPG informatie in de gaten te houden. Let op! dit werkt alleen als de informatie een vaste en unieke waarde heeft. Deze optie is niet beschikbaar met timers geprogrammeerd in VDR." -msgid "New Blacklist" -msgstr "Nieuwe zwarte lijst" +msgid "Time" +msgstr "Tijd" -msgid "Search pattern" -msgstr "Zoek patroon" +msgid "Monitor this timer using the start and stop time." +msgstr "Gebruik deze timer door gebruikt te maken van de start en stop tijd." -msgid "From" -msgstr "van" +msgid "off" +msgstr "Uit " -msgid "To" -msgstr "Naar" +msgid "Do not monitor this timer." +msgstr "Houd deze timer niet in de gaten." -msgid "Delete blacklist?" -msgstr "Verwijder zwarte lijst?" +msgid "The channel to record." +msgstr "Het op te nemen kanaal." -msgid "Delete Selected Blacklists" -msgstr "Verwijder geselecteerde zwarte lijst" +msgid "Day Of Recording:" +msgstr "Dag van opname" -msgid "Delete all selected blacklists?" -msgstr "Verwijder alle geselecteerde zwarte lijsten?" +msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." +msgstr "De dag dat de timer aktief word. U kunt de dag op twee manieren invoeren. <ul><li>Met twee cijfers (DD). Deze zal gebruik maken van de huidige maand en jaar .</li><li>ISO norm (YYYY-MM-DD). Programmeer de timer zo ver in de toekomst als u wilt. </li></ul>In het geval u een herhalende timer wilt programmeren kunt u gebruik maken van de zeven aanvink vakjes onder het tekstveld. Vink het vakje aan voor iedere dag dat u de timer aktief wilt hebben." -msgid "EPG search" -msgstr "Auto timer" +msgid "Start Time:" +msgstr "Start tijd:" -msgid "Use template" -msgstr "Gebruik sjabloon" +msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Dit is de tijd dat de timer moet beginnen met opnemen. Het eerste veld is voor \"uur\", de tweede voor de \"minuten\"." -msgid "New Search" -msgstr "Nieuwe zoekopdracht" +msgid "End Time:" +msgstr "Eind tijd" -msgid "Action" -msgstr "Aktie" +msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Dit is de tijd dat de timer moet stoppen met opnemen. Het eerste veld is voor \"uur\", de tweede voor de \"minuten\"." -msgid "Find" -msgstr "Vinden" +msgid "Title of Recording:" +msgstr "Titel van opname:" -msgid "Show Favorites" -msgstr "Toon favorieten" +msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." +msgstr "De <strong>bestandsnaam</strong> die de timer aan de opname zal geven. Als de naam sub mappen zal bevatten dan zullen deze gescheiden worden door '~'(aangezien het '/' karakter een leesteken kan zijn in een programma naam).<br /><br /> Als de speciale sleutelwoorden<strong>TITEL</strong> en <strong>AFLEVERING</strong> aanwezig zijn zullen deze vervangen worden door de titel en aflevering informatie uit de EPG informatie op het tijdstip van opname (als de gegevens beschikbaar zijn). Als deze informatie niet beschikbaar is dan zal <strong>TITEL</strong> vervangen worden door de naam van het kanaal en <strong>AFLEVERING</strong> zal leeg blijven." -msgid "Delete Selected Searches" -msgstr "Verwijder geselecteerde zoek opdrachten" +msgid "Summary:" +msgstr "Omschrijving:" -msgid "Delete all selected searches?" -msgstr "Verwijder alle geselecteerde zoek opdrachten?" +msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." +msgstr "Aanvullende informatie die een beschrijving geeft van de opname gemaakt door deze timer. Als dit veld niet leeg is dan zal de inhoud geschreven worden naar <span class=\"ref_file\">summary.vdr</span> of <span class=\"ref_file\">info.vdr</span> bestand behorende bij deze opname." -msgid "Execute Selected Searches" -msgstr "Uitvoeren geselecteerde zoek opdrachten" +msgid "Your Browser does not support frames!" +msgstr "UW browser ondersteund geen frames!" -msgid "Duration" -msgstr "Duur" +msgid "What's On Now?" +msgstr "Wat is er nu op?" -msgid "Template:" -msgstr "Sjabloon:" +msgid "Playing Today?" +msgstr "Speelt vandaag?" -msgid "Also used for other EPG views!" -msgstr "Word ook gebruikt voor andere EPG" +msgid "Remote Control" +msgstr "Afstands bediening " -msgid "Bandwidth of Streams:" -msgstr "Bandbreedte van streams:" +msgid "Watch TV" +msgstr "TV bekijken" -msgid "URL:" -msgstr "URL:" +msgid "Commands" +msgstr "Commando's" -msgid "Title:" -msgstr "Titel:" +msgid "Search" +msgstr "Zoeken" -msgid "User-defined search:" -msgstr "Gebruikers definieert zoeken" +msgid "Authorization Required" +msgstr "Toestemming benodigd" -msgid "In \"AutoTimer\"?" -msgstr "In \"AutoTimer\"?" +msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." +msgstr "De server kon niet controleren of u toestemming heeft om dit document te lezen. Waarschijnlijk heeft u een foutief wachtwoord gegeven of uw browser kan niet met wachtwoorden overweg." -msgid "Apply" -msgstr "Toepassen" +msgid "VPS" +msgstr "VPS" msgid "close" msgstr "sluiten" @@ -1243,23 +1093,77 @@ msgstr "Video tracks:" msgid "Audio tracks:" msgstr "Audio sporen:" +msgid "Video tracks" +msgstr "Video sporen:" + +msgid "Audio tracks" +msgstr "Audio sporen" + +msgid "TV select" +msgstr "Selecteer programma" + +msgid "Stream" +msgstr "Stream" + +msgid "Channel group:" +msgstr "Kanaal groep:" + +msgid "Go!" +msgstr "Ga!" + +msgid "Search for other show times" +msgstr "Zoek naar andere programma tijden" + +msgid "No Information" +msgstr "Geen informatie" + +msgid "No EPG information available" +msgstr "Geen informatie EPG informatie beschikbaar" + +msgid "Playing Today" +msgstr "Programma vandaag " + +msgid "starting at" +msgstr "start om" + +msgid "What's on:" +msgstr "Wat is er op:" + +msgid "at" +msgstr "om" + msgid "now" msgstr "nu" msgid "to" msgstr "naar " +msgid "Duration:" +msgstr "Duur:" + +msgid "min" +msgstr "min" + msgid "at:" msgstr "om:" msgid "You need JavaScript to use the timeline!" msgstr "U heeft Javascript nodig om de tijdlijn te gebruiken! " -msgid "Authorization Required" -msgstr "Toestemming benodigd" +msgid "Rename Recording" +msgstr "Hernoemen opname" -msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." -msgstr "De server kon niet controleren of u toestemming heeft om dit document te lezen. Waarschijnlijk heeft u een foutief wachtwoord gegeven of uw browser kan niet met wachtwoorden overweg." +msgid "Original Name of Recording:" +msgstr "Originele naam van de opname: " + +msgid "New Name of Recording:" +msgstr "Nieuwe naam van de opname:" + +msgid "Subtitle:" +msgstr "Ondertitel:" + +msgid "Rename" +msgstr "Hernoemen" msgid "Total:" msgstr "Totaal:" @@ -1270,6 +1174,9 @@ msgstr "u" msgid "Free:" msgstr "Vrij:" +msgid "Date" +msgstr "Datum" + msgid "Total" msgstr "Totaal" @@ -1291,6 +1198,9 @@ msgstr "Verversen" msgid "Commands:" msgstr "Commando's:" +msgid "Really run this command?" +msgstr "Dit commando echt uitvoeren?" + msgid "Delete Selected Recordings" msgstr "Geselecteerde opnames verwijderen" @@ -1300,6 +1210,105 @@ msgstr "Alle geselecteerde opnames verwijderen?" msgid "No recordings available" msgstr "Geen opnames beschikbaar" +msgid "Transponder:" +msgstr "Transponder:" + +msgid "CA-System:" +msgstr "CA-Systeem:" + +msgid "New Timer" +msgstr "Nieuwe timer" + +msgid "Edit timer status?" +msgstr "Timer status bewerken?" + +msgid "This timer is inactive!" +msgstr "Deze timer is niet aktief!" + +msgid "This timer is impossible!" +msgstr "Deze timer is niet mogelijk!" + +msgid "No more timers on other transponders possible!" +msgstr "Geen andere timers op andere transponders mogelijk!" + +msgid "Timer OK." +msgstr "Timer OK." + +msgid "Auto" +msgstr "Auto" + +msgid "activate" +msgstr "Activeren" + +msgid "inactivate" +msgstr "niet aktief" + +msgid "selected timers" +msgstr "Geselecteerde timers" + +msgid "Delete Selected Timers" +msgstr "Verwijder geselecteerde timers" + +msgid "No timers defined!" +msgstr "Geen timers opgegeven!" + +msgid "Create New Timer" +msgstr "Nieuwe timer instellen" + +msgid "Buffer:" +msgstr "Buffer:" + +msgid "Use VPS:" +msgstr "Gebruik VPS" + +msgid "readonly" +msgstr "Alleen lezen" + +msgid "Timer has been set by AutoTimer pattern:" +msgstr "De timer is ingesteld door de auto timer zoek opdracht:" + +msgid "TV" +msgstr "TV" + +msgid "Interval:" +msgstr "Interval:" + +msgid "sec." +msgstr "sec." + +msgid "G" +msgstr "G" + +msgid "Grab the picture!" +msgstr "Snapshot maken!" + +msgid "Size:" +msgstr "Grootte:" + +msgid "Open in separate window" +msgstr "In apart venster openen" + +msgid "VDR Commands" +msgstr "VDR Commando's:" + +msgid "Export channels as playlist:" +msgstr "Exporteer de kanalen als afspeellijst" + +msgid "Number of lines to show:" +msgstr "Aantal te tonen regels:" + +msgid "unlimited" +msgstr "Onbeperkt" + +msgid "SVDRP commands:" +msgstr "SVDRP commando's:" + +msgid "Commands defined in commands.conf:" +msgstr "Commando's gedefinieerd in commands.conf:" + +msgid "Output" +msgstr "Uitvoer" + msgid "What's your VDR hostname (e.g video.intra.net)?" msgstr "Wat de de hostnaam van de VDR (b.v. video.intra.net)?" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ru\n" "Report-Msgid-Bugs-To: Andreas Mair <andreas@vdr-developer.org>\n" -"POT-Creation-Date: 2008-12-18 08:25+0100\n" +"POT-Creation-Date: 2009-12-30 13:26+0100\n" "PO-Revision-Date: 2006-10-27 15:42+0100\n" "Last-Translator: Oleg Roitburd <oleg@roitburd.de>\n" "Language-Team: Allrussian <LL.org>\n" @@ -19,181 +19,109 @@ msgstr "" msgid "ISO-8859-1" msgstr "ISO-8859-5" -msgid "What's On Now?" -msgstr " ?" - -#, fuzzy -msgid "Channel group:" -msgstr " :" - -msgid "What's on:" -msgstr " :" - -msgid "at" -msgstr "" - -msgid "o'clock" -msgstr "" - -msgid "More Information" -msgstr " " - -msgid "Channels" -msgstr "" - -msgid "Stream" -msgstr "Stream" +msgid "About" +msgstr "O" -msgid "TV select" -msgstr "TV " +msgid "License" +msgstr "" -msgid "Search for other show times" -msgstr " " +msgid "Authors" +msgstr "" -msgid "No Information" -msgstr " " +msgid "Current author (VDRAdmin-AM branch):" +msgstr " (VDRAdmin-AM branch):" -msgid "Edit" -msgstr "" +msgid "Original author (VDRAdmin):" +msgstr " (VDRAdmin):" -msgid "Record" -msgstr " " +msgid "Translation Team" +msgstr " " -msgid "No EPG information available" -msgstr " EPG " +msgid "English:" +msgstr ":" -#, fuzzy -msgid "Edit EPG" -msgstr "" +msgid "German:" +msgstr ":" -msgid "Help" -msgstr "" +msgid "French:" +msgstr ":" -msgid "Channel" -msgstr "" +msgid "At the moment unmaintained, former translations by:" +msgstr " , :" -msgid "Time" -msgstr "" +msgid "Spanish:" +msgstr ":" -msgid "Title" -msgstr "" +msgid "Finnish:" +msgstr ":" -msgid "Subtitle" -msgstr "" +msgid "Dutch:" +msgstr ":" -msgid "Description" -msgstr "" +msgid "Russian:" +msgstr "" -msgid "VPS" -msgstr "VPS" +msgid "Czech:" +msgstr ":" -#, fuzzy -msgid "Video tracks" -msgstr " " +msgid "Italian:" +msgstr "" #, fuzzy -msgid "Audio tracks" -msgstr " " - -msgid "Save" -msgstr "" - -msgid "Cancel" -msgstr "" - -msgid "Edit Timer" -msgstr " " - -msgid "<p>Here you can edit a timer's settings.</p>" -msgstr "<p><p> .</p>" - -msgid "Timer Active:" -msgstr " :" - -msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." -msgstr " . , . ." - -msgid "AutoTimer Checking:" -msgstr " :" - -msgid "Depending on how this timer has been programmed you have up to three possible settings:" -msgstr " 3 :" - -msgid "Transmission Identification" -msgstr " " - -msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." -msgstr " , EPG. , , , EPG ! , VDR." +msgid "Information" +msgstr "" -msgid "Monitor this timer using the start and stop time." -msgstr " ." +msgid "VDRAdmin-AM version:" +msgstr " VDRAdmin-AM:" -msgid "off" -msgstr "." +msgid "VDR version:" +msgstr " VDR:" -msgid "Do not monitor this timer." -msgstr " ." +msgid "Supported features in VDR:" +msgstr " VDR:" -msgid "Channel:" -msgstr ":" +msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgstr "EPG (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgid "The channel to record." -msgstr " ." +msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgstr "LiveTV Streaming (<a href=\"http://www.free-x.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>" -msgid "Day Of Recording:" -msgstr " :" +msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgstr " (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." -msgstr ", . 2 : <ul><li> 2 (TT)( ) </li><li>ISO-norm (JJJJ-MM-TT)( ).</li></ul> , 7 , . , ." +msgid "Getting Help and Reporting Bugs" +msgstr " " -msgid "Start Time:" -msgstr ":" +msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." +msgstr " , , . <img src=\"bilder/help.png\" alt=\"\" />." -msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr " - . , ." +msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" +msgstr " , <a href=\"http://www.allrussian.info/board.php?boardid=61 \"target=\"_blank\">Allrussian VDR </a>. :" -msgid "End Time:" -msgstr ":" +msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." +msgstr " , , <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking </a>. , ." -msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr " . , ." +msgid "AutoTimer" +msgstr "" msgid "Priority:" msgstr ":" -msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." -msgstr " 0 99, <strong></strong> . <strong>0</strong> , <strong>99</strong> . , , , 2 . . <br /><br /> , , , , . <br /><br /> DVB- , ." - msgid "Lifetime:" msgstr " :" -msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." -msgstr "<strong></strong> , o o . <strong>0</strong> , . <strong>99</strong> , . <strong>1 98</strong> , , . " - -msgid "Title of Recording:" -msgstr " :" - -msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." -msgstr "<strong> </strong>, . , '~', '/' .<br /><br /> <strong>TITLE</strong> <strong>EPISODE</strong> , , EPG , EPG. , <strong>TITLE</strong> , <strong>EPISODE</strong> ." - -msgid "Summary:" -msgstr " :" - -msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." -msgstr " , . , <span class=\"ref_file\">summary.vdr</span> <span class=\"ref_file\">info.vdr</span> ." - -msgid "Go!" -msgstr "!" - -msgid "AutoTimer" -msgstr "" - msgid "New AutoTimer" msgstr " " +msgid "Help" +msgstr "" + msgid "Active" msgstr "" +msgid "Channel" +msgstr "" + msgid "Start" msgstr "" @@ -212,6 +140,9 @@ msgstr "" msgid "No" msgstr "" +msgid "Edit" +msgstr "" + msgid "Delete timer?" msgstr " ?" @@ -230,33 +161,6 @@ msgstr " ?" msgid "No AutoTimers defined!" msgstr "AutoTimer " -msgid "VDR Commands" -msgstr "VDR :" - -msgid "Export channels as playlist:" -msgstr "" - -msgid "Number of lines to show:" -msgstr " :" - -msgid "unlimited" -msgstr " " - -msgid "SVDRP commands:" -msgstr "SVDRP :" - -msgid "Run" -msgstr "" - -msgid "Really run this command?" -msgstr " ?" - -msgid "Commands defined in commands.conf:" -msgstr " commands.conf:" - -msgid "Output" -msgstr "" - msgid "Add New AutoTimer" msgstr " " @@ -275,6 +179,15 @@ msgstr " :" msgid "Search in:" msgstr " :" +msgid "Title" +msgstr "" + +msgid "Subtitle" +msgstr "" + +msgid "Description" +msgstr "" + msgid "Search only on these days:" msgstr " :" @@ -299,12 +212,18 @@ msgstr "" msgid "Sunday" msgstr "" +msgid "Channel:" +msgstr ":" + msgid "all" msgstr "" msgid "Starts After:" msgstr " :" +msgid "o'clock" +msgstr "" + msgid "Ends Before:" msgstr " :" @@ -329,9 +248,15 @@ msgstr " :" msgid "Directory:" msgstr ":" +msgid "Save" +msgstr "" + msgid "Test" msgstr "" +msgid "Cancel" +msgstr "" + msgid "Broadcasted" msgstr "" @@ -341,141 +266,264 @@ msgstr " " msgid "No matches found!" msgstr " !" -msgid "About" -msgstr "O" +msgid "Configuration" +msgstr "" -msgid "License" +msgid "General Settings" +msgstr " " + +msgid "Template:" +msgstr ":" + +msgid "Skin:" +msgstr ":" + +msgid "Login Page:" +msgstr " :" + +msgid "Number of channels to use:" +msgstr " :" + +msgid "Local net (no login required):" +msgstr " ( ):" + +msgid "Language:" +msgstr ":" + +msgid "Save settings on exit:" +msgstr " >" + +msgid "VDR" +msgstr "VDR" + +msgid "Number of DVB cards:" +msgstr " DVB-:" + +msgid "Path to recordings:" +msgstr " :" + +msgid "Path to configuration files:" +msgstr " :" + +msgid "Path to EPG images:" +msgstr " EPG-:" + +msgid "Identification" +msgstr "" + +msgid "Username:" +msgstr ":" + +msgid "Password:" +msgstr ":" + +msgid "Guest Account:" +msgstr " :" + +msgid "Guest Username:" +msgstr " :" + +msgid "Guest Password:" +msgstr " :" + +msgid "Timeline" +msgstr " " + +msgid "Hours:" +msgstr ":" + +msgid "Times:" +msgstr ":" + +msgid "Also used for other EPG views!" +msgstr " EPG" + +msgid "Tooltips:" +msgstr ":" + +msgid "Active:" +msgstr ":" + +msgid "Send email after programming timer:" +msgstr " E-Mail :" + +msgid "Send email as:" +msgstr "E-Mail :" + +msgid "Send email to:" +msgstr "O E-Mail :" + +msgid "Mail server:" +msgstr "Mail :" + +msgid "SMTPAuth user:" +msgstr " SMTPAuth:" + +msgid "SMTPAuth password:" +msgstr " SMTPAuth:" + +msgid "Track schedule changes by:" msgstr "" -msgid "Authors" -msgstr "" +msgid "Broadcast time" +msgstr "" -msgid "Current author (VDRAdmin-AM branch):" -msgstr " (VDRAdmin-AM branch):" +msgid "Event id" +msgstr "" -msgid "Original author (VDRAdmin):" -msgstr " (VDRAdmin):" +msgid "Timer" +msgstr "" -msgid "Translation Team" -msgstr " " +msgid "Tooltips in timeline:" +msgstr " :" -msgid "English:" -msgstr ":" +msgid "Tooltips in list:" +msgstr " :" -msgid "German:" -msgstr ":" +msgid "Streaming" +msgstr "" -msgid "French:" -msgstr ":" +msgid "Live Streaming:" +msgstr " LiveTV:" -msgid "At the moment unmaintained, former translations by:" -msgstr " , :" +msgid "HTTP Port of Streamdev (also possible 3000/ts):" +msgstr "Streamdev HTTP ( 3000/ts):" -msgid "Spanish:" -msgstr ":" +msgid "Recordings Streaming:" +msgstr " (Streaming):" -msgid "Finnish:" -msgstr ":" +msgid "Path to VDR Recordings on your workstation:" +msgstr " VDR :" -msgid "Dutch:" -msgstr ":" +msgid "MIME type for live streaming:" +msgstr " MIME LiveTV:" -msgid "Russian:" -msgstr "" +msgid "Suffix for live streaming:" +msgstr " LiveTV:" -msgid "Czech:" -msgstr ":" +msgid "MIME type for recordings streaming:" +msgstr " MIME :" -msgid "Italian:" +msgid "Suffix for recordings streaming:" +msgstr " :" + +msgid "Bandwidth of Streams:" +msgstr " :" + +#, fuzzy +msgid "External Search" +msgstr " " + +msgid "URL:" msgstr "" #, fuzzy -msgid "Information" -msgstr "" +msgid "Title:" +msgstr "" -msgid "VDRAdmin-AM version:" -msgstr " VDRAdmin-AM:" +#, fuzzy +msgid "User-defined search:" +msgstr " !" -msgid "VDR version:" -msgstr " VDR:" +msgid "Expert" +msgstr "" -msgid "Supported features in VDR:" -msgstr " VDR:" +msgid "Update EPG data in background:" +msgstr "" -msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgstr "EPG (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgid "Update EPG every:" +msgstr "" -msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgstr "LiveTV Streaming (<a href=\"http://www.free-x.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>" +msgid "Channel Selections" +msgstr " " -msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgstr " (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgid "Show channels without EPG information:" +msgstr "" -msgid "Getting Help and Reporting Bugs" -msgstr " " +msgid "In \"AutoTimer\"?" +msgstr " \"\"?" -msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." -msgstr " , , . <img src=\"bilder/help.png\" alt=\"\" />." +msgid "Apply" +msgstr "" -msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" -msgstr " , <a href=\"http://www.allrussian.info/board.php?boardid=61 \"target=\"_blank\">Allrussian VDR </a>. :" +#, fuzzy +msgid "EPG Search Blacklists" +msgstr " :" -msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." -msgstr " , , <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking </a>. , ." +#, fuzzy +msgid "New Blacklist" +msgstr " :" -msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" -msgstr "<p> .</p><p> VDRAdmin-AM. , Electronic Program Guide (EPG). e VDR. , .</p>" +msgid "Search pattern" +msgstr " " -msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." -msgstr " . , . \"\", ." +msgid "From" +msgstr "" -msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Only broadcasts will match if they contain <strong>all</strong> items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as Blacklist-string) or only one episode (when using \"Enterprise~Azati Prime\" as Blacklist-string)." -msgstr " , - .<br /> . . , <strong></strong> . <br /> , EPG , .<br /> \"regular expressions\". VDRAdmin-AM ( ).<br /><br /> , , <i>vdradmind.bl</i>, . VDRAdmin-AM. <u>title</u>, <u>title~subtitle</u> EPG , . ." +msgid "To" +msgstr "" -msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." -msgstr " EPG, VDRAdmin-AM ." +#, fuzzy +msgid "Delete blacklist?" +msgstr " :" -msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." -msgstr " , ." +#, fuzzy +msgid "Delete Selected Blacklists" +msgstr " " -msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." -msgstr ", . \"\" . \"\". " +#, fuzzy +msgid "Delete all selected blacklists?" +msgstr " ?" -msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr " . , ." +msgid "EPG search" +msgstr " " -msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr " . , ." +msgid "EPG Search" +msgstr " " -msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." -msgstr " \"\", AutoTimer / . " +#, fuzzy +msgid "Use template" +msgstr " " -msgid "The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG." -msgstr " , VDRAdmin-AM EPG." +msgid "New Search" +msgstr " " -msgid "The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG." -msgstr " , VDRAdmin-AM EPG." +#, fuzzy +msgid "Edit Template" +msgstr ":" -msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." -msgstr " , , VDRAdmin-AM EPG ." +msgid "Settings" +msgstr "" -msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." -msgstr " , VDRAdmin-AM , . , ." +msgid "Action" +msgstr "" -msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." -msgstr " A . , '~' ( '/' ).<br />VDRAdmin-AM e ( \"\" ) .<br /><br /> , , <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - .</li><li>%Subtitle% - .</li><li>%Director% - e .</li><li>%Date% - .</li><li>%Category% - ( //...).</li><li>%Genre% - (//....).</li><li>%Year% - .</li><li>%Country% - .</li><li>%Originaltitle% - .</li><li>%FSK% - .</li><li>%Episode% - .</li><li>%Rating% - EPG.</li></ul><h4>:</h4> , <strong> </strong> ! VDRAdmin-AM ." +msgid "Find" +msgstr "" -msgid "Timer" -msgstr "" +msgid "Show Favorites" +msgstr " " -msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" -msgstr "<p> e , VDR.</p><p> e . , . Ԩ , , , .</p><p> . , .</p><p> :<dl><dt> </dt><dd> \"\", \"\", \"VPS\" \"\" \"\".</dd><dt> </dt><dd> .</dd><dt> EPG-</dt><dd> <span class=\"ref_label\" </span>\" \" EPG-, .</dd><dt> </dt><dd> , <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt> </dt><dd> <img src=\"bilder/delete.png\"alt=\"delete\" />.</dd></dl></p><p> : <br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> .<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> . , DVB- .<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot. png\" alt=\"impossible\" align=\"middle\" /> .<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau. png\" alt=\"inactive\" align=\"middle\" /> .</p><p> , <input type=\"submit\" class=\"submit\" value=\" \"/>. Ԩ <input type=\"submit\" class=\"submit\" value=\" \"/>, .</p><p> .</p>" +msgid "Delete Selected Searches" +msgstr " " -msgid "Playing Today" -msgstr " ?" +msgid "Delete all selected searches?" +msgstr " ?" -msgid "starting at" -msgstr " " +msgid "Execute Selected Searches" +msgstr " " + +msgid "Duration" +msgstr "" + +msgid "More Information" +msgstr " " + +msgid "Channels" +msgstr "" + +msgid "Record" +msgstr " " #, fuzzy msgid "Add New Blacklist" @@ -489,10 +537,6 @@ msgstr " :" msgid "Add New Template" msgstr " " -#, fuzzy -msgid "Edit Template" -msgstr ":" - msgid "Add New Search" msgstr " " @@ -508,9 +552,6 @@ msgstr "" msgid "Hide results" msgstr " " -msgid "Settings" -msgstr "" - #, fuzzy msgid "Name:" msgstr "" @@ -699,265 +740,147 @@ msgstr " ?" msgid "Save as template" msgstr " " -msgid "Create New Timer" -msgstr " " - -msgid "Buffer:" -msgstr ":" - -msgid "Use VPS:" -msgstr " VPS:" - -msgid "readonly" -msgstr " " - -msgid "Timer has been set by AutoTimer pattern:" -msgstr " :" - -msgid "No Help Available" -msgstr " " - -msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgstr "<p> . <a href=\"mailto:freex@free-x.de\">freex@free-x.de</a>.</p>" +msgid "Run" +msgstr "" msgid "Error!" msgstr "!" -msgid "TV" -msgstr "TV" +msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" +msgstr "<p> e , VDRAdmin-AM.</p><p> . , . </p><p> :<dl><dt> </dt><dd> \"\" \"\" \"\".</dd><dt> </dt><dd> .</dd><dt> </dt><dd> , e <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt> </dt><dd> <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p> :<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> .<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> .</p><p> , <input type=\"submit\" class=\"submit\" value=\" \"/>. e <input type=\"submit\" class=\"submit\" value=\" \"/>, .</p><p> <input type=\"submit\" class=\"submit\" value=\" \"/> VDRAdmin-AM VDR EPG .</p>" -msgid "Interval:" -msgstr ":" +msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgstr "<p> .</p><p> VDRAdmin-AM. , Electronic Program Guide (EPG). e VDR. , .</p>" -msgid "sec." -msgstr "." +msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." +msgstr " . , . \"\", ." -msgid "G" -msgstr "G" +msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Broadcasts will match only if they match <strong>all</strong> configured search items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as blacklist string) or only one episode (when using \"Enterprise~Azati Prime\" as blacklist string)." +msgstr " , - .<br /> . . , <strong></strong> . <br /> , EPG , .<br /> \"regular expressions\". VDRAdmin-AM ( ).<br /><br /> , , <i>vdradmind.bl</i>, . VDRAdmin-AM. <u>title</u>, <u>title~subtitle</u> EPG , . ." -msgid "Grab the picture!" -msgstr " !" +msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." +msgstr " EPG, VDRAdmin-AM ." -msgid "Size:" -msgstr ":" +msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." +msgstr " , ." -msgid "Open in separate window" -msgstr " " +msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." +msgstr ", . \"\" . \"\". " -msgid "Playing Today?" -msgstr " ?" +msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr " . , ." -msgid "Timeline" -msgstr " " +msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr " . , ." -msgid "EPG Search" -msgstr " " +msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." +msgstr " \"\", AutoTimer / . " -msgid "Recordings" -msgstr "" +msgid "The number of minutes VDRAdmin-AM subtracts from the broadcast's start time found in the EPG." +msgstr " , VDRAdmin-AM EPG." -msgid "Remote Control" -msgstr " " +msgid "The number of minutes VDRAdmin-AM adds to the broadcast's stop time found in the EPG." +msgstr " , VDRAdmin-AM EPG." -msgid "Watch TV" -msgstr "" +msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." +msgstr " 0 99, <strong></strong> . <strong>0</strong> , <strong>99</strong> . , , , 2 . . <br /><br /> , , , , . <br /><br /> DVB- , ." -msgid "Commands" -msgstr "" +msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." +msgstr "<strong></strong> , o o . <strong>0</strong> , . <strong>99</strong> , . <strong>1 98</strong> , , . " -msgid "Configuration" -msgstr "" +msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." +msgstr " , , VDRAdmin-AM EPG ." -msgid "Search" -msgstr "" +msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." +msgstr " , VDRAdmin-AM , . , ." + +msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." +msgstr " A . , '~' ( '/' ).<br />VDRAdmin-AM e ( \"\" ) .<br /><br /> , , <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - .</li><li>%Subtitle% - .</li><li>%Director% - e .</li><li>%Date% - .</li><li>%Category% - ( //...).</li><li>%Genre% - (//....).</li><li>%Year% - .</li><li>%Country% - .</li><li>%Originaltitle% - .</li><li>%FSK% - .</li><li>%Episode% - .</li><li>%Rating% - EPG.</li></ul><h4>:</h4> , <strong> </strong> ! VDRAdmin-AM ." msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" msgstr "<p> , , (Streaming).</p>" -msgid "General Settings" -msgstr " " - -msgid "VDR" -msgstr "VDR" - -msgid "Identification" -msgstr "" - -msgid "Streaming" -msgstr "" - -msgid "Expert" -msgstr "" - -#, fuzzy -msgid "External Search" -msgstr " " - -msgid "Channel Selections" -msgstr " " - -msgid "Skin:" -msgstr ":" - msgid "The skin you want to use." msgstr " ." -msgid "Login Page:" -msgstr " :" - msgid "The page you want to see at first connect to VDRAdmin-AM." msgstr ", VDRAdmin-AM" -msgid "Number of channels to use:" -msgstr " :" - msgid "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." msgstr "VDRAdmin-AM VDR . EPG , VDRAdmin-AM, .<strong>0</strong> VDRAdmin-AM ." -msgid "Local net (no login required):" -msgstr " ( ):" - msgid "Here you can specify an IP address or range that can login without providing login information. For example: \"192.168.0.0/24\" will include any IP starting with \"192.168.0\", \"192.168.0.123/32\" will only match \"192.168.0.123\"." msgstr " IP IP , .: \"192.168.0.0/24\" IP, \"192.168.0\".\"192.168.0.123/32\" IP \"192.168.0.123\"." -msgid "Language:" -msgstr ":" - msgid "Here you can set the localization VDRAdmin-AM should use." msgstr " , VDRAdmin-AM." -msgid "Save settings on exit:" -msgstr " >" - msgid "With this option the settings will be saved if VDRAdmin-AM exits. This will also save settings not available on the \"Configuration\" menu like interval and size in TV, sorting in the lists and current view in \"What's on now\"." msgstr " . \"\"." msgid "Top" msgstr "" -msgid "Number of DVB cards:" -msgstr " DVB-:" - msgid "The number of DVB cards VDR can access. Depending on this value VDRAdmin-AM will calculate critical timers in the <span class=\"ref_menu\">Timer</span> menu." msgstr " DVB , VDR. , VDRAdmin-AM <span class=\"ref_menu\"></span> " -msgid "Path to recordings:" -msgstr " :" - msgid "The path to VDR's recordings. It's used so that VDRAdmin-AM can locate the recordings when using <span class=\"ref_label\">Recordings Streaming</span> and <span class=\"ref_file\">reccmds.conf</span> in the <span class=\"ref_menu\">Recordings</span> menu." msgstr " VDR. VDRAdmin-AM , <span class=\"ref_label\"> </span> <span class=\"ref_file\">reccmds.conf</span> <span class=\"ref_menu\"></span> " -msgid "Path to configuration files:" -msgstr " :" - msgid "The path where VDR's configuration files are located. If this directory contains the file <span class=\"ref_file\">reccmds.conf</span> its content is shown in a selectbox in the <span class=\"ref_menu\">Recordings</span> menu." msgstr " VDR. <span class=\"ref_file\">reccmds.conf</span> , <span class=\"ref_menu\"></span> " -msgid "Path to EPG images:" -msgstr " EPG-:" - msgid "The path where the EPG images are stored." msgstr ", EPG." -msgid "Username:" -msgstr ":" - msgid "The username for the main user, i.e. the user having the most privileges." msgstr " , ." -msgid "Password:" -msgstr ":" - msgid "The main user's password." msgstr " ." -msgid "Guest Account:" -msgstr " :" - msgid "If you want a user account having only limited privileges, this is for you. The guest user cannot modify anything, it's only allowed to view the EPG, timers, AutoTimers and recordings listings." msgstr " , . , , , EPG." -msgid "Guest Username:" -msgstr " :" - msgid "The username for the guest user." msgstr " ." -msgid "Guest Password:" -msgstr " :" - msgid "The guest user's password." msgstr " ." -msgid "Hours:" -msgstr ":" - msgid "The number of hours to show in the timeline." msgstr " , ." -msgid "Times:" -msgstr ":" - msgid "A comma separated list of times in <strong>hh:mm</strong> format that appear in the selectbox placed at the top." msgstr " ܨ ( ) <strong>hh:mm</strong>, ." -msgid "Tooltips:" -msgstr ":" - msgid "Here you can (de-)activate the tooltips." msgstr " . . ." -msgid "Active:" -msgstr ":" - msgid "Activate or deactivate the AutoTimer function." msgstr " ." -msgid "Send email after programming timer:" -msgstr " E-Mail :" - msgid "VDRAdmin-AM will send an email whenever an event matches an AutoTimer and a timer has been programmed if you enable this feature." msgstr " , VDRAdmin-AM E-Mail, e " -msgid "Send email as:" -msgstr "E-Mail :" - msgid "Here you set the sending email address of the generated email." msgstr " E-mail E-mail" -msgid "Send email to:" -msgstr "O E-Mail :" - msgid "The email address the email is sent to." msgstr "E-Mail E-Mail." -msgid "Mail server:" -msgstr "Mail :" - msgid "The outgoing mail server." msgstr " ." -msgid "SMTPAuth user:" -msgstr " SMTPAuth:" - msgid "If you need to authenticate yourself at the outgoing mail server, you have to supply the username and the password below. Leaving this field empty will disable SMTPAuth." msgstr " (SMTP) , . SMTPAuth , ." -msgid "SMTPAuth password:" -msgstr " SMTPAuth:" - msgid "The password for the SMTPAuth user." msgstr " SMTPAuth." -msgid "Tooltips in timeline:" -msgstr " :" - msgid "Here you can (de-)activate the tooltips in the timeline." msgstr " . . ." -msgid "Tooltips in list:" -msgstr " :" - msgid "Here you can (de-)activate the tooltips in the list." msgstr " . . ." @@ -967,51 +890,27 @@ msgstr " EPG :" msgid "If you don't want VDRAdmin-AM to add the summary taken from EPG to new timers you can switch it off here." msgstr " , VDRAdmin-AM EPG , ." -msgid "Live Streaming:" -msgstr " LiveTV:" - msgid "Enable or disable live streaming using the <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. You also have to set the correct <span class=\"ref_label\">HTTP Port for Streamdev</span> below." msgstr " LiveTV. <a href=\"http://www.magoa.net/linux/\">streamdev </a>. <span class=\"ref_label\">Streamdev HTTP-</span>. " -msgid "HTTP Port of Streamdev (also possible 3000/ts):" -msgstr "Streamdev HTTP ( 3000/ts):" - msgid "Here you have to set the port number your VDR's streamdev server listens for connections. Additionally you can also provide the stream type you like to use." msgstr " Streamdev VDR. ." -msgid "Recordings Streaming:" -msgstr " (Streaming):" - msgid "Enable or disable streaming of recordings.<br />Well actually this is no real \"streaming\", but you have to setup your workstation so that it can access VDR's recordings. You can use for example Samba or NFS for this. VDRAdmin-AM simply generates a playlist that contains all parts of the recording and sends this to your browser. If your browser and media player are configured correctly you will see the recording on your workstation's display." msgstr " .<br /> \"\", , VDR. Samba NFS.VDRAdmin-AM , . , ." -msgid "Path to VDR Recordings on your workstation:" -msgstr " VDR :" - msgid "This is the path where your workstation can access VDR's recordings. This depends on your VDR and workstation setup, for example \"\\\\vdr\\videos\" or \"V:\\\" (on Windows) or \"/mnt/videos\" (on Linux)." msgstr ", VDR. VDR .: \"\\\\vdr\\videos\" \"V:\\\" ( Windows)\" \"/mnt/videos\" ( Linux)." -msgid "MIME type for live streaming:" -msgstr " MIME LiveTV:" - msgid "The MIME type to send when using live streaming. Defaults to \"video/x-mpegurl\"." msgstr "MIME- LiveTV. \"video/x-mpegurl\"." -msgid "Suffix for live streaming:" -msgstr " LiveTV:" - msgid "The suffix to use for live streaming. Defaults to \"m3u\"." msgstr " LiveTV. \"m3u\"." -msgid "MIME type for recordings streaming:" -msgstr " MIME :" - msgid "The MIME type to send when using recordings streaming. Defaults to \"video/x-mpegurl\"." msgstr "MIME- . \"video/x-mpegurl\"." -msgid "Suffix for recordings streaming:" -msgstr " :" - msgid "The suffix to use for recordings streaming. Defaults to \"m3u\"." msgstr " . \"m3u\"." @@ -1027,15 +926,9 @@ msgstr "" msgid "<p>This section is for experts <strong>only</strong>, i.e. you know what you are doing!</p>" msgstr "<p><p> <strong></strong> , .. !</p>" -msgid "Update EPG data in background:" -msgstr "" - msgid "If set to \"yes\" VDRAdmin-AM will periodically refresh its local EPG cache. Else the EPG will be refreshed if the user accesses any EPG view at the web interface and the timeout set at \"Update EPG every\" has been reached." msgstr "" -msgid "Update EPG every:" -msgstr "" - #, fuzzy msgid "The interval, the EPG data is refreshed from VDR and AutoTimer updates are performed (if AutoTimer feature is used)." msgstr " EPG ." @@ -1043,35 +936,15 @@ msgstr " EPG ." msgid "<p>If you want to limit the number of channels used in some parts of VDRAdmin-AM, this is for you!</p><p>Use the radio buttons to activate or deactivate the wanted channels in the named menu.</p><p>To add channels to the list of wanted channels you have to select them in the left side selectbox and click <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. If you want to remove channels from the list of wanted channels you have to select them in the right side selectbox and click <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" msgstr "<p> VDRAdmin-AM.</p><p> \"\"/\"\" .</p><p> <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. " -msgid "Show channels without EPG information:" -msgstr "" - msgid "Usually channels that don't have EPG information are hidden in all EPG views. If you don't want them to be hidden you have to set this option to \"yes\"." msgstr "" -msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" -msgstr "<p> e , VDRAdmin-AM.</p><p> . , . </p><p> :<dl><dt> </dt><dd> \"\" \"\" \"\".</dd><dt> </dt><dd> .</dd><dt> </dt><dd> , e <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt> </dt><dd> <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p> :<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> .<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> .</p><p> , <input type=\"submit\" class=\"submit\" value=\" \"/>. e <input type=\"submit\" class=\"submit\" value=\" \"/>, .</p><p> <input type=\"submit\" class=\"submit\" value=\" \"/> VDRAdmin-AM VDR EPG .</p>" - -msgid "Your Browser does not support frames!" -msgstr " !" - -msgid "Rename Recording" -msgstr " " - -msgid "Original Name of Recording:" -msgstr " :" - -msgid "New Name of Recording:" -msgstr " :" - -msgid "Subtitle:" -msgstr ":" - -msgid "Rename" -msgstr "" +msgid "Edit Timer" +msgstr " " -msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" -msgstr "<p> , VDR. VDR. </p><p> . , . . , .</p><p> :<dl><dt></dt><dd> . e .</dd><dt></dt><dd> . <strong></strong> .</dd><dt></dt><dd> . , , .</dd><dt> (<img src=\"bilder/edit.png\"alt=\"edit\" />)</dt><dd> .<br /><h4>:</h4> , VDR SVDRPort- <u>RENR</u>. VDR, . <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> <span class=\"ref_file\">enAIO-v2.2+</span> .</dd><dt> (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd> .</dd><dt> (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd> , o <span class=\"ref_label\"> </span> <span class=\"ref_menu\"></span>. .</dd></dl></p><p> , e <input type=\"submit\" class=\"submit\" value=\" \"/>.</p><p> VDR <span class=\"ref_file\">reccmds.conf</span>, e . <span class=\"ref_label\">:</span> <input type=\"submit\" class=\"submit\" value=\"\"/>.</p><p> <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> VDR.</p>" +#, fuzzy +msgid "Edit EPG" +msgstr "" #, fuzzy msgid "<p>Here you can edit the descriptive fields of an existing EPG entry.</p>" @@ -1121,142 +994,116 @@ msgstr " " msgid "If available this field shows the audio track(s). It cannot be changed." msgstr "" -msgid "Duration:" -msgstr ":" - -msgid "min" -msgstr "" - -msgid "Transponder:" -msgstr ":" - -msgid "CA-System:" -msgstr "CA-System:" - -msgid "New Timer" -msgstr " " - -msgid "Date" -msgstr "" - -msgid "Edit timer status?" -msgstr " ?" +msgid "No Help Available" +msgstr " " -msgid "This timer is inactive!" -msgstr " !" +msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgstr "<p> . <a href=\"mailto:freex@free-x.de\">freex@free-x.de</a>.</p>" -msgid "This timer is impossible!" -msgstr " !" +msgid "Recordings" +msgstr "" -msgid "No more timers on other transponders possible!" -msgstr " !" +msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" +msgstr "<p> , VDR. VDR. </p><p> . , . . , .</p><p> :<dl><dt></dt><dd> . e .</dd><dt></dt><dd> . <strong></strong> .</dd><dt></dt><dd> . , , .</dd><dt> (<img src=\"bilder/edit.png\"alt=\"edit\" />)</dt><dd> .<br /><h4>:</h4> , VDR SVDRPort- <u>RENR</u>. VDR, . <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> <span class=\"ref_file\">enAIO-v2.2+</span> .</dd><dt> (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd> .</dd><dt> (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd> , o <span class=\"ref_label\"> </span> <span class=\"ref_menu\"></span>. .</dd></dl></p><p> , e <input type=\"submit\" class=\"submit\" value=\" \"/>.</p><p> VDR <span class=\"ref_file\">reccmds.conf</span>, e . <span class=\"ref_label\">:</span> <input type=\"submit\" class=\"submit\" value=\"\"/>.</p><p> <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> VDR.</p>" -msgid "Timer OK." -msgstr " ." +msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" +msgstr "<p> e , VDR.</p><p> e . , . Ԩ , , , .</p><p> . , .</p><p> :<dl><dt> </dt><dd> \"\", \"\", \"VPS\" \"\" \"\".</dd><dt> </dt><dd> .</dd><dt> EPG-</dt><dd> <span class=\"ref_label\" </span>\" \" EPG-, .</dd><dt> </dt><dd> , <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt> </dt><dd> <img src=\"bilder/delete.png\"alt=\"delete\" />.</dd></dl></p><p> : <br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> .<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> . , DVB- .<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot. png\" alt=\"impossible\" align=\"middle\" /> .<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau. png\" alt=\"inactive\" align=\"middle\" /> .</p><p> , <input type=\"submit\" class=\"submit\" value=\" \"/>. Ԩ <input type=\"submit\" class=\"submit\" value=\" \"/>, .</p><p> .</p>" -msgid "Auto" -msgstr "" +msgid "<p>Here you can edit a timer's settings.</p>" +msgstr "<p><p> .</p>" -msgid "activate" -msgstr "" +msgid "Timer Active:" +msgstr " :" -msgid "inactivate" -msgstr "" +msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." +msgstr " . , . ." -msgid "selected timers" -msgstr " " +msgid "AutoTimer Checking:" +msgstr " :" -msgid "Delete Selected Timers" -msgstr " " +msgid "Depending on how this timer has been programmed you have up to three possible settings:" +msgstr " 3 :" -msgid "No timers defined!" -msgstr " !" +msgid "Transmission Identification" +msgstr " " -#, fuzzy -msgid "EPG Search Blacklists" -msgstr " :" +msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." +msgstr " , EPG. , , , EPG ! , VDR." -#, fuzzy -msgid "New Blacklist" -msgstr " :" +msgid "Time" +msgstr "" -msgid "Search pattern" -msgstr " " +msgid "Monitor this timer using the start and stop time." +msgstr " ." -msgid "From" -msgstr "" +msgid "off" +msgstr "." -msgid "To" -msgstr "" +msgid "Do not monitor this timer." +msgstr " ." -#, fuzzy -msgid "Delete blacklist?" -msgstr " :" +msgid "The channel to record." +msgstr " ." -#, fuzzy -msgid "Delete Selected Blacklists" -msgstr " " +msgid "Day Of Recording:" +msgstr " :" -#, fuzzy -msgid "Delete all selected blacklists?" -msgstr " ?" +msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." +msgstr ", . 2 : <ul><li> 2 (TT)( ) </li><li>ISO-norm (JJJJ-MM-TT)( ).</li></ul> , 7 , . , ." -msgid "EPG search" -msgstr " " +msgid "Start Time:" +msgstr ":" -#, fuzzy -msgid "Use template" -msgstr " " +msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr " - . , ." -msgid "New Search" -msgstr " " +msgid "End Time:" +msgstr ":" -msgid "Action" -msgstr "" +msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr " . , ." -msgid "Find" -msgstr "" +msgid "Title of Recording:" +msgstr " :" -msgid "Show Favorites" -msgstr " " +msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." +msgstr "<strong> </strong>, . , '~', '/' .<br /><br /> <strong>TITLE</strong> <strong>EPISODE</strong> , , EPG , EPG. , <strong>TITLE</strong> , <strong>EPISODE</strong> ." -msgid "Delete Selected Searches" -msgstr " " +msgid "Summary:" +msgstr " :" -msgid "Delete all selected searches?" -msgstr " ?" +msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." +msgstr " , . , <span class=\"ref_file\">summary.vdr</span> <span class=\"ref_file\">info.vdr</span> ." -msgid "Execute Selected Searches" -msgstr " " +msgid "Your Browser does not support frames!" +msgstr " !" -msgid "Duration" -msgstr "" +msgid "What's On Now?" +msgstr " ?" -msgid "Template:" -msgstr ":" +msgid "Playing Today?" +msgstr " ?" -msgid "Also used for other EPG views!" -msgstr " EPG" +msgid "Remote Control" +msgstr " " -msgid "Bandwidth of Streams:" -msgstr " :" +msgid "Watch TV" +msgstr "" -msgid "URL:" -msgstr "" +msgid "Commands" +msgstr "" -#, fuzzy -msgid "Title:" -msgstr "" +msgid "Search" +msgstr "" -#, fuzzy -msgid "User-defined search:" -msgstr " !" +msgid "Authorization Required" +msgstr " " -msgid "In \"AutoTimer\"?" -msgstr " \"\"?" +msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." +msgstr " , . " -msgid "Apply" -msgstr "" +msgid "VPS" +msgstr "VPS" msgid "close" msgstr "" @@ -1277,23 +1124,80 @@ msgstr " " msgid "Audio tracks:" msgstr " " +#, fuzzy +msgid "Video tracks" +msgstr " " + +#, fuzzy +msgid "Audio tracks" +msgstr " " + +msgid "TV select" +msgstr "TV " + +msgid "Stream" +msgstr "Stream" + +#, fuzzy +msgid "Channel group:" +msgstr " :" + +msgid "Go!" +msgstr "!" + +msgid "Search for other show times" +msgstr " " + +msgid "No Information" +msgstr " " + +msgid "No EPG information available" +msgstr " EPG " + +msgid "Playing Today" +msgstr " ?" + +msgid "starting at" +msgstr " " + +msgid "What's on:" +msgstr " :" + +msgid "at" +msgstr "" + msgid "now" msgstr "" msgid "to" msgstr "" +msgid "Duration:" +msgstr ":" + +msgid "min" +msgstr "" + msgid "at:" msgstr ":" msgid "You need JavaScript to use the timeline!" msgstr " JavaScript timeline!" -msgid "Authorization Required" -msgstr " " +msgid "Rename Recording" +msgstr " " -msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." -msgstr " , . " +msgid "Original Name of Recording:" +msgstr " :" + +msgid "New Name of Recording:" +msgstr " :" + +msgid "Subtitle:" +msgstr ":" + +msgid "Rename" +msgstr "" msgid "Total:" msgstr ":" @@ -1304,6 +1208,9 @@ msgstr "h" msgid "Free:" msgstr ":" +msgid "Date" +msgstr "" + msgid "Total" msgstr "" @@ -1325,6 +1232,9 @@ msgstr "" msgid "Commands:" msgstr ":" +msgid "Really run this command?" +msgstr " ?" + msgid "Delete Selected Recordings" msgstr " " @@ -1334,6 +1244,105 @@ msgstr " ?" msgid "No recordings available" msgstr " " +msgid "Transponder:" +msgstr ":" + +msgid "CA-System:" +msgstr "CA-System:" + +msgid "New Timer" +msgstr " " + +msgid "Edit timer status?" +msgstr " ?" + +msgid "This timer is inactive!" +msgstr " !" + +msgid "This timer is impossible!" +msgstr " !" + +msgid "No more timers on other transponders possible!" +msgstr " !" + +msgid "Timer OK." +msgstr " ." + +msgid "Auto" +msgstr "" + +msgid "activate" +msgstr "" + +msgid "inactivate" +msgstr "" + +msgid "selected timers" +msgstr " " + +msgid "Delete Selected Timers" +msgstr " " + +msgid "No timers defined!" +msgstr " !" + +msgid "Create New Timer" +msgstr " " + +msgid "Buffer:" +msgstr ":" + +msgid "Use VPS:" +msgstr " VPS:" + +msgid "readonly" +msgstr " " + +msgid "Timer has been set by AutoTimer pattern:" +msgstr " :" + +msgid "TV" +msgstr "TV" + +msgid "Interval:" +msgstr ":" + +msgid "sec." +msgstr "." + +msgid "G" +msgstr "G" + +msgid "Grab the picture!" +msgstr " !" + +msgid "Size:" +msgstr ":" + +msgid "Open in separate window" +msgstr " " + +msgid "VDR Commands" +msgstr "VDR :" + +msgid "Export channels as playlist:" +msgstr "" + +msgid "Number of lines to show:" +msgstr " :" + +msgid "unlimited" +msgstr " " + +msgid "SVDRP commands:" +msgstr "SVDRP :" + +msgid "Commands defined in commands.conf:" +msgstr " commands.conf:" + +msgid "Output" +msgstr "" + msgid "What's your VDR hostname (e.g video.intra.net)?" msgstr " VDR (, video.intra.net)?" diff --git a/po/ru_RU.utf8.po b/po/ru_RU.utf8.po index 37ebbff..351b4cd 100644 --- a/po/ru_RU.utf8.po +++ b/po/ru_RU.utf8.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ru\n" "Report-Msgid-Bugs-To: Andreas Mair <andreas@vdr-developer.org>\n" -"POT-Creation-Date: 2008-12-18 08:25+0100\n" +"POT-Creation-Date: 2009-12-30 13:26+0100\n" "PO-Revision-Date: 2006-10-27 15:42+0100\n" "Last-Translator: Oleg Roitburd <oleg@roitburd.de>\n" "Language-Team: Allrussian <LL.org>\n" @@ -19,181 +19,109 @@ msgstr "" msgid "ISO-8859-1" msgstr "UTF-8" -msgid "What's On Now?" -msgstr "Что идет сейчас?" - -#, fuzzy -msgid "Channel group:" -msgstr "Группа каналов:" - -msgid "What's on:" -msgstr "Что сейчас:" - -msgid "at" -msgstr "в" - -msgid "o'clock" -msgstr "Часов" - -msgid "More Information" -msgstr "Дополнительная информация" - -msgid "Channels" -msgstr "Телегид" - -msgid "Stream" -msgstr "Stream" +msgid "About" +msgstr "O" -msgid "TV select" -msgstr "TV переключить" +msgid "License" +msgstr "" -msgid "Search for other show times" -msgstr "Искать повторения" +msgid "Authors" +msgstr "Авторы" -msgid "No Information" -msgstr "Нет информации" +msgid "Current author (VDRAdmin-AM branch):" +msgstr "Нынешний автор (VDRAdmin-AM branch):" -msgid "Edit" -msgstr "Редактировать" +msgid "Original author (VDRAdmin):" +msgstr "Первоначальный автор (VDRAdmin):" -msgid "Record" -msgstr "Записать передачу" +msgid "Translation Team" +msgstr "Группа переводчиков" -msgid "No EPG information available" -msgstr "Нет EPG информации" +msgid "English:" +msgstr "Английский:" -#, fuzzy -msgid "Edit EPG" -msgstr "Редактировать" +msgid "German:" +msgstr "Немецкий:" -msgid "Help" -msgstr "Помощь" +msgid "French:" +msgstr "Французский:" -msgid "Channel" -msgstr "Канал" +msgid "At the moment unmaintained, former translations by:" +msgstr "В настоящее время не обновляется, прежние переводы от:" -msgid "Time" -msgstr "Время" +msgid "Spanish:" +msgstr "Испанский:" -msgid "Title" -msgstr "Заголовок" +msgid "Finnish:" +msgstr "Финский:" -msgid "Subtitle" -msgstr "Подзаголовок" +msgid "Dutch:" +msgstr "Голландский:" -msgid "Description" -msgstr "Описание" +msgid "Russian:" +msgstr "Русский" -msgid "VPS" -msgstr "VPS" +msgid "Czech:" +msgstr "Чешский:" -#, fuzzy -msgid "Video tracks" -msgstr "Видео дорожки" +msgid "Italian:" +msgstr "" #, fuzzy -msgid "Audio tracks" -msgstr "Аудио дорожки" - -msgid "Save" -msgstr "Сохранить" - -msgid "Cancel" -msgstr "Отменить" - -msgid "Edit Timer" -msgstr "Редактировать таймер" - -msgid "<p>Here you can edit a timer's settings.</p>" -msgstr "<p><p>Здесь Вы можете редактировать установки таймера.</p>" - -msgid "Timer Active:" -msgstr "Активный таймер:" - -msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." -msgstr "Активирование и деактивирование таймера. Деактивированные таймеры будут вестись дальше в списке имеющийхся в распоряжении таймеров так, что их можно активировать снова.Между тем Вы ничто не записываете." - -msgid "AutoTimer Checking:" -msgstr "Автоматическая проверка таймера:" - -msgid "Depending on how this timer has been programmed you have up to three possible settings:" -msgstr "В зависимости от того как таймер программировался Вы имеете на выбор 3 варианта:" - -msgid "Transmission Identification" -msgstr "Идентификатор передачи" - -msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." -msgstr "Таймер контролируется посредством идентификации, которая содержится в EPG. Пожалуйста, обратите внимание, что это работает только в случае, если идентификации в EPG твердая и однозначная! Эта опция недоступна, если таймер программировался в VDR." +msgid "Information" +msgstr "Информация" -msgid "Monitor this timer using the start and stop time." -msgstr "Таймер контролируется посредством его времени запуска и остановки." +msgid "VDRAdmin-AM version:" +msgstr "Версия VDRAdmin-AM:" -msgid "off" -msgstr "выкл." +msgid "VDR version:" +msgstr "Версия VDR:" -msgid "Do not monitor this timer." -msgstr "Таймер не контролируется." +msgid "Supported features in VDR:" +msgstr "Поддерживаемые улучшения в VDR:" -msgid "Channel:" -msgstr "Канал:" +msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgstr "EPG Поиск (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgid "The channel to record." -msgstr "Записываемый канал." +msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgstr "LiveTV Streaming (<a href=\"http://www.free-x.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>" -msgid "Day Of Recording:" -msgstr "День записи:" +msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgstr "Переименование записей (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." -msgstr "День, в который таймер должен сработать. День может вводиться в 2 форматах: <ul><li> 2 цифры (TT)(при этом используется текущие месяц и год) или </li><li>ISO-norm (JJJJ-MM-TT)(в этом варианте Вы можете запрограммировать таймер на любой день в будущем).</li></ul>Если Вы хотите запрограммировать повторяющиеся таймеры, тогда Вы можете применить 7 кнопок, которые находятся под текстовым полем. Просто выделите поле с названием дня недели, по которым таймер должен срабатывать." +msgid "Getting Help and Reporting Bugs" +msgstr "Получить помощь и сообщить об ошибке" -msgid "Start Time:" -msgstr "Начало:" +msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." +msgstr "Если Вам нужна помощь по данной программе, то обратитесь вначале к интерактивной помощи, которая доступна на некоторых страницах. Вы можете вызывать ее нажимая на <img src=\"bilder/help.png\" alt=\"\" />." -msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Это - время начала записи. Первое текстовое поле для часов, второе для минут." +msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" +msgstr "Если встроенная справка не дала Вам необходимую информацию, тогда Вы можете попытаться получить помощь в <a href=\"http://www.allrussian.info/board.php?boardid=61 \"target=\"_blank\">Allrussian VDR форуме</a>. Ищите для этого:" -msgid "End Time:" -msgstr "Конец:" +msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." +msgstr "Если Вы думаете, что нашли ошибку, тогда первым делом проверьте в <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking системе</a>. Если ее там нет, тогда отправьте рапорт о ней." -msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Время конца записи. Первое текстовое поле для часов, второе для минут." +msgid "AutoTimer" +msgstr "Автотаймеры" msgid "Priority:" msgstr "Приоритет:" -msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." -msgstr "Число от 0 до 99, которое указывает <strong>приоритет</strong> этого таймера и запрограммированных им записей. <strong>0</strong> имеет наименьший приоритет, а <strong>99</strong> наивысший.Приоритет используется, чтобы решать, какой таймер должен запускаться в случае, если 2 и более таймера имееют одинаковое время начала записи.Используется первый таймер в списке с наивысшим приоритетом. <br /><br />Это значение сохраняется также вместе с записью и используется позже, чтобы решать, какая запись должна удаляться, в случае, если на жестком диске нет больше места для новой записи. <br /><br />Если все DVB-карты заняты, таймер с более высоким припритетом прерывает таймер с самым низким приоритетом для начала записи." - msgid "Lifetime:" msgstr "Как долго хранить:" -msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." -msgstr "<strong>Гарантируемое</strong> количество дней хранения записи, которое былo созданo этим таймером. <strong>0</strong> означает, что эта запись автоматически удаляется в любое время записью с более высоким приоритетом. <strong>99</strong> означает, что эта запись никогда не будет удалена автоматически.Числа от <strong>1 до 98</strong> означают, что запись удалится автоматически, если указанное количество дней истекло со дня записи и на жестком диске нет больше места для новых записей. " - -msgid "Title of Recording:" -msgstr "Название записи:" - -msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." -msgstr "<strong>Имя файла</strong>, которое даст этот таймер записи. Если указываются подкаталоги, тогда они должны быть разделены с '~', так как '/' может быть частью названия регулярной передачи.<br /><br />Ключевые слова <strong>TITLE</strong> и <strong>EPISODE</strong> заменяются, если такие есть в наличии, информацией заголовка или подзаголовка взятой из EPG во время записи, если эти данные есть в EPG. Если эти сведения будут недоступны, то для <strong>TITLE</strong> будет исползоваться название канала, а для <strong>EPISODE</strong> используется пробел." - -msgid "Summary:" -msgstr "Сводная информация:" - -msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." -msgstr "Любой текст, который описывает создаваемую этим таймером запись. Если это поле заполнено, то текст будет записан в <span class=\"ref_file\">summary.vdr</span> или в <span class=\"ref_file\">info.vdr</span> записи." - -msgid "Go!" -msgstr "Стартовать!" - -msgid "AutoTimer" -msgstr "Автотаймеры" - msgid "New AutoTimer" msgstr "Новый Автотаймер" +msgid "Help" +msgstr "Помощь" + msgid "Active" msgstr "Активировано" +msgid "Channel" +msgstr "Канал" + msgid "Start" msgstr "Начало" @@ -212,6 +140,9 @@ msgstr "Да" msgid "No" msgstr "Нет" +msgid "Edit" +msgstr "Редактировать" + msgid "Delete timer?" msgstr "Удалить таймер?" @@ -230,33 +161,6 @@ msgstr "Удалить все выбранные Автотаймеры?" msgid "No AutoTimers defined!" msgstr "AutoTimer не установлен" -msgid "VDR Commands" -msgstr "VDR Команды:" - -msgid "Export channels as playlist:" -msgstr "" - -msgid "Number of lines to show:" -msgstr "Количество показываемых строк:" - -msgid "unlimited" -msgstr "без ограничений" - -msgid "SVDRP commands:" -msgstr "SVDRP Команды:" - -msgid "Run" -msgstr "Выполнить" - -msgid "Really run this command?" -msgstr "Действительно выполнить команду?" - -msgid "Commands defined in commands.conf:" -msgstr "Комманды из commands.conf:" - -msgid "Output" -msgstr "Вывод" - msgid "Add New AutoTimer" msgstr "Создать новый Автотаймер" @@ -275,6 +179,15 @@ msgstr "Поисковые признаки:" msgid "Search in:" msgstr "искать в:" +msgid "Title" +msgstr "Заголовок" + +msgid "Subtitle" +msgstr "Подзаголовок" + +msgid "Description" +msgstr "Описание" + msgid "Search only on these days:" msgstr "Искать только в эти дни:" @@ -299,12 +212,18 @@ msgstr "Суббота" msgid "Sunday" msgstr "Воскресение" +msgid "Channel:" +msgstr "Канал:" + msgid "all" msgstr "все" msgid "Starts After:" msgstr "Начинается не раньше:" +msgid "o'clock" +msgstr "Часов" + msgid "Ends Before:" msgstr "Заканчивается не позднее:" @@ -329,9 +248,15 @@ msgstr "Запомнить запрограммированные таймеры msgid "Directory:" msgstr "Каталог:" +msgid "Save" +msgstr "Сохранить" + msgid "Test" msgstr "Тест" +msgid "Cancel" +msgstr "Отменить" + msgid "Broadcasted" msgstr "Вещялось" @@ -341,141 +266,264 @@ msgstr "Сохраненно в" msgid "No matches found!" msgstr "Нет результатов!" -msgid "About" -msgstr "O" +msgid "Configuration" +msgstr "Настройки" -msgid "License" +msgid "General Settings" +msgstr "Общие настройки" + +msgid "Template:" +msgstr "Шаблон:" + +msgid "Skin:" +msgstr "Стиль:" + +msgid "Login Page:" +msgstr "Начальная страница:" + +msgid "Number of channels to use:" +msgstr "Количество используемых каналов:" + +msgid "Local net (no login required):" +msgstr "Локальная сеть (вход без авторизации):" + +msgid "Language:" +msgstr "Язык:" + +msgid "Save settings on exit:" +msgstr "Сохранять установки при выходе>" + +msgid "VDR" +msgstr "VDR" + +msgid "Number of DVB cards:" +msgstr "Количество DVB-карт:" + +msgid "Path to recordings:" +msgstr "Путь к записям:" + +msgid "Path to configuration files:" +msgstr "Путь к настройкам:" + +msgid "Path to EPG images:" +msgstr "Путь к EPG-картинкам:" + +msgid "Identification" +msgstr "Идентификация" + +msgid "Username:" +msgstr "Имя:" + +msgid "Password:" +msgstr "Пароль:" + +msgid "Guest Account:" +msgstr "Гостевой вход:" + +msgid "Guest Username:" +msgstr "Имя для гостя:" + +msgid "Guest Password:" +msgstr "Пароль для гостя:" + +msgid "Timeline" +msgstr "График времени" + +msgid "Hours:" +msgstr "Часы:" + +msgid "Times:" +msgstr "Время:" + +msgid "Also used for other EPG views!" +msgstr "Также использовать для других EPG" + +msgid "Tooltips:" +msgstr "Подсказки:" + +msgid "Active:" +msgstr "Активировано:" + +msgid "Send email after programming timer:" +msgstr "Отправить E-Mail после запрограммированного таймера:" + +msgid "Send email as:" +msgstr "E-Mail отправить как:" + +msgid "Send email to:" +msgstr "Oтправить E-Mail к:" + +msgid "Mail server:" +msgstr "Mail сервер:" + +msgid "SMTPAuth user:" +msgstr "Имя пользователя для SMTPAuth:" + +msgid "SMTPAuth password:" +msgstr "Пароль для SMTPAuth:" + +msgid "Track schedule changes by:" msgstr "" -msgid "Authors" -msgstr "Авторы" +msgid "Broadcast time" +msgstr "" -msgid "Current author (VDRAdmin-AM branch):" -msgstr "Нынешний автор (VDRAdmin-AM branch):" +msgid "Event id" +msgstr "" -msgid "Original author (VDRAdmin):" -msgstr "Первоначальный автор (VDRAdmin):" +msgid "Timer" +msgstr "Таймер" -msgid "Translation Team" -msgstr "Группа переводчиков" +msgid "Tooltips in timeline:" +msgstr "Подсказки в графике времени:" -msgid "English:" -msgstr "Английский:" +msgid "Tooltips in list:" +msgstr "Подсказки в списке:" -msgid "German:" -msgstr "Немецкий:" +msgid "Streaming" +msgstr "Трансляция" -msgid "French:" -msgstr "Французский:" +msgid "Live Streaming:" +msgstr "Трансляция LiveTV:" -msgid "At the moment unmaintained, former translations by:" -msgstr "В настоящее время не обновляется, прежние переводы от:" +msgid "HTTP Port of Streamdev (also possible 3000/ts):" +msgstr "Streamdev HTTP порт (также возможно 3000/ts):" -msgid "Spanish:" -msgstr "Испанский:" +msgid "Recordings Streaming:" +msgstr "Транслировать записи (Streaming):" -msgid "Finnish:" -msgstr "Финский:" +msgid "Path to VDR Recordings on your workstation:" +msgstr "Путь к записям VDR на вашем компьютере:" -msgid "Dutch:" -msgstr "Голландский:" +msgid "MIME type for live streaming:" +msgstr "Тип MIME для трансляции LiveTV:" -msgid "Russian:" -msgstr "Русский" +msgid "Suffix for live streaming:" +msgstr "Расширение файла для LiveTV:" -msgid "Czech:" -msgstr "Чешский:" +msgid "MIME type for recordings streaming:" +msgstr "Тип MIME для трансляции записей:" -msgid "Italian:" +msgid "Suffix for recordings streaming:" +msgstr "Расширение файла для трансляции записей:" + +msgid "Bandwidth of Streams:" +msgstr "Пропускная способность трансляции :" + +#, fuzzy +msgid "External Search" +msgstr "Изменить поиск" + +msgid "URL:" msgstr "" #, fuzzy -msgid "Information" -msgstr "Информация" +msgid "Title:" +msgstr "Заголовок" -msgid "VDRAdmin-AM version:" -msgstr "Версия VDRAdmin-AM:" +#, fuzzy +msgid "User-defined search:" +msgstr "Нет таймеров!" -msgid "VDR version:" -msgstr "Версия VDR:" +msgid "Expert" +msgstr "Эксперт" -msgid "Supported features in VDR:" -msgstr "Поддерживаемые улучшения в VDR:" +msgid "Update EPG data in background:" +msgstr "" -msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" -msgstr "EPG Поиск (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgid "Update EPG every:" +msgstr "" -msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" -msgstr "LiveTV Streaming (<a href=\"http://www.free-x.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>" +msgid "Channel Selections" +msgstr "Выбор канала" -msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" -msgstr "Переименование записей (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgid "Show channels without EPG information:" +msgstr "" -msgid "Getting Help and Reporting Bugs" -msgstr "Получить помощь и сообщить об ошибке" +msgid "In \"AutoTimer\"?" +msgstr "В \"Автотаймеры\"?" -msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." -msgstr "Если Вам нужна помощь по данной программе, то обратитесь вначале к интерактивной помощи, которая доступна на некоторых страницах. Вы можете вызывать ее нажимая на <img src=\"bilder/help.png\" alt=\"\" />." +msgid "Apply" +msgstr "Применить" -msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" -msgstr "Если встроенная справка не дала Вам необходимую информацию, тогда Вы можете попытаться получить помощь в <a href=\"http://www.allrussian.info/board.php?boardid=61 \"target=\"_blank\">Allrussian VDR форуме</a>. Ищите для этого:" +#, fuzzy +msgid "EPG Search Blacklists" +msgstr "Использовать список запретов:" -msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." -msgstr "Если Вы думаете, что нашли ошибку, тогда первым делом проверьте в <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking системе</a>. Если ее там нет, тогда отправьте рапорт о ней." +#, fuzzy +msgid "New Blacklist" +msgstr "Использовать список запретов:" -msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" -msgstr "<p>Здесь Вы можете обрабатывать установки Автотаймеров.</p><p>Автотаймеры являются ключевой функцией VDRAdmin-AM. Автотаймер состоит из нескольких поисковых признаков и других установок, которые регулярно ищутся в Electronic Program Guide (EPG). При соответствии Автотаймер автоматически создаeт новый таймер для этой передачи в VDR. Это очень комфортабельно для нерегулярно транслируемых сериалов или художественных фильмов, которые Вы не хотите пропустить.</p>" +msgid "Search pattern" +msgstr "Поисковые признаки" -msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." -msgstr "Активировать или деактивировать этот Автотаймер. Деактивированные Автотаймеры будут находиться и дальше в списке и записи по нему производится не будут, но их можно активировать снова. Вы можете устанавливать их также на \"однократно\", так чтобы этот Автотаймер сработал только единажды на следущей передаче." +msgid "From" +msgstr "С" -msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Only broadcasts will match if they contain <strong>all</strong> items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as Blacklist-string) or only one episode (when using \"Enterprise~Azati Prime\" as Blacklist-string)." -msgstr "Выбор искомых понятий решает будут ли записаны желаемые, с похожми названиями передачи или будет ли записываться что-нибудь вообще.<br />Написание с большой или маленькой буквы не играет роли. Вы можете указывать несколько поисковых признаков раздельно через пробел.Чтобы они нашлись, <strong>все</strong> признаки должны содержаться в желаемых полях передачи. <br />Использовать рекомендуется только буквы и числа, так как в EPG отсутствуют часто двоеточия, скобки и другие символы.<br /> Эксперты могут использовать также \"regular expressions\".Для их использования Вы должны бросить взгляд в исходники VDRAdmin-AM (не документированная функция).<br /><br />Вы можете также исключать передачи, которые собственно подошли бы, внеся их название в <i>vdradmind.bl</i>, одна передача в строчке. Этот файл должен находиться в конфигурационном каталоге VDRAdmin-AM. Если строка либо на <u>title</u>, либо <u>title~subtitle</u> из EPG передачи подходит, то эта передача автоматически не программируется.Таким образом Вы можете исключать полную серию." +msgid "To" +msgstr "К" -msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." -msgstr "Здесь Вы указываете разделы из EPG, которые VDRAdmin-AM должен осматривать на наличие признаков поиска." +#, fuzzy +msgid "Delete blacklist?" +msgstr "Использовать список запретов:" -msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." -msgstr "Отметьте дни недели, в которые будет проводиться поиск передач." +#, fuzzy +msgid "Delete Selected Blacklists" +msgstr "Удалить выбранные поиски" -msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." -msgstr "Канал, который должен быть просмотрен на наличие совпадающих передач. С \"все\" будут просмотрены все известные или желаемые каналы. Желаемые каналы для автотаймеров устанавливаются на странице \"Конфигурации\". " +#, fuzzy +msgid "Delete all selected blacklists?" +msgstr "Удалить все выбранные поиски?" -msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Передача может начинаться не раньше установленного здесь времени. Первое текстовое поле указывает часы, второе минуты." +msgid "EPG search" +msgstr "ЕПГ поиск" -msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." -msgstr "Передача должна заканчиваться не позднее установленного здесь времени.Первоетекстовое поле указывает часы, второе минуты." +msgid "EPG Search" +msgstr "Поиск по ЕПГ" -msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." -msgstr "Ответьте \"да\", если все таймеры выставленные по AutoTimer должны иметь индивидуальные начало/конец и введите ыначения в след. два текстовых поля " +#, fuzzy +msgid "Use template" +msgstr "Запомнить шаблон" -msgid "The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG." -msgstr "Количество минут, которые должен VDRAdmin-AM вычесть от начального времени передаваемого по EPG." +msgid "New Search" +msgstr "Новый поиск" -msgid "The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG." -msgstr "Количество минут, которые должен VDRAdmin-AM прибавить к конечному времени передаваемого по EPG." +#, fuzzy +msgid "Edit Template" +msgstr "Шаблон:" -msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." -msgstr "Активируйте эту опцию, если Вы хотите, чтобы VDRAdmin-AM добавлял подзаголовок передачи из EPG к названию записи." +msgid "Settings" +msgstr "Настройки" -msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." -msgstr "Если Вы активируете эту опцию, то VDRAdmin-AM запоминает таймеры, которые он уже программировал автоматически. Это полезно, если автоматически запрограммированные таймеры должны удаляться или деактивироваться в списке таймеров." +msgid "Action" +msgstr "Действие" -msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." -msgstr "Здесь Вы указываете каталог в котором этот Aвтотаймер будет сохранять записи.Если указываются подкаталоги, то они должны разделяться с '~' (так как '/' может быть частью названия передачи).<br />VDRAdmin-AM внесeт автоматически заголовок и подзаголовок (если у \"Серия\" была установлена галочка) в название записи.<br /><br />Вы можете использовать также ключевые слова, которые в окончательном названии файла заменяются на значения, например от <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - Заголовок передачи.</li><li>%Subtitle% - Подзаголовок передачи.</li><li>%Director% - Режиссeр передачи.</li><li>%Date% - Дата записи.</li><li>%Category% - Категория записи (художественный фильм/сериал/...).</li><li>%Genre% - Жанр записи(Драма/детектив/....).</li><li>%Year% - Год производства.</li><li>%Country% - Страна производства.</li><li>%Originaltitle% - Оригинальный заголовок.</li><li>%FSK% - Ограничение по возврасту.</li><li>%Episode% - Заголовок эпизода.</li><li>%Rating% - Оценка передачи от поставщика EPG.</li></ul><h4>Внимание:</h4>Если используются вышеназванные ключевые слова, то Вы должны сами указать <strong>полное название</strong> записи! VDRAdmin-AM ничего указывать или дополнять не будет." +msgid "Find" +msgstr "Поиск" -msgid "Timer" -msgstr "Таймер" +msgid "Show Favorites" +msgstr "Показать фавориты" -msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" -msgstr "<p>Здесь Вы найдeте список всех таймеров, которые знает VDR.</p><p>В верхней части Вы найдeте графическое представление таймеров на один день. Это способствует быстрому обзору того, что было запрограммировано в один день и помогает Вам в распознавании конфликтующих таймеров. Если Вы наведЈте курсором на цветную область, Вы узнаете его название, приоритет, срок хранения и продолжительность.</p><p> Ниже графического уведомления Вы видите список запрограммированных таймеров. Вы можете изменить сортировку списка, нажав на желаемую надпись колонки.</p><p>Для каждого таймера Вы имеете следующие возможности:<dl><dt>Изменение состояния</dt><dd>Это происходит щелканием кнопкой мыши на \"Да\", \"Нет\", \"VPS\" или \"Авто\" в столбце \"Активный\".</dd><dt>Быстрое уведомление его приоритета и срока хранения</dt><dd> Для этого нужно навести курсор мышки на название таймера.</dd><dt>Показ его EPG-записи</dt><dd>Таймеры у которых в опции <span class=\"ref_label\"Автоматический контроль таймера</span>\"Опознавание передачи\" можно увидеть EPG-запись, щЈлкнув курсором на название таймера.</dd><dt>Редактирования таймера</dt><dd>Вы можете редактировать таймер, щЈлкнув курсором на <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Удаление таймера</dt><dd>Для удаления таймера нажмите на <img src=\"bilder/delete.png\"alt=\"delete\" />.</dd></dl></p><p>Статус каждого таймера показывается определенным цветом: <br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Таймер в порядке и будет записан.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Таймер конфликтуетс другими таймерами.Это не страшно, если имеется достаточно DVB-карт для параллельных записей.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot. png\" alt=\"impossible\" align=\"middle\" /> Таймер критический и скорее всего не будет записан.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau. png\" alt=\"inactive\" align=\"middle\" /> Таймер не активен.</p><p>Дополнительно к этим функциям Вы можете запрограммироватьновый таймер, нажав курсором на <input type=\"submit\" class=\"submit\" value=\"Новый таймер\"/>.В нижнем крае экрана Вы найдЈте кнопку <input type=\"submit\" class=\"submit\" value=\"Удалить выделенные таймеры\"/>, тем самым будут удалены все выбранные Вами таймеры.</p><p>Вы можете также активироватьили деактивировать выбранные Вами таймеры.</p>" +msgid "Delete Selected Searches" +msgstr "Удалить выбранные поиски" -msgid "Playing Today" -msgstr "Что будет сегодня?" +msgid "Delete all selected searches?" +msgstr "Удалить все выбранные поиски?" -msgid "starting at" -msgstr "Начать в" +msgid "Execute Selected Searches" +msgstr "Выполнить выбранные поиски" + +msgid "Duration" +msgstr "Продолжительность" + +msgid "More Information" +msgstr "Дополнительная информация" + +msgid "Channels" +msgstr "Телегид" + +msgid "Record" +msgstr "Записать передачу" #, fuzzy msgid "Add New Blacklist" @@ -489,10 +537,6 @@ msgstr "Использовать список запретов:" msgid "Add New Template" msgstr "Создать новый Автотаймер" -#, fuzzy -msgid "Edit Template" -msgstr "Шаблон:" - msgid "Add New Search" msgstr "Создать новый поиск" @@ -508,9 +552,6 @@ msgstr "" msgid "Hide results" msgstr "Спрятать результаты" -msgid "Settings" -msgstr "Настройки" - #, fuzzy msgid "Name:" msgstr "Имя" @@ -699,265 +740,147 @@ msgstr "Удалить таймер?" msgid "Save as template" msgstr "Запомнить шаблон" -msgid "Create New Timer" -msgstr "Создать новый таймер" - -msgid "Buffer:" -msgstr "Буфер:" - -msgid "Use VPS:" -msgstr "Использовать VPS:" - -msgid "readonly" -msgstr "не изменяемо" - -msgid "Timer has been set by AutoTimer pattern:" -msgstr "Таймер выставлен Автотаймером:" - -msgid "No Help Available" -msgstr "Помощь недоступна" - -msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" -msgstr "<p>До сих пор нет помощи. Для создания или исправления текста свяжитесь с<a href=\"mailto:freex@free-x.de\">freex@free-x.de</a>.</p>" +msgid "Run" +msgstr "Выполнить" msgid "Error!" msgstr "Ошибка!" -msgid "TV" -msgstr "TV" +msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" +msgstr "<p>Здесь Вы найдeте список всех автотаймеров, которые знает VDRAdmin-AM.</p><p>Список показывает Вам несколько сведений о Автотаймерах. Вы можете изменить сортировку списка, нажав на желаемую надпись колонки. </p><p>Для каждого Автотаймера Вы имеете следующие возможности:<dl><dt>Изменение состояния</dt><dd> Вы можете активировать или деактивировать Автотаймеры переключив кнопкой мыши \"Да\" или \"Нет\" в столбце \"Активный\".</dd><dt>Быстрое уведомление его приоритета и срока хранения</dt><dd>Для этого нужно навести курсор мышки на название Автотаймера.</dd><dt>Редактирование Автотаймера</dt><dd>Вы можете редактировать Автотаймер, щeлкнув курсором на <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Удаление Автотаймера</dt><dd>Удалить Автотаймер можно нажав на <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Статус каждого Автотаймера показывается определенным цветом:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Автотаймер в порядке и совподающие передачи будут запрограммированы.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Автотаймер не активен.</p><p>Дополнительно к этим функциям Вы можете создать новый Автотаймер , нажав курсором на <input type=\"submit\" class=\"submit\" value=\"Новый Автотаймер\"/>.В нижнем крае экрана Вы найдeте кнопку <input type=\"submit\" class=\"submit\" value=\"Удалить выделенные Автотаймеры\"/>, тем самым будут удалены все выбранные Вами Автотаймеры.</p><p>С помощью кнопки <input type=\"submit\" class=\"submit\" value=\"Мануальное обновление\"/> Вы можете заставить VDRAdmin-AM связываться с VDR для обновления данных EPG и поиска совподающих Автотаймеров.</p>" -msgid "Interval:" -msgstr "Интервал:" +msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgstr "<p>Здесь Вы можете обрабатывать установки Автотаймеров.</p><p>Автотаймеры являются ключевой функцией VDRAdmin-AM. Автотаймер состоит из нескольких поисковых признаков и других установок, которые регулярно ищутся в Electronic Program Guide (EPG). При соответствии Автотаймер автоматически создаeт новый таймер для этой передачи в VDR. Это очень комфортабельно для нерегулярно транслируемых сериалов или художественных фильмов, которые Вы не хотите пропустить.</p>" -msgid "sec." -msgstr "сек." +msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." +msgstr "Активировать или деактивировать этот Автотаймер. Деактивированные Автотаймеры будут находиться и дальше в списке и записи по нему производится не будут, но их можно активировать снова. Вы можете устанавливать их также на \"однократно\", так чтобы этот Автотаймер сработал только единажды на следущей передаче." -msgid "G" -msgstr "G" +msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Broadcasts will match only if they match <strong>all</strong> configured search items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as blacklist string) or only one episode (when using \"Enterprise~Azati Prime\" as blacklist string)." +msgstr "Выбор искомых понятий решает будут ли записаны желаемые, с похожми названиями передачи или будет ли записываться что-нибудь вообще.<br />Написание с большой или маленькой буквы не играет роли. Вы можете указывать несколько поисковых признаков раздельно через пробел.Чтобы они нашлись, <strong>все</strong> признаки должны содержаться в желаемых полях передачи. <br />Использовать рекомендуется только буквы и числа, так как в EPG отсутствуют часто двоеточия, скобки и другие символы.<br /> Эксперты могут использовать также \"regular expressions\".Для их использования Вы должны бросить взгляд в исходники VDRAdmin-AM (не документированная функция).<br /><br />Вы можете также исключать передачи, которые собственно подошли бы, внеся их название в <i>vdradmind.bl</i>, одна передача в строчке. Этот файл должен находиться в конфигурационном каталоге VDRAdmin-AM. Если строка либо на <u>title</u>, либо <u>title~subtitle</u> из EPG передачи подходит, то эта передача автоматически не программируется.Таким образом Вы можете исключать полную серию." -msgid "Grab the picture!" -msgstr "Создать скриншот!" +msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." +msgstr "Здесь Вы указываете разделы из EPG, которые VDRAdmin-AM должен осматривать на наличие признаков поиска." -msgid "Size:" -msgstr "Размер:" +msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." +msgstr "Отметьте дни недели, в которые будет проводиться поиск передач." -msgid "Open in separate window" -msgstr "Открыть в отдельном окне" +msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." +msgstr "Канал, который должен быть просмотрен на наличие совпадающих передач. С \"все\" будут просмотрены все известные или желаемые каналы. Желаемые каналы для автотаймеров устанавливаются на странице \"Конфигурации\". " -msgid "Playing Today?" -msgstr "Что будет сегодня?" +msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Передача может начинаться не раньше установленного здесь времени. Первое текстовое поле указывает часы, второе минуты." -msgid "Timeline" -msgstr "График времени" +msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Передача должна заканчиваться не позднее установленного здесь времени.Первоетекстовое поле указывает часы, второе минуты." -msgid "EPG Search" -msgstr "Поиск по ЕПГ" +msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." +msgstr "Ответьте \"да\", если все таймеры выставленные по AutoTimer должны иметь индивидуальные начало/конец и введите ыначения в след. два текстовых поля " -msgid "Recordings" -msgstr "Записи" +msgid "The number of minutes VDRAdmin-AM subtracts from the broadcast's start time found in the EPG." +msgstr "Количество минут, которые должен VDRAdmin-AM вычесть от начального времени передаваемого по EPG." -msgid "Remote Control" -msgstr "Пульт ДУ" +msgid "The number of minutes VDRAdmin-AM adds to the broadcast's stop time found in the EPG." +msgstr "Количество минут, которые должен VDRAdmin-AM прибавить к конечному времени передаваемого по EPG." -msgid "Watch TV" -msgstr "Телевизор" +msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." +msgstr "Число от 0 до 99, которое указывает <strong>приоритет</strong> этого таймера и запрограммированных им записей. <strong>0</strong> имеет наименьший приоритет, а <strong>99</strong> наивысший.Приоритет используется, чтобы решать, какой таймер должен запускаться в случае, если 2 и более таймера имееют одинаковое время начала записи.Используется первый таймер в списке с наивысшим приоритетом. <br /><br />Это значение сохраняется также вместе с записью и используется позже, чтобы решать, какая запись должна удаляться, в случае, если на жестком диске нет больше места для новой записи. <br /><br />Если все DVB-карты заняты, таймер с более высоким припритетом прерывает таймер с самым низким приоритетом для начала записи." -msgid "Commands" -msgstr "Команды" +msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." +msgstr "<strong>Гарантируемое</strong> количество дней хранения записи, которое былo созданo этим таймером. <strong>0</strong> означает, что эта запись автоматически удаляется в любое время записью с более высоким приоритетом. <strong>99</strong> означает, что эта запись никогда не будет удалена автоматически.Числа от <strong>1 до 98</strong> означают, что запись удалится автоматически, если указанное количество дней истекло со дня записи и на жестком диске нет больше места для новых записей. " -msgid "Configuration" -msgstr "Настройки" +msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." +msgstr "Активируйте эту опцию, если Вы хотите, чтобы VDRAdmin-AM добавлял подзаголовок передачи из EPG к названию записи." -msgid "Search" -msgstr "Поиск" +msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." +msgstr "Если Вы активируете эту опцию, то VDRAdmin-AM запоминает таймеры, которые он уже программировал автоматически. Это полезно, если автоматически запрограммированные таймеры должны удаляться или деактивироваться в списке таймеров." + +msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." +msgstr "Здесь Вы указываете каталог в котором этот Aвтотаймер будет сохранять записи.Если указываются подкаталоги, то они должны разделяться с '~' (так как '/' может быть частью названия передачи).<br />VDRAdmin-AM внесeт автоматически заголовок и подзаголовок (если у \"Серия\" была установлена галочка) в название записи.<br /><br />Вы можете использовать также ключевые слова, которые в окончательном названии файла заменяются на значения, например от <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - Заголовок передачи.</li><li>%Subtitle% - Подзаголовок передачи.</li><li>%Director% - Режиссeр передачи.</li><li>%Date% - Дата записи.</li><li>%Category% - Категория записи (художественный фильм/сериал/...).</li><li>%Genre% - Жанр записи(Драма/детектив/....).</li><li>%Year% - Год производства.</li><li>%Country% - Страна производства.</li><li>%Originaltitle% - Оригинальный заголовок.</li><li>%FSK% - Ограничение по возврасту.</li><li>%Episode% - Заголовок эпизода.</li><li>%Rating% - Оценка передачи от поставщика EPG.</li></ul><h4>Внимание:</h4>Если используются вышеназванные ключевые слова, то Вы должны сами указать <strong>полное название</strong> записи! VDRAdmin-AM ничего указывать или дополнять не будет." msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" msgstr "<p>Здесь Вы можете изменить общие и основные параметры таймеров, автотаймеров, выбор канала и трансляции (Streaming).</p>" -msgid "General Settings" -msgstr "Общие настройки" - -msgid "VDR" -msgstr "VDR" - -msgid "Identification" -msgstr "Идентификация" - -msgid "Streaming" -msgstr "Трансляция" - -msgid "Expert" -msgstr "Эксперт" - -#, fuzzy -msgid "External Search" -msgstr "Изменить поиск" - -msgid "Channel Selections" -msgstr "Выбор канала" - -msgid "Skin:" -msgstr "Стиль:" - msgid "The skin you want to use." msgstr "Используемый стиль." -msgid "Login Page:" -msgstr "Начальная страница:" - msgid "The page you want to see at first connect to VDRAdmin-AM." msgstr "Страница, которую Вы хотите увидеть при первом соединении с VDRAdmin-AM" -msgid "Number of channels to use:" -msgstr "Количество используемых каналов:" - msgid "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." msgstr "VDRAdmin-AM загрузит из VDR только указанное здесь число каналов и покажет их во всех местах выбора канала.Тем самым ограничивается и EPG информация, которую будет читать VDRAdmin-AM, что значительно повышает скорость обработки.<strong>0</strong> выключает эту функцию и VDRAdmin-AM использует все доступные каналы." -msgid "Local net (no login required):" -msgstr "Локальная сеть (вход без авторизации):" - msgid "Here you can specify an IP address or range that can login without providing login information. For example: \"192.168.0.0/24\" will include any IP starting with \"192.168.0\", \"192.168.0.123/32\" will only match \"192.168.0.123\"." msgstr "Здесь Вы можете определить IP адрес или IP маску , откуда можно войти без ввода данных пользователя.Например: \"192.168.0.0/24\" содержит каждый IP, который начинается с \"192.168.0\".\"192.168.0.123/32\" содержит только этот IP \"192.168.0.123\"." -msgid "Language:" -msgstr "Язык:" - msgid "Here you can set the localization VDRAdmin-AM should use." msgstr "Здесь Вы устанавливаете локализацию, которую должен использовать VDRAdmin-AM." -msgid "Save settings on exit:" -msgstr "Сохранять установки при выходе>" - msgid "With this option the settings will be saved if VDRAdmin-AM exits. This will also save settings not available on the \"Configuration\" menu like interval and size in TV, sorting in the lists and current view in \"What's on now\"." msgstr "С этой опцией установки будут запомнены. Они также будут содержать некоторые другие опции не из меню \"Конфигурация\"." msgid "Top" msgstr "вверх" -msgid "Number of DVB cards:" -msgstr "Количество DVB-карт:" - msgid "The number of DVB cards VDR can access. Depending on this value VDRAdmin-AM will calculate critical timers in the <span class=\"ref_menu\">Timer</span> menu." msgstr "Количество DVB карт, к которым может обращаться VDR. В зависимости от значения, VDRAdmin-AM вычислит конфликтующие таймеры в меню <span class=\"ref_menu\">Таймеры</span> " -msgid "Path to recordings:" -msgstr "Путь к записям:" - msgid "The path to VDR's recordings. It's used so that VDRAdmin-AM can locate the recordings when using <span class=\"ref_label\">Recordings Streaming</span> and <span class=\"ref_file\">reccmds.conf</span> in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Путь к записям VDR. Это используется чтобы VDRAdmin-AM мог определить местонахождение записей, если будут использоваться функции <span class=\"ref_label\">Транслировать запись</span> и <span class=\"ref_file\">reccmds.conf</span> в меню <span class=\"ref_menu\">Записи</span> " -msgid "Path to configuration files:" -msgstr "Путь к настройкам:" - msgid "The path where VDR's configuration files are located. If this directory contains the file <span class=\"ref_file\">reccmds.conf</span> its content is shown in a selectbox in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "Путь к конфигурационным файлам VDR. Если этот каталог содержит файл <span class=\"ref_file\">reccmds.conf</span> ,то содержимое этого файла будет доступным в меню <span class=\"ref_menu\">Записи</span> " -msgid "Path to EPG images:" -msgstr "Путь к EPG-картинкам:" - msgid "The path where the EPG images are stored." msgstr "Путь, где сохранены изображения EPG." -msgid "Username:" -msgstr "Имя:" - msgid "The username for the main user, i.e. the user having the most privileges." msgstr "Имя главного пользователя, имеющего права на любые изменения." -msgid "Password:" -msgstr "Пароль:" - msgid "The main user's password." msgstr "Пароль главного пользователя." -msgid "Guest Account:" -msgstr "Гостевой вход:" - msgid "If you want a user account having only limited privileges, this is for you. The guest user cannot modify anything, it's only allowed to view the EPG, timers, AutoTimers and recordings listings." msgstr "Если Вы хотите пользователя с ограничеными правами, тогда это для Вас. Гостевой пользователь не может ничего изменять, ему дозволен только просмотр Записей, Таймеров, Автотаймеров и EPG." -msgid "Guest Username:" -msgstr "Имя для гостя:" - msgid "The username for the guest user." msgstr "Имя пользователя для гостевого пользователя ." -msgid "Guest Password:" -msgstr "Пароль для гостя:" - msgid "The guest user's password." msgstr "Пароль гостевого пользователя." -msgid "Hours:" -msgstr "Часы:" - msgid "The number of hours to show in the timeline." msgstr "Число часов, которые будут отображаться в графике времени." -msgid "Times:" -msgstr "Время:" - msgid "A comma separated list of times in <strong>hh:mm</strong> format that appear in the selectbox placed at the top." msgstr "Список времЈн (через запятую если несколько)в формате <strong>hh:mm</strong>, который доступен вверху страницы." -msgid "Tooltips:" -msgstr "Подсказки:" - msgid "Here you can (de-)activate the tooltips." msgstr "Здесь Вы можете вкл. или выкл. подсказки." -msgid "Active:" -msgstr "Активировано:" - msgid "Activate or deactivate the AutoTimer function." msgstr "Активирует или деактивирует функцию Автотаймера." -msgid "Send email after programming timer:" -msgstr "Отправить E-Mail после запрограммированного таймера:" - msgid "VDRAdmin-AM will send an email whenever an event matches an AutoTimer and a timer has been programmed if you enable this feature." msgstr "Если Вы активируете эту функцию, то VDRAdmin-AM будет отправлять Вам каждый раз E-Mail, если Автотаймер нашeл подходящию передачу изапрограммировал таймер" -msgid "Send email as:" -msgstr "E-Mail отправить как:" - msgid "Here you set the sending email address of the generated email." msgstr "Здесь Вы устанавливаете E-mail адресс для сгенерированных E-mail" -msgid "Send email to:" -msgstr "Oтправить E-Mail к:" - msgid "The email address the email is sent to." msgstr "E-Mail адрес куда будет отправляться E-Mail." -msgid "Mail server:" -msgstr "Mail сервер:" - msgid "The outgoing mail server." msgstr "Сервер для выходящих электронных писем." -msgid "SMTPAuth user:" -msgstr "Имя пользователя для SMTPAuth:" - msgid "If you need to authenticate yourself at the outgoing mail server, you have to supply the username and the password below. Leaving this field empty will disable SMTPAuth." msgstr "Если сервер отправки почты (SMTP) требует авторизации, тогда укажите здесь имя и пароль пользователя.Оставте поле SMTPAuth пустым, если авторизации не требуется." -msgid "SMTPAuth password:" -msgstr "Пароль для SMTPAuth:" - msgid "The password for the SMTPAuth user." msgstr "Пароль для пользователя SMTPAuth." -msgid "Tooltips in timeline:" -msgstr "Подсказки в графике времени:" - msgid "Here you can (de-)activate the tooltips in the timeline." msgstr "Здесь Вы можете вкл. или выкл. подсказки в графике времени." -msgid "Tooltips in list:" -msgstr "Подсказки в списке:" - msgid "Here you can (de-)activate the tooltips in the list." msgstr "Здесь Вы можете вкл. или выкл. подсказки в списке." @@ -967,51 +890,27 @@ msgstr "Использовать описание из EPG для новых т msgid "If you don't want VDRAdmin-AM to add the summary taken from EPG to new timers you can switch it off here." msgstr "Если Вы не хотите, чтобы VDRAdmin-AM устанавливал описание передачи из EPG для нового таймера, тогда выключите это здесь." -msgid "Live Streaming:" -msgstr "Трансляция LiveTV:" - msgid "Enable or disable live streaming using the <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. You also have to set the correct <span class=\"ref_label\">HTTP Port for Streamdev</span> below." msgstr "Активирование или деактивирование трансляции LiveTV. Для этого Вам нужен <a href=\"http://www.magoa.net/linux/\">streamdev модуль</a>. Кроме этого нужно установить <span class=\"ref_label\">Streamdev HTTP-порт</span>. " -msgid "HTTP Port of Streamdev (also possible 3000/ts):" -msgstr "Streamdev HTTP порт (также возможно 3000/ts):" - msgid "Here you have to set the port number your VDR's streamdev server listens for connections. Additionally you can also provide the stream type you like to use." msgstr "Здесь Вы указываете номер порта Streamdev сервера в VDR. Вы можете указывать также используемый тип трансляции." -msgid "Recordings Streaming:" -msgstr "Транслировать записи (Streaming):" - msgid "Enable or disable streaming of recordings.<br />Well actually this is no real \"streaming\", but you have to setup your workstation so that it can access VDR's recordings. You can use for example Samba or NFS for this. VDRAdmin-AM simply generates a playlist that contains all parts of the recording and sends this to your browser. If your browser and media player are configured correctly you will see the recording on your workstation's display." msgstr "Активирование или деактивирование трансляции записей.<br />Пока это не настоящая \"Трансляция\", но вы можете сконфигурировать Ваш персональный компьютер так, чтобы он мог обращаться к записям VDR.Это возможно сделать используя Samba или NFS.VDRAdmin-AM только создает список воспроизведения, который содержит все части выбранной записи и посылает их затем к броузеру.Если браузер и программа воспроизведения сконфигурированы правильно, то запись на персональном компьютере должна воспроизвестись." -msgid "Path to VDR Recordings on your workstation:" -msgstr "Путь к записям VDR на вашем компьютере:" - msgid "This is the path where your workstation can access VDR's recordings. This depends on your VDR and workstation setup, for example \"\\\\vdr\\videos\" or \"V:\\\" (on Windows) or \"/mnt/videos\" (on Linux)." msgstr "Путь, по которому ваш персональный компьютер сможет обращаться к записям VDR.Он зависит от конфигурации VDR и персонального компьютера.Например: \"\\\\vdr\\videos\" или \"V:\\\" (для Windows)\" или \"/mnt/videos\" (для Linux)." -msgid "MIME type for live streaming:" -msgstr "Тип MIME для трансляции LiveTV:" - msgid "The MIME type to send when using live streaming. Defaults to \"video/x-mpegurl\"." msgstr "MIME-тип трансляции LiveTV. По умолчанию \"video/x-mpegurl\"." -msgid "Suffix for live streaming:" -msgstr "Расширение файла для LiveTV:" - msgid "The suffix to use for live streaming. Defaults to \"m3u\"." msgstr "Расширение файла трансляции LiveTV. По умолчанию \"m3u\"." -msgid "MIME type for recordings streaming:" -msgstr "Тип MIME для трансляции записей:" - msgid "The MIME type to send when using recordings streaming. Defaults to \"video/x-mpegurl\"." msgstr "MIME-тип трансляции записей. По умолчанию \"video/x-mpegurl\"." -msgid "Suffix for recordings streaming:" -msgstr "Расширение файла для трансляции записей:" - msgid "The suffix to use for recordings streaming. Defaults to \"m3u\"." msgstr "Расширение файла трансляции записей. По умолчанию \"m3u\"." @@ -1027,15 +926,9 @@ msgstr "" msgid "<p>This section is for experts <strong>only</strong>, i.e. you know what you are doing!</p>" msgstr "<p><p>Этот раздел <strong>только</strong> для экспертов, т.е. для тех кто знает что он делает!</p>" -msgid "Update EPG data in background:" -msgstr "" - msgid "If set to \"yes\" VDRAdmin-AM will periodically refresh its local EPG cache. Else the EPG will be refreshed if the user accesses any EPG view at the web interface and the timeout set at \"Update EPG every\" has been reached." msgstr "" -msgid "Update EPG every:" -msgstr "" - #, fuzzy msgid "The interval, the EPG data is refreshed from VDR and AutoTimer updates are performed (if AutoTimer feature is used)." msgstr "Интервал проверки EPG для обновления Автотаймеров." @@ -1043,35 +936,15 @@ msgstr "Интервал проверки EPG для обновления Авт msgid "<p>If you want to limit the number of channels used in some parts of VDRAdmin-AM, this is for you!</p><p>Use the radio buttons to activate or deactivate the wanted channels in the named menu.</p><p>To add channels to the list of wanted channels you have to select them in the left side selectbox and click <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. If you want to remove channels from the list of wanted channels you have to select them in the right side selectbox and click <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" msgstr "<p>Этим Вы можете ограничивать количество каналов в нескольких подразделах VDRAdmin-AM.</p><p>Используйте кнопки \"Да\"/\"Нет\" для активированияили деактивирования указанного количества каналов.</p><p>Для добавления каналов в выборочный список нужно выделить желаемые каналы в левом поле выбора и нажать на кнопку <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>.Удалить каналы из этого списка можно выделив " -msgid "Show channels without EPG information:" -msgstr "" - msgid "Usually channels that don't have EPG information are hidden in all EPG views. If you don't want them to be hidden you have to set this option to \"yes\"." msgstr "" -msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" -msgstr "<p>Здесь Вы найдeте список всех автотаймеров, которые знает VDRAdmin-AM.</p><p>Список показывает Вам несколько сведений о Автотаймерах. Вы можете изменить сортировку списка, нажав на желаемую надпись колонки. </p><p>Для каждого Автотаймера Вы имеете следующие возможности:<dl><dt>Изменение состояния</dt><dd> Вы можете активировать или деактивировать Автотаймеры переключив кнопкой мыши \"Да\" или \"Нет\" в столбце \"Активный\".</dd><dt>Быстрое уведомление его приоритета и срока хранения</dt><dd>Для этого нужно навести курсор мышки на название Автотаймера.</dd><dt>Редактирование Автотаймера</dt><dd>Вы можете редактировать Автотаймер, щeлкнув курсором на <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Удаление Автотаймера</dt><dd>Удалить Автотаймер можно нажав на <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Статус каждого Автотаймера показывается определенным цветом:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Автотаймер в порядке и совподающие передачи будут запрограммированы.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Автотаймер не активен.</p><p>Дополнительно к этим функциям Вы можете создать новый Автотаймер , нажав курсором на <input type=\"submit\" class=\"submit\" value=\"Новый Автотаймер\"/>.В нижнем крае экрана Вы найдeте кнопку <input type=\"submit\" class=\"submit\" value=\"Удалить выделенные Автотаймеры\"/>, тем самым будут удалены все выбранные Вами Автотаймеры.</p><p>С помощью кнопки <input type=\"submit\" class=\"submit\" value=\"Мануальное обновление\"/> Вы можете заставить VDRAdmin-AM связываться с VDR для обновления данных EPG и поиска совподающих Автотаймеров.</p>" - -msgid "Your Browser does not support frames!" -msgstr "Ваш Броузер не поддерживает фреймы!" - -msgid "Rename Recording" -msgstr "Переименовать запись" - -msgid "Original Name of Recording:" -msgstr "Старое название записи:" - -msgid "New Name of Recording:" -msgstr "Новое название записи:" - -msgid "Subtitle:" -msgstr "Подзаголовок:" - -msgid "Rename" -msgstr "Переименовать" +msgid "Edit Timer" +msgstr "Редактировать таймер" -msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" -msgstr "<p>Здесь Вы видите список всех записей, которые доступны в VDR. В верхнем колонтитуле Вы можете увидеть общее и свободное место на жестком диске VDR. </p><p>Этот список показывает Вам несколько сведений о записях. Вы можете изменять сортировку, нажимая на заголовки столбцов. Над списком Вы видите путь навигации. Если Вы хотите увидеть содержание ранее посещенного каталога, то нажмите просто на название каталога в этом пути.</p><p>Каждая строка содержит следущую информацию:<dl><dt>Дата</dt><dd>Дата когда была произведена запись. В случае каталога здесь показывается количество занесeнных записей.</dd><dt>Время</dt><dd>Время когда была произведена запись. В случае каталога здесь показывается количество <strong>новых</strong> записей в этом каталоге.</dd><dt>Название</dt><dd>Название записи или каталога. Нажмите на него, чтобы увидеть резюме записи или, чтобы перейти в каталог.</dd><dt>Переименовывать (<img src=\"bilder/edit.png\"alt=\"edit\" />)</dt><dd>Переименовать запись.<br /><h4>Внимание:</h4>Это функционирует только, если VDR понимает SVDRPort-команду <u>RENR</u>. Это не содержится в стандартном VDR, но может добавляться патчем. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> и <span class=\"ref_file\">enAIO-v2.2+</span> предлагают эту команду.</dd><dt>Удалять (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Удаление записи.</dd><dt>Транслировать (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>Эта колонка показывается только, если Вы активировали и откoнфигурировали <span class=\"ref_label\">Транслировать записи</span> на странице <span class=\"ref_menu\">Конфигурация</span>. Потом Вы можете просматривать записи на вашем компьютере.</dd></dl></p><p>Дополнительно к этим функциям Вы можете удалять несколько записей одновременно, установив галочку в предпоследнем столбце этих записей и щeлкнув затем на кнопку <input type=\"submit\" class=\"submit\" value=\"Удалить выбранные записи\"/>.</p><p>Если Вы указали путь к конфигурационным файлам VDR и там есть файл <span class=\"ref_file\">reccmds.conf</span>, тогда Вы можете запускать занесeнные там команды для выбранных записей. Для этого выберете желаемую команду возле <span class=\"ref_label\">Команды:</span> и нажмите на <input type=\"submit\" class=\"submit\" value=\"Выполнить\"/>.</p><p>Кнопкой <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> Вы можете перезагрузить список записей VDR.</p>" +#, fuzzy +msgid "Edit EPG" +msgstr "Редактировать" #, fuzzy msgid "<p>Here you can edit the descriptive fields of an existing EPG entry.</p>" @@ -1121,142 +994,116 @@ msgstr "Аудио дорожки" msgid "If available this field shows the audio track(s). It cannot be changed." msgstr "" -msgid "Duration:" -msgstr "Продолжительность:" - -msgid "min" -msgstr "мин" - -msgid "Transponder:" -msgstr "Транспондер:" - -msgid "CA-System:" -msgstr "CA-System:" - -msgid "New Timer" -msgstr "Новый таймер" - -msgid "Date" -msgstr "Дата" - -msgid "Edit timer status?" -msgstr "Изменить статус таймера?" +msgid "No Help Available" +msgstr "Помощь недоступна" -msgid "This timer is inactive!" -msgstr "Эта запись деактивирована!" +msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgstr "<p>До сих пор нет помощи. Для создания или исправления текста свяжитесь с<a href=\"mailto:freex@free-x.de\">freex@free-x.de</a>.</p>" -msgid "This timer is impossible!" -msgstr "Запись по этому таймеру невозможна!" +msgid "Recordings" +msgstr "Записи" -msgid "No more timers on other transponders possible!" -msgstr "Дальнейшие записи на других транспондерах невозможны!" +msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" +msgstr "<p>Здесь Вы видите список всех записей, которые доступны в VDR. В верхнем колонтитуле Вы можете увидеть общее и свободное место на жестком диске VDR. </p><p>Этот список показывает Вам несколько сведений о записях. Вы можете изменять сортировку, нажимая на заголовки столбцов. Над списком Вы видите путь навигации. Если Вы хотите увидеть содержание ранее посещенного каталога, то нажмите просто на название каталога в этом пути.</p><p>Каждая строка содержит следущую информацию:<dl><dt>Дата</dt><dd>Дата когда была произведена запись. В случае каталога здесь показывается количество занесeнных записей.</dd><dt>Время</dt><dd>Время когда была произведена запись. В случае каталога здесь показывается количество <strong>новых</strong> записей в этом каталоге.</dd><dt>Название</dt><dd>Название записи или каталога. Нажмите на него, чтобы увидеть резюме записи или, чтобы перейти в каталог.</dd><dt>Переименовывать (<img src=\"bilder/edit.png\"alt=\"edit\" />)</dt><dd>Переименовать запись.<br /><h4>Внимание:</h4>Это функционирует только, если VDR понимает SVDRPort-команду <u>RENR</u>. Это не содержится в стандартном VDR, но может добавляться патчем. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> и <span class=\"ref_file\">enAIO-v2.2+</span> предлагают эту команду.</dd><dt>Удалять (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Удаление записи.</dd><dt>Транслировать (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>Эта колонка показывается только, если Вы активировали и откoнфигурировали <span class=\"ref_label\">Транслировать записи</span> на странице <span class=\"ref_menu\">Конфигурация</span>. Потом Вы можете просматривать записи на вашем компьютере.</dd></dl></p><p>Дополнительно к этим функциям Вы можете удалять несколько записей одновременно, установив галочку в предпоследнем столбце этих записей и щeлкнув затем на кнопку <input type=\"submit\" class=\"submit\" value=\"Удалить выбранные записи\"/>.</p><p>Если Вы указали путь к конфигурационным файлам VDR и там есть файл <span class=\"ref_file\">reccmds.conf</span>, тогда Вы можете запускать занесeнные там команды для выбранных записей. Для этого выберете желаемую команду возле <span class=\"ref_label\">Команды:</span> и нажмите на <input type=\"submit\" class=\"submit\" value=\"Выполнить\"/>.</p><p>Кнопкой <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> Вы можете перезагрузить список записей VDR.</p>" -msgid "Timer OK." -msgstr "Запись по этому таймеру возможна." +msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" +msgstr "<p>Здесь Вы найдeте список всех таймеров, которые знает VDR.</p><p>В верхней части Вы найдeте графическое представление таймеров на один день. Это способствует быстрому обзору того, что было запрограммировано в один день и помогает Вам в распознавании конфликтующих таймеров. Если Вы наведЈте курсором на цветную область, Вы узнаете его название, приоритет, срок хранения и продолжительность.</p><p> Ниже графического уведомления Вы видите список запрограммированных таймеров. Вы можете изменить сортировку списка, нажав на желаемую надпись колонки.</p><p>Для каждого таймера Вы имеете следующие возможности:<dl><dt>Изменение состояния</dt><dd>Это происходит щелканием кнопкой мыши на \"Да\", \"Нет\", \"VPS\" или \"Авто\" в столбце \"Активный\".</dd><dt>Быстрое уведомление его приоритета и срока хранения</dt><dd> Для этого нужно навести курсор мышки на название таймера.</dd><dt>Показ его EPG-записи</dt><dd>Таймеры у которых в опции <span class=\"ref_label\"Автоматический контроль таймера</span>\"Опознавание передачи\" можно увидеть EPG-запись, щЈлкнув курсором на название таймера.</dd><dt>Редактирования таймера</dt><dd>Вы можете редактировать таймер, щЈлкнув курсором на <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Удаление таймера</dt><dd>Для удаления таймера нажмите на <img src=\"bilder/delete.png\"alt=\"delete\" />.</dd></dl></p><p>Статус каждого таймера показывается определенным цветом: <br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Таймер в порядке и будет записан.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Таймер конфликтуетс другими таймерами.Это не страшно, если имеется достаточно DVB-карт для параллельных записей.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot. png\" alt=\"impossible\" align=\"middle\" /> Таймер критический и скорее всего не будет записан.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau. png\" alt=\"inactive\" align=\"middle\" /> Таймер не активен.</p><p>Дополнительно к этим функциям Вы можете запрограммироватьновый таймер, нажав курсором на <input type=\"submit\" class=\"submit\" value=\"Новый таймер\"/>.В нижнем крае экрана Вы найдЈте кнопку <input type=\"submit\" class=\"submit\" value=\"Удалить выделенные таймеры\"/>, тем самым будут удалены все выбранные Вами таймеры.</p><p>Вы можете также активироватьили деактивировать выбранные Вами таймеры.</p>" -msgid "Auto" -msgstr "Авто" +msgid "<p>Here you can edit a timer's settings.</p>" +msgstr "<p><p>Здесь Вы можете редактировать установки таймера.</p>" -msgid "activate" -msgstr "Активирует" +msgid "Timer Active:" +msgstr "Активный таймер:" -msgid "inactivate" -msgstr "Деактивирует" +msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." +msgstr "Активирование и деактивирование таймера. Деактивированные таймеры будут вестись дальше в списке имеющийхся в распоряжении таймеров так, что их можно активировать снова.Между тем Вы ничто не записываете." -msgid "selected timers" -msgstr "выбранные таймеры" +msgid "AutoTimer Checking:" +msgstr "Автоматическая проверка таймера:" -msgid "Delete Selected Timers" -msgstr "Удалить выбранные таймеры" +msgid "Depending on how this timer has been programmed you have up to three possible settings:" +msgstr "В зависимости от того как таймер программировался Вы имеете на выбор 3 варианта:" -msgid "No timers defined!" -msgstr "Нет таймеров!" +msgid "Transmission Identification" +msgstr "Идентификатор передачи" -#, fuzzy -msgid "EPG Search Blacklists" -msgstr "Использовать список запретов:" +msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." +msgstr "Таймер контролируется посредством идентификации, которая содержится в EPG. Пожалуйста, обратите внимание, что это работает только в случае, если идентификации в EPG твердая и однозначная! Эта опция недоступна, если таймер программировался в VDR." -#, fuzzy -msgid "New Blacklist" -msgstr "Использовать список запретов:" +msgid "Time" +msgstr "Время" -msgid "Search pattern" -msgstr "Поисковые признаки" +msgid "Monitor this timer using the start and stop time." +msgstr "Таймер контролируется посредством его времени запуска и остановки." -msgid "From" -msgstr "С" +msgid "off" +msgstr "выкл." -msgid "To" -msgstr "К" +msgid "Do not monitor this timer." +msgstr "Таймер не контролируется." -#, fuzzy -msgid "Delete blacklist?" -msgstr "Использовать список запретов:" +msgid "The channel to record." +msgstr "Записываемый канал." -#, fuzzy -msgid "Delete Selected Blacklists" -msgstr "Удалить выбранные поиски" +msgid "Day Of Recording:" +msgstr "День записи:" -#, fuzzy -msgid "Delete all selected blacklists?" -msgstr "Удалить все выбранные поиски?" +msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." +msgstr "День, в который таймер должен сработать. День может вводиться в 2 форматах: <ul><li> 2 цифры (TT)(при этом используется текущие месяц и год) или </li><li>ISO-norm (JJJJ-MM-TT)(в этом варианте Вы можете запрограммировать таймер на любой день в будущем).</li></ul>Если Вы хотите запрограммировать повторяющиеся таймеры, тогда Вы можете применить 7 кнопок, которые находятся под текстовым полем. Просто выделите поле с названием дня недели, по которым таймер должен срабатывать." -msgid "EPG search" -msgstr "ЕПГ поиск" +msgid "Start Time:" +msgstr "Начало:" -#, fuzzy -msgid "Use template" -msgstr "Запомнить шаблон" +msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Это - время начала записи. Первое текстовое поле для часов, второе для минут." -msgid "New Search" -msgstr "Новый поиск" +msgid "End Time:" +msgstr "Конец:" -msgid "Action" -msgstr "Действие" +msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." +msgstr "Время конца записи. Первое текстовое поле для часов, второе для минут." -msgid "Find" -msgstr "Поиск" +msgid "Title of Recording:" +msgstr "Название записи:" -msgid "Show Favorites" -msgstr "Показать фавориты" +msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." +msgstr "<strong>Имя файла</strong>, которое даст этот таймер записи. Если указываются подкаталоги, тогда они должны быть разделены с '~', так как '/' может быть частью названия регулярной передачи.<br /><br />Ключевые слова <strong>TITLE</strong> и <strong>EPISODE</strong> заменяются, если такие есть в наличии, информацией заголовка или подзаголовка взятой из EPG во время записи, если эти данные есть в EPG. Если эти сведения будут недоступны, то для <strong>TITLE</strong> будет исползоваться название канала, а для <strong>EPISODE</strong> используется пробел." -msgid "Delete Selected Searches" -msgstr "Удалить выбранные поиски" +msgid "Summary:" +msgstr "Сводная информация:" -msgid "Delete all selected searches?" -msgstr "Удалить все выбранные поиски?" +msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." +msgstr "Любой текст, который описывает создаваемую этим таймером запись. Если это поле заполнено, то текст будет записан в <span class=\"ref_file\">summary.vdr</span> или в <span class=\"ref_file\">info.vdr</span> записи." -msgid "Execute Selected Searches" -msgstr "Выполнить выбранные поиски" +msgid "Your Browser does not support frames!" +msgstr "Ваш Броузер не поддерживает фреймы!" -msgid "Duration" -msgstr "Продолжительность" +msgid "What's On Now?" +msgstr "Что идет сейчас?" -msgid "Template:" -msgstr "Шаблон:" +msgid "Playing Today?" +msgstr "Что будет сегодня?" -msgid "Also used for other EPG views!" -msgstr "Также использовать для других EPG" +msgid "Remote Control" +msgstr "Пульт ДУ" -msgid "Bandwidth of Streams:" -msgstr "Пропускная способность трансляции :" +msgid "Watch TV" +msgstr "Телевизор" -msgid "URL:" -msgstr "" +msgid "Commands" +msgstr "Команды" -#, fuzzy -msgid "Title:" -msgstr "Заголовок" +msgid "Search" +msgstr "Поиск" -#, fuzzy -msgid "User-defined search:" -msgstr "Нет таймеров!" +msgid "Authorization Required" +msgstr "Требуется авторизация" -msgid "In \"AutoTimer\"?" -msgstr "В \"Автотаймеры\"?" +msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." +msgstr "Сервер не может подтвердить, что Вы имеете право просмотра данного документа.Вы или ввели неправильные данные или ваш броузер не может их передать" -msgid "Apply" -msgstr "Применить" +msgid "VPS" +msgstr "VPS" msgid "close" msgstr "закрыть" @@ -1277,23 +1124,80 @@ msgstr "Видео дорожки" msgid "Audio tracks:" msgstr "Аудио дорожки" +#, fuzzy +msgid "Video tracks" +msgstr "Видео дорожки" + +#, fuzzy +msgid "Audio tracks" +msgstr "Аудио дорожки" + +msgid "TV select" +msgstr "TV переключить" + +msgid "Stream" +msgstr "Stream" + +#, fuzzy +msgid "Channel group:" +msgstr "Группа каналов:" + +msgid "Go!" +msgstr "Стартовать!" + +msgid "Search for other show times" +msgstr "Искать повторения" + +msgid "No Information" +msgstr "Нет информации" + +msgid "No EPG information available" +msgstr "Нет EPG информации" + +msgid "Playing Today" +msgstr "Что будет сегодня?" + +msgid "starting at" +msgstr "Начать в" + +msgid "What's on:" +msgstr "Что сейчас:" + +msgid "at" +msgstr "в" + msgid "now" msgstr "сейчас" msgid "to" msgstr "до" +msgid "Duration:" +msgstr "Продолжительность:" + +msgid "min" +msgstr "мин" + msgid "at:" msgstr "в:" msgid "You need JavaScript to use the timeline!" msgstr "Вам нужен JavaScript для использования timeline!" -msgid "Authorization Required" -msgstr "Требуется авторизация" +msgid "Rename Recording" +msgstr "Переименовать запись" -msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." -msgstr "Сервер не может подтвердить, что Вы имеете право просмотра данного документа.Вы или ввели неправильные данные или ваш броузер не может их передать" +msgid "Original Name of Recording:" +msgstr "Старое название записи:" + +msgid "New Name of Recording:" +msgstr "Новое название записи:" + +msgid "Subtitle:" +msgstr "Подзаголовок:" + +msgid "Rename" +msgstr "Переименовать" msgid "Total:" msgstr "Всего:" @@ -1304,6 +1208,9 @@ msgstr "h" msgid "Free:" msgstr "Свободно:" +msgid "Date" +msgstr "Дата" + msgid "Total" msgstr "Всего" @@ -1325,6 +1232,9 @@ msgstr "Обновить" msgid "Commands:" msgstr "Команды:" +msgid "Really run this command?" +msgstr "Действительно выполнить команду?" + msgid "Delete Selected Recordings" msgstr "Удалить выбранные записи" @@ -1334,6 +1244,105 @@ msgstr "Удалить все выбранные записи?" msgid "No recordings available" msgstr "Нет записей" +msgid "Transponder:" +msgstr "Транспондер:" + +msgid "CA-System:" +msgstr "CA-System:" + +msgid "New Timer" +msgstr "Новый таймер" + +msgid "Edit timer status?" +msgstr "Изменить статус таймера?" + +msgid "This timer is inactive!" +msgstr "Эта запись деактивирована!" + +msgid "This timer is impossible!" +msgstr "Запись по этому таймеру невозможна!" + +msgid "No more timers on other transponders possible!" +msgstr "Дальнейшие записи на других транспондерах невозможны!" + +msgid "Timer OK." +msgstr "Запись по этому таймеру возможна." + +msgid "Auto" +msgstr "Авто" + +msgid "activate" +msgstr "Активирует" + +msgid "inactivate" +msgstr "Деактивирует" + +msgid "selected timers" +msgstr "выбранные таймеры" + +msgid "Delete Selected Timers" +msgstr "Удалить выбранные таймеры" + +msgid "No timers defined!" +msgstr "Нет таймеров!" + +msgid "Create New Timer" +msgstr "Создать новый таймер" + +msgid "Buffer:" +msgstr "Буфер:" + +msgid "Use VPS:" +msgstr "Использовать VPS:" + +msgid "readonly" +msgstr "не изменяемо" + +msgid "Timer has been set by AutoTimer pattern:" +msgstr "Таймер выставлен Автотаймером:" + +msgid "TV" +msgstr "TV" + +msgid "Interval:" +msgstr "Интервал:" + +msgid "sec." +msgstr "сек." + +msgid "G" +msgstr "G" + +msgid "Grab the picture!" +msgstr "Создать скриншот!" + +msgid "Size:" +msgstr "Размер:" + +msgid "Open in separate window" +msgstr "Открыть в отдельном окне" + +msgid "VDR Commands" +msgstr "VDR Команды:" + +msgid "Export channels as playlist:" +msgstr "" + +msgid "Number of lines to show:" +msgstr "Количество показываемых строк:" + +msgid "unlimited" +msgstr "без ограничений" + +msgid "SVDRP commands:" +msgstr "SVDRP Команды:" + +msgid "Commands defined in commands.conf:" +msgstr "Комманды из commands.conf:" + +msgid "Output" +msgstr "Вывод" + msgid "What's your VDR hostname (e.g video.intra.net)?" msgstr "Имя хоста VDR (например, video.intra.net)?" diff --git a/po/vdradmin.pot b/po/vdradmin.pot index 9b2891a..58daf9f 100644 --- a/po/vdradmin.pot +++ b/po/vdradmin.pot @@ -19,9 +19,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: VDRAdmin-AM 3.6.3\n" +"Project-Id-Version: VDRAdmin-AM 3.6.5\n" "Report-Msgid-Bugs-To: Andreas Mair <andreas@vdr-developer.org>\n" -"POT-Creation-Date: 2008-12-18 08:25+0100\n" +"POT-Creation-Date: 2009-12-30 13:26+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -32,457 +32,499 @@ msgstr "" msgid "ISO-8859-1" msgstr "" -msgid "What's On Now?" +msgid "About" msgstr "" -msgid "Channel group:" +msgid "License" msgstr "" -msgid "What's on:" +msgid "Authors" msgstr "" -msgid "at" +msgid "Current author (VDRAdmin-AM branch):" msgstr "" -msgid "o'clock" +msgid "Original author (VDRAdmin):" msgstr "" -msgid "More Information" +msgid "Translation Team" msgstr "" -msgid "Channels" +msgid "English:" msgstr "" -msgid "Stream" +msgid "German:" msgstr "" -msgid "TV select" +msgid "French:" msgstr "" -msgid "Search for other show times" +msgid "At the moment unmaintained, former translations by:" msgstr "" -msgid "No Information" +msgid "Spanish:" msgstr "" -msgid "Edit" +msgid "Finnish:" msgstr "" -msgid "Record" +msgid "Dutch:" msgstr "" -msgid "No EPG information available" +msgid "Russian:" msgstr "" -msgid "Edit EPG" +msgid "Czech:" msgstr "" -msgid "Help" +msgid "Italian:" msgstr "" -msgid "Channel" +msgid "Information" msgstr "" -msgid "Time" +msgid "VDRAdmin-AM version:" msgstr "" -msgid "Title" +msgid "VDR version:" msgstr "" -msgid "Subtitle" +msgid "Supported features in VDR:" msgstr "" -msgid "Description" +msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" msgstr "" -msgid "VPS" +msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" msgstr "" -msgid "Video tracks" +msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" msgstr "" -msgid "Audio tracks" +msgid "Getting Help and Reporting Bugs" msgstr "" -msgid "Save" +msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." msgstr "" -msgid "Cancel" +msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" msgstr "" -msgid "Edit Timer" +msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." msgstr "" -msgid "<p>Here you can edit a timer's settings.</p>" +msgid "AutoTimer" msgstr "" -msgid "Timer Active:" +msgid "Priority:" msgstr "" -msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." +msgid "Lifetime:" msgstr "" -msgid "AutoTimer Checking:" +msgid "New AutoTimer" msgstr "" -msgid "Depending on how this timer has been programmed you have up to three possible settings:" +msgid "Help" msgstr "" -msgid "Transmission Identification" +msgid "Active" msgstr "" -msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." +msgid "Channel" msgstr "" -msgid "Monitor this timer using the start and stop time." +msgid "Start" msgstr "" -msgid "off" +msgid "Stop" msgstr "" -msgid "Do not monitor this timer." +msgid "Name" msgstr "" -msgid "Channel:" +msgid "Select all/none" msgstr "" -msgid "The channel to record." +msgid "Yes" msgstr "" -msgid "Day Of Recording:" +msgid "No" msgstr "" -msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." +msgid "Edit" msgstr "" -msgid "Start Time:" +msgid "Delete timer?" msgstr "" -msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." +msgid "Delete" msgstr "" -msgid "End Time:" +msgid "Force Update" msgstr "" -msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." +msgid "Delete Selected AutoTimers" msgstr "" -msgid "Priority:" +msgid "Delete all selected timers?" msgstr "" -msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." +msgid "No AutoTimers defined!" msgstr "" -msgid "Lifetime:" +msgid "Add New AutoTimer" msgstr "" -msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." +msgid "Edit AutoTimer" msgstr "" -msgid "Title of Recording:" +msgid "AutoTimer Active:" msgstr "" -msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." +msgid "oneshot" msgstr "" -msgid "Summary:" +msgid "Search Patterns:" msgstr "" -msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." +msgid "Search in:" msgstr "" -msgid "Go!" +msgid "Title" msgstr "" -msgid "AutoTimer" +msgid "Subtitle" msgstr "" -msgid "New AutoTimer" +msgid "Description" msgstr "" -msgid "Active" +msgid "Search only on these days:" msgstr "" -msgid "Start" +msgid "Monday" msgstr "" -msgid "Stop" +msgid "Tuesday" msgstr "" -msgid "Name" +msgid "Wednesday" msgstr "" -msgid "Select all/none" +msgid "Thursday" msgstr "" -msgid "Yes" +msgid "Friday" msgstr "" -msgid "No" +msgid "Saturday" msgstr "" -msgid "Delete timer?" +msgid "Sunday" msgstr "" -msgid "Delete" +msgid "Channel:" msgstr "" -msgid "Force Update" +msgid "all" msgstr "" -msgid "Delete Selected AutoTimers" +msgid "Starts After:" msgstr "" -msgid "Delete all selected timers?" +msgid "o'clock" msgstr "" -msgid "No AutoTimers defined!" +msgid "Ends Before:" msgstr "" -msgid "VDR Commands" +msgid "Override Start/Stop Margins:" msgstr "" -msgid "Export channels as playlist:" +msgid "Time Margin at Start:" msgstr "" -msgid "Number of lines to show:" +msgid "minutes" msgstr "" -msgid "unlimited" +msgid "Time Margin at Stop:" msgstr "" -msgid "SVDRP commands:" +msgid "Episode:" msgstr "" -msgid "Run" +msgid "Remember programmed timers:" msgstr "" -msgid "Really run this command?" +msgid "Directory:" msgstr "" -msgid "Commands defined in commands.conf:" +msgid "Save" msgstr "" -msgid "Output" +msgid "Test" msgstr "" -msgid "Add New AutoTimer" +msgid "Cancel" msgstr "" -msgid "Edit AutoTimer" +msgid "Broadcasted" msgstr "" -msgid "AutoTimer Active:" +msgid "Stored in" msgstr "" -msgid "oneshot" +msgid "No matches found!" msgstr "" -msgid "Search Patterns:" +msgid "Configuration" msgstr "" -msgid "Search in:" +msgid "General Settings" msgstr "" -msgid "Search only on these days:" +msgid "Template:" msgstr "" -msgid "Monday" +msgid "Skin:" msgstr "" -msgid "Tuesday" +msgid "Login Page:" msgstr "" -msgid "Wednesday" +msgid "Number of channels to use:" msgstr "" -msgid "Thursday" +msgid "Local net (no login required):" msgstr "" -msgid "Friday" +msgid "Language:" msgstr "" -msgid "Saturday" +msgid "Save settings on exit:" msgstr "" -msgid "Sunday" +msgid "VDR" msgstr "" -msgid "all" +msgid "Number of DVB cards:" msgstr "" -msgid "Starts After:" +msgid "Path to recordings:" msgstr "" -msgid "Ends Before:" +msgid "Path to configuration files:" msgstr "" -msgid "Override Start/Stop Margins:" +msgid "Path to EPG images:" msgstr "" -msgid "Time Margin at Start:" +msgid "Identification" msgstr "" -msgid "minutes" +msgid "Username:" msgstr "" -msgid "Time Margin at Stop:" +msgid "Password:" msgstr "" -msgid "Episode:" +msgid "Guest Account:" msgstr "" -msgid "Remember programmed timers:" +msgid "Guest Username:" msgstr "" -msgid "Directory:" +msgid "Guest Password:" msgstr "" -msgid "Test" +msgid "Timeline" msgstr "" -msgid "Broadcasted" +msgid "Hours:" msgstr "" -msgid "Stored in" +msgid "Times:" msgstr "" -msgid "No matches found!" +msgid "Also used for other EPG views!" msgstr "" -msgid "About" +msgid "Tooltips:" msgstr "" -msgid "License" +msgid "Active:" msgstr "" -msgid "Authors" +msgid "Send email after programming timer:" msgstr "" -msgid "Current author (VDRAdmin-AM branch):" +msgid "Send email as:" msgstr "" -msgid "Original author (VDRAdmin):" +msgid "Send email to:" msgstr "" -msgid "Translation Team" +msgid "Mail server:" msgstr "" -msgid "English:" +msgid "SMTPAuth user:" msgstr "" -msgid "German:" +msgid "SMTPAuth password:" msgstr "" -msgid "French:" +msgid "Track schedule changes by:" msgstr "" -msgid "At the moment unmaintained, former translations by:" +msgid "Broadcast time" msgstr "" -msgid "Spanish:" +msgid "Event id" msgstr "" -msgid "Finnish:" +msgid "Timer" msgstr "" -msgid "Dutch:" +msgid "Tooltips in timeline:" msgstr "" -msgid "Russian:" +msgid "Tooltips in list:" msgstr "" -msgid "Czech:" +msgid "Streaming" msgstr "" -msgid "Italian:" +msgid "Live Streaming:" msgstr "" -msgid "Information" +msgid "HTTP Port of Streamdev (also possible 3000/ts):" msgstr "" -msgid "VDRAdmin-AM version:" +msgid "Recordings Streaming:" msgstr "" -msgid "VDR version:" +msgid "Path to VDR Recordings on your workstation:" msgstr "" -msgid "Supported features in VDR:" +msgid "MIME type for live streaming:" msgstr "" -msgid "EPGSearch (<a href=\"http://people.freenet.de/cwieninger/html/vdr-epg-search.html\" target=\"_blank\">EPGSearch Plugin</a>)" +msgid "Suffix for live streaming:" msgstr "" -msgid "LiveTV Streaming (<a href=\"http://www.vdr-wiki.de/wiki/index.php/Streamdev-plugin\" target=\"_blank\">Streamdev Plugin</a>)" +msgid "MIME type for recordings streaming:" msgstr "" -msgid "Rename Recordings (<a href=\"http://www.saunalahti.fi/~rahrenbe/vdr/patches/\" target=\"_blank\">Liemikuutio Patch</a>)" +msgid "Suffix for recordings streaming:" msgstr "" -msgid "Getting Help and Reporting Bugs" +msgid "Bandwidth of Streams:" msgstr "" -msgid "If you need help please first try to use the online help you'll find on some pages. You can access it by clicking <img src=\"bilder/help.png\" alt=\"\" />." +msgid "External Search" msgstr "" -msgid "If this doesn't provide the information you need you can try to get help at <a href=\"http://www.vdrportal.de\" target=\"_blank\">VDR-Portal</a> if you understand German language. Please use the announcement thread if possible, search for:" +msgid "URL:" msgstr "" -msgid "If you think you have found a bug please check that it's a new one and report it in the <a href=\"http://www.vdr-developer.org/mantisbt/main_page.php\" target=\"_blank\">VDRAdmin-AM BugTracking system</a>." +msgid "Title:" msgstr "" -msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" +msgid "User-defined search:" msgstr "" -msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." +msgid "Expert" msgstr "" -msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Only broadcasts will match if they contain <strong>all</strong> items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as Blacklist-string) or only one episode (when using \"Enterprise~Azati Prime\" as Blacklist-string)." +msgid "Update EPG data in background:" msgstr "" -msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." +msgid "Update EPG every:" msgstr "" -msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." +msgid "Channel Selections" msgstr "" -msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." +msgid "Show channels without EPG information:" msgstr "" -msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgid "In \"AutoTimer\"?" msgstr "" -msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." +msgid "Apply" msgstr "" -msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." +msgid "EPG Search Blacklists" msgstr "" -msgid "The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG." +msgid "New Blacklist" msgstr "" -msgid "The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG." +msgid "Search pattern" msgstr "" -msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." +msgid "From" msgstr "" -msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." +msgid "To" msgstr "" -msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." +msgid "Delete blacklist?" msgstr "" -msgid "Timer" +msgid "Delete Selected Blacklists" msgstr "" -msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" +msgid "Delete all selected blacklists?" msgstr "" -msgid "Playing Today" +msgid "EPG search" msgstr "" -msgid "starting at" +msgid "EPG Search" +msgstr "" + +msgid "Use template" +msgstr "" + +msgid "New Search" +msgstr "" + +msgid "Edit Template" +msgstr "" + +msgid "Settings" +msgstr "" + +msgid "Action" +msgstr "" + +msgid "Find" +msgstr "" + +msgid "Show Favorites" +msgstr "" + +msgid "Delete Selected Searches" +msgstr "" + +msgid "Delete all selected searches?" +msgstr "" + +msgid "Execute Selected Searches" +msgstr "" + +msgid "Duration" +msgstr "" + +msgid "More Information" +msgstr "" + +msgid "Channels" +msgstr "" + +msgid "Record" msgstr "" msgid "Add New Blacklist" @@ -494,9 +536,6 @@ msgstr "" msgid "Add New Template" msgstr "" -msgid "Edit Template" -msgstr "" - msgid "Add New Search" msgstr "" @@ -512,9 +551,6 @@ msgstr "" msgid "Hide results" msgstr "" -msgid "Settings" -msgstr "" - msgid "Name:" msgstr "" @@ -692,622 +728,595 @@ msgstr "" msgid "Save as template" msgstr "" -msgid "Create New Timer" -msgstr "" - -msgid "Buffer:" -msgstr "" - -msgid "Use VPS:" -msgstr "" - -msgid "readonly" -msgstr "" - -msgid "Timer has been set by AutoTimer pattern:" -msgstr "" - -msgid "No Help Available" -msgstr "" - -msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" +msgid "Run" msgstr "" msgid "Error!" msgstr "" -msgid "TV" -msgstr "" - -msgid "Interval:" -msgstr "" - -msgid "sec." +msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" msgstr "" -msgid "G" +msgid "<p>Here you can edit an automatic timer's (AutoTimer) settings.</p><p>AutoTimer is a key feature of VDRAdmin-AM. An AutoTimer consists of one or more search terms and some other settings, that are looked for regularly in the Electronic Program Guide (EPG). On match AutoTimer adds a timer in VDR automatically for that broadcast. That's very comfortable for irregularly broadcasted series or movies you don't want to miss.</p>" msgstr "" -msgid "Grab the picture!" +msgid "Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to \"oneshot\" so this AutoTimer only programs the (one!) next matching broadcast." msgstr "" -msgid "Size:" +msgid "Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn't matter, \"X-Files\" matches anything \"x-files\" will match. You can set multiple search items by separating them with spaces. Broadcasts will match only if they match <strong>all</strong> configured search items.<br />You'd better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don't get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM's configuration folder. If this string is found either in the EPG's <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using \"Enterprise\" as blacklist string) or only one episode (when using \"Enterprise~Azati Prime\" as blacklist string)." msgstr "" -msgid "Open in separate window" +msgid "Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern." msgstr "" -msgid "Playing Today?" +msgid "Use these checkboxes to limit searching for matching broadcasts to a set of weekdays." msgstr "" -msgid "Timeline" +msgid "The channel to look for matching broadcasts or \"all\" to search in all known or wanted channels. You can define the wanted channels for AutoTimer in \"Configuration\"." msgstr "" -msgid "EPG Search" +msgid "A broadcast must start after the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." msgstr "" -msgid "Recordings" +msgid "A broadcast must end before the time entered here to match. The first text field is for \"hour\", the second for \"minute\"." msgstr "" -msgid "Remote Control" +msgid "Set this option to \"yes\" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes." msgstr "" -msgid "Watch TV" +msgid "The number of minutes VDRAdmin-AM subtracts from the broadcast's start time found in the EPG." msgstr "" -msgid "Commands" +msgid "The number of minutes VDRAdmin-AM adds to the broadcast's stop time found in the EPG." msgstr "" -msgid "Configuration" +msgid "An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording." msgstr "" -msgid "Search" +msgid "The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by." msgstr "" -msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" +msgid "Check this box if you want VDRAdmin-AM to append the broadcast's EPG subtitle to the recording's file name." msgstr "" -msgid "General Settings" +msgid "If you enable this VDRAdmin-AM will track timers it has already programmed automatically. This is useful if want to deactivate or delete timers that have been programmed automatically in the timers listing." msgstr "" -msgid "VDR" +msgid "The directory this AutoTimer will place the recordings in. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br />VDRAdmin-AM will append the matching broadcast's title and subtitle (if the \"Episode\" checkbox is marked) to the directory given here.<br /><br />You can also use the following keywords that are replaced in the final file name by the values supplied by for example <a href=\"http://tvmovie2vdr.vdr-developer.org\">tvm2vdr</a>:<ul><li>%Title% - will become the title of the event.</li><li>%Subtitle% - will become the subtitle of the event.</li><li>%Director% - will become the director of the event.</li><li>%Date% - will become the date of the recording.</li><li>%Category% - will become the category of the event (Spielfilm/Serie/...).</li><li>%Genre% - will become the genre of the event (Drama/Krimi/..).</li><li>%Year% - will become the year of production.</li><li>%Country% - will become the country of production.</li><li>%Originaltitle% - will become the original title of the event.</li><li>%FSK% - will become the FSK from the event.</li><li>%Episode% - will become the episode's title of the event.</li><li>%Rating% - will become the rating of the event from the EPG provider.</li></ul><h4>Note:</h4>If you use the above keywords it's in your own responsibility to supply the <strong>complete file name</strong> for the recordings! VDRAdmin-AM will not append anything to the resulting string." msgstr "" -msgid "Identification" +msgid "<p>Here you can change general settings and base settings for timers, AutoTimers, channel selection and streaming parameters.</p>" msgstr "" -msgid "Streaming" +msgid "The skin you want to use." msgstr "" -msgid "Expert" +msgid "The page you want to see at first connect to VDRAdmin-AM." msgstr "" -msgid "External Search" +msgid "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." msgstr "" -msgid "Channel Selections" +msgid "Here you can specify an IP address or range that can login without providing login information. For example: \"192.168.0.0/24\" will include any IP starting with \"192.168.0\", \"192.168.0.123/32\" will only match \"192.168.0.123\"." msgstr "" -msgid "Skin:" +msgid "Here you can set the localization VDRAdmin-AM should use." msgstr "" -msgid "The skin you want to use." +msgid "With this option the settings will be saved if VDRAdmin-AM exits. This will also save settings not available on the \"Configuration\" menu like interval and size in TV, sorting in the lists and current view in \"What's on now\"." msgstr "" -msgid "Login Page:" +msgid "Top" msgstr "" -msgid "The page you want to see at first connect to VDRAdmin-AM." +msgid "The number of DVB cards VDR can access. Depending on this value VDRAdmin-AM will calculate critical timers in the <span class=\"ref_menu\">Timer</span> menu." msgstr "" -msgid "Number of channels to use:" +msgid "The path to VDR's recordings. It's used so that VDRAdmin-AM can locate the recordings when using <span class=\"ref_label\">Recordings Streaming</span> and <span class=\"ref_file\">reccmds.conf</span> in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "" -msgid "VDRAdmin-AM will load the given number of channels from VDR and present only those in any fields where channels can be selected. This also limits the EPG information VDRAdmin-AM will read so that you can use this to reduce VDRAdmin-AM's memory consumption and increase its performance. <strong>0</strong> turns this feature off and VDRAdmin-AM will use all available channels." +msgid "The path where VDR's configuration files are located. If this directory contains the file <span class=\"ref_file\">reccmds.conf</span> its content is shown in a selectbox in the <span class=\"ref_menu\">Recordings</span> menu." msgstr "" -msgid "Local net (no login required):" +msgid "The path where the EPG images are stored." msgstr "" -msgid "Here you can specify an IP address or range that can login without providing login information. For example: \"192.168.0.0/24\" will include any IP starting with \"192.168.0\", \"192.168.0.123/32\" will only match \"192.168.0.123\"." +msgid "The username for the main user, i.e. the user having the most privileges." msgstr "" -msgid "Language:" +msgid "The main user's password." msgstr "" -msgid "Here you can set the localization VDRAdmin-AM should use." +msgid "If you want a user account having only limited privileges, this is for you. The guest user cannot modify anything, it's only allowed to view the EPG, timers, AutoTimers and recordings listings." msgstr "" -msgid "Save settings on exit:" +msgid "The username for the guest user." msgstr "" -msgid "With this option the settings will be saved if VDRAdmin-AM exits. This will also save settings not available on the \"Configuration\" menu like interval and size in TV, sorting in the lists and current view in \"What's on now\"." +msgid "The guest user's password." msgstr "" -msgid "Top" +msgid "The number of hours to show in the timeline." msgstr "" -msgid "Number of DVB cards:" +msgid "A comma separated list of times in <strong>hh:mm</strong> format that appear in the selectbox placed at the top." msgstr "" -msgid "The number of DVB cards VDR can access. Depending on this value VDRAdmin-AM will calculate critical timers in the <span class=\"ref_menu\">Timer</span> menu." +msgid "Here you can (de-)activate the tooltips." msgstr "" -msgid "Path to recordings:" +msgid "Activate or deactivate the AutoTimer function." msgstr "" -msgid "The path to VDR's recordings. It's used so that VDRAdmin-AM can locate the recordings when using <span class=\"ref_label\">Recordings Streaming</span> and <span class=\"ref_file\">reccmds.conf</span> in the <span class=\"ref_menu\">Recordings</span> menu." +msgid "VDRAdmin-AM will send an email whenever an event matches an AutoTimer and a timer has been programmed if you enable this feature." msgstr "" -msgid "Path to configuration files:" +msgid "Here you set the sending email address of the generated email." msgstr "" -msgid "The path where VDR's configuration files are located. If this directory contains the file <span class=\"ref_file\">reccmds.conf</span> its content is shown in a selectbox in the <span class=\"ref_menu\">Recordings</span> menu." +msgid "The email address the email is sent to." msgstr "" -msgid "Path to EPG images:" +msgid "The outgoing mail server." msgstr "" -msgid "The path where the EPG images are stored." +msgid "If you need to authenticate yourself at the outgoing mail server, you have to supply the username and the password below. Leaving this field empty will disable SMTPAuth." msgstr "" -msgid "Username:" +msgid "The password for the SMTPAuth user." msgstr "" -msgid "The username for the main user, i.e. the user having the most privileges." +msgid "Here you can (de-)activate the tooltips in the timeline." msgstr "" -msgid "Password:" +msgid "Here you can (de-)activate the tooltips in the list." msgstr "" -msgid "The main user's password." +msgid "Add summary to new timers:" msgstr "" -msgid "Guest Account:" +msgid "If you don't want VDRAdmin-AM to add the summary taken from EPG to new timers you can switch it off here." msgstr "" -msgid "If you want a user account having only limited privileges, this is for you. The guest user cannot modify anything, it's only allowed to view the EPG, timers, AutoTimers and recordings listings." +msgid "Enable or disable live streaming using the <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. You also have to set the correct <span class=\"ref_label\">HTTP Port for Streamdev</span> below." msgstr "" -msgid "Guest Username:" +msgid "Here you have to set the port number your VDR's streamdev server listens for connections. Additionally you can also provide the stream type you like to use." msgstr "" -msgid "The username for the guest user." +msgid "Enable or disable streaming of recordings.<br />Well actually this is no real \"streaming\", but you have to setup your workstation so that it can access VDR's recordings. You can use for example Samba or NFS for this. VDRAdmin-AM simply generates a playlist that contains all parts of the recording and sends this to your browser. If your browser and media player are configured correctly you will see the recording on your workstation's display." msgstr "" -msgid "Guest Password:" +msgid "This is the path where your workstation can access VDR's recordings. This depends on your VDR and workstation setup, for example \"\\\\vdr\\videos\" or \"V:\\\" (on Windows) or \"/mnt/videos\" (on Linux)." msgstr "" -msgid "The guest user's password." +msgid "The MIME type to send when using live streaming. Defaults to \"video/x-mpegurl\"." msgstr "" -msgid "Hours:" +msgid "The suffix to use for live streaming. Defaults to \"m3u\"." msgstr "" -msgid "The number of hours to show in the timeline." +msgid "The MIME type to send when using recordings streaming. Defaults to \"video/x-mpegurl\"." msgstr "" -msgid "Times:" +msgid "The suffix to use for recordings streaming. Defaults to \"m3u\"." msgstr "" -msgid "A comma separated list of times in <strong>hh:mm</strong> format that appear in the selectbox placed at the top." +msgid "<p>Here you can define two external searches that you can access in the EPG views. You simply have to find the required URL and where the search pattern has to be located. %TITLE% will be substituted by the broadcast's EPG title.</p>" msgstr "" -msgid "Tooltips:" +msgid "Some examples:" msgstr "" -msgid "Here you can (de-)activate the tooltips." +msgid "Please change the hostname to your local needs!" msgstr "" -msgid "Active:" +msgid "<p>This section is for experts <strong>only</strong>, i.e. you know what you are doing!</p>" msgstr "" -msgid "Activate or deactivate the AutoTimer function." +msgid "If set to \"yes\" VDRAdmin-AM will periodically refresh its local EPG cache. Else the EPG will be refreshed if the user accesses any EPG view at the web interface and the timeout set at \"Update EPG every\" has been reached." msgstr "" -msgid "Send email after programming timer:" +msgid "The interval, the EPG data is refreshed from VDR and AutoTimer updates are performed (if AutoTimer feature is used)." msgstr "" -msgid "VDRAdmin-AM will send an email whenever an event matches an AutoTimer and a timer has been programmed if you enable this feature." +msgid "<p>If you want to limit the number of channels used in some parts of VDRAdmin-AM, this is for you!</p><p>Use the radio buttons to activate or deactivate the wanted channels in the named menu.</p><p>To add channels to the list of wanted channels you have to select them in the left side selectbox and click <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. If you want to remove channels from the list of wanted channels you have to select them in the right side selectbox and click <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" msgstr "" -msgid "Send email as:" +msgid "Usually channels that don't have EPG information are hidden in all EPG views. If you don't want them to be hidden you have to set this option to \"yes\"." msgstr "" -msgid "Here you set the sending email address of the generated email." +msgid "Edit Timer" msgstr "" -msgid "Send email to:" +msgid "Edit EPG" msgstr "" -msgid "The email address the email is sent to." +msgid "<p>Here you can edit the descriptive fields of an existing EPG entry.</p>" msgstr "" -msgid "Mail server:" +msgid "Channel (readonly)" msgstr "" -msgid "The outgoing mail server." +msgid "This is the channel of the EPG entry. It cannot be changed." msgstr "" -msgid "SMTPAuth user:" +msgid "Time (readonly)" msgstr "" -msgid "If you need to authenticate yourself at the outgoing mail server, you have to supply the username and the password below. Leaving this field empty will disable SMTPAuth." +msgid "This is the start and end time of the entry. It cannot be changed." msgstr "" -msgid "SMTPAuth password:" +msgid "Change this string to give this EPG Entry a new title. It must consist of only one line of text." msgstr "" -msgid "The password for the SMTPAuth user." +msgid "Change this string to give this EPG Entry a new subtitle. It must consist of only one line of text." msgstr "" -msgid "Tooltips in timeline:" +msgid "Change the text in this field to edit the description of this entry. The text can consist of one or more lines." msgstr "" -msgid "Here you can (de-)activate the tooltips in the timeline." +msgid "VPS (readonly)" msgstr "" -msgid "Tooltips in list:" +msgid "If available this field shows the vps time of the EPG entry. It cannot be changed." msgstr "" -msgid "Here you can (de-)activate the tooltips in the list." +msgid "Video tracks (readonly)" msgstr "" -msgid "Add summary to new timers:" +msgid "If available this field shows the video track(s). It cannot be changed." msgstr "" -msgid "If you don't want VDRAdmin-AM to add the summary taken from EPG to new timers you can switch it off here." +msgid "Audio tracks (readonly)" msgstr "" -msgid "Live Streaming:" +msgid "If available this field shows the audio track(s). It cannot be changed." msgstr "" -msgid "Enable or disable live streaming using the <a href=\"http://www.magoa.net/linux/\">streamdev plugin</a>. You also have to set the correct <span class=\"ref_label\">HTTP Port for Streamdev</span> below." +msgid "No Help Available" msgstr "" -msgid "HTTP Port of Streamdev (also possible 3000/ts):" +msgid "<p>No help available yet. For adding or changing text please contact <a href=\"mailto:mail@andreas.vdr-developer.org\">mail@andreas.vdr-developer.org</a>.</p>" msgstr "" -msgid "Here you have to set the port number your VDR's streamdev server listens for connections. Additionally you can also provide the stream type you like to use." +msgid "Recordings" msgstr "" -msgid "Recordings Streaming:" +msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" msgstr "" -msgid "Enable or disable streaming of recordings.<br />Well actually this is no real \"streaming\", but you have to setup your workstation so that it can access VDR's recordings. You can use for example Samba or NFS for this. VDRAdmin-AM simply generates a playlist that contains all parts of the recording and sends this to your browser. If your browser and media player are configured correctly you will see the recording on your workstation's display." +msgid "<p>Here you will find a listing of timers known to VDR.</p><p>On top you will find a chart showing a day's timers graphically. This provides an quick overview on what's going on at the specified day and helps you in finding conflicting timers. Moving the mouse cursor above any timer box will display a tooltip containing the timer's title, priority, lifetime and duration.</p><p>Below the chart you'll find the timers list showing you some information on the timers. You can change the list's sorting by clicking the columns heading.</p><p>For each timer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the \"Active\" column.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the timer's title.</dd><dt>View its EPG entry</dt><dd>Timers that have set <span class=\"ref_label\">AutoTimer Checking</span> to \"Transmission Identification\" will show you the corresponding EPG entry if you click on the timer's title.</dd><dt>Edit the timer</dt><dd>You can edit a timer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the timer</dt><dd>To delete a timer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each timer's state is indicated by differently coloured boxes (in the chart view) or images (in the list view):<br /><span class=\"color_ok\"> </span> / <img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> Timer is OK and will record.<br /><span class=\"color_collision\"> </span> / <img src=\"bilder/poempl_gelb.png\" alt=\"problem\" align=\"middle\" /> Timer conflicts with other timers. That's not critical, as long as you have enough DVB cards for the parallel recordings.<br /><span class=\"color_conflict\"> </span> / <img src=\"bilder/poempl_rot.png\" alt=\"impossible\" align=\"middle\" /> Timer is critical and will most likely <strong>not</strong> record.<br /><span class=\"color_inactive\"> </span> / <img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> Timer is not active.</p><p>In addition to these functions you can add a new timer by clicking <input type=\"submit\" class=\"submit\" value=\"New Timer\"/> at the top and you can delete a number of timers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Timers\"/>.</p><p>You can <input type=\"submit\" class=\"submit\" value=\"activate\"/> and <input type=\"submit\" class=\"submit\" value=\"inactivate\"/> selected timers.</p>" msgstr "" -msgid "Path to VDR Recordings on your workstation:" +msgid "<p>Here you can edit a timer's settings.</p>" msgstr "" -msgid "This is the path where your workstation can access VDR's recordings. This depends on your VDR and workstation setup, for example \"\\\\vdr\\videos\" or \"V:\\\" (on Windows) or \"/mnt/videos\" (on Linux)." +msgid "Timer Active:" msgstr "" -msgid "MIME type for live streaming:" +msgid "Activate or deactivate this timer. Deactivated timers are still stored in the timer list so that they can be activated again, but they do not record anything meanwhile." msgstr "" -msgid "The MIME type to send when using live streaming. Defaults to \"video/x-mpegurl\"." +msgid "AutoTimer Checking:" msgstr "" -msgid "Suffix for live streaming:" +msgid "Depending on how this timer has been programmed you have up to three possible settings:" msgstr "" -msgid "The suffix to use for live streaming. Defaults to \"m3u\"." +msgid "Transmission Identification" msgstr "" -msgid "MIME type for recordings streaming:" +msgid "Monitor this timer using the identification provided in the EPG. Please note that this only works if the provided identification is a fix and unique value! This option is not available with timers programmed in VDR." msgstr "" -msgid "The MIME type to send when using recordings streaming. Defaults to \"video/x-mpegurl\"." +msgid "Time" msgstr "" -msgid "Suffix for recordings streaming:" +msgid "Monitor this timer using the start and stop time." msgstr "" -msgid "The suffix to use for recordings streaming. Defaults to \"m3u\"." +msgid "off" msgstr "" -msgid "<p>Here you can define two external searches that you can access in the EPG views. You simply have to find the required URL and where the search pattern has to be located. %TITLE% will be substituted by the broadcast's EPG title.</p>" +msgid "Do not monitor this timer." msgstr "" -msgid "Some examples:" +msgid "The channel to record." msgstr "" -msgid "Please change the hostname to your local needs!" +msgid "Day Of Recording:" msgstr "" -msgid "<p>This section is for experts <strong>only</strong>, i.e. you know what you are doing!</p>" +msgid "The day when the timer should get active. You can enter the day in two formats:<ul><li>Two digits (DD). This will use the current month and year.</li><li>ISO norm (YYYY-MM-DD). Program your timers as far in the future as you like.</li></ul>In case you want to program a repeating timer you can use the seven checkboxes below the text field. Check the box for each day you want the timer to get active." msgstr "" -msgid "Update EPG data in background:" +msgid "Start Time:" msgstr "" -msgid "If set to \"yes\" VDRAdmin-AM will periodically refresh its local EPG cache. Else the EPG will be refreshed if the user accesses any EPG view at the web interface and the timeout set at \"Update EPG every\" has been reached." +msgid "This is the time when the timer should start recording. The first text field is for \"hour\", the second for \"minute\"." msgstr "" -msgid "Update EPG every:" +msgid "End Time:" msgstr "" -msgid "The interval, the EPG data is refreshed from VDR and AutoTimer updates are performed (if AutoTimer feature is used)." +msgid "This is the time when the timer should stop recording. The first text field is for \"hour\", the second for \"minute\"." msgstr "" -msgid "<p>If you want to limit the number of channels used in some parts of VDRAdmin-AM, this is for you!</p><p>Use the radio buttons to activate or deactivate the wanted channels in the named menu.</p><p>To add channels to the list of wanted channels you have to select them in the left side selectbox and click <input type=\"submit\" class=\"submit\" value=\">>>>>\"/>. If you want to remove channels from the list of wanted channels you have to select them in the right side selectbox and click <input type=\"submit\" class=\"submit\" value=\"<<<<<\"/>.</p>" +msgid "Title of Recording:" msgstr "" -msgid "Show channels without EPG information:" +msgid "The <strong>file name</strong> this timer will give to a recording. If the name shall contain subdirectories, these have to be delimited by '~' (since the '/' character may be part of a regular programme name).<br /><br />The special keywords <strong>TITLE</strong> and <strong>EPISODE</strong>, if present, will be replaced by the title and episode information from the EPG data at the time of recording (if that data is available). If at the time of recording either of these cannot be determined, <strong>TITLE</strong> will default to the channel name, and <strong>EPISODE</strong> will default to a blank." msgstr "" -msgid "Usually channels that don't have EPG information are hidden in all EPG views. If you don't want them to be hidden you have to set this option to \"yes\"." +msgid "Summary:" msgstr "" -msgid "<p>Here you will find a listing of automatic timers (AutoTimer) known to VDRAdmin-AM.</p><p>The list shows some information on AutoTimers. You can change the list's sorting by clicking the columns heading.</p><p>For each AutoTimer you have the following options:<dl><dt>Set its state</dt><dd>By clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the activity.</dd><dt>Quickly view its priority and lifetime</dt><dd>By pointing the mouse cursor to the AutoTimer's title.</dd><dt>Edit the AutoTimer</dt><dd>You can edit an AutoTimer by clicking <img src=\"bilder/edit.png\" alt=\"edit\" />.</dd><dt>Delete the AutoTimer</dt><dd>To delete an AutoTimer you click <img src=\"bilder/delete.png\" alt=\"delete\" />.</dd></dl></p><p>Each AutoTimer's state is indicated by differently coloured images:<br /><img src=\"bilder/poempl_gruen.png\" alt=\"on\" align=\"middle\" /> AutoTimer is OK and will automatically program matching broadcasts.<br /><img src=\"bilder/poempl_grau.png\" alt=\"inactive\" align=\"middle\" /> AutoTimer is not active.</p><p>In addition to these functions you can add a new AutoTimer by clicking <input type=\"submit\" class=\"submit\" value=\"New AutoTimer\"/> at the top and you can delete a number of AutoTimers at once by checking the box in the last column of those timers and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected AutoTimers\"/>.</p><p>Click <input type=\"submit\" class=\"submit\" value=\"Force Update\"/> to force VDRAdmin-AM to reconnect to VDR, fetch the current EPG and check for matching AutoTimers.</p>" +msgid "Arbitrary text that describes the recording made by this timer. If this field is not empty, its contents will be written into the <span class=\"ref_file\">summary.vdr</span> or <span class=\"ref_file\">info.vdr</span> file of the recording." msgstr "" msgid "Your Browser does not support frames!" msgstr "" -msgid "Rename Recording" -msgstr "" - -msgid "Original Name of Recording:" +msgid "What's On Now?" msgstr "" -msgid "New Name of Recording:" +msgid "Playing Today?" msgstr "" -msgid "Subtitle:" +msgid "Remote Control" msgstr "" -msgid "Rename" +msgid "Watch TV" msgstr "" -msgid "<p>Here you will find a listing of recordings known to VDR. The headline will also show you VDR's total and free disk space.</p><p>The listing showing you some information on the recordings. You can change the list's sorting by clicking the columns heading. Above the list you'll see the navigation path. If you want to view the contents of previous folders you'll have to click on its name in that path.</p><p>Each row contains this information:<dl><dt>Date</dt><dd>The date when the recording has been done. In case of folders this will show the number of recordings the folder contains.</dd><dt>Time</dt><dd>The time when the recording has been done. In case of folders this will show the number of <strong>new</strong> recordings the folder contains.</dd><dt>Name</dt><dd>The recording's or folder's name. Click it to show the recording's summary or descend into the folder.</dd><dt>Rename (<img src=\"bilder/edit.png\" alt=\"edit\" />)</dt><dd>Rename a recording.<br /><h4>Note:</h4>This only works if VDR has the <u>RENR</u> SVDRPort command which is no core VDR feature but is available through a patch. <span class=\"ref_file\">vdr-aio21_svdrprename.patch</span> or <span class=\"ref_file\">enAIO-v2.2+</span> provide this command.</dd><dt>Delete (<img src=\"bilder/delete.png\" alt=\"delete\" />)</dt><dd>Delete a recording.</dd><dt>Stream (<img src=\"bilder/stream.png\" alt=\"stream\" />)</dt><dd>This column is only shown if you activated and configured <span class=\"ref_label\">Recordings Streaming</span> in the <span class=\"ref_menu\">Configuration</span> menu. You can watch the recording at your workstation.</dd></dl></p><p>In addition to these functions you can delete a number of recordings at once by checking the box in the last but one column of those recordings and clicking <input type=\"submit\" class=\"submit\" value=\"Delete Selected Recordings\"/>.</p><p>If you've set the path the VDR's configuration files and have entries in VDR's <span class=\"ref_file\">reccmds.conf</span> you can run those commands for the selected recording by selecting the wanted command in the select box locate next to <span class=\"ref_label\">Commands:</span> and pressing the <input type=\"submit\" class=\"submit\" value=\"Run\"/> button.</p><p>Use <input type=\"submit\" class=\"submit\" value=\"Refresh\"/> to force reloading of VDR's recordings listing.</p>" +msgid "Commands" msgstr "" -msgid "<p>Here you can edit the descriptive fields of an existing EPG entry.</p>" +msgid "Search" msgstr "" -msgid "Channel (readonly)" +msgid "Authorization Required" msgstr "" -msgid "This is the channel of the EPG entry. It cannot be changed." +msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." msgstr "" -msgid "Time (readonly)" +msgid "VPS" msgstr "" -msgid "This is the start and end time of the entry. It cannot be changed." +msgid "close" msgstr "" -msgid "Change this string to give this EPG Entry a new title. It must consist of only one line of text." +msgid "view" msgstr "" -msgid "Change this string to give this EPG Entry a new subtitle. It must consist of only one line of text." +msgid "search" msgstr "" -msgid "Change the text in this field to edit the description of this entry. The text can consist of one or more lines." +msgid "edit" msgstr "" -msgid "VPS (readonly)" +msgid "Video tracks:" msgstr "" -msgid "If available this field shows the vps time of the EPG entry. It cannot be changed." +msgid "Audio tracks:" msgstr "" -msgid "Video tracks (readonly)" +msgid "Video tracks" msgstr "" -msgid "If available this field shows the video track(s). It cannot be changed." +msgid "Audio tracks" msgstr "" -msgid "Audio tracks (readonly)" +msgid "TV select" msgstr "" -msgid "If available this field shows the audio track(s). It cannot be changed." +msgid "Stream" msgstr "" -msgid "Duration:" +msgid "Channel group:" msgstr "" -msgid "min" +msgid "Go!" msgstr "" -msgid "Transponder:" +msgid "Search for other show times" msgstr "" -msgid "CA-System:" +msgid "No Information" msgstr "" -msgid "New Timer" +msgid "No EPG information available" msgstr "" -msgid "Date" +msgid "Playing Today" msgstr "" -msgid "Edit timer status?" +msgid "starting at" msgstr "" -msgid "This timer is inactive!" +msgid "What's on:" msgstr "" -msgid "This timer is impossible!" +msgid "at" msgstr "" -msgid "No more timers on other transponders possible!" +msgid "now" msgstr "" -msgid "Timer OK." +msgid "to" msgstr "" -msgid "Auto" +msgid "Duration:" msgstr "" -msgid "activate" +msgid "min" msgstr "" -msgid "inactivate" +msgid "at:" msgstr "" -msgid "selected timers" +msgid "You need JavaScript to use the timeline!" msgstr "" -msgid "Delete Selected Timers" +msgid "Rename Recording" msgstr "" -msgid "No timers defined!" +msgid "Original Name of Recording:" msgstr "" -msgid "EPG Search Blacklists" +msgid "New Name of Recording:" msgstr "" -msgid "New Blacklist" +msgid "Subtitle:" msgstr "" -msgid "Search pattern" +msgid "Rename" msgstr "" -msgid "From" +msgid "Total:" msgstr "" -msgid "To" +msgid "h" msgstr "" -msgid "Delete blacklist?" +msgid "Free:" msgstr "" -msgid "Delete Selected Blacklists" +msgid "Date" msgstr "" -msgid "Delete all selected blacklists?" +msgid "Total" msgstr "" -msgid "EPG search" +msgid "New" msgstr "" -msgid "Use template" +msgid "Play" msgstr "" -msgid "New Search" +msgid "Cut" msgstr "" -msgid "Action" +msgid "Delete recording?" msgstr "" -msgid "Find" +msgid "Refresh" msgstr "" -msgid "Show Favorites" +msgid "Commands:" msgstr "" -msgid "Delete Selected Searches" +msgid "Really run this command?" msgstr "" -msgid "Delete all selected searches?" +msgid "Delete Selected Recordings" msgstr "" -msgid "Execute Selected Searches" +msgid "Delete all selected recordings?" msgstr "" -msgid "Duration" +msgid "No recordings available" msgstr "" -msgid "Template:" +msgid "Transponder:" msgstr "" -msgid "Also used for other EPG views!" +msgid "CA-System:" msgstr "" -msgid "Bandwidth of Streams:" +msgid "New Timer" msgstr "" -msgid "URL:" +msgid "Edit timer status?" msgstr "" -msgid "Title:" +msgid "This timer is inactive!" msgstr "" -msgid "User-defined search:" +msgid "This timer is impossible!" msgstr "" -msgid "In \"AutoTimer\"?" +msgid "No more timers on other transponders possible!" msgstr "" -msgid "Apply" +msgid "Timer OK." msgstr "" -msgid "close" +msgid "Auto" msgstr "" -msgid "view" +msgid "activate" msgstr "" -msgid "search" +msgid "inactivate" msgstr "" -msgid "edit" +msgid "selected timers" msgstr "" -msgid "Video tracks:" +msgid "Delete Selected Timers" msgstr "" -msgid "Audio tracks:" +msgid "No timers defined!" msgstr "" -msgid "now" +msgid "Create New Timer" msgstr "" -msgid "to" +msgid "Buffer:" msgstr "" -msgid "at:" +msgid "Use VPS:" msgstr "" -msgid "You need JavaScript to use the timeline!" +msgid "readonly" msgstr "" -msgid "Authorization Required" +msgid "Timer has been set by AutoTimer pattern:" msgstr "" -msgid "This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g. bad password), or your browser doesn't understand how to supply the credentials required." +msgid "TV" msgstr "" -msgid "Total:" +msgid "Interval:" msgstr "" -msgid "h" +msgid "sec." msgstr "" -msgid "Free:" +msgid "G" msgstr "" -msgid "Total" +msgid "Grab the picture!" msgstr "" -msgid "New" +msgid "Size:" msgstr "" -msgid "Play" +msgid "Open in separate window" msgstr "" -msgid "Cut" +msgid "VDR Commands" msgstr "" -msgid "Delete recording?" +msgid "Export channels as playlist:" msgstr "" -msgid "Refresh" +msgid "Number of lines to show:" msgstr "" -msgid "Commands:" +msgid "unlimited" msgstr "" -msgid "Delete Selected Recordings" +msgid "SVDRP commands:" msgstr "" -msgid "Delete all selected recordings?" +msgid "Commands defined in commands.conf:" msgstr "" -msgid "No recordings available" +msgid "Output" msgstr "" msgid "What's your VDR hostname (e.g video.intra.net)?" diff --git a/template/default/about.html b/template/default/about.html index 81c9faa..1406bfe 100644 --- a/template/default/about.html +++ b/template/default/about.html @@ -20,7 +20,7 @@ <td class="col_label"><h5></h5></td> <td class="col_value"> <p> - <strong>VDRAdmin-AM</strong> © 2005-2008 Andreas Mair. + <strong>VDRAdmin-AM</strong> © 2005-2010 Andreas Mair. </p> <p> This program is free software; you can redistribute it and/or modify<br /> @@ -78,7 +78,7 @@ </tr> <tr class="row_even"> <td class="col_label"><h5><?% gettext('Spanish:') %?></h5></td> - <td class="col_value">Rüdiger Jung</td> + <td class="col_value">Rüdiger Jung, Manuel Gomez</td> </tr> <tr class="row_even"> <td class="col_label"><h5><?% gettext('Finnish:') %?></h5></td> diff --git a/template/default/config.html b/template/default/config.html index c40e4ba..ee1bbce 100644 --- a/template/default/config.html +++ b/template/default/config.html @@ -240,6 +240,13 @@ <input type="radio" name="AT_TOOLTIP" value="0" id="at_tooltip_no" <?% UNLESS config.AT_TOOLTIP %?>checked="checked"<?% END %?> /><label for="at_tooltip_no"><?% gettext('No') %?></label> </td> </tr> + <tr class="row_odd"> + <td class="col_label"><h5><?% gettext('Track schedule changes by:') %?></h5></td> + <td class="col_value"> + <input type="radio" name="NO_EVENTID" value="1" id="no_eventid_1" <?% IF config.NO_EVENTID %?>checked="checked"<?% END %?> /><label for="no_eventid_1"><?% gettext('Broadcast time') %?></label> + <input type="radio" name="NO_EVENTID" value="0" id="no_eventid_0" <?% UNLESS config.NO_EVENTID %?>checked="checked"<?% END %?> /><label for="no_eventid_0"><?% gettext('Event id') %?></label> + </td> + </tr> </table> <?% END %?> diff --git a/template/default/help_at_timer_new.html b/template/default/help_at_timer_new.html index 6e1d88c..c4b48d9 100644 --- a/template/default/help_at_timer_new.html +++ b/template/default/help_at_timer_new.html @@ -30,7 +30,7 @@ <dt><?% gettext('AutoTimer Active:') %?></dt> <dd><?% gettext('Activate or deactivate this AutoTimer. Deactivated AutoTimers are still stored in the AutoTimer list so that they can be activated again, but they do not record anything meanwhile. Above that you can set this to "oneshot" so this AutoTimer only programs the (one!) next matching broadcast.') %?></dd> <dt><?% gettext('Search Patterns:') %?></dt> - <dd><?% gettext('Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn\'t matter, "X-Files" matches anything "x-files" will match. You can set multiple search items by separating them with spaces. Only broadcasts will match if they contain <strong>all</strong> items.<br />You\'d better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don\'t get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM\'s configuration folder. If this string is found either in the EPG\'s <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using "Enterprise" as Blacklist-string) or only one episode (when using "Enterprise~Azati Prime" as Blacklist-string).') %?></dd> + <dd><?% gettext('Choosing the right search items decides whether only the wanted broadcasts or broadcasts having similar names or even nothing gets recorded.<br />Case doesn\'t matter, "X-Files" matches anything "x-files" will match. You can set multiple search items by separating them with spaces. Broadcasts will match only if they match <strong>all</strong> configured search items.<br />You\'d better only use letters and numbers for search items, as the EPG often miss colons, brackets and other characters.<br />Experts can also use regular expressions, but you have to get needed information from the VDRAdmin-AM sources (undocumented feature).<br /><br />You can exclude broadcasts so that they don\'t get recorded even if they would match an AutoTimer. Therefore you have to enter that titles into the file <i>vdradmind.bl</i>, one event a line. This file must be located in your VDRAdmin-AM\'s configuration folder. If this string is found either in the EPG\'s <u>title</u> or in <u>title~subtitle</u>, this event will not be programmed by AutoTimer. So you can disable complete episodes (for example when using "Enterprise" as blacklist string) or only one episode (when using "Enterprise~Azati Prime" as blacklist string).') %?></dd> <dt><?% gettext('Search in:') %?></dt> <dd><?% gettext('Here you can define the EPG sections where VDRAdmin-AM should look for the search pattern.') %?></dd> <dt><?% gettext('Search only on these days:') %?></dt> @@ -44,9 +44,9 @@ <dt><?% gettext('Override Start/Stop Margins:') %?></dt> <dd><?% gettext('Set this option to "yes" if all timers programed by this AutoTimer should have individual start/stop margins and enter the values in the next two text boxes.') %?></dd> <dt><?% gettext('Time Margin at Start:') %?></dt> - <dd><?% gettext('The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG.') %?></dd> + <dd><?% gettext('The number of minutes VDRAdmin-AM subtracts from the broadcast\'s start time found in the EPG.') %?></dd> <dt><?% gettext('Time Margin at Stop:') %?></dt> - <dd><?% gettext('The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG.') %?></dd> + <dd><?% gettext('The number of minutes VDRAdmin-AM adds to the broadcast\'s stop time found in the EPG.') %?></dd> <dt><?% gettext('Priority:') %?></dt> <dd><?% gettext('An integer in the range <strong>0...99</strong>, defining the <strong>priority</strong> of this timer and of recordings created by this timer. <strong>0</strong> represents the lowest value, <strong>99</strong> the highest. The priority is used to decide which timer shall be started in case there are two or more timers with the exact same <strong>start</strong> time. The first timer in the list with the highest priority will be used.<br /><br />This value is also stored with the recording and is later used to decide which recording to remove from disk in order to free space for a new recording. If the disk runs full and a new recording needs more space, an existing recording with the lowest priority (and which has exceeded its guaranteed <strong>lifetime</strong>) will be removed.<br /><br />If all available DVB cards are currently occupied, a timer with a higher priority will interrupt the timer with the lowest priority in order to start recording.') %?></dd> <dt><?% gettext('Lifetime:') %?></dt> diff --git a/template/default/help_config.html b/template/default/help_config.html index f4a360c..3b54b25 100644 --- a/template/default/help_config.html +++ b/template/default/help_config.html @@ -98,9 +98,9 @@ <dt><?% gettext('Lifetime:') %?></dt> <dd><?% gettext('The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by.') %?></dd> <dt><?% gettext('Time Margin at Start:') %?></dt> - <dd><?% gettext('The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG.') %?></dd> + <dd><?% gettext('The number of minutes VDRAdmin-AM subtracts from the broadcast\'s start time found in the EPG.') %?></dd> <dt><?% gettext('Time Margin at Stop:') %?></dt> - <dd><?% gettext('The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG.') %?></dd> + <dd><?% gettext('The number of minutes VDRAdmin-AM adds to the broadcast\'s stop time found in the EPG.') %?></dd> <dt><?% gettext('Send email after programming timer:') %?></dt> <dd><?% gettext('VDRAdmin-AM will send an email whenever an event matches an AutoTimer and a timer has been programmed if you enable this feature.') %?></dd> <dt><?% gettext('Send email as:') %?></dt> @@ -126,9 +126,9 @@ <dt><?% gettext('Lifetime:') %?></dt> <dd><?% gettext('The <strong>guaranteed</strong> lifetime (in days) of a recording created by this timer. <strong>0</strong> means that this recording may be automatically deleted at any time by a new recording with higher priority. <strong>99</strong> means that this recording will never be automatically deleted. Any number in the range <strong>1...98</strong> means that this recording may not be automatically deleted in favour of a new recording, until the given number of days since the <strong>start</strong> time of the recording has passed by.') %?></dd> <dt><?% gettext('Time Margin at Start:') %?></dt> - <dd><?% gettext('The number of minutes VDRAdmin-AM subtracts from the broadcasts start time found in the EPG.') %?></dd> + <dd><?% gettext('The number of minutes VDRAdmin-AM subtracts from the broadcast\'s start time found in the EPG.') %?></dd> <dt><?% gettext('Time Margin at Stop:') %?></dt> - <dd><?% gettext('The number of minutes VDRAdmin-AM adds to the broadcasts stop time found in the EPG.') %?></dd> + <dd><?% gettext('The number of minutes VDRAdmin-AM adds to the broadcast\'s stop time found in the EPG.') %?></dd> <dt><?% gettext('Tooltips in timeline:') %?></dt> <dd><?% gettext('Here you can (de-)activate the tooltips in the timeline.') %?></dd> <dt><?% gettext('Tooltips in list:') %?></dt> diff --git a/template/default/library.js b/template/default/library.js index 29bbe42..ee9daf2 100644 --- a/template/default/library.js +++ b/template/default/library.js @@ -1,3 +1,5 @@ +/*jslint browser: true */ + // // this is part of VDR Admin // @@ -7,12 +9,16 @@ function open_help(url) { function del(message, suffix) { check=confirm(message); - if(check) window.location.href=suffix; + if(check) { + window.location.href=suffix; + } } function change(message, suffix) { check=confirm(message); - if(check) window.location.href=suffix; + if(check) { + window.location.href=suffix; + } } function mdel(but, message) { @@ -37,7 +43,8 @@ function AllMessages(myform) { for (var x = 0; x < myform.elements.length; x++) { var y = myform.elements[x]; - if (y.name != 'SELALL') - y.checked = myform.SELALL.checked; + if (y.name != 'SELALL') { + y.checked = myform.SELALL.checked; + } } } diff --git a/template/default/timeline.js b/template/default/timeline.js index 72a654b..8f6053e 100644 --- a/template/default/timeline.js +++ b/template/default/timeline.js @@ -1,33 +1,35 @@ +/*jslint browser: true, evil: true, laxbreak: true */
+
/*##########################################################################*/
/* Browser independent size detection */
/*##########################################################################*/
-function GetWindowW()
+function GetWindowW()
{
- if (window.innerWidth)
+ if (window.innerWidth)
{
return window.innerWidth;
- }
- else if (document.body && document.body.offsetWidth)
+ }
+ else if (document.body && document.body.offsetWidth)
{
return document.body.offsetWidth;
- }
- else
+ }
+ else
{
return 0;
}
}
-function GetWindowH()
+function GetWindowH()
{
- if (window.innerHeight)
+ if (window.innerHeight)
{
return window.innerHeight;
- }
- else if (document.body && document.body.offsetHeight)
+ }
+ else if (document.body && document.body.offsetHeight)
{
return document.body.offsetHeight;
- }
- else
+ }
+ else
{
return 0;
}
@@ -62,6 +64,18 @@ function ChannelInfo(vdr_id, name, url, events) this.events = events;
}
+function format_date(fmt, time)
+{
+ if (fmt == "%H:%M")
+ {
+ var date = new Date(time * 1000);
+ var h = '0' + date.getHours();
+ var m = '0' + date.getMinutes();
+ return h.substr(h.length-2, 2) + ':' + m.substr(m.length-2, 2);
+ }
+ return "[WRONG_FMT:" + fmt + "]";
+}
+
function EPGEvent(epg_id, start_sec, stop_sec, title, timer, summary)
{
this.epg_id = epg_id;
@@ -74,27 +88,12 @@ function EPGEvent(epg_id, start_sec, stop_sec, title, timer, summary) this.summary = summary;
}
-function format_date(fmt, time)
-{
- var date = new Date(time * 1000);
- switch (fmt)
- {
- case "%H:%M":
- {
- var h = '0' + date.getHours();
- var m = '0' + date.getMinutes();
- return h.substr(h.length-2, 2) + ':' + m.substr(m.length-2, 2);
- }
- }
- return "[WRONG_FMT:" + fmt + "]";
-}
-
function SetTimeLine(_this, _table_w, _px_per_min, _end_min)
{
_this.name_w = 100;
_this.table_w = _table_w;
_this.px_per_min = _px_per_min;
-
+
_this.end_min = Div(_this.table_w - _this.name_w, _this.px_per_min);
if (_this.end_min > _end_min)
{
@@ -104,9 +103,9 @@ function SetTimeLine(_this, _table_w, _px_per_min, _end_min) _this.end_min -= _this.end_min % 30;
_this.event_w = _this.end_min * _this.px_per_min;
_this.name_w = _this.table_w - _this.event_w;
-
+
_this.end_sec = _this.start_sec + _this.end_min * 60;
-
+
_this.first_sec = _this.now_sec + 1799 - _this.end_min * 60;
_this.first_sec -= _this.first_sec % 1800;
_this.last_sec = _this.first_sec + 86400;
@@ -117,11 +116,11 @@ function TimeLine(_req_sec, _now_url, _px_per_min, _end_min) this.now_url = _now_url;
this.org_px_per_min = _px_per_min;
this.org_end_min = _end_min;
-
+
this.req_sec = _req_sec;
this.start_sec = _req_sec - _req_sec % 1800;
this.min5_h = 10;
-
+
var d = new Date();
this.now_sec = Div(d.getTime(), 1000);
@@ -157,69 +156,26 @@ function BuildHiddenFrameInput() W('<input type="hidden" name="frame" value="' + tl.first_sec + '"/>');
}
-function BuildContent()
-{
- /* Write content div */
- BuildContentDiv();
-
- /* Check if the width has changed due to vertical scrollbar */
- var tab = document.getElementById("heading");
- var table_w;
- if (tab)
- {
- table_w = tab.clientWidth;
- }
- else
- {
- table_w = this.innerWidth;
- }
-
- if (tl.table_w > table_w)
- {
- /* Recalculate all data for new table width */
- SetTimeLine(tl, table_w, tl.org_px_per_min, tl.org_end_min);
-
- /* Delete first content div */
- tab = document.getElementById("content");
- tab.innerHTML = null;
-
- /* Write second content div */
- BuildContentDiv();
- }
-}
-
-function BuildContentDiv()
-{
- W('<div id="content">');
-
- W('<table width="' + tl.table_w + '" border="0" cellspacing="0" cellpadding="0" class="bigtable list">');
- BuildHeader();
- BuildTable();
- W('</table>');
-
- DrawTimeLine();
- W('</div>');
-}
-
function BuildHeader()
{
W('<tr class="heading">');
W('<td id="header_title" colspan="3">');
W('<h2>');
- W(format_date('%H:%M', tl.start_sec) + ' ' + trans.o_clock
- + ' ' + trans.to + ' '
+ W(format_date('%H:%M', tl.start_sec) + ' ' + trans.o_clock
+ + ' ' + trans.to + ' '
+ format_date('%H:%M', tl.end_sec) + ' ' + trans.o_clock);
W('</h2>');
W('<br />');
W('</td>');
W('<td id="header_navi" class="col_navi">');
+ var diff_sec;
if (tl.start_sec < tl.first_sec + 1800)
{
W('<img src="bilder/pfeile_nachlinks_soft.png" border="0" />');
}
else
{
- var diff_sec = tl.start_sec - tl.end_min * 60;
+ diff_sec = tl.start_sec - tl.end_min * 60;
if (diff_sec < tl.first_sec)
{
diff_sec = tl.first_sec;
@@ -234,7 +190,7 @@ function BuildHeader() }
else
{
- var diff_sec = tl.end_sec;
+ diff_sec = tl.end_sec;
W('<a href="' + tl.now_url + '&time=' + format_date('%H:%M', diff_sec) + '&frame=' + tl.first_sec + '" title="' + format_date('%H:%M', diff_sec) + '">');
W('<img src="bilder/pfeile_nachrechts.png" border="0" />');
W('</a>');
@@ -243,14 +199,29 @@ function BuildHeader() W('</tr>');
}
-function BuildTable()
+function DrawTimeLine()
{
- W('<tr id="row_timeline" class="row_even">');
- W('<td colspan="4">');
- BuildTimeScale();
- BuildProgTable();
- W('</td>');
- W('</tr>');
+ var tab = document.getElementById("row_timeline");
+ if (tab && (tl.start_sec <= tl.now_sec) && (tl.now_sec < tl.end_sec))
+ {
+ var x = tl.name_w + tl.px_per_min * Div(tl.now_sec - tl.start_sec, 60) + 1;
+ var y = tab.offsetTop;
+ var h = tab.offsetHeight;
+ var style = "position:absolute; "
+ + "top:" + y + "px; "
+ + "left:" + x + "px; "
+ + "width:1px; "
+ + "height:" + h + "px; "
+ + "z-index:2; ";
+ if (document.all)
+ {
+ style = style + "filter:Alpha(opacity=50); ";
+ }
+
+ W('<span id="timeline" style="' + style + '">');
+ W(' <img src="bilder/spacer.gif" width="1" height="1" border="0" />');
+ W('</span>');
+ }
}
function BuildTimeScale()
@@ -258,10 +229,12 @@ function BuildTimeScale() W('<table width="' + tl.table_w + '" border="0" cellspacing="0" cellpadding="0" class="timestable">');
W('<tr>');
W('<td><img src="bilder/spacer.gif" width="' + tl.name_w + '" height="1" border="0" /></td>');
+ var c;
+ var w;
for (var min = 0; min < tl.end_min; min += 30)
{
- var c = min % 60 ? 'color1' : 'color2';
- var w = tl.px_per_min * (tl.end_min - min < 30) ? tl.end_min - min : 30;
+ c = min % 60 ? 'color1' : 'color2';
+ w = tl.px_per_min * (tl.end_min - min < 30) ? tl.end_min - min : 30;
var t = tl.start_sec + min * 60;
W('<td colspan="6" class="' + c + '">');
W('<img src="bilder/spacer.gif" width="' + w + '" height="1" border="0" /><br />');
@@ -271,10 +244,10 @@ function BuildTimeScale() W('</tr>');
W('<tr>');
W('<td><img src="bilder/spacer.gif" width="' + tl.name_w + '" height="1" border="0" /></td>');
- for (var min = 0; min < tl.end_min; min += 5)
+ for (min = 0; min < tl.end_min; min += 5)
{
- var c = min % 10 ? 'color1' : 'color2';
- var w = tl.px_per_min * 5;
+ c = min % 10 ? 'color1' : 'color2';
+ w = tl.px_per_min * 5;
W('<td width="' + tl.px_per_min + '" height="' + tl.min5_h + '" class="' + c + '">');
W('<img src="bilder/spacer.gif" width="' + w + '" height="1" border="0" /><br />');
W('</td>');
@@ -283,14 +256,63 @@ function BuildTimeScale() W('</table>');
}
-function BuildProgTable()
+function BuildSpacer(width)
{
- W('<table border="0" cellpadding="0" cellspacing="0" width="' + tl.table_w + '" class="prgname">');
- for (var i = 0; i < channels.length; i++)
- {
- var c = "prgname " + (i % 2 ? "color1" : "color2");
- BuildChannel(channels[i], c);
- }
+ W('<table border="0" align="left" cellpadding="0" cellspacing="0" width="' + width + '" class="prgtable">');
+ W('<tr>');
+ W('<td width="1" class="color_spacer">');
+ W('<img src="bilder/spacer.gif" width="1" height="1" border="0"/><br />');
+ W('<nobr>');
+ W('<img src="bilder/spacer.gif" width="1" height="8" border="0"/> ');
+ W('</nobr>');
+ W('</td>');
+ W('</tr>');
+ W('</table>');
+}
+
+function BuildNoEPG(event, width)
+{
+ W('<table border="0" align="left" cellpadding="0" cellspacing="0" width="' + width + '" class="prgtable">');
+ W('<tr>');
+ W('<td width="1" class="color_spacer">');
+ W('<img src="bilder/spacer.gif" width="1" height="1" border="0" /><br />');
+ W('<nobr>');
+ W(event.title);
+ W('</nobr>');
+ W('</td>');
+ W('</tr>');
+ W('</table>');
+}
+
+function BuildEvent(vdr_id, counter, event, td_class, px_w)
+{
+ var table_class = event.timer ? "timertable" : "prgtable";
+ W('<table border="0" align="left" cellpadding="0" cellspacing="0" width="' + px_w + '" class="' + table_class + '">');
+ W('<tr>');
+ W('<td width="1" class="' + td_class + '" ');
+ if (show_tooltips)
+ {
+ W('onMouseOver="tip(' + "'VDR-" + vdr_id + "-" + counter + "'); " + 'return true;" ');
+ W('onMouseOut="untip(); return true;" ');
+ }
+ W('>');
+ W('<img src="bilder/spacer.gif" width="1" height="1" border="0" /><br />');
+ W('<nobr>');
+ var anchor_start = "";
+ var anchor_end = "";
+ if (event.summary)
+ {
+ anchor_start = '<a href="javascript:popup('
+ + "'./vdradmin.pl?aktion=prog_detail&epg_id="
+ + event.epg_id + "&vdr_id=" + vdr_id + "', " + popup_width + ", " + popup_height + ");" + '">';
+ anchor_end = '</a>';
+ }
+ W(anchor_start);
+ W(event.title);
+ W(anchor_end);
+ W('</nobr>');
+ W('</td>');
+ W('</tr>');
W('</table>');
}
@@ -306,22 +328,25 @@ function BuildChannel(channel, td_class) W('</a>');
W('</nobr>');
W('</td>');
-
+
/* Events */
W('<td class="' + td_class + '">');
W('<nobr>');
var old_stop_min = 0;
if (channel.events[0].start_sec > 0)
- {
+ {
for (var i = 0; i < channel.events.length; i++)
{
var event = channel.events[i];
-
+
/* Calculate event start and stop time in minutes from table begin. */
var start_min = Div(event.start_sec - tl.start_sec, 60);
var stop_min = Div(event.stop_sec - tl.start_sec, 60);
- if (start_min >= tl.end_min) break;
-
+ if (start_min >= tl.end_min)
+ {
+ break;
+ }
+
/* Adjust times to regard end of last event and end of table. */
td_class = "";
if (start_min < old_stop_min)
@@ -332,11 +357,17 @@ function BuildChannel(channel, td_class) td_class = "color_spacer"; /* overlapped event */
}
}
- if (stop_min > tl.end_min) stop_min = tl.end_min;
-
+ if (stop_min > tl.end_min)
+ {
+ stop_min = tl.end_min;
+ }
+
/* Ignore completely overlapped events. */
- if (start_min >= stop_min) continue;
-
+ if (start_min >= stop_min)
+ {
+ continue;
+ }
+
if (!td_class)
{
if (event.timer)
@@ -356,12 +387,12 @@ function BuildChannel(channel, td_class) td_class = "color_broadcast";
}
}
-
+
if (start_min > old_stop_min + 1)
{
BuildSpacer((start_min - old_stop_min) * tl.px_per_min);
}
-
+
var px_w = (stop_min - start_min) * tl.px_per_min;
BuildEvent(channel.vdr_id, i, event, td_class, px_w);
old_stop_min = stop_min;
@@ -374,93 +405,73 @@ function BuildChannel(channel, td_class) else
{
BuildNoEPG(channel.events[0], tl.end_min * tl.px_per_min);
- }
+ }
W('</nobr>');
W('</td>');
W('</tr>');
}
-function BuildSpacer(width)
+function BuildProgTable()
{
- W('<table border="0" align="left" cellpadding="0" cellspacing="0" width="' + width + '" class="prgtable">');
- W('<tr>');
- W('<td width="1" class="color_spacer">');
- W('<img src="bilder/spacer.gif" width="1" height="1" border="0"/><br />');
- W('<nobr>');
- W('<img src="bilder/spacer.gif" width="1" height="8" border="0"/> ');
- W('</nobr>');
- W('</td>');
- W('</tr>');
+ W('<table border="0" cellpadding="0" cellspacing="0" width="' + tl.table_w + '" class="prgname">');
+ for (var i = 0; i < channels.length; i++)
+ {
+ var c = "prgname " + (i % 2 ? "color1" : "color2");
+ BuildChannel(channels[i], c);
+ }
W('</table>');
}
-function BuildEvent(vdr_id, counter, event, td_class, px_w)
+function BuildTable()
{
- var table_class = event.timer ? "timertable" : "prgtable";
- W('<table border="0" align="left" cellpadding="0" cellspacing="0" width="' + px_w + '" class="' + table_class + '">');
- W('<tr>');
- W('<td width="1" class="' + td_class + '" ');
- if (show_tooltips)
- {
- W('onMouseOver="tip(' + "'VDR-" + vdr_id + "-" + counter + "'); " + 'return true;" ');
- W('onMouseOut="untip(); return true;" ');
- }
- W('>');
- W('<img src="bilder/spacer.gif" width="1" height="1" border="0" /><br />');
- W('<nobr>');
- var anchor_start = "";
- var anchor_end = "";
- if (event.summary)
- {
- anchor_start = '<a href="javascript:popup('
- + "'./vdradmin.pl?aktion=prog_detail&epg_id="
- + event.epg_id + "&vdr_id=" + vdr_id + "', " + popup_width + ", " + popup_height + ");" + '">';
- anchor_end = '</a>';
- }
- W(anchor_start);
- W(event.title);
- W(anchor_end);
- W('</nobr>');
- W('</td>');
- W('</tr>');
- W('</table>');
+ W('<tr id="row_timeline" class="row_even">');
+ W('<td colspan="4">');
+ BuildTimeScale();
+ BuildProgTable();
+ W('</td>');
+ W('</tr>');
}
-function BuildNoEPG(event, width)
+function BuildContentDiv()
{
- W('<table border="0" align="left" cellpadding="0" cellspacing="0" width="' + width + '" class="prgtable">');
- W('<tr>');
- W('<td width="1" class="color_spacer">');
- W('<img src="bilder/spacer.gif" width="1" height="1" border="0" /><br />');
- W('<nobr>');
- W(event.title);
- W('</nobr>');
- W('</td>');
- W('</tr>');
- W('</table>');
+ W('<div id="content">');
+
+ W('<table width="' + tl.table_w + '" border="0" cellspacing="0" cellpadding="0" class="bigtable list">');
+ BuildHeader();
+ BuildTable();
+ W('</table>');
+
+ DrawTimeLine();
+ W('</div>');
}
-function DrawTimeLine()
+function BuildContent()
{
- var tab = document.getElementById("row_timeline");
- if (tab && (tl.start_sec <= tl.now_sec) && (tl.now_sec < tl.end_sec))
+ /* Write content div */
+ BuildContentDiv();
+
+ /* Check if the width has changed due to vertical scrollbar */
+ var tab = document.getElementById("heading");
+ var table_w;
+ if (tab)
{
- var x = tl.name_w + tl.px_per_min * Div(tl.now_sec - tl.start_sec, 60) + 1;
- var y = tab.offsetTop;
- var h = tab.offsetHeight;
- var style = "position:absolute; "
- + "top:" + y + "px; "
- + "left:" + x + "px; "
- + "width:1px; "
- + "height:" + h + "px; "
- + "z-index:2; ";
- if (document.all)
- {
- style = style + "filter:Alpha(opacity=50); ";
- }
+ table_w = tab.clientWidth;
+ }
+ else
+ {
+ table_w = this.innerWidth;
+ }
- W('<span id="timeline" style="' + style + '">');
- W(' <img src="bilder/spacer.gif" width="1" height="1" border="0" />');
- W('</span>');
+ if (tl.table_w > table_w)
+ {
+ /* Recalculate all data for new table width */
+ SetTimeLine(tl, table_w, tl.org_px_per_min, tl.org_end_min);
+
+ /* Delete first content div */
+ tab = document.getElementById("content");
+ tab.innerHTML = null;
+
+ /* Write second content div */
+ BuildContentDiv();
}
}
diff --git a/vdradmind.pl b/vdradmind.pl index 7a872e3..54a03a1 100755 --- a/vdradmind.pl +++ b/vdradmind.pl @@ -1,7 +1,7 @@ #!/usr/bin/perl # vim:et:sw=4:ts=4: # -# VDRAdmin-AM 2005 - 2008 by Andreas Mair <mail@andreas.vdr-developer.org> +# VDRAdmin-AM 2005 - 2010 by Andreas Mair <mail@andreas.vdr-developer.org> # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -26,7 +26,7 @@ require 5.004; use vars qw($PROCNAME); -my $VERSION = "3.6.4"; +my $VERSION = "3.6.5"; my $BASENAME; my $EXENAME; @@ -63,14 +63,15 @@ require File::Temp; use locale; use Env qw(@PATH LANGUAGE LANG); use CGI qw(:no_debug); +use HTTP::Date qw(time2str); use IO::Socket; use Template; use Time::Local qw(timelocal); -use POSIX ":sys_wait_h", qw(strftime mktime locale_h); -use MIME::Base64(); +use POSIX qw(:sys_wait_h strftime mktime locale_h); +use MIME::Base64 (); use File::Temp (); -use Shell qw(ps locale); -use URI::Escape; +use Shell qw(locale); +use URI::Escape qw(uri_escape); my $can_use_encode = 1; $can_use_encode = undef unless (eval { require Encode }); @@ -112,17 +113,16 @@ my $CHAN_RADIO = 3; sub true () { 1 } sub false () { 0 } sub CRLF () { "\r\n" } -sub LOG_ACCESS () { 1 } -sub LOG_SERVERCOM () { 2 } -sub LOG_VDRCOM () { 4 } -sub LOG_STATS () { 8 } -sub LOG_AT () { 16 } -sub LOG_CHECKTIMER () { 32 } -sub LOG_FATALERROR () { 64 } -sub LOG_DEBUG () { 32768 } +# [ internal log level, syslog priority ] +sub LOG_ALWAYS () { [ 0, "err" ] } +sub LOG_FATALERROR () { [ 0, "err" ] } +sub LOG_ERROR () { [ 3, "err" ] } +sub LOG_WARNING () { [ 4, "warning" ] } +sub LOG_INFO () { [ 6, "info" ] } +sub LOG_DEBUG () { [ 7, "debug" ] } my (%CONFIG, %CONFIG_TEMP); -$CONFIG{LOGLEVEL} = 81; # 32799 +$CONFIG{LOGLEVEL} = 4; #LOG_WARNING $CONFIG{LOGGING} = 0; $CONFIG{LOGFILE} = "vdradmind.log"; $CONFIG{MOD_GZIP} = 0; @@ -256,7 +256,7 @@ my $EPGSEARCH_VERSION = 0; # Numeric epgsearch plugin version, my %ERROR_MESSAGE; my $MY_ENCODING = ''; -my ($TEMPLATEDIR, $CONFFILE, $LOGDIR, $PIDFILE, $AT_FILENAME, $DONE_FILENAME, $BL_FILENAME, $ETCDIR, $USER_CSS); +my ($TEMPLATEDIR, $CONFFILE, $LOGDIR, $LOGLEVEL, $PIDFILE, $AT_FILENAME, $DONE_FILENAME, $BL_FILENAME, $ETCDIR, $USER_CSS); if (!$SEARCH_FILES_IN_SYSTEM) { $ETCDIR = "${BASENAME}"; $TEMPLATEDIR = "${BASENAME}template"; @@ -289,7 +289,6 @@ $UserCSS = "user.css" if (-e "$USER_CSS"); my $USE_SHELL_GZIP = false; # set on false to use the gzip library -my ($DEBUG) = 0; my (%EPG, %CHAN, $q, $ACCEPT_GZIP, $SVDRP, $HOST, $low_time, @RECORDINGS); my (%mimehash) = (html => "text/html", png => "image/png", @@ -297,7 +296,7 @@ my (%mimehash) = (html => "text/html", jpg => "image/jpeg", css => "text/css", ico => "image/x-icon", - js => "application/x-javascript", + js => "text/javascript", swf => "application/x-shockwave-flash" ); my @LOGINPAGES = qw(prog_summary prog_list2 prog_timeline prog_list timer_list rec_list); @@ -308,23 +307,30 @@ $SIG{HUP} = \&HupSignal; $SIG{PIPE} = 'IGNORE'; # +my ($UseSSL, $UseIPv6); my $DAEMON = 1; for (my $i = 0 ; $i < scalar(@ARGV) ; $i++) { $_ = $ARGV[$i]; if (/^(-h|--help)/) { + $DAEMON = 0; print("Usage $EXENAME [OPTION]...\n"); print("A perl client for the Linux Video Disk Recorder.\n\n"); - print(" -nf --nofork don't fork\n"); - print(" -c --config run configuration dialog\n"); - print(" -d [dir] --cfgdir [dir] use [dir] for configuration files\n"); - print(" -k --kill kill a forked vdradmind[.pl]\n"); - print(" -p [name] --pid [name] name of pidfile\n"); -#TODO print(" -6 --ipv6 use IPv6\n"); - print(" -h --help this message\n"); + print(" -n --nofork don't fork, log to stderr\n"); + print(" -c --config run configuration dialog\n"); + print(" -d [dir] --cfgdir [dir] use [dir] for configuration files\n"); + print(" -k --kill kill a forked vdradmind[.pl]\n"); + print(" -p [name] --pid [name] name of pidfile (ignored with -n)\n"); + print(" -6 --ipv6 use IPv6\n"); + print(" -s --ssl only accept https:// connections\n"); + print(" -l [level] --log [level] set log level for this session [0 - 7]\n"); + print(" -h --help this message\n"); print("\nReport bugs to <mail\@andreas.vdr-developer.org>.\n"); exit(0); } - if (/^(--nofork|-nf)/) { $DAEMON = 0; last; } + if (/^(--nofork|-n)/) { + $DAEMON = 0; + next; + } if (/^(--cfgdir|-d)/) { $ETCDIR = $ARGV[ ++$i ]; $CONFFILE = "${ETCDIR}/vdradmind.conf"; @@ -335,6 +341,7 @@ for (my $i = 0 ; $i < scalar(@ARGV) ; $i++) { next; } if (/^(--config|-c)/) { + $DAEMON = 0; ReadConfig() if (-e $CONFFILE); LoadTranslation(); $CONFIG{VDR_HOST} = Question(gettext("What's your VDR hostname (e.g video.intra.net)?"), $CONFIG{VDR_HOST}); @@ -346,15 +353,23 @@ for (my $i = 0 ; $i < scalar(@ARGV) ; $i++) { $CONFIG{VIDEODIR} = Question(gettext("Where are your recordings stored?"), $CONFIG{VIDEODIR}); $CONFIG{VDRCONFDIR} = Question(gettext("Where are your VDR's configuration files located?"), $CONFIG{VDRCONFDIR}); - WriteConfig(); + (my $err = WriteConfig()) =~ s|<br\s*/?>$||gi; + if ($err) { + Log(LOG_ALWAYS, $err); + exit(1); + } print(gettext("Config file written successfully.") . "\n"); exit(0); } if (/^(--kill|-k)/) { - exit(0) unless (-e $PIDFILE); - my $killed = kill(2, getPID($PIDFILE)); - unlink($PIDFILE); + $DAEMON = 0; + exit(1) unless (-e $PIDFILE); + my $pid = getPID($PIDFILE); + my $killed = defined($pid) ? kill(2, $pid) : -1; + if ($killed > 0 && -e $PIDFILE) { # Not deleted by kill/Shutdown()? + unlink($PIDFILE) or Log(LOG_WARNING, "Can't delete pid file '$PIDFILE': $!"); + } exit($killed > 0 ? 0 : 1); } if (/^(--pid|-p)/) { @@ -362,14 +377,19 @@ for (my $i = 0 ; $i < scalar(@ARGV) ; $i++) { next; } if (/^(--ipv6|-6)/) { - if (eval { require IO::Socket::INET6 }) { - $InetSocketModule = 'IO::Socket::INET6'; - } else { - print("ERROR: Can't load module IO::Socket::INET6!\n"); - } + $UseIPv6 = 1; + next; + } + if (/^(--ssl|-s)/) { + $UseSSL = 1; + next; + } + if (/^(--log|-l)/) { + $LOGLEVEL = $ARGV[ ++$i ]; next; } if (/^(--displaycall|-i)/) { + $DAEMON = 0; for (my $z = 0 ; $z < 5 ; $z++) { DisplayMessage($ARGV[ $i + 1 ]); sleep(3); @@ -378,6 +398,7 @@ for (my $i = 0 ; $i < scalar(@ARGV) ; $i++) { exit(0); } if (/^(--message|-m)/) { + $DAEMON = 0; DisplayMessage($ARGV[ $i + 1 ]); CloseSocket(); exit(0); @@ -389,6 +410,14 @@ for (my $i = 0 ; $i < scalar(@ARGV) ; $i++) { } } +if ($UseIPv6) { + if (eval { require IO::Socket::INET6 }) { + $InetSocketModule = 'IO::Socket::INET6'; + } else { + die("ERROR: Can't load module IO::Socket::INET6! $!\n"); + } +} + #use Template::Constants qw( :debug ); # IMHO a better Template Modul ;-) # some useful options (see below for full list) @@ -399,29 +428,50 @@ my $Xtemplate_vars = { usercss => $UserCSS, }; my $Xconfig = { - START_TAG => '\<\?\%', # Tagstyle - END_TAG => '\%\?\>', # Tagstyle - INCLUDE_PATH => $TEMPLATEDIR, # or list ref - INTERPOLATE => 0, # expand "$var" in plain text - PRE_CHOMP => 1, # cleanup whitespace - POST_CHOMP => 1, # cleanup whitespace - EVAL_PERL => 1, # evaluate Perl code blocks - CACHE_SIZE => 10000, # Tuning for Templates - COMPILE_EXT => 'cache', # Tuning for Templates - COMPILE_DIR => '/tmp', # Tuning for Templates + START_TAG => '\<\?\%', # tag style + END_TAG => '\%\?\>', # tag style + INCLUDE_PATH => $TEMPLATEDIR, # or list ref + INTERPOLATE => 0, # expand "$var" in plain text + PRE_CHOMP => 1, # cleanup whitespace + POST_CHOMP => 1, # cleanup whitespace + EVAL_PERL => 1, # evaluate Perl code blocks + COMPILE_EXT => 'cache', # tuning for templates + COMPILE_DIR => '/var/cache/vdradmin', # tuning for templates + STAT_TTL => 3600, # tuning for templates VARIABLES => $Xtemplate_vars, + # Developer options: + #CACHE_SIZE => 0, + #STAT_TTL => 1, #DEBUG => DEBUG_ALL, }; # create Template object -my $Xtemplate = Template->new($Xconfig); +my $Xtemplate; +eval { + $Xtemplate = Template->new($Xconfig); +}; +if ($@) { + # Perhaps a cache dir problem, try without it + chomp(my $err = $@); + delete @$Xconfig{qw(COMPILE_DIR COMPILE_EXT)}; + $Xtemplate = Template->new($Xconfig); + Log(LOG_WARNING, "Problem setting up dir for compiled templates, expect degraded performance: $err"); +} # ---- End new template section ---- ReadConfig(); LoadTranslation(); +if ($DAEMON && $CONFIG{LOGFILE} eq "syslog") { + require Sys::Syslog; + Sys::Syslog->import(qw(:standard)); + openlog($PROCNAME, "cons,pid", "daemon"); +} else { + *closelog = sub {}; # for Shutdown() +} + if ($CONFIG{MOD_GZIP}) { # lib gzipping @@ -431,18 +481,15 @@ if ($CONFIG{MOD_GZIP}) { if (-e "$PIDFILE") { my $pid = getPID($PIDFILE); if ($pid) { - print("There's already a copy of this program running! (pid: $pid)\n"); - my $found; - foreach (ps("ax")) { - $found = 1 if (/$pid\s.*\[$PROCNAME\].*/); - } - if ($found) { - print("If you feel this is an error, remove $PIDFILE!\n"); + Log(LOG_ERROR, "There's already a copy of this program running! (pid: $pid)\n"); + chomp(my $pidproc = `ps -p $pid -o comm=` || ""); + if ($pidproc eq $PROCNAME) { + Log(LOG_ERROR, "If you feel this is an error, remove $PIDFILE!\n"); exit(1); } - print("The pid $pid is not a running $PROCNAME process, so I'll start anyway.\n"); + Log(LOG_ERROR, "The pid $pid is not a running $PROCNAME process, so I'll start anyway.\n"); } else { - print("$PIDFILE exists, but is empty, so I'll start anyway.\n"); + Log(LOG_ERROR, "$PIDFILE exists, but is empty or contains bogus data, so I'll start anyway.\n"); } } @@ -450,24 +497,44 @@ if ($DAEMON) { open(STDIN, "</dev/null"); defined(my $pid = fork) or die "Cannot fork: $!\n"; if ($pid) { - printf(gettext("%s %s started with pid %d.") . "\n", $EXENAME, $VERSION, $pid); - writePID($pid); + Log(LOG_ALWAYS, sprintf(gettext("%s %s started with pid %d."), $EXENAME, $VERSION, $pid)); + writePID($PIDFILE, $pid); exit(0); } +} else { + Log(LOG_ALWAYS, sprintf("%s %s started", $EXENAME, $VERSION)); } + $SIG{__DIE__} = \&SigDieHandler; my @reccmds = loadCommandsConf("$CONFIG{VDRCONFDIR}/reccmds.conf"); my @vdrcmds = loadCommandsConf("$CONFIG{VDRCONFDIR}/commands.conf"); -my ($Socket) = - $InetSocketModule->new(Proto => 'tcp', - LocalPort => $CONFIG{SERVERPORT}, - LocalAddr => $CONFIG{SERVERHOST}, - Listen => 10, - Reuse => 1 - ); -die("can't start server: $!\n") if (!$Socket); +my ($Socket); +if ($UseSSL) { + if (eval { require IO::Socket::SSL; }) { + $Socket = IO::Socket::SSL->new(Proto => 'tcp', + LocalPort => $CONFIG{SERVERPORT}, + LocalAddr => $CONFIG{SERVERHOST}, + Listen => 10, + Reuse => 1 + ); + } else { + die("ERROR: Can't load module IO::Socket::SSL! $!\n"); + } +} else { + $Socket = $InetSocketModule->new(Proto => 'tcp', + LocalPort => $CONFIG{SERVERPORT}, + LocalAddr => $CONFIG{SERVERHOST}, + Listen => 10, + Reuse => 1 + ); +} +if (!$Socket) { + my $host = $CONFIG{SERVERHOST} || '(SERVERHOST missing)'; + my $port = $CONFIG{SERVERPORT} || '(SERVERPORT missing)'; + die("Can't start server at $host:$port: $@\n"); +} $CONFIG{CACHE_LASTUPDATE} = 0; $CONFIG{CACHE_REC_LASTUPDATE} = 0; @@ -489,13 +556,13 @@ $MyURL = "./vdradmin.pl"; if ($CONFIG{CACHE_BG_UPDATE} == 1) { # Force Update at start - Log(LOG_DEBUG, "Updating EPG data at startup..."); + Log(LOG_DEBUG, "[EPG] Updating EPG data at startup..."); if (UptoDate(1) == 0) { - Log(LOG_DEBUG, "Updating EPG data at startup SUCCEEDED."); - Log(LOG_DEBUG, "Setting timeout to ". $CONFIG{CACHE_TIMEOUT} . "min"); + Log(LOG_DEBUG, "[EPG] Updating EPG data at startup SUCCEEDED."); + Log(LOG_DEBUG, "[EPG] Setting timeout to " . $CONFIG{CACHE_TIMEOUT} . "min"); $Socket->timeout($CONFIG{CACHE_TIMEOUT} * 60); } else { - Log(LOG_DEBUG, "Updating EPG data at startup FAILED, trying again in 60secs."); + Log(LOG_DEBUG, "[EPG] Updating EPG data at startup FAILED, trying again in 60secs."); # UptoDate() failed, set socket timeout to retry UptoDate() in a minute $Socket->timeout(60); } @@ -508,15 +575,15 @@ while (true) { # if (!$Client) { - Log(LOG_DEBUG, "Updating EPG data in the background..."); + Log(LOG_DEBUG, "[EPG] Updating EPG data in the background..."); if (UptoDate(1) == 0) { - Log(LOG_DEBUG, "Updating EPG data in the background SUCCEEDED."); + Log(LOG_DEBUG, "[EPG] Updating EPG data in the background SUCCEEDED."); if ($CONFIG{CACHE_BG_UPDATE} || ($CONFIG{AT_FUNC} && $FEATURES{AUTOTIMER})) { - Log(LOG_DEBUG, "Setting timeout to ". $CONFIG{CACHE_TIMEOUT} . "min"); + Log(LOG_DEBUG, "[EPG] Setting timeout to " . $CONFIG{CACHE_TIMEOUT} . "min"); $Socket->timeout($CONFIG{CACHE_TIMEOUT} * 60); } } else { - Log(LOG_DEBUG, "Updating EPG data in the background FAILED, trying again in 60secs."); + Log(LOG_DEBUG, "[EPG] Updating EPG data in the background FAILED, trying again in 60secs."); $Socket->timeout(60); } next; @@ -632,7 +699,7 @@ while (true) { } else { ($http_status, $bytes_transfered) = SendFile($Request); } - Log(LOG_ACCESS, access_log($Client->peerhost, $username, $raw_request, $http_status, $bytes_transfered, $Request, $http_useragent)); + Log(LOG_INFO, "[ACCESS] " . access_log($Client->peerhost, $username, $raw_request, $http_status, $bytes_transfered, $Request, $http_useragent)); close($Client); $SVDRP->close; @@ -725,7 +792,6 @@ sub ChanTree { #TODO? save channel in each list as reference my (@CHANNELS_FULL, @CHANNELS_WANTED, @CHANNELS_TV, @CHANNELS_RADIO); $SVDRP->command("lstc"); my ($DATA) = $SVDRP->readresponse; - CloseSocket(); while ($_ = shift @$DATA) { chomp; my ($vdr_id, $temp) = split(/ /, $_, 2); @@ -1044,7 +1110,6 @@ sub getElement { sub EPG_buildTree { $SVDRP->command("lste"); my ($DATA) = $SVDRP->readresponse; - CloseSocket(); my ($i, @events); my ($id, $bc) = (1, 0); $low_time = time; @@ -1133,7 +1198,7 @@ sub EPG_buildTree { } } } - Log(LOG_STATS, "EPGTree: $id events, $bc broadcasters (lowtime $low_time)"); + Log(LOG_INFO, "[EPG] EPGTree: $id events, $bc broadcasters (lowtime $low_time)"); } ############################################################################# @@ -1169,7 +1234,7 @@ sub SendCMD { my $cmd = join("", @_); if (($VDRVERSION < 10336) && (length($cmd) > $VDR_MAX_SVDRP_LENGTH)) { - Log(LOG_FATALERROR, "SendCMD(): command is too long(" . length($cmd) . "): " . substr($cmd, 0, 10)); + Log(LOG_FATALERROR, "[INT] SendCMD(): command is too long(" . length($cmd) . "): " . substr($cmd, 0, 10)); return; } @@ -1183,19 +1248,6 @@ sub SendCMD { return (@output); } -sub mygmtime() { #TODO: unused - gmtime; -} - -sub headerTime { - my $time = shift; - $time = time() if (!$time); - my @weekdays = ("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"); - my @months = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"); - - return (sprintf("%s, %s %s %s %02d:%02d:%02d GMT", $weekdays[ my_strfgmtime("%w", $time) ], my_strfgmtime("%d", $time), $months[ my_strfgmtime("%m", $time) - 1 ], my_strfgmtime("%Y", $time), my_strfgmtime("%H", $time), my_strfgmtime("%M", $time), my_strfgmtime("%S", $time))); -} - sub GZip { my $content = shift; my $filename = new File::Temp("vdradmin-XXXXX", UNLINK => 1); @@ -1227,8 +1279,8 @@ sub LibGZip { } sub header { - my ($status, $ContentType, $data, $filename, $caching) = @_; - Log(LOG_STATS, "Template Error: " . $Xtemplate->error()) + my ($status, $ContentType, $data, $filename, $caching, $lastmod) = @_; + Log(LOG_FATALERROR, "[INT] Template Error: " . $Xtemplate->error()) if ($status >= 500); if ($ACCEPT_GZIP && $CONFIG{MOD_GZIP}) { if ($USE_SHELL_GZIP) { @@ -1239,18 +1291,23 @@ sub header { } my $status_text = " OK" if ($status eq "200"); + my $now = time(); my $response = "HTTP/1.0 $status$status_text" . CRLF - . "Date: " . headerTime() . CRLF; + . "Date: " . time2str($now) . CRLF; if (!$caching || $ContentType =~ /text\/html/) { $response .= "Cache-Control: max-age=0" . CRLF . "Cache-Control: private" . CRLF . "Pragma: no-cache" . CRLF . "Expires: Thu, 01 Jan 1970 00:00:00 GMT" . CRLF; } else { - $response .= "Expires: " . headerTime(time() + 3600) . CRLF + $response .= "Expires: " . time2str($now + 3600) . CRLF . "Cache-Control: max-age=3600" . CRLF; } + if ($lastmod) { + $lastmod = $now if ($lastmod > $now); # HTTP 1.1, 14.29 + $response .= "Last-Modified: " . time2str($lastmod) . CRLF; + } $response .= "Server: $SERVERVERSION" . CRLF . "Connection: close" . CRLF; $response .= "Content-Length: " . length($data) . CRLF if ($data); @@ -1266,7 +1323,7 @@ sub header { sub headerForward { my $url = shift; my $header = "HTTP/1.0 302 Found" . CRLF - . "Date: " . headerTime() . CRLF + . "Date: " . time2str() . CRLF . "Server: $SERVERVERSION" . CRLF . "Connection: close" . CRLF . "Location: $url" . CRLF @@ -1281,7 +1338,7 @@ sub headerNoAuth { $Xtemplate->process("$CONFIG{TEMPLATE}/noauth.html", $vars, \$data); my $header = "HTTP/1.0 401 Authorization Required" . CRLF - . "Date: " . headerTime() . CRLF + . "Date: " . time2str() . CRLF . "Server: $SERVERVERSION" . CRLF . "WWW-Authenticate: Basic realm=\"vdradmind\"" . CRLF . "Connection: close" . CRLF @@ -1326,18 +1383,19 @@ sub SendFile { } if (-e $FileWithPath) { - if (-r $FileWithPath) { + if (-r _) { + my $lastmod = (stat(_))[9]; $buf = ReadFile($FileWithPath); $temp = $File; $temp =~ /([A-Za-z0-9]+)\.([A-Za-z0-9]+)/; if (!$mimehash{$2}) { die("can't find mime-type \'$2\'\n"); } - return (header("200", $mimehash{$2}, $buf, undef, 1)); + return (header("200", $mimehash{$2}, $buf, undef, 1, $lastmod)); } else { - Log(LOG_ACCESS, "Access denied: $File"); + Log(LOG_FATALERROR, "[ACCESS] Access denied: $File"); Error("403", gettext("Forbidden"), sprintf(gettext("Access to file \"%s\" denied!"), $File)); } } else { - Log(LOG_ACCESS, "File not found: $File"); + Log(LOG_FATALERROR, "[ACCESS] File not found: $File"); Error("404", gettext("Not found"), sprintf(gettext("The URL \"%s\" was not found on this server!"), $File)); } } @@ -1476,7 +1534,7 @@ sub BlackList_Read { sub AutoTimer { return if (!$CONFIG{AT_FUNC} || !$FEATURES{AUTOTIMER}); - Log(LOG_AT, "Auto Timer: Scanning for events..."); + Log(LOG_INFO, "[AUTOTIMER] Scanning for events..."); my ($search, $start, $stop) = @_; my @at_matches; @@ -1539,7 +1597,7 @@ sub AutoTimer { $DoneStr = sprintf('%s~%d~%s', $event->{title}, $event->{event_id}, ($event->{subtitle} ? $event->{subtitle} : ''),); if (exists $DONE->{$DoneStr}) { - Log(LOG_DEBUG, sprintf("Auto Timer: already done \"%s\"", $DoneStr)); + Log(LOG_DEBUG, sprintf("[AUTOTIMER] already done \"%s\"", $DoneStr)); next; } } @@ -1550,8 +1608,8 @@ sub AutoTimer { my $BLStr = $event->{title}; $BLStr .= "~" . $event->{subtitle} if $event->{subtitle}; - if ($blacklist{$BLStr} eq 1 || $blacklist{ $event->{title} } eq 1) { - Log(LOG_DEBUG, sprintf("Auto Timer: blacklisted \"%s\"", $event->{title})); + if ($blacklist{$BLStr} || $blacklist{ $event->{title} }) { + Log(LOG_DEBUG, sprintf("[AUTOTIMER] blacklisted \"%s\"", $event->{title})); next; } } @@ -1578,10 +1636,10 @@ sub AutoTimer { if ($at->{pattern} =~ /^\/(.*)\/(i?)$/) { # We have a RegExp - Log(LOG_DEBUG, sprintf("Auto Timer: Checking RegExp \"%s\"", $at->{pattern})); + Log(LOG_DEBUG, sprintf("[AUTOTIMER] Checking RegExp \"%s\"", $at->{pattern})); if ((!length($SearchStr)) || (!length($1))) { - Log(LOG_DEBUG, "No search string or regexp, skipping!"); + Log(LOG_DEBUG, "[AUTOTIMER] No search string or RegExp, skipping!"); next; } @@ -1593,21 +1651,21 @@ sub AutoTimer { } elsif (($2 ne "i") && ($SearchStr !~ /$1/)) { next; } else { - Log(LOG_AT, sprintf("Auto Timer: RegExp \"%s\" matches \"%s\"", $at->{pattern}, $SearchStr)); + Log(LOG_DEBUG, sprintf("[AUTOTIMER] RegExp \"%s\" matches \"%s\"", $at->{pattern}, $SearchStr)); } } else { # We have a search pattern - Log(LOG_DEBUG, sprintf("Auto Timer: Checking pattern \"%s\"", $at->{pattern})); + Log(LOG_DEBUG, sprintf("[AUTOTIMER] Checking pattern \"%s\"", $at->{pattern})); # Escape special characters within the search pattern my $atpattern = $at->{pattern}; $atpattern =~ s/([\+\?\.\*\^\$\(\)\[\]\{\}\|\\])/\\$1/g; - Log(LOG_DEBUG, sprintf("Auto Timer: Escaped pattern: \"%s\"", $atpattern)); + Log(LOG_DEBUG, sprintf("[AUTOTIMER] Escaped pattern: \"%s\"", $atpattern)); if ((!length($SearchStr)) || (!length($atpattern))) { - Log(LOG_DEBUG, "No search string or pattern, skipping!"); + Log(LOG_DEBUG, "[AUTOTIMER] No search string or pattern, skipping!"); next; } @@ -1620,7 +1678,7 @@ sub AutoTimer { if ($SearchStr !~ /$pattern/i) { $fp = 0; } else { - Log(LOG_DEBUG, sprintf("Auto Timer: Found matching pattern: \"%s\"", $pattern)); + Log(LOG_DEBUG, sprintf("[AUTOTIMER] Found matching pattern: \"%s\"", $pattern)); } } next if (!$fp); @@ -1628,44 +1686,44 @@ sub AutoTimer { my $event_start = my_strftime("%H%M", $event->{start}); my $event_stop = my_strftime("%H%M", $event->{stop}); - Log(LOG_DEBUG, sprintf("Auto Timer: Comparing pattern \"%s\" (%s - %s) with event \"%s\" (%s - %s)", $at->{pattern}, $at->{start}, $at->{stop}, $event->{title}, $event_start, $event_stop)); + Log(LOG_DEBUG, sprintf("[AUTOTIMER] Comparing pattern \"%s\" (%s - %s) with event \"%s\" (%s - %s)", $at->{pattern}, $at->{start}, $at->{stop}, $event->{title}, $event_start, $event_stop)); # Do we have a time slot? if ($at->{start}) { # We have a start time and possibly a stop time for the auto timer - # Do we have Midnight between AT start and stop time? + # Do we have midnight between AT start and stop time? if (($at->{stop}) && ($at->{stop} < $at->{start})) { - # The AT includes Midnight - Log(LOG_DEBUG, "922: AT includes Midnight"); + # The AT includes midnight + Log(LOG_DEBUG, "[AUTOTIMER] AT includes midnight"); - # Do we have Midnight between Event start and stop? + # Do we have midnight between event start and stop? if ($event_stop < $event_start) { - # The event includes Midnight - Log(LOG_DEBUG, "926: Event includes Midnight"); + # The event includes midnight + Log(LOG_DEBUG, "[AUTOTIMER] Event includes midnight"); if ($event_start < $at->{start}) { - Log(LOG_DEBUG, "924: Event starts before AT start"); + Log(LOG_DEBUG, "[AUTOTIMER] Event starts before AT start"); next; } if ($event_stop > $at->{stop}) { - Log(LOG_DEBUG, "932: Event ends after AT stop"); + Log(LOG_DEBUG, "[AUTOTIMER] Event ends after AT stop"); next; } } else { - # Normal event not spreading over Midnight - Log(LOG_DEBUG, "937: Event does not include Midnight"); + # Normal event not spreading over midnight + Log(LOG_DEBUG, "[AUTOTIMER] Event does not include midnight"); if ($event_start < $at->{start}) { if ($event_start > $at->{stop}) { # The event starts before AT start and after AT stop - Log(LOG_DEBUG, "941: Event starts before AT start and after AT stop"); + Log(LOG_DEBUG, "[AUTOTIMER] Event starts before AT start and after AT stop"); next; } if ($event_stop > $at->{stop}) { # The event ends after AT stop - Log(LOG_DEBUG, "946: Event ends after AT stop"); + Log(LOG_DEBUG, "[AUTOTIMER] Event ends after AT stop"); next; } } @@ -1673,7 +1731,7 @@ sub AutoTimer { } else { # Normal auto timer, not spreading over midnight - Log(LOG_DEBUG, "953: AT does not include Midnight"); + Log(LOG_DEBUG, "[AUTOTIMER] AT does not include midnight"); # Is the event spreading over midnight? if ($event_stop < $event_start) { @@ -1682,7 +1740,7 @@ sub AutoTimer { if ($at->{stop}) { # We have a AT stop time defined before midnight -- no match - Log(LOG_DEBUG, "959: Event includes Midnight, Autotimer not"); + Log(LOG_DEBUG, "[AUTOTIMER] Event includes midnight, AT not"); next; } } else { @@ -1690,13 +1748,13 @@ sub AutoTimer { # We have a normal event, nothing special # Event must not start before AT start if ($event_start < $at->{start}) { - Log(LOG_DEBUG, "963: Event starts before AT start"); + Log(LOG_DEBUG, "[AUTOTIMER] Event starts before AT start"); next; } # Event must not end after AT stop if (($at->{stop}) && ($event_stop > $at->{stop})) { - Log(LOG_DEBUG, "968: Event ends after AT stop"); + Log(LOG_DEBUG, "[AUTOTIMER] Event ends after AT stop"); next; } } @@ -1706,7 +1764,7 @@ sub AutoTimer { # We have no AT start time if ($at->{stop}) { if ($event_stop > $at->{stop}) { - Log(LOG_DEBUG, "977: Only AT stop time, Event stops after AT stop"); + Log(LOG_DEBUG, "[AUTOTIMER] Only AT stop time, event stops after AT stop"); next; } } @@ -1715,11 +1773,11 @@ sub AutoTimer { # Check if we should schedule any timers on this weekday my %weekdays_map = (1 => 'wday_mon', 2 => 'wday_tue', 3 => 'wday_wed', 4 => 'wday_thu', 5 => 'wday_fri', 6 => 'wday_sat', 7 => 'wday_sun'); unless ($at->{weekdays}->{ $weekdays_map{ my_strftime("%u", $event->{start}) } }) { - Log(LOG_DEBUG, "Event not valid for this weekday"); + Log(LOG_DEBUG, "[AUTOTIMER] Event not valid for this weekday"); next; } - Log(LOG_AT, sprintf("Auto Timer: Found \"%s\"", $at->{pattern})); + Log(LOG_DEBUG, sprintf("[AUTOTIMER] Found \"%s\"", $at->{pattern})); ######################################################################################### # 20050130: patch by macfly: parse extended EPG information provided by tvm2vdr.pl @@ -1787,12 +1845,12 @@ sub AutoTimer { date => my_strftime("%A, %x", $event->{start}), channel => GetChannelDescByNumber($event->{vdr_id}) }); } else { - Log(LOG_AT, sprintf("AutoTimer: Programming Timer \"%s\" (Event-ID %s, %s - %s)", $title, $event->{event_id}, strftime("%Y%m%d-%H%M", localtime($event->{start})), strftime("%Y%m%d-%H%M", localtime($event->{stop})))); + Log(LOG_INFO, sprintf("[AUTOTIMER] Programming Timer \"%s\" (Event-ID %s, %s - %s)", $title, $event->{event_id}, strftime("%Y%m%d-%H%M", localtime($event->{start})), strftime("%Y%m%d-%H%M", localtime($event->{stop})))); AT_ProgTimer(1, $event->{event_id}, $event->{vdr_id}, $event->{start}, $event->{stop}, $title, $event->{summary}, $at); if ($at->{active} == 2) { - Log(LOG_AT, sprintf("AutoTimer: Disabling one-shot Timer")); + Log(LOG_INFO, "[AUTOTIMER] Disabling one-shot Timer"); $at->{active} = 0; $oneshots = 1; } @@ -1802,18 +1860,17 @@ sub AutoTimer { } } if ($oneshots) { - Log(LOG_AT, sprintf("AutoTimer: saving because of one-shots triggered")); + Log(LOG_DEBUG, "[AUTOTIMER] Saving because of one-shots triggered"); AT_Write(@at); } - Log(LOG_AT, "Auto Timer: Done."); unless ($dry_run) { - Log(LOG_AT, "Auto Timer: Purging done list... (lowtime $low_time)"); + Log(LOG_DEBUG, "[AUTOTIMER] Purging done list... (lowtime $low_time)"); for (keys %$DONE) { delete $DONE->{$_} if ($low_time > $DONE->{$_}) } - Log(LOG_AT, "Auto Timer: Save done list..."); + Log(LOG_DEBUG, "[AUTOTIMER] Save done list..."); &DONE_Write($DONE) if ($DONE); } - Log(LOG_AT, "Auto Timer: Done."); + Log(LOG_INFO, "[AUTOTIMER] Done."); if ($dry_run) { return @at_matches; @@ -1869,7 +1926,7 @@ sub AT_ProgTimer { $autotimer = $AT_BY_TIME; } - Log(LOG_AT, sprintf("AT_ProgTimer: Programming Timer \"%s\" (Event-ID %s, %s - %s)", $title, $event_id, strftime("%Y%m%d-%H%M", localtime($start)), strftime("%Y%m%d-%H%M", localtime($stop)))); + Log(LOG_DEBUG, sprintf("[AUTOTIMER] AT_ProgTimer: Programming Timer \"%s\" (Event-ID %s, %s - %s)", $title, $event_id, strftime("%Y%m%d-%H%M", localtime($start)), strftime("%Y%m%d-%H%M", localtime($stop)))); ProgTimer(0, $active, $event_id, @@ -1932,18 +1989,18 @@ sub AT_ProgTimer { $smtp->dataend(); $smtp->quit(); } else { - Log(LOG_FATALERROR, "SMTP failed! Please check your email settings."); + Log(LOG_FATALERROR, "[MAIL] SMTP failed! Please check your email settings."); } }; if ($@) { - Log(LOG_FATALERROR, "Failed to send email! Please contact the author."); + Log(LOG_FATALERROR, "[MAIL] Failed to send email! Please contact the author."); } } elsif ($CONFIG{AT_SENDMAIL} == 1) { if (!$can_use_net_smtp) { - Log(LOG_FATALERROR, "Missing Perl module Net::SMTP. AutoTimer email notification disabled."); + Log(LOG_FATALERROR, "[MAIL] Missing Perl module Net::SMTP. AutoTimer email notification disabled."); } if ($CONFIG{MAIL_AUTH_USER} ne "" && !$can_use_smtpauth) { - Log(LOG_FATALERROR, "Missing Perl module Authen::SASL and/or Digest::HMAC_MD5. AutoTimer email notification disabled."); + Log(LOG_FATALERROR, "[MAIL] Missing Perl module Authen::SASL and/or Digest::HMAC_MD5. AutoTimer email notification disabled."); } } } @@ -2012,14 +2069,14 @@ sub CheckTimers { # look for matching event_id on the same channel -- it's unique if ($timer->{event_id} == $event->{event_id}) { - Log(LOG_CHECKTIMER, sprintf("CheckTimers: Checking timer \"%s\" (No. %s) for changes by Event-ID", $timer->{title}, $timer->{id})); + Log(LOG_DEBUG, sprintf("[AUTOTIMER] CheckTimers: Checking timer \"%s\" (No. %s) for changes by Event-ID", $timer->{title}, $timer->{id})); # update timer if the existing one differs from the EPG # (don't check for changed title, as this will break autotimers' "directory" setting) if ( ($timer->{start} != ($event->{start} - $timer->{bstart} * 60)) || ($timer->{stop} != ($event->{stop} + $timer->{bstop} * 60))) { - Log(LOG_CHECKTIMER, sprintf("CheckTimers: Timer \"%s\" (No. %s, Event-ID %s, %s - %s) differs from EPG: \"%s\", Event-ID %s, %s - %s)", $timer->{title}, $timer->{id}, $timer->{event_id}, strftime("%Y%m%d-%H%M", localtime($timer->{start})), strftime("%Y%m%d-%H%M", localtime($timer->{stop})), $event->{title}, $event->{event_id}, strftime("%Y%m%d-%H%M", localtime($event->{start})), strftime("%Y%m%d-%H%M", localtime($event->{stop})))); + Log(LOG_INFO, sprintf("[AUTOTIMER] CheckTimers: Timer \"%s\" (No. %s, Event-ID %s, %s - %s) differs from EPG: \"%s\", Event-ID %s, %s - %s)", $timer->{title}, $timer->{id}, $timer->{event_id}, strftime("%Y%m%d-%H%M", localtime($timer->{start})), strftime("%Y%m%d-%H%M", localtime($timer->{stop})), $event->{title}, $event->{event_id}, strftime("%Y%m%d-%H%M", localtime($event->{start})), strftime("%Y%m%d-%H%M", localtime($event->{stop})))); ProgTimer( $timer->{id}, $timer->{active}, @@ -2036,7 +2093,6 @@ sub CheckTimers { # leave summary untouched. $timer->{summary}, ); - Log(LOG_CHECKTIMER, sprintf("CheckTimers: Timer %s updated.", $timer->{id})); } } } @@ -2047,7 +2103,7 @@ sub CheckTimers { # We're checking only timers which don't record if ($timer->{start} > time()) { - Log(LOG_CHECKTIMER, sprintf("CheckTimers: Checking timer \"%s\" (No. %s) for changes by recording time", $timer->{title}, $timer->{id})); + Log(LOG_DEBUG, sprintf("[AUTOTIMER] CheckTimers: Checking timer \"%s\" (No. %s) for changes by recording time", $timer->{title}, $timer->{id})); my @eventlist; for my $event (@{ $EPG{ $timer->{vdr_id} } }) { @@ -2092,7 +2148,7 @@ sub CheckTimers { if ( ($timer->{start} > ($event->{start} - $timer->{bstart} * 60)) || ($timer->{stop} < ($event->{stop} + $timer->{bstop} * 60))) { - Log(LOG_CHECKTIMER, sprintf("CheckTimers: Timer \"%s\" (No. %s, Event-ID %s, %s - %s) differs from EPG: \"%s\", Event-ID %s, %s - %s)", $timer->{title}, $timer->{id}, $timer->{event_id}, strftime("%Y%m%d-%H%M", localtime($timer->{start})), strftime("%Y%m%d-%H%M", localtime($timer->{stop})), $event->{title}, $event->{event_id}, strftime("%Y%m%d-%H%M", localtime($event->{start})), strftime("%Y%m%d-%H%M", localtime($event->{stop})))); + Log(LOG_INFO, sprintf("[AUTOTIMER] CheckTimers: Timer \"%s\" (No. %s, Event-ID %s, %s - %s) differs from EPG: \"%s\", Event-ID %s, %s - %s)", $timer->{title}, $timer->{id}, $timer->{event_id}, strftime("%Y%m%d-%H%M", localtime($timer->{start})), strftime("%Y%m%d-%H%M", localtime($timer->{stop})), $event->{title}, $event->{event_id}, strftime("%Y%m%d-%H%M", localtime($event->{start})), strftime("%Y%m%d-%H%M", localtime($event->{stop})))); ProgTimer( $timer->{id}, $timer->{active}, @@ -2109,11 +2165,10 @@ sub CheckTimers { # leave summary untouched. $timer->{summary}, ); - Log(LOG_CHECKTIMER, sprintf("CheckTimers: Timer %s updated.", $timer->{id})); } } } else { - Log(LOG_CHECKTIMER, sprintf("CheckTimers: Skipping Timer \"%s\" (No. %s, %s - %s)", $timer->{title}, $timer->{id}, strftime("%Y%m%d-%H%M", localtime($timer->{start})), strftime("%Y%m%d-%H%M", localtime($timer->{stop})))); + Log(LOG_DEBUG, sprintf("[AUTOTIMER] CheckTimers: Skipping Timer \"%s\" (No. %s, %s - %s)", $timer->{title}, $timer->{id}, strftime("%Y%m%d-%H%M", localtime($timer->{start})), strftime("%Y%m%d-%H%M", localtime($timer->{stop})))); } } } @@ -2211,6 +2266,8 @@ sub epgsearch_edit { my $id = $q->param("id"); my $do_test = $q->param("single_test"); my $edit_template = $q->param("edit_template"); + my $template_id; + $template_id = $q->param("template") if (defined $q->param("template")); $do_test = 0 if ($edit_template); my $search; @@ -2232,8 +2289,8 @@ sub epgsearch_edit { @sel_bl = split(/\|/, $search->{sel_blacklists}); } else { # new search - if (defined $q->param("template")) { - my @temp = GetEpgSearchTemplate($q->param("template")); + if (defined $template_id) { + my @temp = GetEpgSearchTemplate($template_id); $search = pop @temp; $search->{pattern} = "" unless ($edit_template); # don't want the template's name as search pattern @sel_bl = split(/\|/, $search->{sel_blacklists}); @@ -2291,8 +2348,8 @@ sub epgsearch_edit { did_search => $do_test, matches => (@matches ? \@matches : undef), do_edit => (defined $edit_template ? undef : (defined $id ? "1" : undef)), - mode_template => $edit_template, - template_id => $q->param("template"), + mode_template => (defined $edit_template ? "1" : undef), + template_id => $template_id, extepg => \@extepg, epgs_settings => \%EPGSEARCH_SETTINGS }; @@ -3254,8 +3311,8 @@ sub append_timer_metadata { $aux .= "<epgsearch>"; $aux .= "<eventid>$epg_id</eventid>" if ($epg_id); $aux .= "<update>$autotimer</update>" if (defined $autotimer); - $aux .= "<bstart>$bstart</bstart>" if ($bstart); - $aux .= "<bstop>$bstop</bstop>" if ($bstop); + $aux .= "<bstart>" . ($bstart * 60) . "</bstart>" if ($bstart); + $aux .= "<bstop>" . ($bstop * 60) . "</bstop>" if ($bstop); $aux .= "</epgsearch>"; } return $aux; @@ -3306,7 +3363,7 @@ sub ProgTimer { my $send_dor = $dor ? $dor : RemoveLeadingZero(strftime("%d", localtime($start))); my $send_summary = ($VDRVERSION >= 10336) ? $summary : substr($summary, 0, $VDR_MAX_SVDRP_LENGTH - 9 - length($send_cmd) - length($active) - length($channel) - length($send_dor) - 8 - length($prio) - length($lft) - length($title)); - Log(LOG_AT, sprintf("ProgTimer: Programming Timer \"%s\" (Channel %s, Event-ID %s, %s - %s, Active %s)", $title, $channel, $event_id, my_strftime("%Y%m%d-%H%M", $start), my_strftime("%Y%m%d-%H%M", $stop), $active)); + Log(LOG_DEBUG, sprintf("[SVDRP] ProgTimer: Programming Timer \"%s\" (Channel %s, Event-ID %s, %s - %s, Active %s)", $title, $channel, $event_id, my_strftime("%Y%m%d-%H%M", $start), my_strftime("%Y%m%d-%H%M", $stop), $active)); my $return = SendCMD(sprintf("%s %s:%s:%s:%s:%s:%s:%s:%s:%s", $send_cmd, $active, $channel, $send_dor, strftime("%H%M", localtime($start)), strftime("%H%M", localtime($stop)), $prio, $lft, trim($title), $send_summary)); return $return; } @@ -3346,22 +3403,41 @@ sub SigDieHandler { sub Shutdown { CloseSocket(); - WriteConfig() if ($CONFIG{AUTO_SAVE_CONFIG}); - unlink($PIDFILE); + if ($CONFIG{AUTO_SAVE_CONFIG}) { + (my $err = WriteConfig()) =~ s|<br\s*/?>$||gi; + Log(LOG_ERROR, $err) if $err; + } + closelog(); + if ($DAEMON) { + unlink($PIDFILE) or Log(LOG_WARNING, "Can't delete pid file '$PIDFILE': $!"); + } exit(0); } sub getPID { - open(PID, shift); - $_ = <PID>; - close(PID); - return ($_); + my $pidfile = shift; + if (!open(PID, $pidfile)) { + Log(LOG_WARNING, "Can't open pid file '$pidfile' for reading: $!"); + return undef; + } + chomp(my $pid = <PID> || ""); + close(PID) or Log(LOG_WARNING, "Error closing pid file '$pidfile': $!"); + if ($pid !~ /^\d+$/) { + Log(LOG_WARNING, "Ignoring bogus process id '$pid' in pid file '$pidfile'"); + $pid = undef; + } + return $pid; } sub writePID { - open(FILE, ">$PIDFILE"); + my $pidfile = shift; + if (!open(FILE, ">", $pidfile)) { + Log(LOG_ERROR, "Can't open pid file '$pidfile' for writing: $!"); + return 0; + } print FILE shift; - close(FILE); + close(FILE) or Log(LOG_WARNING, "Error closing pid file '$pidfile': $!"); + return 1; } sub HupSignal { @@ -3370,50 +3446,60 @@ sub HupSignal { sub UptoDate { my $force = shift; + my $rv = 0; if (((time() - $CONFIG{CACHE_LASTUPDATE}) >= ($CONFIG{CACHE_TIMEOUT} * 60)) || $force) { OpenSocket(); - Log(LOG_DEBUG, "Building channel tree..."); + Log(LOG_INFO, "[EPG] Building channel tree..."); ChanTree(); - Log(LOG_DEBUG, "Finished building channel tree."); + Log(LOG_INFO, "[EPG] Finished building channel tree."); if (@{$CHAN{$CHAN_FULL}->{channels}}) { - Log(LOG_DEBUG, "Building EPG tree..."); + Log(LOG_INFO, "[EPG] Building EPG tree..."); EPG_buildTree(); - Log(LOG_DEBUG, "Finished building EPG tree."); - CloseSocket(); + Log(LOG_INFO, "[EPG] Finished building EPG tree."); $CONFIG{CACHE_LASTUPDATE} = time(); + + if ($CONFIG{AT_FUNC} && $FEATURES{AUTOTIMER}) { + CheckTimers(); + AutoTimer(); + } } else { - CloseSocket(); - return (1); - } - if ($CONFIG{AT_FUNC} && $FEATURES{AUTOTIMER}) { - CheckTimers(); - AutoTimer(); - CloseSocket(); + $rv = 1; } + CloseSocket(); } - return (0); + return ($rv); } sub Log { if ($#_ >= 1) { my $level = shift; my $message = join("", @_); - print $message . "\n" if $DEBUG; - if ($CONFIG{LOGGING}) { - if ($CONFIG{LOGLEVEL} & $level) { - if ($CONFIG{LOGFILE} eq "stderr") { - print STDERR sprintf("%s: %s\n", my_strftime("%x %X"), $message); - } elsif ($CONFIG{LOGFILE} eq "syslog") { - print "Logging to syslog not yet supported!"; - } else { - open(LOGFILE, ">>" . "$LOGDIR/$CONFIG{LOGFILE}"); - print LOGFILE sprintf("%s: %s\n", my_strftime("%x %X"), $message); + + # Logging is always on in non-daemon mode + return 1 unless ($CONFIG{LOGGING} || !$DAEMON); + + my $my_loglevel = $CONFIG{LOGLEVEL}; + $my_loglevel = $LOGLEVEL if $LOGLEVEL; + if ($my_loglevel >= shift @$level) { + + # Always log to stderr in non-daemon mode + my $logfile = $DAEMON ? $CONFIG{LOGFILE} : "stderr"; + + if ($logfile eq "stderr") { + printf STDERR "%s: %s\n", my_strftime("%x %X"), $message; + } elsif ($logfile eq "syslog") { + syslog(shift @$level, '%s', $message); + } else { + if (open(LOGFILE, ">>", "$LOGDIR/$logfile")) { + printf LOGFILE "%s: %s\n", my_strftime("%x %X"), $message; close(LOGFILE); + } else { + printf STDERR "%s: %s\n", my_strftime("%x %X"), "Could not open log file '$LOGDIR/$logfile' for writing: $!"; } } } } else { - Log(LOG_FATALERROR, "bogus Log() call"); + Log(LOG_FATALERROR, "[INT] bogus Log() call"); } } @@ -3437,12 +3523,6 @@ sub my_strftime { return (strftime($format, $time ? localtime($time) : localtime(time))); } -sub my_strfgmtime { - my $format = shift; - my $time = shift; - return (strftime($format, $time ? gmtime($time) : gmtime(time))); -} - sub GetFirstChannel { #TODO: unused return ($CHAN{$CHAN_FULL}->{channels}[0]->{service_id}); } @@ -3521,13 +3601,16 @@ sub ValidConfig { sub ReadConfig { if (-e $CONFFILE) { - open(CONF, $CONFFILE); - while (<CONF>) { - chomp; - my ($key, $value) = split(/ \= /, $_, 2); - $CONFIG{$key} = $value; + if (open(CONF, $CONFFILE)) { + while (<CONF>) { + chomp; + my ($key, $value) = split(/ \= /, $_, 2); + $CONFIG{$key} = $value; + } + close(CONF) or Log(LOG_WARNING, "Error closing conf file '$CONFFILE': $!"); + } else { + Log(LOG_ERROR, "Can't open conf file '$CONFFILE' for reading: $!"); } - close(CONF); ValidConfig(); @@ -3546,6 +3629,8 @@ sub ReadConfig { } #v3.6.2 delete $CONFIG{VDRVFAT}; + #v3.6.5 + $CONFIG{LOGLEVEL} = 4 if ($CONFIG{LOGLEVEL} == 81); } else { print "$CONFFILE doesn't exist. Please run \"$EXENAME --config\"\n"; @@ -3867,11 +3952,11 @@ sub prog_detail_aktion { #printf "something went wrong during EPG update: $result\n"; main::HTMLError(sprintf($ERROR_MESSAGE{send_command}, $CONFIG{VDR_HOST})); } else { - ($result) = SendCMD(sprintf ("C %s\nE %u %ld %d %X\nT %s\n%s%s%s%s%se\nc\n.\n", - $channel_id, + ($result) = SendCMD(sprintf ("C %s\nE %u %ld %d %X\nT %s\n%s%s%s%s%se\nc\n.\n", + $channel_id, $event_id, $start, $duration, $table_id, - $title, - $new_subtitle, + $title, + $new_subtitle, $new_description, $new_video, $new_audio, @@ -3964,7 +4049,7 @@ sub prog_list { if (my_strftime("%d", $event->{start}) != $day) { # new day - push(@show, + push(@show, { endd => 1, next_channel => $next_channel ? "$MyURL?aktion=prog_list&vdr_id=$next_channel" : undef, prev_channel => $prev_channel ? "$MyURL?aktion=prog_list&vdr_id=$prev_channel" : undef, @@ -4314,7 +4399,7 @@ sub timer_list { # Timer kollidieren zeitlich. Pruefen, ob die Timer evtl. auf # gleichem Transponder oder CAM liegen und daher ohne Probleme # aufgenommen werden koennen - Log(LOG_DEBUG, sprintf("Kollission: %s (%s, %s) -- %s (%s, %s)\n", substr($timer[$ii]->{title}, 0, 15), $timer[$ii]->{vdr_id}, $timer[$ii]->{transponder}, $timer[$ii]->{ca}, substr($timer[$jj]->{title}, 0, 15), $timer[$jj]->{vdr_id}, $timer[$jj]->{transponder}, $timer[$jj]->{ca})); + Log(LOG_DEBUG, sprintf("[TIMER] Collision: %s (%s, %s) -- %s (%s, %s)\n", substr($timer[$ii]->{title}, 0, 15), $timer[$ii]->{vdr_id}, $timer[$ii]->{transponder}, $timer[$ii]->{ca}, substr($timer[$jj]->{title}, 0, 15), $timer[$jj]->{vdr_id}, $timer[$jj]->{transponder}, $timer[$jj]->{ca})); if ( $timer[$ii]->{vdr_id} != $timer[$jj]->{vdr_id} && $timer[$ii]->{ca} == $timer[$jj]->{ca} @@ -4323,7 +4408,7 @@ sub timer_list { # Beide Timer laufen auf dem gleichen CAM auf verschiedenen # Kanaelen, davon kann nur einer aufgenommen werden - Log(LOG_DEBUG, "Beide Kanaele gleiches CAM"); + Log(LOG_DEBUG, "[TIMER] Both channels use same CAM"); #($timer[$ii]->{collision}) = $CONFIG{RECORDINGS}; #OLDIMPL ($timer[$ii]->{collision})++; #NEWIMPL @@ -4609,10 +4694,10 @@ sub timer_new_form { event_id => $this_event->{event_id}, starth => my_strftime("%H", $this_event->{start}), startm => my_strftime("%M", $this_event->{start}), - bstart => $this_event->{bstart}, + bstart => ($this_event->{tool} == $TOOL_EPGSEARCH ? $this_event->{bstart} / 60 :$this_event->{bstart}), stoph => $this_event->{stop} ? my_strftime("%H", $this_event->{stop}) : "00", stopm => $this_event->{stop} ? my_strftime("%M", $this_event->{stop}) : "00", - bstop => $this_event->{bstop}, + bstop => ($this_event->{tool} == $TOOL_EPGSEARCH ? $this_event->{bstop} / 60 : $this_event->{bstop}), vps => $this_event->{active} & 4, dor => ($this_event->{dor} && (length($this_event->{dor}) == 7 || length($this_event->{dor}) == 10 || length($this_event->{dor}) == 18)) ? $this_event->{dor} : my_strftime("%d", $this_event->{start}), prio => $this_event->{prio} ne "" ? $this_event->{prio} : $CONFIG{TM_PRIORITY}, @@ -4826,15 +4911,19 @@ sub encode_RecTitle { } sub findVideoFiles { + # VDR < v1.7.2: YYYY-MM-DD-hh[.:]mm.pr.lt.rec (pr=priority, lt=lifetime) + # VDR >= v1.7.2: YYYY-MM-DD-hh.mm.ch-ri.rec (ch=channel, ri=resumeId) + my ($minute, $hour, $day, $month, $title) = @_; my $data; $title =~ s/ /_/g; $title =~ s/~/\//g; - Log(LOG_DEBUG, "rec_stream: find $CONFIG{VIDEODIR}/ -follow -regex \"$CONFIG{VIDEODIR}/$title\_*/\\(\_/\\)?....-$month-$day\\.$hour.$minute\\...\\...\\.rec/...\\.vdr\""); - my @files = `find $CONFIG{VIDEODIR}/ -follow -regex "$CONFIG{VIDEODIR}/$title\_*/\\(\_/\\)?....-$month-$day\\.$hour.$minute\\...\\...\\.rec/...\\.vdr" | sort -r`; + Log(LOG_DEBUG, "[REC] rec_stream: find $CONFIG{VIDEODIR}/ -follow -regex \"$CONFIG{VIDEODIR}/$title\_*/\\(\_/\\)?....-$month-$day\\.$hour.$minute\\.\[0-9\]+\[.-\]\[0-9\]+\\.rec/\\(...\\.vdr\\|.....\\.ts\\)\""); + my @files = `find $CONFIG{VIDEODIR}/ -follow -regex "$CONFIG{VIDEODIR}/$title\_*/\\(\_/\\)?....-$month-$day\\.$hour.$minute\\.\[0-9\]+\[.-\]\[0-9\]+\\.rec/\\(...\\.vdr\\|.....\\.ts\\)" | sort -r`; + foreach (@files) { chomp; - Log(LOG_DEBUG, "findVideoFiles: found ($_)\n"); + Log(LOG_DEBUG, "[REC] findVideoFiles: found ($_)\n"); $_ =~ s/$CONFIG{VIDEODIR}/$CONFIG{ST_VIDEODIR}/; $_ =~ s/\n//g; $data = $CONFIG{ST_URL} . "$_\n$data"; @@ -5313,7 +5402,7 @@ sub prog_timeline { $TIM->{$title} = $timer; } - my (@show, @shows, @temp); + my (@show, @temp); my $shows; foreach (@{$CHAN{$CONFIG{CHANNELS_WANTED_TIMELINE}}->{channels}}) { @@ -5512,7 +5601,7 @@ sub prog_summary { show_percent => undef, title => gettext("No EPG information available"), progname => CGI::escapeHTML($channel->{name}), - vdr_id => $channel->{vdr_id}, + vdr_id => $channel->{vdr_id}, proglink => sprintf("%s?aktion=prog_list&vdr_id=%s", $MyURL, $channel->{vdr_id}), switchurl => sprintf("%s?aktion=prog_switch&channel=%s", $MyURL, $channel->{vdr_id}), streamurl => $FEATURES{STREAMDEV} ? sprintf("%s%s?aktion=live_stream&channel=%s&progname=%s", $MyStreamBase, $CONFIG{TV_EXT}, $channel->{vdr_id}, uri_escape($channel->{name})) : undef, @@ -5585,7 +5674,6 @@ sub rec_list { $CONFIG{REC_SORTBY} = "name" if (!$CONFIG{REC_SORTBY}); my $parent = $q->param("parent"); - my $parent2; if (!$parent) { $parent = 0; } else { @@ -6074,20 +6162,23 @@ sub recRunCmd { $folder = findVideoFolder($minute, $hour, $day, $month, encode_RecTitle($title, 1)); } if ($folder) { - Log(LOG_DEBUG, "recRunCmd: executing ($cmd \"$folder\")"); + Log(LOG_DEBUG, "[REC] recRunCmd: executing ($cmd \"$folder\")"); `$cmd "$folder"`; } } } sub findVideoFolder { + # VDR < v1.7.2: YYYY-MM-DD-hh[.:]mm.pr.lt.rec (pr=priority, lt=lifetime) + # VDR >= v1.7.2: YYYY-MM-DD-hh.mm.ch-ri.rec (ch=channel, ri=resumeId) + my ($minute, $hour, $day, $month, $title) = @_; my $folder; $title =~ s/ /_/g; $title =~ s/~/\//g; - $folder = `find $CONFIG{VIDEODIR}/ -follow -regex "$CONFIG{VIDEODIR}/$title\_*/\\(\_/\\)?....-$month-$day\\.$hour.$minute\\...\\...\\.rec"`; - Log(LOG_DEBUG, "findVideoFolder: find $CONFIG{VIDEODIR}/ -follow -regex \"$CONFIG{VIDEODIR}/$title\_*/\\(\_/\\)?....-$month-$day\\.$hour.$minute\\...\\...\\.rec\""); + $folder = `find $CONFIG{VIDEODIR}/ -follow -regex "$CONFIG{VIDEODIR}/$title\_*/\\(\_/\\)?....-$month-$day\\.$hour.$minute\\.\[0-9\]+\[.-\]\[0-9\]+\\.rec"`; + Log(LOG_DEBUG, "[REC] findVideoFolder: find $CONFIG{VIDEODIR}/ -follow -regex \"$CONFIG{VIDEODIR}/$title\_*/\\(\_/\\)?....-$month-$day\\.$hour.$minute\\.\[0-9\]+\[.-\]\[0-9\]+\\.rec\""); chomp($folder) if ($folder); return $folder; @@ -6184,6 +6275,7 @@ sub config { } setlocale(LC_COLLATE, $old_collate); close(CONF); + return ""; } if ($q->param("submit")) { @@ -6266,7 +6358,7 @@ sub config { } my @my_locales; - if (-f "/usr/bin/locale" && -x "/usr/bin/locale") { + if (-f "/usr/bin/locale" && -x _) { push(@my_locales, { id => "", name => gettext("System default"), cur => 0 }); foreach my $loc (locale("-a")) { chomp $loc; @@ -6423,7 +6515,7 @@ sub grab_picture { my $file = new File::Temp(TEMPLATE => "vdr-XXXXX", DIR => File::Spec->tmpdir(), UNLINK => 1, SUFFIX => ".jpg"); chmod 0666, $file if (-e $file); SendCMD("grab $file jpeg 70 $width $height"); - if (-e $file && -r $file) { + if (-e $file && -r _) { return (header("200", "image/jpeg", ReadFile($file))); } else { print "Expected $file does not exist.\n"; @@ -6481,7 +6573,7 @@ sub vdr_cmds { { url => sprintf("%s%s?aktion=export_channels_m3u&wanted=%d", $MyStreamBase, $CONFIG{TV_EXT}, $CHAN_WANTED), text => gettext('Selected channels') }, { url => sprintf("%s%s?aktion=export_channels_m3u&wanted=%d", $MyStreamBase, $CONFIG{TV_EXT}, $CHAN_TV), text => gettext('TV channels') }, { url => sprintf("%s%s?aktion=export_channels_m3u&wanted=%d", $MyStreamBase, $CONFIG{TV_EXT}, $CHAN_RADIO), text => gettext('Radio channels') } - ); + ); my $vars = { url => sprintf("%s?aktion=vdr_cmds", $MyURL), @@ -6591,10 +6683,10 @@ package SVDRP; sub true () { main::true(); } sub false () { main::false(); } -sub LOG_VDRCOM () { main::LOG_VDRCOM(); } +sub LOG_DEBUG () { main::LOG_DEBUG(); } sub CRLF () { main::CRLF(); } -my ($SOCKET, $EPGSOCKET, $query, $connected, $VDR_ENCODING, $need_recode); +my ($SOCKET, $query, $connected, $VDR_ENCODING, $need_recode); sub new { my $invocant = shift; @@ -6610,7 +6702,7 @@ sub new { sub myconnect { my $this = shift; - main::Log(LOG_VDRCOM, "LOG_VDRCOM: connect to $CONFIG{VDR_HOST}:$CONFIG{VDR_PORT}"); + main::Log(LOG_DEBUG, "[SVDRP] Connecting to $CONFIG{VDR_HOST}:$CONFIG{VDR_PORT}"); $SOCKET = $InetSocketModule->new(PeerAddr => $CONFIG{VDR_HOST}, @@ -6658,7 +6750,7 @@ sub getSupportedFeatures { sub close { my $this = shift; if ($connected) { - main::Log(LOG_VDRCOM, "LOG_VDRCOM: closing connection"); + main::Log(LOG_DEBUG, "[SVDRP] Closing connection"); command($this, "quit"); readoneline($this); close $SOCKET if $SOCKET; @@ -6674,7 +6766,7 @@ sub command { myconnect($this); } - main::Log(LOG_VDRCOM, sprintf("LOG_VDRCOM: send \"%s\"", $cmd)); + main::Log(LOG_DEBUG, sprintf("[SVDRP] Sending \"%s\"", $cmd)); $cmd = $cmd . CRLF; if ($SOCKET && $SOCKET->connected()) { my $result = send($SOCKET, $cmd, 0); @@ -6698,7 +6790,7 @@ sub readoneline { } $line = substr($line, 4, length($line)); Encode::from_to($line, $VDR_ENCODING, $MY_ENCODING) if ($need_recode); - main::Log(LOG_VDRCOM, sprintf("LOG_VDRCOM: read \"%s\"", $line)); + main::Log(LOG_DEBUG, sprintf("[SVDRP] Read \"%s\"", $line)); return ($line); } else { return undef; diff --git a/vdradmind.pl.1 b/vdradmind.pl.1 index dbe8283..1188e52 100644 --- a/vdradmind.pl.1 +++ b/vdradmind.pl.1 @@ -21,7 +21,7 @@ will listen on port 8001. .SH OPTIONS -.IP "\-\-nofork / -nf" +.IP "\-\-nofork / -n" Do not fork on start of vdradmind. (vdradmind does not go into daemon-mode) .IP "\-\-config / -c" |