From 0911279b7a22fae2cdde05681d88322a222d6c63 Mon Sep 17 00:00:00 2001
From: Andreas Mair
Date: Fri, 11 Nov 2005 14:11:02 +0100
Subject: 2005-11-11: 0.97-am3.4.2rc4 - Updated Template-Toolkit to v2.13. -
Reworked sorting in rec_list/timer_list/at_timer_list. - Activate/Inactivate
selected timers in timers_list (Requested by Atti). - Event's title in
prog_summary/prog_list/prog_list2 links to prog_detail (Requested by Scorp).
- Added "Refresh" button in rec_list to refresh the cache of the list of
recordings. - Fixed popup if deleting timers/recordings/autotimers containing
a "'" (Reported by Saxman2k). - Remember sorting after deleteing or editing
timer or autotimer (Reported by Atti). - Improved re-connect to VDR if
VDRAdmin crashes.
---
HISTORY | 10 +
TODO | 19 ++
install.sh | 17 +-
locale/de/LC_MESSAGES/vdradmin.mo | Bin 56305 -> 36481 bytes
locale/es/LC_MESSAGES/vdradmin.mo | Bin 46075 -> 32119 bytes
locale/fi/LC_MESSAGES/vdradmin.mo | Bin 12045 -> 12414 bytes
locale/fr/LC_MESSAGES/vdradmin.mo | Bin 40194 -> 34022 bytes
po/de.mo | Bin 0 -> 36481 bytes
po/de.po | 471 ++++++++++++++++++---------
po/es.mo | Bin 0 -> 32119 bytes
po/es.po | 459 ++++++++++++++++++---------
po/fi.mo | Bin 0 -> 12414 bytes
po/fi.po | 467 ++++++++++++++++++---------
po/fr.mo | Bin 0 -> 34022 bytes
po/fr.po | 457 ++++++++++++++++++---------
po/vdradmin.pot | 450 +++++++++++++++++---------
template/default/at_timer_list.html | 2 +-
template/default/default/style.css | 16 +-
template/default/default/style.css.bak | 559 +++++++++++++++++++++++++++++++++
template/default/prog_list.html | 14 +-
template/default/prog_list2.html | 16 +-
template/default/prog_summary.html | 10 +-
template/default/rec_list.html | 18 +-
template/default/timer_list.html | 21 +-
vdradmind.pl | 148 ++++++---
25 files changed, 2334 insertions(+), 820 deletions(-)
create mode 100644 TODO
create mode 100644 po/de.mo
create mode 100644 po/es.mo
create mode 100644 po/fi.mo
create mode 100644 po/fr.mo
create mode 100644 template/default/default/style.css.bak
diff --git a/HISTORY b/HISTORY
index eb79aad..4ae5b15 100644
--- a/HISTORY
+++ b/HISTORY
@@ -4,6 +4,16 @@ E-Mail: mail AT andreas DOT vdr-developer DOT org
VDR-Portal: amair
-----------------------------------------------------------
+2005-11-11: 0.97-am3.4.2rc4
+- Updated Template-Toolkit to v2.13.
+- Reworked sorting in rec_list/timer_list/at_timer_list.
+- Activate/Inactivate selected timers in timers_list (Requested by Atti).
+- Event's title in prog_summary/prog_list/prog_list2 links to prog_detail (Requested by Scorp).
+- Added "Refresh" button in rec_list to refresh the cache of the list of recordings.
+- Fixed popup if deleting timers/recordings/autotimers containing a "'" (Reported by Saxman2k).
+- Remember sorting after deleteing or editing timer or autotimer (Reported by Atti).
+- Improved re-connect to VDR if VDRAdmin crashes.
+
2005-11-04: 0.97-am3.4.2rc3
- Set "LANGUAGE" environment variable to "" on startup, so it causes no problems with language setting in VDRAdmin.
- Added caching of listing of recordings. Can be adjusted by "CACHE_REC_TIMEOUT=number of minutes" in vdradmind.conf. Defaults to "60", "0" disables caching.
diff --git a/TODO b/TODO
new file mode 100644
index 0000000..616ac76
--- /dev/null
+++ b/TODO
@@ -0,0 +1,19 @@
++ im javascript:del() "'" escapen (Saxman2k)
++ nach löschen/bearbeiten einer Aufnahme Aufnahmencache updaten (Saxman2k)
++ beim löschen von Timern verliert er die Sortierung. (Atti)
+- Wie sieht es mit der Funktion aus mehrere Timer inaktiv zu setzten (Atti)
+
+---------
+Atti:
+
+ Wenn ich einen manuellen Timer anlege landet er in einer Endlosschleife kurzes Log:
+
+code:
+08.11.2005 11:25:00: ProgTimer: Programming Timer "Käpt'n Balu und seine tollkühne Crew" (Channel 8, Event-ID 32433, 20051108-1220 - 20051108-1310)
+08.11.2005 11:25:01: ProgTimer: Programming Timer "Käpt'n Balu und seine tollkühne Crew" (Channel 8, Event-ID 32433, 20051108-1220 - 20051108-1310)
+08.11.2005 11:25:02: ProgTimer: Programming Timer "Käpt'n Balu und seine tollkühne Crew" (Channel 8, Event-ID 32433, 20051108-1220 - 20051108-1310)
+...usw.
+
+- beim überprüfen der VDR Logdateien ist mir aufgefallen das er bei einem Autotimer suchlauf Timer programmieren will die in der Vergangenheit liegen diese werden dann gleich wieder vom VDR gelöscht.
+
+---------
diff --git a/install.sh b/install.sh
index 243e3cc..456c4c3 100755
--- a/install.sh
+++ b/install.sh
@@ -91,6 +91,15 @@ function makeDir()
[ -z "$1" ] && return 1
local DIR=$1
local MUST_CREATE=${2:-0}
+ if [ -e "$DIR" -a ! -d "$DIR" ]; then
+ echo "$DIR exists but is no directory!"
+ echo "Aborting..."
+ return 1
+ elif [ -d $DIR -a $MUST_CREATE = 1 ]; then
+ echo "$DIR exists. Please remove it before calling install.sh!"
+ echo "Aborting..."
+ return 1
+ fi
if [ ! -e "$DIR" ]; then
mkdir -p "$DIR"
if [ $? -ne 0 ]; then
@@ -99,14 +108,6 @@ function makeDir()
return 1
fi
fi
- if [ ! -d "$DIR" ]; then
- echo "$DIR exists but is no directory!"
- echo "Aborting..."
- return 1
- elif [ -d $DIR -a $MUST_CREATE = 1 ]; then
- echo "$DIR exists. Please remove it before calling install.sh!"
- echo "Aborting..."
- fi
return 0
}
diff --git a/locale/de/LC_MESSAGES/vdradmin.mo b/locale/de/LC_MESSAGES/vdradmin.mo
index 6df1c87..c96ac35 100644
Binary files a/locale/de/LC_MESSAGES/vdradmin.mo and b/locale/de/LC_MESSAGES/vdradmin.mo differ
diff --git a/locale/es/LC_MESSAGES/vdradmin.mo b/locale/es/LC_MESSAGES/vdradmin.mo
index 6df3449..3ae5182 100644
Binary files a/locale/es/LC_MESSAGES/vdradmin.mo and b/locale/es/LC_MESSAGES/vdradmin.mo differ
diff --git a/locale/fi/LC_MESSAGES/vdradmin.mo b/locale/fi/LC_MESSAGES/vdradmin.mo
index c0d5dd9..c650347 100644
Binary files a/locale/fi/LC_MESSAGES/vdradmin.mo and b/locale/fi/LC_MESSAGES/vdradmin.mo differ
diff --git a/locale/fr/LC_MESSAGES/vdradmin.mo b/locale/fr/LC_MESSAGES/vdradmin.mo
index 7c5e56e..ce0652e 100644
Binary files a/locale/fr/LC_MESSAGES/vdradmin.mo and b/locale/fr/LC_MESSAGES/vdradmin.mo differ
diff --git a/po/de.mo b/po/de.mo
new file mode 100644
index 0000000..c96ac35
Binary files /dev/null and b/po/de.mo differ
diff --git a/po/de.po b/po/de.po
index 1d493ff..884cf9a 100644
--- a/po/de.po
+++ b/po/de.po
@@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDRAdmin-0.97-AM3.4\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-04 13:15+0100\n"
+"POT-Creation-Date: 2005-11-11 13:15+0100\n"
"PO-Revision-Date: 2005-09-23 12:49+0100\n"
"Last-Translator: Andreas Mair \n"
"Language-Team: \n"
@@ -344,13 +344,13 @@ msgid "Delete Selected AutoTimers"
msgstr "Ausgewählte AutoTimer löschen"
#: ../template/default/at_timer_list.html:196
-#: ../template/default/timer_list.html:378
+#: ../template/default/timer_list.html:385
msgid "Delete all selected timers?"
msgstr "Ausgewählte Timer wirklich löschen?"
#: ../template/default/prog_summary.html:7
#: ../template/default/prog_timeline.html:7
-#: ../template/default/navigation.html:30 ../vdradmind.pl:4283
+#: ../template/default/navigation.html:30 ../vdradmind.pl:4337
msgid "What's On Now?"
msgstr "Was läuft jetzt?"
@@ -375,19 +375,19 @@ msgstr "um:"
msgid "Stream"
msgstr "Stream"
-#: ../template/default/prog_summary.html:73
+#: ../template/default/prog_summary.html:81
msgid "TV select"
msgstr "TV umschalten"
-#: ../template/default/prog_summary.html:74
+#: ../template/default/prog_summary.html:82
msgid "Search for other show times"
msgstr "Nach Wiederholungen suchen"
-#: ../template/default/prog_summary.html:76
+#: ../template/default/prog_summary.html:84
msgid "More Information"
msgstr "mehr Infos"
-#: ../template/default/prog_summary.html:80
+#: ../template/default/prog_summary.html:88
msgid "Record"
msgstr "Sendung aufnehmen"
@@ -475,7 +475,7 @@ msgstr "Gast Passwort:"
#: ../template/default/config.html:213 ../template/default/help_config.html:38
#: ../template/default/help_config.html:86
-#: ../template/default/navigation.html:38 ../vdradmind.pl:4285
+#: ../template/default/navigation.html:38 ../vdradmind.pl:4339
msgid "Timeline"
msgstr "Zeitleiste"
@@ -673,6 +673,8 @@ msgid "Date"
msgstr "Datum"
#: ../template/default/timer_list.html:306
+#: ../template/default/timer_list.html:380
+#: ../template/default/timer_list.html:381
msgid "Edit timer status?"
msgstr "Timerstatus ändern?"
@@ -700,12 +702,27 @@ msgstr "VPS"
msgid "Auto"
msgstr "Auto"
-#: ../template/default/timer_list.html:378
+#: ../template/default/timer_list.html:380
+#, fuzzy
+msgid "activate"
+msgstr "Aktiv"
+
+#: ../template/default/timer_list.html:381
+#, fuzzy
+msgid "inactivate"
+msgstr "Aktiv"
+
+#: ../template/default/timer_list.html:382
+#, fuzzy
+msgid "selected timers"
+msgstr "Timer löschen?"
+
+#: ../template/default/timer_list.html:385
msgid "Delete Selected Timers"
msgstr "Ausgewählte Timer löschen"
#: ../template/default/prog_list.html:6 ../template/default/navigation.html:42
-#: ../vdradmind.pl:4286
+#: ../vdradmind.pl:4340
msgid "Channels"
msgstr "Programmübersicht"
@@ -771,7 +788,7 @@ msgstr "Film in der Internet-Movie-Database (IMDb) suchen"
#: ../template/default/rec_list.html:6 ../template/default/rec_list.html:18
#: ../template/default/help_rec_list.html:6
#: ../template/default/help_rec_list.html:18
-#: ../template/default/navigation.html:54 ../vdradmind.pl:4288
+#: ../template/default/navigation.html:54 ../vdradmind.pl:4342
msgid "Recordings"
msgstr "Aufnahmen"
@@ -803,23 +820,27 @@ msgstr "Umbenennen"
msgid "Delete recording?"
msgstr "Aufnahme löschen?"
-#: ../template/default/rec_list.html:169
+#: ../template/default/rec_list.html:170
+msgid "Refresh"
+msgstr ""
+
+#: ../template/default/rec_list.html:174
msgid "Commands:"
msgstr "Befehle:"
-#: ../template/default/rec_list.html:175
+#: ../template/default/rec_list.html:180
msgid "Run"
msgstr "Ausführen"
-#: ../template/default/rec_list.html:175
+#: ../template/default/rec_list.html:180
msgid "Really run this command?"
msgstr "Diesen Befehl wirklich ausführen?"
-#: ../template/default/rec_list.html:177
+#: ../template/default/rec_list.html:184
msgid "Delete Selected Recordings"
msgstr "Ausgewählte Aufnahmen löschen"
-#: ../template/default/rec_list.html:177
+#: ../template/default/rec_list.html:184
msgid "Delete all selected recordings?"
msgstr "Ausgewählte Aufnahmen wirklich löschen?"
@@ -1045,7 +1066,12 @@ msgid ""
"have the sendEmail programm (which you will find here) located in "
"PATH."
-msgstr "Wenn Sie diese Funktion aktivieren, dann schickt Ihnen VDRAdmin immer wenn ein AutoTimer eine passende Sendung findet eine E-Mail. Dafür muss sich das Programm sendEmail (das Sie hier herunterladen können) im aktuellen Suchpfad befinden."
+msgstr ""
+"Wenn Sie diese Funktion aktivieren, dann schickt Ihnen VDRAdmin immer wenn "
+"ein AutoTimer eine passende Sendung findet eine E-Mail. Dafür muss sich das "
+"Programm sendEmail (das Sie hier herunterladen können) im aktuellen "
+"Suchpfad befinden."
#: ../template/default/help_config.html:111
msgid "Here you set the sending domain of the generated email."
@@ -1093,7 +1119,9 @@ msgstr "Hier können Sie die Tooltips in der Liste ein- oder ausschalten."
msgid ""
"If you don't want VDRAdmin to add the summary taken from EPG to new timers "
"you can switch it off here."
-msgstr "Wenn Sie nicht wollen, dass VDRAdmin die Beschreibung einer Sendung aus dem EPG für neue Timer setzt, dann können Sie dies hiermit unterbinden."
+msgstr ""
+"Wenn Sie nicht wollen, dass VDRAdmin die Beschreibung einer Sendung aus dem "
+"EPG für neue Timer setzt, dann können Sie dies hiermit unterbinden."
#: ../template/default/help_config.html:145
msgid ""
@@ -1184,15 +1212,20 @@ msgstr ""
"class=\"ref_file\">reccmd.conf Befehl darauf ausführen lassen wollen."
#: ../template/default/help_config.html:170
+#, fuzzy
msgid ""
"
If you want to limit the number of channels used in some parts of "
-"VDRAdmin, this is for you!
Use the radio buttons to activate or "
-"deactivate the wanted channels in the named menu.
To add channels to "
-"the list of wanted channels you have to select them in the left side "
-"selectbox and click . If you want to remove channels from the list of wanted "
-"channels you have to select them in the right side selectbox and click "
-".
"
+"VDRAdmin, this is for you!
\n"
+"\n"
+"\t\t\t\t\t
Use the radio buttons to activate or deactivate the wanted "
+"channels in the named menu.
\n"
+"\n"
+"\t\t\t\t\t
To add channels to the list of wanted channels you have to "
+"select them in the left side selectbox and click . If you want to remove "
+"channels from the list of wanted channels you have to select them in the "
+"right side selectbox and click .
"
msgstr ""
"
Hiermit können Sie die Anzahl der Sender für einige Teilbereiche von "
"VDRAdmin einschränken.
Here you will find a listing of timers known to VDR.
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>
Below the chart you'll find the timers list showing you some "
+"
Here you will find a listing of timers known to VDR.
\n"
+"\n"
+"\t\t\t\t
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.
\n"
+"\n"
+"\t\t\t\t
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.
For each timer you have the following options:"
-"
Set its state
By clicking on \"Yes\", \"No\", \"VPS\" or "
-"\"Auto\" in the \"Active\" column.
Quickly view its priority and "
-"lifetime
By pointing the mouse cursor to the timer's title."
-"dd>
View its EPG entry
Timers that have set AutoTimer Checking to \"Transmission Identification\" "
-"will show you the corresponding EPG entry if you click on the timer's title."
-"
Edit the timer
You can edit a timer by clicking .
Delete the timer
To "
-"delete a timer you click ."
-"dd>
Each timer's state is indicated by differently coloured boxes "
-"(in the chart view) or images (in the list view): / Timer is OK and will record. / Timer conflicts with "
-"other timers. That's not critical, as long as you have enough DVB cards for "
-"the parallel recordings. "
-" / Timer is critical and will most likely not "
-"record. / \n"
+"\n"
+"\t\t\t\t
For each timer you have the following options:\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t
Set its state
\n"
+"\n"
+"\t\t\t\t\t\t
By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the "
+"\"Active\" column.
\n"
+"\n"
+"\t\t\t\t\t\t
Quickly view its priority and lifetime
\n"
+"\n"
+"\t\t\t\t\t\t
By pointing the mouse cursor to the timer's title.
\n"
+"\n"
+"\t\t\t\t\t\t
View its EPG entry
\n"
+"\n"
+"\t\t\t\t\t\t
Timers that have set AutoTimer "
+"Checking to \"Transmission Identification\" will show you the "
+"corresponding EPG entry if you click on the timer's title.
\n"
+"\n"
+"\t\t\t\t\t\t
Edit the timer
\n"
+"\n"
+"\t\t\t\t\t\t
You can edit a timer by clicking .
\n"
+"\n"
+"\t\t\t\t\t\t
Delete the timer
\n"
+"\n"
+"\t\t\t\t\t\t
To delete a timer you click .
\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\n"
+"\n"
+"\t\t\t\t
Each timer's state is indicated by differently coloured boxes (in "
+"the chart view) or images (in the list view): \n"
+"\n"
+"\t\t\t\t\t / Timer is OK and "
+"will record. \n"
+"\n"
+"\t\t\t\t\t / Timer "
+"conflicts with other timers. That's not critical, as long as you have enough "
+"DVB cards for the parallel recordings. \n"
+"\n"
+"\t\t\t\t\t / Timer "
+"is critical and will most likely not record. \n"
+"\n"
+"\t\t\t\t\t / Timer is "
-"not active.
In addition to these functions you can add a new timer by "
+"not active.\n"
+"\n"
+"\t\t\t\t
\n"
+"\n"
+"\t\t\t\t
In addition to these functions you can add a new timer by "
"clicking 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
Two digits (DD). This will use the current month and year."
-"li>
ISO norm (YYYY-MM-DD). Program your timers as far in the future as "
-"you like.
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."
+"formats:\n"
+"\n"
+"\t\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t\t
Two digits (DD). This will use the current month and year."
+"
\n"
+"\n"
+"\t\t\t\t\t\t\t
ISO norm (YYYY-MM-DD). Program your timers as far in the "
+"future as you like.
\n"
+"\n"
+"\t\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\tIn 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:
Zwei Ziffern (TT). Es wird der aktuelle Monat und "
@@ -1424,27 +1507,59 @@ msgstr ""
"Aufnahme geschrieben."
#: ../template/default/help_at_timer_list.html:33
+#, fuzzy
msgid ""
"
Here you will find a listing of automatic timers (AutoTimer) known to "
-"VDRAdmin.
The list shows some information on AutoTimers. You can "
-"change the list's sorting by clicking the columns heading.
For each "
-"AutoTimer you have the following options:
Set its state
By "
-"clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the "
-"activity.
Quickly view its priority and lifetime
By pointing "
-"the mouse cursor to the AutoTimer's title.
Edit the AutoTimer"
-"dt>
You can edit an AutoTimer by clicking .
Delete the AutoTimer
To delete an AutoTimer "
-"you click .
"
-"p>
Each AutoTimer's state is indicated by differently coloured images: "
-"AutoTimer is OK and will automatically program matching broadcasts. "
-"AutoTimer is not active.
In addition to these functions you can add a "
-"new AutoTimer by clicking 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 "
-".
Click \n"
+"\n"
+"\t\t\t\t
The list shows some information on AutoTimers. You can change the "
+"list's sorting by clicking the columns heading.
\n"
+"\n"
+"\t\t\t\t
For each AutoTimer you have the following options:\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t
Set its state
\n"
+"\n"
+"\t\t\t\t\t\t
By clicking on \"Yes\" or \"No\" in the \"Active\" column to "
+"toggle the activity.
\n"
+"\n"
+"\t\t\t\t\t\t
Quickly view its priority and lifetime
\n"
+"\n"
+"\t\t\t\t\t\t
By pointing the mouse cursor to the AutoTimer's title.
\n"
+"\n"
+"\t\t\t\t\t\t
Edit the AutoTimer
\n"
+"\n"
+"\t\t\t\t\t\t
You can edit an AutoTimer by clicking .
\n"
+"\n"
+"\t\t\t\t\t\t
Delete the AutoTimer
\n"
+"\n"
+"\t\t\t\t\t\t
To delete an AutoTimer you click .
\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\n"
+"\n"
+"\t\t\t\t
Each AutoTimer's state is indicated by differently coloured "
+"images: \n"
+"\n"
+"\t\t\t\t\t AutoTimer is OK and will automatically program matching broadcasts. \n"
+"\n"
+"\t\t\t\t\t AutoTimer is not active.\n"
+"\n"
+"\t\t\t\t
\n"
+"\n"
+"\t\t\t\t
In addition to these functions you can add a new AutoTimer by "
+"clicking "
+"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 .
\n"
+"\n"
+"\t\t\t\t
Click to force VDRAdmin to reconnect to VDR, fetch the current EPG and check "
"for matching AutoTimers.
Here you can edit an automatic timer's (AutoTimer) settings."
-"p>
AutoTimer is a key feature of VDRAdmin. 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.
"
+"
Here you can edit an automatic timer's (AutoTimer) settings.
\n"
+"\n"
+"\t\t\t\t
AutoTimer is a key feature of VDRAdmin. 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.
"
msgstr ""
"
Hier können Sie die Einstellungen der automatischen Timer (AutoTimer) "
"bearbeiten.
Die AutoTimer sind eine Schlüsselfunktion des VDRAdmin. "
@@ -1661,28 +1778,56 @@ msgid "Directory:"
msgstr "Ordner:"
#: ../template/default/help_at_timer_new.html:62
+#, fuzzy
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). VDRAdmin will "
"append the matching broadcast's title and subtitle (if the \"Episode\" "
-"checkbox is marked) to the directory given here.
You can also use "
-"the following keywords that are replaced in the final file name by the "
-"values supplied by for example tvm2vdr:
%Title% - will become the title of the event.
"
-"%Subtitle% - will become the subtitle of the event.
%Director% - "
-"will become the director of the event.
%Date% - will become the date "
-"of the recording.
%Category% - will become the category of the event "
-"(Spielfilm/Serie/...).
%Genre% - will become the genre of the event "
-"(Drama/Krimi/..).
%Year% - will become the year of production."
-"li>
%Country% - will become the country of production.
%"
-"Originaltitle% - will become the original title of the event.
%FSK% "
-"- will become the FSK from the event.
%Episode% - will become the "
-"episode's title of the event.
%Rating% - will become the rating of "
-"the event from the EPG provider.
Note:
If you use the above "
-"keywords it's in your own responsibility to supply the complete file "
-"name for the recordings! VDRAdmin will not append anything to the "
-"resulting string."
+"checkbox is marked) to the directory given here.
\n"
+"\n"
+"\t\t\t\t\t\tYou can also use the following keywords that are replaced in the "
+"final file name by the values supplied by for example tvm2vdr:\n"
+"\n"
+"\t\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Title% - will become the title of the event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Subtitle% - will become the subtitle of the event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Director% - will become the director of the event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Date% - will become the date of the recording.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Category% - will become the category of the event "
+"(Spielfilm/Serie/...).
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Genre% - will become the genre of the event (Drama/"
+"Krimi/..).
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Year% - will become the year of production.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Country% - will become the country of production.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Originaltitle% - will become the original title of the "
+"event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%FSK% - will become the FSK from the event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Episode% - will become the episode's title of the event."
+"li>\n"
+"\n"
+"\t\t\t\t\t\t\t
%Rating% - will become the rating of the event from the "
+"EPG provider.
\n"
+"\n"
+"\t\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t
Note:
\n"
+"\n"
+"\t\t\t\t\t\tIf you use the above keywords it's in your own responsibility to "
+"supply the complete file name for the recordings! VDRAdmin "
+"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 "
@@ -1706,38 +1851,72 @@ msgstr ""
"anhängen."
#: ../template/default/help_rec_list.html:29
+#, fuzzy
msgid ""
"
Here you will find a listing of recordings known to VDR. The headline "
-"will also show you VDR's total and free disk space.
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.
Each row contains this "
-"information:
Date
The date when the recording has been done. "
-"In case of folders this will show the number of recordings the folder "
-"contains.
Time
The time when the recording has been done. In "
-"case of folders this will show the number of new recordings "
-"the folder contains.
Name
The recording's or folder's name. "
-"Click it to show the recording's summary or descend into the folder."
-"dd>
Rename ()
Rename "
-"a recording.
Note:
This only works if VDR has the RENR "
-"SVDRPort command which is no core VDR feature but is available through a "
-"patch. vdr-aio21_svdrprename.patch or enAIO-v2.2+ provide this command.
Delete "
-"()
Delete a "
-"recording.
Stream ()"
-"
This column is only shown if you activated and configured Recordings Streaming in the Configuration menu. You can watch the recording at your "
-"workstation.
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 .
If you've set the path the "
-"VDR's configuration files and have entries in VDR's reccmds.conf you can run those commands for the selected recording "
-"by selecting the wanted command in the select box locate next to Commands: and pressing the button.
"
+"will also show you VDR's total and free disk space.\n"
+"\n"
+"\t\t\t\t
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.
\n"
+"\n"
+"\t\t\t\t
Each row contains this information:\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t
Date
\n"
+"\n"
+"\t\t\t\t\t\t
The date when the recording has been done. In case of "
+"folders this will show the number of recordings the folder contains.
\n"
+"\n"
+"\t\t\t\t\t\t
Time
\n"
+"\n"
+"\t\t\t\t\t\t
The time when the recording has been done. In case of "
+"folders this will show the number of new recordings the "
+"folder contains.
\n"
+"\n"
+"\t\t\t\t\t\t
Name
\n"
+"\n"
+"\t\t\t\t\t\t
The recording's or folder's name. Click it to show the "
+"recording's summary or descend into the folder.
\n"
+"\n"
+"\t\t\t\t\t\t
Rename ()
\n"
+"\n"
+"\t\t\t\t\t\t
Rename a recording.
Note:
This only works if "
+"VDR has the RENR SVDRPort command which is no core VDR feature but is "
+"available through a patch. vdr-aio21_svdrprename."
+"patch or enAIO-v2.2+ provide this "
+"command.
\n"
+"\n"
+"\t\t\t\t\t\t
Delete ()"
+"dt>\n"
+"\n"
+"\t\t\t\t\t\t
Delete a recording.
\n"
+"\n"
+"\t\t\t\t\t\t
Stream ()"
+"dt>\n"
+"\n"
+"\t\t\t\t\t\t
This column is only shown if you activated and configured "
+"Recordings Streaming in the Configuration menu. You can watch the recording at your "
+"workstation.
\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\n"
+"\n"
+"\t\t\t\t
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 .
\n"
+"\n"
+"\t\t\t\t
If you've set the path the VDR's configuration files and have "
+"entries in VDR's reccmds.conf you can run "
+"those commands for the selected recording by selecting the wanted command in "
+"the select box locate next to Commands: and "
+"pressing the button."
+"
"
msgstr ""
"
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 "
@@ -1870,69 +2049,69 @@ msgstr "Konfigurationsdatei wurde erfolgreich geschrieben."
msgid "vdradmind.pl %s started with pid %d."
msgstr "vdradmind.pl %s wurde mit der Prozeß-ID %d gestartet."
-#: ../vdradmind.pl:401 ../vdradmind.pl:990 ../vdradmind.pl:1798
+#: ../vdradmind.pl:401 ../vdradmind.pl:993 ../vdradmind.pl:1808
msgid "Not found"
msgstr "Nicht gefunden"
-#: ../vdradmind.pl:401 ../vdradmind.pl:1799
+#: ../vdradmind.pl:401 ../vdradmind.pl:1809
msgid "The requested URL was not found on this server!"
msgstr "Die angeforderte URL konnte auf dem Server nicht gefunden werden!"
-#: ../vdradmind.pl:466 ../vdradmind.pl:986 ../vdradmind.pl:1801
+#: ../vdradmind.pl:469 ../vdradmind.pl:989 ../vdradmind.pl:1811
msgid "Forbidden"
msgstr "Verboten"
-#: ../vdradmind.pl:466 ../vdradmind.pl:1802
+#: ../vdradmind.pl:469 ../vdradmind.pl:1812
msgid "You don't have permission to access this function!"
msgstr "Sie haben nicht die Erlaubnis diese Funktion aufzurufen!"
-#: ../vdradmind.pl:986 ../vdradmind.pl:1803
+#: ../vdradmind.pl:989 ../vdradmind.pl:1813
#, perl-format
msgid "Access to file \"%s\" denied!"
msgstr "Zugriff auf Datei \"%s\" verweigert!"
-#: ../vdradmind.pl:990 ../vdradmind.pl:1800
+#: ../vdradmind.pl:993 ../vdradmind.pl:1810
#, perl-format
msgid "The URL \"%s\" was not found on this server!"
msgstr "Die URL \"%s\" wurde auf dem Server nicht gefunden!"
-#: ../vdradmind.pl:1804
+#: ../vdradmind.pl:1814
#, perl-format
msgid "Can't open file \"%s\"!"
msgstr "Kann Datei \"%s\" nicht öffnen!"
-#: ../vdradmind.pl:1805
+#: ../vdradmind.pl:1815
#, perl-format
msgid "Can't connect to VDR at %s!"
msgstr "Konnte Verbindung zu %s nicht aufbauen!"
-#: ../vdradmind.pl:1806
+#: ../vdradmind.pl:1816
#, perl-format
msgid "Error while sending command to VDR at %s"
msgstr "Fehler beim Senden eines Kommandos zu %s"
-#: ../vdradmind.pl:2489
+#: ../vdradmind.pl:2500
msgid "Playing Tomorrow"
msgstr "Was läuft morgen"
-#: ../vdradmind.pl:2489
+#: ../vdradmind.pl:2500
#, perl-format
msgid "Playing on the %d."
msgstr "Was läuft am %d."
-#: ../vdradmind.pl:3805
+#: ../vdradmind.pl:3844
msgid "Schedule"
msgstr "Übersicht"
-#: ../vdradmind.pl:4284
+#: ../vdradmind.pl:4338
msgid "Playing Today?"
msgstr "Was läuft heute?"
-#: ../vdradmind.pl:4287
+#: ../vdradmind.pl:4341
msgid "Timers"
msgstr "Timer"
-#: ../vdradmind.pl:4350
+#: ../vdradmind.pl:4404
msgid "System default"
msgstr "Systemstandard"
diff --git a/po/es.mo b/po/es.mo
new file mode 100644
index 0000000..3ae5182
Binary files /dev/null and b/po/es.mo differ
diff --git a/po/es.po b/po/es.po
index 11483fa..e1cdb19 100644
--- a/po/es.po
+++ b/po/es.po
@@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDRAdmin-0.97-AM3.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-04 13:15+0100\n"
+"POT-Creation-Date: 2005-11-11 13:15+0100\n"
"PO-Revision-Date: 2005-10-05 19:12+0100\n"
"Last-Translator: rudy \n"
"Language-Team: Rudi \n"
@@ -348,13 +348,13 @@ msgid "Delete Selected AutoTimers"
msgstr "Borrar autoprogramaciones elegidas"
#: ../template/default/at_timer_list.html:196
-#: ../template/default/timer_list.html:378
+#: ../template/default/timer_list.html:385
msgid "Delete all selected timers?"
msgstr "¿Estas seguro de que deseas borrar las programaciones elegidas?"
#: ../template/default/prog_summary.html:7
#: ../template/default/prog_timeline.html:7
-#: ../template/default/navigation.html:30 ../vdradmind.pl:4283
+#: ../template/default/navigation.html:30 ../vdradmind.pl:4337
msgid "What's On Now?"
msgstr "Estrenos ahora"
@@ -379,19 +379,19 @@ msgstr " a la/s:"
msgid "Stream"
msgstr "Flujo"
-#: ../template/default/prog_summary.html:73
+#: ../template/default/prog_summary.html:81
msgid "TV select"
msgstr "cambiar canal"
-#: ../template/default/prog_summary.html:74
+#: ../template/default/prog_summary.html:82
msgid "Search for other show times"
msgstr "buscar repeticiones"
-#: ../template/default/prog_summary.html:76
+#: ../template/default/prog_summary.html:84
msgid "More Information"
msgstr "más información"
-#: ../template/default/prog_summary.html:80
+#: ../template/default/prog_summary.html:88
msgid "Record"
msgstr "Grabar estreno"
@@ -479,7 +479,7 @@ msgstr "Contrase
#: ../template/default/config.html:213 ../template/default/help_config.html:38
#: ../template/default/help_config.html:86
-#: ../template/default/navigation.html:38 ../vdradmind.pl:4285
+#: ../template/default/navigation.html:38 ../vdradmind.pl:4339
msgid "Timeline"
msgstr "Tabla de tiempo"
@@ -680,6 +680,8 @@ msgid "Date"
msgstr "Fecha"
#: ../template/default/timer_list.html:306
+#: ../template/default/timer_list.html:380
+#: ../template/default/timer_list.html:381
msgid "Edit timer status?"
msgstr "¿Cambiar estado de la programación?"
@@ -707,12 +709,27 @@ msgstr "VPS"
msgid "Auto"
msgstr "Auto"
-#: ../template/default/timer_list.html:378
+#: ../template/default/timer_list.html:380
+#, fuzzy
+msgid "activate"
+msgstr "Activada"
+
+#: ../template/default/timer_list.html:381
+#, fuzzy
+msgid "inactivate"
+msgstr "Activada"
+
+#: ../template/default/timer_list.html:382
+#, fuzzy
+msgid "selected timers"
+msgstr "¿Borrar programación?"
+
+#: ../template/default/timer_list.html:385
msgid "Delete Selected Timers"
msgstr "Borrar programaciones elegidas"
#: ../template/default/prog_list.html:6 ../template/default/navigation.html:42
-#: ../vdradmind.pl:4286
+#: ../vdradmind.pl:4340
msgid "Channels"
msgstr "EPG por emisoras"
@@ -778,7 +795,7 @@ msgstr "Buscar la pel
#: ../template/default/rec_list.html:6 ../template/default/rec_list.html:18
#: ../template/default/help_rec_list.html:6
#: ../template/default/help_rec_list.html:18
-#: ../template/default/navigation.html:54 ../vdradmind.pl:4288
+#: ../template/default/navigation.html:54 ../vdradmind.pl:4342
msgid "Recordings"
msgstr "Grabaciones"
@@ -810,23 +827,27 @@ msgstr "Renombrar"
msgid "Delete recording?"
msgstr "¿Borrar grabación?"
-#: ../template/default/rec_list.html:169
+#: ../template/default/rec_list.html:170
+msgid "Refresh"
+msgstr ""
+
+#: ../template/default/rec_list.html:174
msgid "Commands:"
msgstr "Órdenes:"
-#: ../template/default/rec_list.html:175
+#: ../template/default/rec_list.html:180
msgid "Run"
msgstr "Iniciar"
-#: ../template/default/rec_list.html:175
+#: ../template/default/rec_list.html:180
msgid "Really run this command?"
msgstr "¿Ejecutar el orden de verdad?"
-#: ../template/default/rec_list.html:177
+#: ../template/default/rec_list.html:184
msgid "Delete Selected Recordings"
msgstr "Borrar grabaciones elegidas"
-#: ../template/default/rec_list.html:177
+#: ../template/default/rec_list.html:184
msgid "Delete all selected recordings?"
msgstr "¿Estas seguro de que deseas borrar las grabaciones elegidas?"
@@ -1192,15 +1213,20 @@ msgstr ""
"ejecutando un orden del fichero reccmd.conf."
#: ../template/default/help_config.html:170
+#, fuzzy
msgid ""
"
If you want to limit the number of channels used in some parts of "
-"VDRAdmin, this is for you!
Use the radio buttons to activate or "
-"deactivate the wanted channels in the named menu.
To add channels to "
-"the list of wanted channels you have to select them in the left side "
-"selectbox and click . If you want to remove channels from the list of wanted "
-"channels you have to select them in the right side selectbox and click "
-".
"
+"VDRAdmin, this is for you!
\n"
+"\n"
+"\t\t\t\t\t
Use the radio buttons to activate or deactivate the wanted "
+"channels in the named menu.
\n"
+"\n"
+"\t\t\t\t\t
To add channels to the list of wanted channels you have to "
+"select them in the left side selectbox and click . If you want to remove "
+"channels from the list of wanted channels you have to select them in the "
+"right side selectbox and click .
"
msgstr ""
"
Aquí se puede limitar la cantidad de emisoras visibles en diferentes "
"partes del VDRAdmin!
Here you will find a listing of timers known to VDR.
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>
Below the chart you'll find the timers list showing you some "
+"
Here you will find a listing of timers known to VDR.
\n"
+"\n"
+"\t\t\t\t
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.
\n"
+"\n"
+"\t\t\t\t
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.
For each timer you have the following options:"
-"
Set its state
By clicking on \"Yes\", \"No\", \"VPS\" or "
-"\"Auto\" in the \"Active\" column.
Quickly view its priority and "
-"lifetime
By pointing the mouse cursor to the timer's title."
-"dd>
View its EPG entry
Timers that have set AutoTimer Checking to \"Transmission Identification\" "
-"will show you the corresponding EPG entry if you click on the timer's title."
-"
Edit the timer
You can edit a timer by clicking .
Delete the timer
To "
-"delete a timer you click ."
-"dd>
Each timer's state is indicated by differently coloured boxes "
-"(in the chart view) or images (in the list view): / Timer is OK and will record. / Timer conflicts with "
-"other timers. That's not critical, as long as you have enough DVB cards for "
-"the parallel recordings. "
-" / Timer is critical and will most likely not "
-"record. / \n"
+"\n"
+"\t\t\t\t
For each timer you have the following options:\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t
Set its state
\n"
+"\n"
+"\t\t\t\t\t\t
By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the "
+"\"Active\" column.
\n"
+"\n"
+"\t\t\t\t\t\t
Quickly view its priority and lifetime
\n"
+"\n"
+"\t\t\t\t\t\t
By pointing the mouse cursor to the timer's title.
\n"
+"\n"
+"\t\t\t\t\t\t
View its EPG entry
\n"
+"\n"
+"\t\t\t\t\t\t
Timers that have set AutoTimer "
+"Checking to \"Transmission Identification\" will show you the "
+"corresponding EPG entry if you click on the timer's title.
\n"
+"\n"
+"\t\t\t\t\t\t
Edit the timer
\n"
+"\n"
+"\t\t\t\t\t\t
You can edit a timer by clicking .
\n"
+"\n"
+"\t\t\t\t\t\t
Delete the timer
\n"
+"\n"
+"\t\t\t\t\t\t
To delete a timer you click .
\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\n"
+"\n"
+"\t\t\t\t
Each timer's state is indicated by differently coloured boxes (in "
+"the chart view) or images (in the list view): \n"
+"\n"
+"\t\t\t\t\t / Timer is OK and "
+"will record. \n"
+"\n"
+"\t\t\t\t\t / Timer "
+"conflicts with other timers. That's not critical, as long as you have enough "
+"DVB cards for the parallel recordings. \n"
+"\n"
+"\t\t\t\t\t / Timer "
+"is critical and will most likely not record. \n"
+"\n"
+"\t\t\t\t\t / Timer is "
-"not active.
In addition to these functions you can add a new timer by "
+"not active.\n"
+"\n"
+"\t\t\t\t
\n"
+"\n"
+"\t\t\t\t
In addition to these functions you can add a new timer by "
"clicking 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
Two digits (DD). This will use the current month and year."
-"li>
ISO norm (YYYY-MM-DD). Program your timers as far in the future as "
-"you like.
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."
+"formats:\n"
+"\n"
+"\t\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t\t
Two digits (DD). This will use the current month and year."
+"
\n"
+"\n"
+"\t\t\t\t\t\t\t
ISO norm (YYYY-MM-DD). Program your timers as far in the "
+"future as you like.
\n"
+"\n"
+"\t\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\tIn 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:
\n"
@@ -1439,27 +1515,59 @@ msgstr ""
"\">info.vdr de la grabación."
#: ../template/default/help_at_timer_list.html:33
+#, fuzzy
msgid ""
"
Here you will find a listing of automatic timers (AutoTimer) known to "
-"VDRAdmin.
The list shows some information on AutoTimers. You can "
-"change the list's sorting by clicking the columns heading.
For each "
-"AutoTimer you have the following options:
Set its state
By "
-"clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the "
-"activity.
Quickly view its priority and lifetime
By pointing "
-"the mouse cursor to the AutoTimer's title.
Edit the AutoTimer"
-"dt>
You can edit an AutoTimer by clicking .
Delete the AutoTimer
To delete an AutoTimer "
-"you click .
"
-"p>
Each AutoTimer's state is indicated by differently coloured images: "
-"AutoTimer is OK and will automatically program matching broadcasts. "
-"AutoTimer is not active.
In addition to these functions you can add a "
-"new AutoTimer by clicking 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 "
-".
Click \n"
+"\n"
+"\t\t\t\t
The list shows some information on AutoTimers. You can change the "
+"list's sorting by clicking the columns heading.
\n"
+"\n"
+"\t\t\t\t
For each AutoTimer you have the following options:\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t
Set its state
\n"
+"\n"
+"\t\t\t\t\t\t
By clicking on \"Yes\" or \"No\" in the \"Active\" column to "
+"toggle the activity.
\n"
+"\n"
+"\t\t\t\t\t\t
Quickly view its priority and lifetime
\n"
+"\n"
+"\t\t\t\t\t\t
By pointing the mouse cursor to the AutoTimer's title.
\n"
+"\n"
+"\t\t\t\t\t\t
Edit the AutoTimer
\n"
+"\n"
+"\t\t\t\t\t\t
You can edit an AutoTimer by clicking .
\n"
+"\n"
+"\t\t\t\t\t\t
Delete the AutoTimer
\n"
+"\n"
+"\t\t\t\t\t\t
To delete an AutoTimer you click .
\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\n"
+"\n"
+"\t\t\t\t
Each AutoTimer's state is indicated by differently coloured "
+"images: \n"
+"\n"
+"\t\t\t\t\t AutoTimer is OK and will automatically program matching broadcasts. \n"
+"\n"
+"\t\t\t\t\t AutoTimer is not active.\n"
+"\n"
+"\t\t\t\t
\n"
+"\n"
+"\t\t\t\t
In addition to these functions you can add a new AutoTimer by "
+"clicking "
+"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 .
\n"
+"\n"
+"\t\t\t\t
Click to force VDRAdmin to reconnect to VDR, fetch the current EPG and check "
"for matching AutoTimers.
Here you can edit an automatic timer's (AutoTimer) settings."
-"p>
AutoTimer is a key feature of VDRAdmin. 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.
"
+"
Here you can edit an automatic timer's (AutoTimer) settings.
\n"
+"\n"
+"\t\t\t\t
AutoTimer is a key feature of VDRAdmin. 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.
"
msgstr ""
"
Aquí se encuentra los ajustes de las autoprogramaciones.
\n"
"
Autoprogramaciones son la herramienta basica del VDRAdmin. Una "
@@ -1684,28 +1794,56 @@ msgid "Directory:"
msgstr "Carpeta:"
#: ../template/default/help_at_timer_new.html:62
+#, fuzzy
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). VDRAdmin will "
"append the matching broadcast's title and subtitle (if the \"Episode\" "
-"checkbox is marked) to the directory given here.
You can also use "
-"the following keywords that are replaced in the final file name by the "
-"values supplied by for example tvm2vdr:
%Title% - will become the title of the event.
"
-"%Subtitle% - will become the subtitle of the event.
%Director% - "
-"will become the director of the event.
%Date% - will become the date "
-"of the recording.
%Category% - will become the category of the event "
-"(Spielfilm/Serie/...).
%Genre% - will become the genre of the event "
-"(Drama/Krimi/..).
%Year% - will become the year of production."
-"li>
%Country% - will become the country of production.
%"
-"Originaltitle% - will become the original title of the event.
%FSK% "
-"- will become the FSK from the event.
%Episode% - will become the "
-"episode's title of the event.
%Rating% - will become the rating of "
-"the event from the EPG provider.
Note:
If you use the above "
-"keywords it's in your own responsibility to supply the complete file "
-"name for the recordings! VDRAdmin will not append anything to the "
-"resulting string."
+"checkbox is marked) to the directory given here.
\n"
+"\n"
+"\t\t\t\t\t\tYou can also use the following keywords that are replaced in the "
+"final file name by the values supplied by for example tvm2vdr:\n"
+"\n"
+"\t\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Title% - will become the title of the event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Subtitle% - will become the subtitle of the event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Director% - will become the director of the event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Date% - will become the date of the recording.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Category% - will become the category of the event "
+"(Spielfilm/Serie/...).
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Genre% - will become the genre of the event (Drama/"
+"Krimi/..).
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Year% - will become the year of production.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Country% - will become the country of production.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Originaltitle% - will become the original title of the "
+"event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%FSK% - will become the FSK from the event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Episode% - will become the episode's title of the event."
+"li>\n"
+"\n"
+"\t\t\t\t\t\t\t
%Rating% - will become the rating of the event from the "
+"EPG provider.
\n"
+"\n"
+"\t\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t
Note:
\n"
+"\n"
+"\t\t\t\t\t\tIf you use the above keywords it's in your own responsibility to "
+"supply the complete file name for the recordings! VDRAdmin "
+"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 "
@@ -1736,36 +1874,69 @@ msgstr ""
#, fuzzy
msgid ""
"
Here you will find a listing of recordings known to VDR. The headline "
-"will also show you VDR's total and free disk space.
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.
Each row contains this "
-"information:
Date
The date when the recording has been done. "
-"In case of folders this will show the number of recordings the folder "
-"contains.
Time
The time when the recording has been done. In "
-"case of folders this will show the number of new recordings "
-"the folder contains.
Name
The recording's or folder's name. "
-"Click it to show the recording's summary or descend into the folder."
-"dd>
Rename ()
Rename "
-"a recording.
Note:
This only works if VDR has the RENR "
-"SVDRPort command which is no core VDR feature but is available through a "
-"patch. vdr-aio21_svdrprename.patch or enAIO-v2.2+ provide this command.
Delete "
-"()
Delete a "
-"recording.
Stream ()"
-"
This column is only shown if you activated and configured Recordings Streaming in the Configuration menu. You can watch the recording at your "
-"workstation.
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 .
If you've set the path the "
-"VDR's configuration files and have entries in VDR's reccmds.conf you can run those commands for the selected recording "
-"by selecting the wanted command in the select box locate next to Commands: and pressing the button.
"
+"will also show you VDR's total and free disk space.\n"
+"\n"
+"\t\t\t\t
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.
\n"
+"\n"
+"\t\t\t\t
Each row contains this information:\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t
Date
\n"
+"\n"
+"\t\t\t\t\t\t
The date when the recording has been done. In case of "
+"folders this will show the number of recordings the folder contains.
\n"
+"\n"
+"\t\t\t\t\t\t
Time
\n"
+"\n"
+"\t\t\t\t\t\t
The time when the recording has been done. In case of "
+"folders this will show the number of new recordings the "
+"folder contains.
\n"
+"\n"
+"\t\t\t\t\t\t
Name
\n"
+"\n"
+"\t\t\t\t\t\t
The recording's or folder's name. Click it to show the "
+"recording's summary or descend into the folder.
\n"
+"\n"
+"\t\t\t\t\t\t
Rename ()
\n"
+"\n"
+"\t\t\t\t\t\t
Rename a recording.
Note:
This only works if "
+"VDR has the RENR SVDRPort command which is no core VDR feature but is "
+"available through a patch. vdr-aio21_svdrprename."
+"patch or enAIO-v2.2+ provide this "
+"command.
\n"
+"\n"
+"\t\t\t\t\t\t
Delete ()"
+"dt>\n"
+"\n"
+"\t\t\t\t\t\t
Delete a recording.
\n"
+"\n"
+"\t\t\t\t\t\t
Stream ()"
+"dt>\n"
+"\n"
+"\t\t\t\t\t\t
This column is only shown if you activated and configured "
+"Recordings Streaming in the Configuration menu. You can watch the recording at your "
+"workstation.
\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\n"
+"\n"
+"\t\t\t\t
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 .
\n"
+"\n"
+"\t\t\t\t
If you've set the path the VDR's configuration files and have "
+"entries in VDR's reccmds.conf you can run "
+"those commands for the selected recording by selecting the wanted command in "
+"the select box locate next to Commands: and "
+"pressing the button."
+"
"
msgstr ""
"
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.
If you want to limit the number of channels used in some parts of "
-"VDRAdmin, this is for you!
Use the radio buttons to activate or "
-"deactivate the wanted channels in the named menu.
To add channels to "
-"the list of wanted channels you have to select them in the left side "
-"selectbox and click . If you want to remove channels from the list of wanted "
-"channels you have to select them in the right side selectbox and click "
-".
"
+"VDRAdmin, this is for you!\n"
+"\n"
+"\t\t\t\t\t
Use the radio buttons to activate or deactivate the wanted "
+"channels in the named menu.
\n"
+"\n"
+"\t\t\t\t\t
To add channels to the list of wanted channels you have to "
+"select them in the left side selectbox and click . If you want to remove "
+"channels from the list of wanted channels you have to select them in the "
+"right side selectbox and click .
Here you will find a listing of timers known to VDR.
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>
Below the chart you'll find the timers list showing you some "
+"
Here you will find a listing of timers known to VDR.
\n"
+"\n"
+"\t\t\t\t
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.
\n"
+"\n"
+"\t\t\t\t
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.
For each timer you have the following options:"
-"
Set its state
By clicking on \"Yes\", \"No\", \"VPS\" or "
-"\"Auto\" in the \"Active\" column.
Quickly view its priority and "
-"lifetime
By pointing the mouse cursor to the timer's title."
-"dd>
View its EPG entry
Timers that have set AutoTimer Checking to \"Transmission Identification\" "
-"will show you the corresponding EPG entry if you click on the timer's title."
-"
Edit the timer
You can edit a timer by clicking .
Delete the timer
To "
-"delete a timer you click ."
-"dd>
Each timer's state is indicated by differently coloured boxes "
-"(in the chart view) or images (in the list view): / Timer is OK and will record. / Timer conflicts with "
-"other timers. That's not critical, as long as you have enough DVB cards for "
-"the parallel recordings. "
-" / Timer is critical and will most likely not "
-"record. / \n"
+"\n"
+"\t\t\t\t
For each timer you have the following options:\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t
Set its state
\n"
+"\n"
+"\t\t\t\t\t\t
By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the "
+"\"Active\" column.
\n"
+"\n"
+"\t\t\t\t\t\t
Quickly view its priority and lifetime
\n"
+"\n"
+"\t\t\t\t\t\t
By pointing the mouse cursor to the timer's title.
\n"
+"\n"
+"\t\t\t\t\t\t
View its EPG entry
\n"
+"\n"
+"\t\t\t\t\t\t
Timers that have set AutoTimer "
+"Checking to \"Transmission Identification\" will show you the "
+"corresponding EPG entry if you click on the timer's title.
\n"
+"\n"
+"\t\t\t\t\t\t
Edit the timer
\n"
+"\n"
+"\t\t\t\t\t\t
You can edit a timer by clicking .
\n"
+"\n"
+"\t\t\t\t\t\t
Delete the timer
\n"
+"\n"
+"\t\t\t\t\t\t
To delete a timer you click .
\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\n"
+"\n"
+"\t\t\t\t
Each timer's state is indicated by differently coloured boxes (in "
+"the chart view) or images (in the list view): \n"
+"\n"
+"\t\t\t\t\t / Timer is OK and "
+"will record. \n"
+"\n"
+"\t\t\t\t\t / Timer "
+"conflicts with other timers. That's not critical, as long as you have enough "
+"DVB cards for the parallel recordings. \n"
+"\n"
+"\t\t\t\t\t / Timer "
+"is critical and will most likely not record. \n"
+"\n"
+"\t\t\t\t\t / Timer is "
-"not active.
In addition to these functions you can add a new timer by "
+"not active.\n"
+"\n"
+"\t\t\t\t
\n"
+"\n"
+"\t\t\t\t
In addition to these functions you can add a new timer by "
"clicking 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
Two digits (DD). This will use the current month and year."
-"li>
ISO norm (YYYY-MM-DD). Program your timers as far in the future as "
-"you like.
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."
+"formats:\n"
+"\n"
+"\t\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t\t
Two digits (DD). This will use the current month and year."
+"
\n"
+"\n"
+"\t\t\t\t\t\t\t
ISO norm (YYYY-MM-DD). Program your timers as far in the "
+"future as you like.
\n"
+"\n"
+"\t\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\tIn 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 ""
#: ../template/default/help_timer_new.html:58
@@ -1238,25 +1310,56 @@ msgstr ""
#: ../template/default/help_at_timer_list.html:33
msgid ""
"
Here you will find a listing of automatic timers (AutoTimer) known to "
-"VDRAdmin.
The list shows some information on AutoTimers. You can "
-"change the list's sorting by clicking the columns heading.
For each "
-"AutoTimer you have the following options:
Set its state
By "
-"clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the "
-"activity.
Quickly view its priority and lifetime
By pointing "
-"the mouse cursor to the AutoTimer's title.
Edit the AutoTimer"
-"dt>
You can edit an AutoTimer by clicking .
Delete the AutoTimer
To delete an AutoTimer "
-"you click .
"
-"p>
Each AutoTimer's state is indicated by differently coloured images: "
-"AutoTimer is OK and will automatically program matching broadcasts. "
-"AutoTimer is not active.
In addition to these functions you can add a "
-"new AutoTimer by clicking 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 "
-".
Click \n"
+"\n"
+"\t\t\t\t
The list shows some information on AutoTimers. You can change the "
+"list's sorting by clicking the columns heading.
\n"
+"\n"
+"\t\t\t\t
For each AutoTimer you have the following options:\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t
Set its state
\n"
+"\n"
+"\t\t\t\t\t\t
By clicking on \"Yes\" or \"No\" in the \"Active\" column to "
+"toggle the activity.
\n"
+"\n"
+"\t\t\t\t\t\t
Quickly view its priority and lifetime
\n"
+"\n"
+"\t\t\t\t\t\t
By pointing the mouse cursor to the AutoTimer's title.
\n"
+"\n"
+"\t\t\t\t\t\t
Edit the AutoTimer
\n"
+"\n"
+"\t\t\t\t\t\t
You can edit an AutoTimer by clicking .
\n"
+"\n"
+"\t\t\t\t\t\t
Delete the AutoTimer
\n"
+"\n"
+"\t\t\t\t\t\t
To delete an AutoTimer you click .
\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\n"
+"\n"
+"\t\t\t\t
Each AutoTimer's state is indicated by differently coloured "
+"images: \n"
+"\n"
+"\t\t\t\t\t AutoTimer is OK and will automatically program matching broadcasts. \n"
+"\n"
+"\t\t\t\t\t AutoTimer is not active.\n"
+"\n"
+"\t\t\t\t
\n"
+"\n"
+"\t\t\t\t
In addition to these functions you can add a new AutoTimer by "
+"clicking "
+"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 .
\n"
+"\n"
+"\t\t\t\t
Click to force VDRAdmin to reconnect to VDR, fetch the current EPG and check "
"for matching AutoTimers.
Here you can edit an automatic timer's (AutoTimer) settings."
-"p>
AutoTimer is a key feature of VDRAdmin. 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.
"
+"
Here you can edit an automatic timer's (AutoTimer) settings.
\n"
+"\n"
+"\t\t\t\t
AutoTimer is a key feature of VDRAdmin. 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.
"
msgstr ""
#: ../template/default/help_at_timer_new.html:38
@@ -1402,58 +1506,118 @@ msgid ""
"contain subdirectories, these have to be delimited by '~' (since the '/' "
"character may be part of a regular programme name). VDRAdmin will "
"append the matching broadcast's title and subtitle (if the \"Episode\" "
-"checkbox is marked) to the directory given here.
You can also use "
-"the following keywords that are replaced in the final file name by the "
-"values supplied by for example tvm2vdr:
%Title% - will become the title of the event.
"
-"%Subtitle% - will become the subtitle of the event.
%Director% - "
-"will become the director of the event.
%Date% - will become the date "
-"of the recording.
%Category% - will become the category of the event "
-"(Spielfilm/Serie/...).
%Genre% - will become the genre of the event "
-"(Drama/Krimi/..).
%Year% - will become the year of production."
-"li>
%Country% - will become the country of production.
%"
-"Originaltitle% - will become the original title of the event.
%FSK% "
-"- will become the FSK from the event.
%Episode% - will become the "
-"episode's title of the event.
%Rating% - will become the rating of "
-"the event from the EPG provider.
Note:
If you use the above "
-"keywords it's in your own responsibility to supply the complete file "
-"name for the recordings! VDRAdmin will not append anything to the "
-"resulting string."
+"checkbox is marked) to the directory given here.
\n"
+"\n"
+"\t\t\t\t\t\tYou can also use the following keywords that are replaced in the "
+"final file name by the values supplied by for example tvm2vdr:\n"
+"\n"
+"\t\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Title% - will become the title of the event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Subtitle% - will become the subtitle of the event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Director% - will become the director of the event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Date% - will become the date of the recording.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Category% - will become the category of the event "
+"(Spielfilm/Serie/...).
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Genre% - will become the genre of the event (Drama/"
+"Krimi/..).
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Year% - will become the year of production.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Country% - will become the country of production.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Originaltitle% - will become the original title of the "
+"event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%FSK% - will become the FSK from the event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Episode% - will become the episode's title of the event."
+"li>\n"
+"\n"
+"\t\t\t\t\t\t\t
%Rating% - will become the rating of the event from the "
+"EPG provider.
\n"
+"\n"
+"\t\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t
Note:
\n"
+"\n"
+"\t\t\t\t\t\tIf you use the above keywords it's in your own responsibility to "
+"supply the complete file name for the recordings! VDRAdmin "
+"will not append anything to the resulting string."
msgstr ""
#: ../template/default/help_rec_list.html:29
msgid ""
"
Here you will find a listing of recordings known to VDR. The headline "
-"will also show you VDR's total and free disk space.
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.
Each row contains this "
-"information:
Date
The date when the recording has been done. "
-"In case of folders this will show the number of recordings the folder "
-"contains.
Time
The time when the recording has been done. In "
-"case of folders this will show the number of new recordings "
-"the folder contains.
Name
The recording's or folder's name. "
-"Click it to show the recording's summary or descend into the folder."
-"dd>
Rename ()
Rename "
-"a recording.
Note:
This only works if VDR has the RENR "
-"SVDRPort command which is no core VDR feature but is available through a "
-"patch. vdr-aio21_svdrprename.patch or enAIO-v2.2+ provide this command.
Delete "
-"()
Delete a "
-"recording.
Stream ()"
-"
This column is only shown if you activated and configured Recordings Streaming in the Configuration menu. You can watch the recording at your "
-"workstation.
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 .
If you've set the path the "
-"VDR's configuration files and have entries in VDR's reccmds.conf you can run those commands for the selected recording "
-"by selecting the wanted command in the select box locate next to Commands: and pressing the button.
"
+"will also show you VDR's total and free disk space.\n"
+"\n"
+"\t\t\t\t
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.
\n"
+"\n"
+"\t\t\t\t
Each row contains this information:\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t
Date
\n"
+"\n"
+"\t\t\t\t\t\t
The date when the recording has been done. In case of "
+"folders this will show the number of recordings the folder contains.
\n"
+"\n"
+"\t\t\t\t\t\t
Time
\n"
+"\n"
+"\t\t\t\t\t\t
The time when the recording has been done. In case of "
+"folders this will show the number of new recordings the "
+"folder contains.
\n"
+"\n"
+"\t\t\t\t\t\t
Name
\n"
+"\n"
+"\t\t\t\t\t\t
The recording's or folder's name. Click it to show the "
+"recording's summary or descend into the folder.
\n"
+"\n"
+"\t\t\t\t\t\t
Rename ()
\n"
+"\n"
+"\t\t\t\t\t\t
Rename a recording.
Note:
This only works if "
+"VDR has the RENR SVDRPort command which is no core VDR feature but is "
+"available through a patch. vdr-aio21_svdrprename."
+"patch or enAIO-v2.2+ provide this "
+"command.
\n"
+"\n"
+"\t\t\t\t\t\t
Delete ()"
+"dt>\n"
+"\n"
+"\t\t\t\t\t\t
Delete a recording.
\n"
+"\n"
+"\t\t\t\t\t\t
Stream ()"
+"dt>\n"
+"\n"
+"\t\t\t\t\t\t
This column is only shown if you activated and configured "
+"Recordings Streaming in the Configuration menu. You can watch the recording at your "
+"workstation.
\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\n"
+"\n"
+"\t\t\t\t
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 .
\n"
+"\n"
+"\t\t\t\t
If you've set the path the VDR's configuration files and have "
+"entries in VDR's reccmds.conf you can run "
+"those commands for the selected recording by selecting the wanted command in "
+"the select box locate next to Commands: and "
+"pressing the button."
+"
If you want to limit the number of channels used in some parts of "
-"VDRAdmin, this is for you!
Use the radio buttons to activate or "
-"deactivate the wanted channels in the named menu.
To add channels to "
-"the list of wanted channels you have to select them in the left side "
-"selectbox and click . If you want to remove channels from the list of wanted "
-"channels you have to select them in the right side selectbox and click "
-".
"
+"VDRAdmin, this is for you!\n"
+"\n"
+"\t\t\t\t\t
Use the radio buttons to activate or deactivate the wanted "
+"channels in the named menu.
\n"
+"\n"
+"\t\t\t\t\t
To add channels to the list of wanted channels you have to "
+"select them in the left side selectbox and click . If you want to remove "
+"channels from the list of wanted channels you have to select them in the "
+"right side selectbox and click .
"
msgstr ""
"
Si vous voulez limiter le nombre de chaines dans certaines partie de "
"VDRAdmin, ceci est pour vous!
Here you will find a listing of timers known to VDR.
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>
Below the chart you'll find the timers list showing you some "
+"
Here you will find a listing of timers known to VDR.
\n"
+"\n"
+"\t\t\t\t
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.
\n"
+"\n"
+"\t\t\t\t
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.
For each timer you have the following options:"
-"
Set its state
By clicking on \"Yes\", \"No\", \"VPS\" or "
-"\"Auto\" in the \"Active\" column.
Quickly view its priority and "
-"lifetime
By pointing the mouse cursor to the timer's title."
-"dd>
View its EPG entry
Timers that have set AutoTimer Checking to \"Transmission Identification\" "
-"will show you the corresponding EPG entry if you click on the timer's title."
-"
Edit the timer
You can edit a timer by clicking .
Delete the timer
To "
-"delete a timer you click ."
-"dd>
Each timer's state is indicated by differently coloured boxes "
-"(in the chart view) or images (in the list view): / Timer is OK and will record. / Timer conflicts with "
-"other timers. That's not critical, as long as you have enough DVB cards for "
-"the parallel recordings. "
-" / Timer is critical and will most likely not "
-"record. / \n"
+"\n"
+"\t\t\t\t
For each timer you have the following options:\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t
Set its state
\n"
+"\n"
+"\t\t\t\t\t\t
By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the "
+"\"Active\" column.
\n"
+"\n"
+"\t\t\t\t\t\t
Quickly view its priority and lifetime
\n"
+"\n"
+"\t\t\t\t\t\t
By pointing the mouse cursor to the timer's title.
\n"
+"\n"
+"\t\t\t\t\t\t
View its EPG entry
\n"
+"\n"
+"\t\t\t\t\t\t
Timers that have set AutoTimer "
+"Checking to \"Transmission Identification\" will show you the "
+"corresponding EPG entry if you click on the timer's title.
\n"
+"\n"
+"\t\t\t\t\t\t
Edit the timer
\n"
+"\n"
+"\t\t\t\t\t\t
You can edit a timer by clicking .
\n"
+"\n"
+"\t\t\t\t\t\t
Delete the timer
\n"
+"\n"
+"\t\t\t\t\t\t
To delete a timer you click .
\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\n"
+"\n"
+"\t\t\t\t
Each timer's state is indicated by differently coloured boxes (in "
+"the chart view) or images (in the list view): \n"
+"\n"
+"\t\t\t\t\t / Timer is OK and "
+"will record. \n"
+"\n"
+"\t\t\t\t\t / Timer "
+"conflicts with other timers. That's not critical, as long as you have enough "
+"DVB cards for the parallel recordings. \n"
+"\n"
+"\t\t\t\t\t / Timer "
+"is critical and will most likely not record. \n"
+"\n"
+"\t\t\t\t\t / Timer is "
-"not active.
In addition to these functions you can add a new timer by "
+"not active.\n"
+"\n"
+"\t\t\t\t
\n"
+"\n"
+"\t\t\t\t
In addition to these functions you can add a new timer by "
"clicking 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
Two digits (DD). This will use the current month and year."
-"li>
ISO norm (YYYY-MM-DD). Program your timers as far in the future as "
-"you like.
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."
+"formats:\n"
+"\n"
+"\t\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t\t
Two digits (DD). This will use the current month and year."
+"
\n"
+"\n"
+"\t\t\t\t\t\t\t
ISO norm (YYYY-MM-DD). Program your timers as far in the "
+"future as you like.
\n"
+"\n"
+"\t\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\tIn 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 lequel la progammation doit être active. Vous pouvez entrer le jour "
"sous deux :
Here you will find a listing of automatic timers (AutoTimer) known to "
-"VDRAdmin.
The list shows some information on AutoTimers. You can "
-"change the list's sorting by clicking the columns heading.
For each "
-"AutoTimer you have the following options:
Set its state
By "
-"clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the "
-"activity.
Quickly view its priority and lifetime
By pointing "
-"the mouse cursor to the AutoTimer's title.
Edit the AutoTimer"
-"dt>
You can edit an AutoTimer by clicking .
Delete the AutoTimer
To delete an AutoTimer "
-"you click .
"
-"p>
Each AutoTimer's state is indicated by differently coloured images: "
-"AutoTimer is OK and will automatically program matching broadcasts. "
-"AutoTimer is not active.
In addition to these functions you can add a "
-"new AutoTimer by clicking 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 "
-".
Click \n"
+"\n"
+"\t\t\t\t
The list shows some information on AutoTimers. You can change the "
+"list's sorting by clicking the columns heading.
\n"
+"\n"
+"\t\t\t\t
For each AutoTimer you have the following options:\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t
Set its state
\n"
+"\n"
+"\t\t\t\t\t\t
By clicking on \"Yes\" or \"No\" in the \"Active\" column to "
+"toggle the activity.
\n"
+"\n"
+"\t\t\t\t\t\t
Quickly view its priority and lifetime
\n"
+"\n"
+"\t\t\t\t\t\t
By pointing the mouse cursor to the AutoTimer's title.
\n"
+"\n"
+"\t\t\t\t\t\t
Edit the AutoTimer
\n"
+"\n"
+"\t\t\t\t\t\t
You can edit an AutoTimer by clicking .
\n"
+"\n"
+"\t\t\t\t\t\t
Delete the AutoTimer
\n"
+"\n"
+"\t\t\t\t\t\t
To delete an AutoTimer you click .
\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\n"
+"\n"
+"\t\t\t\t
Each AutoTimer's state is indicated by differently coloured "
+"images: \n"
+"\n"
+"\t\t\t\t\t AutoTimer is OK and will automatically program matching broadcasts. \n"
+"\n"
+"\t\t\t\t\t AutoTimer is not active.\n"
+"\n"
+"\t\t\t\t
\n"
+"\n"
+"\t\t\t\t
In addition to these functions you can add a new AutoTimer by "
+"clicking "
+"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 .
\n"
+"\n"
+"\t\t\t\t
Click to force VDRAdmin to reconnect to VDR, fetch the current EPG and check "
"for matching AutoTimers.
Here you can edit an automatic timer's (AutoTimer) settings."
-"p>
AutoTimer is a key feature of VDRAdmin. 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.
"
+"
Here you can edit an automatic timer's (AutoTimer) settings.
\n"
+"\n"
+"\t\t\t\t
AutoTimer is a key feature of VDRAdmin. 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.
You can also use "
-"the following keywords that are replaced in the final file name by the "
-"values supplied by for example tvm2vdr:
%Title% - will become the title of the event.
"
-"%Subtitle% - will become the subtitle of the event.
%Director% - "
-"will become the director of the event.
%Date% - will become the date "
-"of the recording.
%Category% - will become the category of the event "
-"(Spielfilm/Serie/...).
%Genre% - will become the genre of the event "
-"(Drama/Krimi/..).
%Year% - will become the year of production."
-"li>
%Country% - will become the country of production.
%"
-"Originaltitle% - will become the original title of the event.
%FSK% "
-"- will become the FSK from the event.
%Episode% - will become the "
-"episode's title of the event.
%Rating% - will become the rating of "
-"the event from the EPG provider.
Note:
If you use the above "
-"keywords it's in your own responsibility to supply the complete file "
-"name for the recordings! VDRAdmin will not append anything to the "
-"resulting string."
+"checkbox is marked) to the directory given here.
\n"
+"\n"
+"\t\t\t\t\t\tYou can also use the following keywords that are replaced in the "
+"final file name by the values supplied by for example tvm2vdr:\n"
+"\n"
+"\t\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Title% - will become the title of the event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Subtitle% - will become the subtitle of the event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Director% - will become the director of the event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Date% - will become the date of the recording.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Category% - will become the category of the event "
+"(Spielfilm/Serie/...).
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Genre% - will become the genre of the event (Drama/"
+"Krimi/..).
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Year% - will become the year of production.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Country% - will become the country of production.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Originaltitle% - will become the original title of the "
+"event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%FSK% - will become the FSK from the event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Episode% - will become the episode's title of the event."
+"li>\n"
+"\n"
+"\t\t\t\t\t\t\t
%Rating% - will become the rating of the event from the "
+"EPG provider.
Here you will find a listing of recordings known to VDR. The headline "
-"will also show you VDR's total and free disk space.
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.
Each row contains this "
-"information:
Date
The date when the recording has been done. "
-"In case of folders this will show the number of recordings the folder "
-"contains.
Time
The time when the recording has been done. In "
-"case of folders this will show the number of new recordings "
-"the folder contains.
Name
The recording's or folder's name. "
-"Click it to show the recording's summary or descend into the folder."
-"dd>
Rename ()
Rename "
-"a recording.
Note:
This only works if VDR has the RENR "
-"SVDRPort command which is no core VDR feature but is available through a "
-"patch. vdr-aio21_svdrprename.patch or enAIO-v2.2+ provide this command.
Delete "
-"()
Delete a "
-"recording.
Stream ()"
-"
This column is only shown if you activated and configured Recordings Streaming in the Configuration menu. You can watch the recording at your "
-"workstation.
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 .
If you've set the path the "
-"VDR's configuration files and have entries in VDR's reccmds.conf you can run those commands for the selected recording "
-"by selecting the wanted command in the select box locate next to Commands: and pressing the button.
"
+"will also show you VDR's total and free disk space.\n"
+"\n"
+"\t\t\t\t
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.
\n"
+"\n"
+"\t\t\t\t
Each row contains this information:\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t
Date
\n"
+"\n"
+"\t\t\t\t\t\t
The date when the recording has been done. In case of "
+"folders this will show the number of recordings the folder contains.
\n"
+"\n"
+"\t\t\t\t\t\t
Time
\n"
+"\n"
+"\t\t\t\t\t\t
The time when the recording has been done. In case of "
+"folders this will show the number of new recordings the "
+"folder contains.
\n"
+"\n"
+"\t\t\t\t\t\t
Name
\n"
+"\n"
+"\t\t\t\t\t\t
The recording's or folder's name. Click it to show the "
+"recording's summary or descend into the folder.
\n"
+"\n"
+"\t\t\t\t\t\t
Rename ()
\n"
+"\n"
+"\t\t\t\t\t\t
Rename a recording.
Note:
This only works if "
+"VDR has the RENR SVDRPort command which is no core VDR feature but is "
+"available through a patch. vdr-aio21_svdrprename."
+"patch or enAIO-v2.2+ provide this "
+"command.
\n"
+"\n"
+"\t\t\t\t\t\t
Delete ()"
+"dt>\n"
+"\n"
+"\t\t\t\t\t\t
Delete a recording.
\n"
+"\n"
+"\t\t\t\t\t\t
Stream ()"
+"dt>\n"
+"\n"
+"\t\t\t\t\t\t
This column is only shown if you activated and configured "
+"Recordings Streaming in the Configuration menu. You can watch the recording at your "
+"workstation.
\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\n"
+"\n"
+"\t\t\t\t
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 .
\n"
+"\n"
+"\t\t\t\t
If you've set the path the VDR's configuration files and have "
+"entries in VDR's reccmds.conf you can run "
+"those commands for the selected recording by selecting the wanted command in "
+"the select box locate next to Commands: and "
+"pressing the button."
+"
"
msgstr ""
"
Vous trouverez ici une liste des enregistrements connus de VDR. L'en-tête "
"vous affiche aussi l'espace total et libre pour VDR
If you want to limit the number of channels used in some parts of "
-"VDRAdmin, this is for you!
Use the radio buttons to activate or "
-"deactivate the wanted channels in the named menu.
To add channels to "
-"the list of wanted channels you have to select them in the left side "
-"selectbox and click . If you want to remove channels from the list of wanted "
-"channels you have to select them in the right side selectbox and click "
-".
"
+"VDRAdmin, this is for you!
\n"
+"\n"
+"\t\t\t\t\t
Use the radio buttons to activate or deactivate the wanted "
+"channels in the named menu.
\n"
+"\n"
+"\t\t\t\t\t
To add channels to the list of wanted channels you have to "
+"select them in the left side selectbox and click . If you want to remove "
+"channels from the list of wanted channels you have to select them in the "
+"right side selectbox and click .
Here you will find a listing of timers known to VDR.
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>
Below the chart you'll find the timers list showing you some "
+"
Here you will find a listing of timers known to VDR.
\n"
+"\n"
+"\t\t\t\t
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.
\n"
+"\n"
+"\t\t\t\t
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.
For each timer you have the following options:"
-"
Set its state
By clicking on \"Yes\", \"No\", \"VPS\" or "
-"\"Auto\" in the \"Active\" column.
Quickly view its priority and "
-"lifetime
By pointing the mouse cursor to the timer's title."
-"dd>
View its EPG entry
Timers that have set AutoTimer Checking to \"Transmission Identification\" "
-"will show you the corresponding EPG entry if you click on the timer's title."
-"
Edit the timer
You can edit a timer by clicking .
Delete the timer
To "
-"delete a timer you click ."
-"dd>
Each timer's state is indicated by differently coloured boxes "
-"(in the chart view) or images (in the list view): / Timer is OK and will record. / Timer conflicts with "
-"other timers. That's not critical, as long as you have enough DVB cards for "
-"the parallel recordings. "
-" / Timer is critical and will most likely not "
-"record. / \n"
+"\n"
+"\t\t\t\t
For each timer you have the following options:\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t
Set its state
\n"
+"\n"
+"\t\t\t\t\t\t
By clicking on \"Yes\", \"No\", \"VPS\" or \"Auto\" in the "
+"\"Active\" column.
\n"
+"\n"
+"\t\t\t\t\t\t
Quickly view its priority and lifetime
\n"
+"\n"
+"\t\t\t\t\t\t
By pointing the mouse cursor to the timer's title.
\n"
+"\n"
+"\t\t\t\t\t\t
View its EPG entry
\n"
+"\n"
+"\t\t\t\t\t\t
Timers that have set AutoTimer "
+"Checking to \"Transmission Identification\" will show you the "
+"corresponding EPG entry if you click on the timer's title.
\n"
+"\n"
+"\t\t\t\t\t\t
Edit the timer
\n"
+"\n"
+"\t\t\t\t\t\t
You can edit a timer by clicking .
\n"
+"\n"
+"\t\t\t\t\t\t
Delete the timer
\n"
+"\n"
+"\t\t\t\t\t\t
To delete a timer you click .
\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\n"
+"\n"
+"\t\t\t\t
Each timer's state is indicated by differently coloured boxes (in "
+"the chart view) or images (in the list view): \n"
+"\n"
+"\t\t\t\t\t / Timer is OK and "
+"will record. \n"
+"\n"
+"\t\t\t\t\t / Timer "
+"conflicts with other timers. That's not critical, as long as you have enough "
+"DVB cards for the parallel recordings. \n"
+"\n"
+"\t\t\t\t\t / Timer "
+"is critical and will most likely not record. \n"
+"\n"
+"\t\t\t\t\t / Timer is "
-"not active.
In addition to these functions you can add a new timer by "
+"not active.\n"
+"\n"
+"\t\t\t\t
\n"
+"\n"
+"\t\t\t\t
In addition to these functions you can add a new timer by "
"clicking 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
Two digits (DD). This will use the current month and year."
-"li>
ISO norm (YYYY-MM-DD). Program your timers as far in the future as "
-"you like.
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."
+"formats:\n"
+"\n"
+"\t\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t\t
Two digits (DD). This will use the current month and year."
+"
\n"
+"\n"
+"\t\t\t\t\t\t\t
ISO norm (YYYY-MM-DD). Program your timers as far in the "
+"future as you like.
\n"
+"\n"
+"\t\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\tIn 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 ""
#: ../template/default/help_timer_new.html:58
@@ -1234,25 +1304,56 @@ msgstr ""
#: ../template/default/help_at_timer_list.html:33
msgid ""
"
Here you will find a listing of automatic timers (AutoTimer) known to "
-"VDRAdmin.
The list shows some information on AutoTimers. You can "
-"change the list's sorting by clicking the columns heading.
For each "
-"AutoTimer you have the following options:
Set its state
By "
-"clicking on \"Yes\" or \"No\" in the \"Active\" column to toggle the "
-"activity.
Quickly view its priority and lifetime
By pointing "
-"the mouse cursor to the AutoTimer's title.
Edit the AutoTimer"
-"dt>
You can edit an AutoTimer by clicking .
Delete the AutoTimer
To delete an AutoTimer "
-"you click .
"
-"p>
Each AutoTimer's state is indicated by differently coloured images: "
-"AutoTimer is OK and will automatically program matching broadcasts. "
-"AutoTimer is not active.
In addition to these functions you can add a "
-"new AutoTimer by clicking 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 "
-".
Click \n"
+"\n"
+"\t\t\t\t
The list shows some information on AutoTimers. You can change the "
+"list's sorting by clicking the columns heading.
\n"
+"\n"
+"\t\t\t\t
For each AutoTimer you have the following options:\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t
Set its state
\n"
+"\n"
+"\t\t\t\t\t\t
By clicking on \"Yes\" or \"No\" in the \"Active\" column to "
+"toggle the activity.
\n"
+"\n"
+"\t\t\t\t\t\t
Quickly view its priority and lifetime
\n"
+"\n"
+"\t\t\t\t\t\t
By pointing the mouse cursor to the AutoTimer's title.
\n"
+"\n"
+"\t\t\t\t\t\t
Edit the AutoTimer
\n"
+"\n"
+"\t\t\t\t\t\t
You can edit an AutoTimer by clicking .
\n"
+"\n"
+"\t\t\t\t\t\t
Delete the AutoTimer
\n"
+"\n"
+"\t\t\t\t\t\t
To delete an AutoTimer you click .
\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\n"
+"\n"
+"\t\t\t\t
Each AutoTimer's state is indicated by differently coloured "
+"images: \n"
+"\n"
+"\t\t\t\t\t AutoTimer is OK and will automatically program matching broadcasts. \n"
+"\n"
+"\t\t\t\t\t AutoTimer is not active.\n"
+"\n"
+"\t\t\t\t
\n"
+"\n"
+"\t\t\t\t
In addition to these functions you can add a new AutoTimer by "
+"clicking "
+"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 .
\n"
+"\n"
+"\t\t\t\t
Click to force VDRAdmin to reconnect to VDR, fetch the current EPG and check "
"for matching AutoTimers.
Here you can edit an automatic timer's (AutoTimer) settings."
-"p>
AutoTimer is a key feature of VDRAdmin. 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.
"
+"
Here you can edit an automatic timer's (AutoTimer) settings.
\n"
+"\n"
+"\t\t\t\t
AutoTimer is a key feature of VDRAdmin. 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.
"
msgstr ""
#: ../template/default/help_at_timer_new.html:38
@@ -1398,58 +1500,118 @@ msgid ""
"contain subdirectories, these have to be delimited by '~' (since the '/' "
"character may be part of a regular programme name). VDRAdmin will "
"append the matching broadcast's title and subtitle (if the \"Episode\" "
-"checkbox is marked) to the directory given here.
You can also use "
-"the following keywords that are replaced in the final file name by the "
-"values supplied by for example tvm2vdr:
%Title% - will become the title of the event.
"
-"%Subtitle% - will become the subtitle of the event.
%Director% - "
-"will become the director of the event.
%Date% - will become the date "
-"of the recording.
%Category% - will become the category of the event "
-"(Spielfilm/Serie/...).
%Genre% - will become the genre of the event "
-"(Drama/Krimi/..).
%Year% - will become the year of production."
-"li>
%Country% - will become the country of production.
%"
-"Originaltitle% - will become the original title of the event.
%FSK% "
-"- will become the FSK from the event.
%Episode% - will become the "
-"episode's title of the event.
%Rating% - will become the rating of "
-"the event from the EPG provider.
Note:
If you use the above "
-"keywords it's in your own responsibility to supply the complete file "
-"name for the recordings! VDRAdmin will not append anything to the "
-"resulting string."
+"checkbox is marked) to the directory given here.
\n"
+"\n"
+"\t\t\t\t\t\tYou can also use the following keywords that are replaced in the "
+"final file name by the values supplied by for example tvm2vdr:\n"
+"\n"
+"\t\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Title% - will become the title of the event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Subtitle% - will become the subtitle of the event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Director% - will become the director of the event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Date% - will become the date of the recording.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Category% - will become the category of the event "
+"(Spielfilm/Serie/...).
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Genre% - will become the genre of the event (Drama/"
+"Krimi/..).
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Year% - will become the year of production.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Country% - will become the country of production.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Originaltitle% - will become the original title of the "
+"event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%FSK% - will become the FSK from the event.
\n"
+"\n"
+"\t\t\t\t\t\t\t
%Episode% - will become the episode's title of the event."
+"li>\n"
+"\n"
+"\t\t\t\t\t\t\t
%Rating% - will become the rating of the event from the "
+"EPG provider.
\n"
+"\n"
+"\t\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t
Note:
\n"
+"\n"
+"\t\t\t\t\t\tIf you use the above keywords it's in your own responsibility to "
+"supply the complete file name for the recordings! VDRAdmin "
+"will not append anything to the resulting string."
msgstr ""
#: ../template/default/help_rec_list.html:29
msgid ""
"
Here you will find a listing of recordings known to VDR. The headline "
-"will also show you VDR's total and free disk space.
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.
Each row contains this "
-"information:
Date
The date when the recording has been done. "
-"In case of folders this will show the number of recordings the folder "
-"contains.
Time
The time when the recording has been done. In "
-"case of folders this will show the number of new recordings "
-"the folder contains.
Name
The recording's or folder's name. "
-"Click it to show the recording's summary or descend into the folder."
-"dd>
Rename ()
Rename "
-"a recording.
Note:
This only works if VDR has the RENR "
-"SVDRPort command which is no core VDR feature but is available through a "
-"patch. vdr-aio21_svdrprename.patch or enAIO-v2.2+ provide this command.
Delete "
-"()
Delete a "
-"recording.
Stream ()"
-"
This column is only shown if you activated and configured Recordings Streaming in the Configuration menu. You can watch the recording at your "
-"workstation.
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 .
If you've set the path the "
-"VDR's configuration files and have entries in VDR's reccmds.conf you can run those commands for the selected recording "
-"by selecting the wanted command in the select box locate next to Commands: and pressing the button.
"
+"will also show you VDR's total and free disk space.\n"
+"\n"
+"\t\t\t\t
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.
\n"
+"\n"
+"\t\t\t\t
Each row contains this information:\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\t\t
Date
\n"
+"\n"
+"\t\t\t\t\t\t
The date when the recording has been done. In case of "
+"folders this will show the number of recordings the folder contains.
\n"
+"\n"
+"\t\t\t\t\t\t
Time
\n"
+"\n"
+"\t\t\t\t\t\t
The time when the recording has been done. In case of "
+"folders this will show the number of new recordings the "
+"folder contains.
\n"
+"\n"
+"\t\t\t\t\t\t
Name
\n"
+"\n"
+"\t\t\t\t\t\t
The recording's or folder's name. Click it to show the "
+"recording's summary or descend into the folder.
\n"
+"\n"
+"\t\t\t\t\t\t
Rename ()
\n"
+"\n"
+"\t\t\t\t\t\t
Rename a recording.
Note:
This only works if "
+"VDR has the RENR SVDRPort command which is no core VDR feature but is "
+"available through a patch. vdr-aio21_svdrprename."
+"patch or enAIO-v2.2+ provide this "
+"command.
\n"
+"\n"
+"\t\t\t\t\t\t
Delete ()"
+"dt>\n"
+"\n"
+"\t\t\t\t\t\t
Delete a recording.
\n"
+"\n"
+"\t\t\t\t\t\t
Stream ()"
+"dt>\n"
+"\n"
+"\t\t\t\t\t\t
This column is only shown if you activated and configured "
+"Recordings Streaming in the Configuration menu. You can watch the recording at your "
+"workstation.
\n"
+"\n"
+"\t\t\t\t\t
\n"
+"\n"
+"\t\t\t\t\n"
+"\n"
+"\t\t\t\t
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 .
\n"
+"\n"
+"\t\t\t\t
If you've set the path the VDR's configuration files and have "
+"entries in VDR's reccmds.conf you can run "
+"those commands for the selected recording by selecting the wanted command in "
+"the select box locate next to Commands: and "
+"pressing the button."
+"
"
msgstr ""
#: ../template/default/at_timer_new.html:6
@@ -1545,68 +1707,68 @@ msgstr ""
msgid "vdradmind.pl %s started with pid %d."
msgstr ""
-#: ../vdradmind.pl:401 ../vdradmind.pl:990 ../vdradmind.pl:1798
+#: ../vdradmind.pl:401 ../vdradmind.pl:993 ../vdradmind.pl:1808
msgid "Not found"
msgstr ""
-#: ../vdradmind.pl:401 ../vdradmind.pl:1799
+#: ../vdradmind.pl:401 ../vdradmind.pl:1809
msgid "The requested URL was not found on this server!"
msgstr ""
-#: ../vdradmind.pl:466 ../vdradmind.pl:986 ../vdradmind.pl:1801
+#: ../vdradmind.pl:469 ../vdradmind.pl:989 ../vdradmind.pl:1811
msgid "Forbidden"
msgstr ""
-#: ../vdradmind.pl:466 ../vdradmind.pl:1802
+#: ../vdradmind.pl:469 ../vdradmind.pl:1812
msgid "You don't have permission to access this function!"
msgstr ""
-#: ../vdradmind.pl:986 ../vdradmind.pl:1803
+#: ../vdradmind.pl:989 ../vdradmind.pl:1813
#, perl-format
msgid "Access to file \"%s\" denied!"
msgstr ""
-#: ../vdradmind.pl:990 ../vdradmind.pl:1800
+#: ../vdradmind.pl:993 ../vdradmind.pl:1810
#, perl-format
msgid "The URL \"%s\" was not found on this server!"
msgstr ""
-#: ../vdradmind.pl:1804
+#: ../vdradmind.pl:1814
#, perl-format
msgid "Can't open file \"%s\"!"
msgstr ""
-#: ../vdradmind.pl:1805
+#: ../vdradmind.pl:1815
#, perl-format
msgid "Can't connect to VDR at %s!"
msgstr ""
-#: ../vdradmind.pl:1806
+#: ../vdradmind.pl:1816
#, perl-format
msgid "Error while sending command to VDR at %s"
msgstr ""
-#: ../vdradmind.pl:2489
+#: ../vdradmind.pl:2500
msgid "Playing Tomorrow"
msgstr ""
-#: ../vdradmind.pl:2489
+#: ../vdradmind.pl:2500
#, perl-format
msgid "Playing on the %d."
msgstr ""
-#: ../vdradmind.pl:3805
+#: ../vdradmind.pl:3844
msgid "Schedule"
msgstr ""
-#: ../vdradmind.pl:4284
+#: ../vdradmind.pl:4338
msgid "Playing Today?"
msgstr ""
-#: ../vdradmind.pl:4287
+#: ../vdradmind.pl:4341
msgid "Timers"
msgstr ""
-#: ../vdradmind.pl:4350
+#: ../vdradmind.pl:4404
msgid "System default"
msgstr ""
diff --git a/template/default/at_timer_list.html b/template/default/at_timer_list.html
index ba4b284..54f1637 100644
--- a/template/default/at_timer_list.html
+++ b/template/default/at_timer_list.html
@@ -163,7 +163,7 @@