summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2010-03-12 16:46:45 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2010-03-12 16:46:45 +0100
commit84b386c4a10dc80202258ecdb09ab2451ba3fb47 (patch)
tree3b999d4a10fa240a53b83bed7dd440582318ae26
parent6564d8e9284a8319fa75e814cd9c7206c4a026d5 (diff)
downloadvdr-1.7.14.tar.gz
vdr-1.7.14.tar.bz2
The new setup option "Folders in timer menu" controls whether the file names in the timer menu are shown with their full folder path1.7.14
-rw-r--r--HISTORY4
-rw-r--r--MANUAL4
-rw-r--r--config.c5
-rw-r--r--config.h3
-rw-r--r--menu.c5
-rw-r--r--po/ca_ES.po5
-rw-r--r--po/cs_CZ.po5
-rw-r--r--po/da_DK.po5
-rw-r--r--po/de_DE.po5
-rw-r--r--po/el_GR.po5
-rw-r--r--po/es_ES.po5
-rw-r--r--po/et_EE.po5
-rw-r--r--po/fi_FI.po5
-rw-r--r--po/fr_FR.po5
-rw-r--r--po/hr_HR.po5
-rw-r--r--po/hu_HU.po5
-rw-r--r--po/it_IT.po5
-rw-r--r--po/lt_LT.po5
-rw-r--r--po/nl_NL.po5
-rw-r--r--po/nn_NO.po5
-rw-r--r--po/pl_PL.po5
-rw-r--r--po/pt_PT.po5
-rw-r--r--po/ro_RO.po5
-rw-r--r--po/ru_RU.po5
-rw-r--r--po/sk_SK.po5
-rw-r--r--po/sl_SI.po5
-rw-r--r--po/sv_SE.po5
-rw-r--r--po/tr_TR.po5
-rw-r--r--po/uk_UA.po5
-rw-r--r--po/zh_CN.po5
30 files changed, 116 insertions, 30 deletions
diff --git a/HISTORY b/HISTORY
index 902cd905..4b909c35 100644
--- a/HISTORY
+++ b/HISTORY
@@ -6384,7 +6384,7 @@ Video Disk Recorder Revision History
tracks appear in the "Audio" menu. Dolby Digital is always recorded.
This obsoletes the DOLBYINREC patch.
-2010-03-06: Version 1.7.14
+2010-03-12: Version 1.7.14
- Fixed handling empty strings in cSource::FromString().
- Assigned the source character 'I' to "IPTV" (suggested by Rolf Ahrenberg).
@@ -6408,3 +6408,5 @@ Video Disk Recorder Revision History
(pointed out by Udo Richter).
- Fixed "attempt to drop wrong frame from ring buffer" when skipping +/- one minute
during replay.
+- The new setup option "Folders in timer menu" controls whether the file names in
+ the timer menu are shown with their full folder path.
diff --git a/MANUAL b/MANUAL
index 60b336dd..3fd528f3 100644
--- a/MANUAL
+++ b/MANUAL
@@ -584,6 +584,10 @@ Version 1.6
Turns displaying the Recordings menu as a hierarchical
directory structure on or off.
+ Folders in timer menu = yes
+ Controls whether the full folder path is shown in the
+ "Timers" menu, or just the basic recording name.
+
EPG:
EPG scan timeout = 5 The time (in hours) of user inactivity after which the
diff --git a/config.c b/config.c
index 5869e1af..aa18ebcf 100644
--- a/config.c
+++ b/config.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.c 2.11 2010/03/06 15:29:17 kls Exp $
+ * $Id: config.c 2.12 2010/03/12 16:41:37 kls Exp $
*/
#include "config.h"
@@ -354,6 +354,7 @@ cSetup::cSetup(void)
UseVps = 0;
VpsMargin = 120;
RecordingDirs = 1;
+ FoldersInTimerMenu = 1;
VideoDisplayFormat = 1;
VideoFormat = 0;
UpdateChannels = 5;
@@ -543,6 +544,7 @@ bool cSetup::Parse(const char *Name, const char *Value)
else if (!strcasecmp(Name, "UseVps")) UseVps = atoi(Value);
else if (!strcasecmp(Name, "VpsMargin")) VpsMargin = atoi(Value);
else if (!strcasecmp(Name, "RecordingDirs")) RecordingDirs = atoi(Value);
+ else if (!strcasecmp(Name, "FoldersInTimerMenu")) FoldersInTimerMenu = atoi(Value);
else if (!strcasecmp(Name, "VideoDisplayFormat")) VideoDisplayFormat = atoi(Value);
else if (!strcasecmp(Name, "VideoFormat")) VideoFormat = atoi(Value);
else if (!strcasecmp(Name, "UpdateChannels")) UpdateChannels = atoi(Value);
@@ -637,6 +639,7 @@ bool cSetup::Save(void)
Store("UseVps", UseVps);
Store("VpsMargin", VpsMargin);
Store("RecordingDirs", RecordingDirs);
+ Store("FoldersInTimerMenu", FoldersInTimerMenu);
Store("VideoDisplayFormat", VideoDisplayFormat);
Store("VideoFormat", VideoFormat);
Store("UpdateChannels", UpdateChannels);
diff --git a/config.h b/config.h
index 470967b1..f4996bb3 100644
--- a/config.h
+++ b/config.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.h 2.24 2010/03/06 15:29:46 kls Exp $
+ * $Id: config.h 2.25 2010/03/12 16:02:53 kls Exp $
*/
#ifndef __CONFIG_H
@@ -253,6 +253,7 @@ public:
int UseVps;
int VpsMargin;
int RecordingDirs;
+ int FoldersInTimerMenu;
int VideoDisplayFormat;
int VideoFormat;
int UpdateChannels;
diff --git a/menu.c b/menu.c
index 2d983aea..e3b49cee 100644
--- a/menu.c
+++ b/menu.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.c 2.20 2010/03/07 14:08:15 kls Exp $
+ * $Id: menu.c 2.21 2010/03/12 16:03:07 kls Exp $
*/
#include "menu.h"
@@ -1052,7 +1052,7 @@ void cMenuTimerItem::Set(void)
strftime(buffer, sizeof(buffer), "%Y%m%d", &tm_r);
day = buffer;
}
- const char *File = strrchr(timer->File(), FOLDERDELIMCHAR);
+ const char *File = Setup.FoldersInTimerMenu ? NULL : strrchr(timer->File(), FOLDERDELIMCHAR);
if (File && strcmp(File + 1, TIMERMACRO_TITLE) && strcmp(File + 1, TIMERMACRO_EPISODE))
File++;
else
@@ -2567,6 +2567,7 @@ void cMenuSetupOSD::Set(void)
Add(new cMenuEditBoolItem(tr("Setup.OSD$Scroll wraps"), &data.MenuScrollWrap));
Add(new cMenuEditBoolItem(tr("Setup.OSD$Menu key closes"), &data.MenuKeyCloses));
Add(new cMenuEditBoolItem(tr("Setup.OSD$Recording directories"), &data.RecordingDirs));
+ Add(new cMenuEditBoolItem(tr("Setup.OSD$Folders in timer menu"), &data.FoldersInTimerMenu));
SetCurrent(Get(current));
Display();
}
diff --git a/po/ca_ES.po b/po/ca_ES.po
index 2eeffe0d..1dd35e31 100644
--- a/po/ca_ES.po
+++ b/po/ca_ES.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2008-03-02 19:02+0100\n"
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
"Language-Team: Catalanian\n"
@@ -836,6 +836,9 @@ msgstr "Tecla menu tanca"
msgid "Setup.OSD$Recording directories"
msgstr "Gravacions en subcarpetes"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "Guia de Programes"
diff --git a/po/cs_CZ.po b/po/cs_CZ.po
index 34196395..e8c6687e 100644
--- a/po/cs_CZ.po
+++ b/po/cs_CZ.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2008-02-28 15:00+0200\n"
"Last-Translator: Vladimr Brta <vladimir.barta@k2atmitec.cz>, Ji Dobr <jdobry@centrum.cz>\n"
"Language-Team: Czech\n"
@@ -834,6 +834,9 @@ msgstr "Klvesa Menu zavr"
msgid "Setup.OSD$Recording directories"
msgstr "Seznam nahrvek"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "EPG"
diff --git a/po/da_DK.po b/po/da_DK.po
index 6f2efa3b..580d82af 100644
--- a/po/da_DK.po
+++ b/po/da_DK.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Mogens Elneff <mogens@elneff.dk>\n"
"Language-Team: Danish\n"
@@ -833,6 +833,9 @@ msgstr "Menu taste lukker"
msgid "Setup.OSD$Recording directories"
msgstr "Optagelser i foldere"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "EPG"
diff --git a/po/de_DE.po b/po/de_DE.po
index 0b669cf4..42caadc2 100644
--- a/po/de_DE.po
+++ b/po/de_DE.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2010-01-16 16:46+0100\n"
"Last-Translator: Klaus Schmidinger <kls@tvdr.de>\n"
"Language-Team: German\n"
@@ -833,6 +833,9 @@ msgstr "Menu-Taste schliet"
msgid "Setup.OSD$Recording directories"
msgstr "Aufnahmeverzeichnisse"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr "Verzeichnisse im Timer-Men"
+
msgid "EPG"
msgstr "EPG"
diff --git a/po/el_GR.po b/po/el_GR.po
index 62e0cf66..344b641d 100644
--- a/po/el_GR.po
+++ b/po/el_GR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n"
"Language-Team: Greek\n"
@@ -833,6 +833,9 @@ msgstr ""
msgid "Setup.OSD$Recording directories"
msgstr " "
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr " "
diff --git a/po/es_ES.po b/po/es_ES.po
index 0f9487a8..4630a3ba 100644
--- a/po/es_ES.po
+++ b/po/es_ES.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2008-03-02 19:02+0100\n"
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
"Language-Team: Spanish\n"
@@ -834,6 +834,9 @@ msgstr "Cerrar al pulsar botn de men"
msgid "Setup.OSD$Recording directories"
msgstr "Mostrar directorios de grabaciones"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "Gua de Programacin"
diff --git a/po/et_EE.po b/po/et_EE.po
index b6617af2..803a5399 100644
--- a/po/et_EE.po
+++ b/po/et_EE.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Arthur Konovalov <artlov@gmail.com>\n"
"Language-Team: Estonian\n"
@@ -833,6 +833,9 @@ msgstr "Sulgemine Men klahviga"
msgid "Setup.OSD$Recording directories"
msgstr "Kausta nime salvestamine"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "EPG"
diff --git a/po/fi_FI.po b/po/fi_FI.po
index 9ca830d9..70e4d582 100644
--- a/po/fi_FI.po
+++ b/po/fi_FI.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2007-08-15 15:52+0200\n"
"Last-Translator: Rolf Ahrenberg <rahrenbe@cc.hut.fi>\n"
"Language-Team: Finnish\n"
@@ -836,6 +836,9 @@ msgstr "Sulje valikkonppimell"
msgid "Setup.OSD$Recording directories"
msgstr "Nyt tallennehakemistot"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "Ohjelmaopas"
diff --git a/po/fr_FR.po b/po/fr_FR.po
index 75a976f4..74d8ceba 100644
--- a/po/fr_FR.po
+++ b/po/fr_FR.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2008-02-27 18:14+0100\n"
"Last-Translator: Jean-Claude Repetto <jc@repetto.org>\n"
"Language-Team: French\n"
@@ -839,6 +839,9 @@ msgstr "Menu bouton ferm"
msgid "Setup.OSD$Recording directories"
msgstr "Dossiers d'enregistrements"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "Guide des programmes"
diff --git a/po/hr_HR.po b/po/hr_HR.po
index 4d258674..55912e50 100644
--- a/po/hr_HR.po
+++ b/po/hr_HR.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2008-03-17 19:00+0100\n"
"Last-Translator: Adrian Caval <anrxc@sysphere.org>\n"
"Language-Team: Croatian\n"
@@ -835,6 +835,9 @@ msgstr "Tipka Izbornik zatvara"
msgid "Setup.OSD$Recording directories"
msgstr "Imenik za snimke"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "EPG (elektronski programski vodi)"
diff --git a/po/hu_HU.po b/po/hu_HU.po
index 7da405f8..ccc10cc6 100644
--- a/po/hu_HU.po
+++ b/po/hu_HU.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2007-12-01 21:42+0200\n"
"Last-Translator: Istvn Fley <ifuley@tigercomp.ro>\n"
"Language-Team: Hungarian\n"
@@ -836,6 +836,9 @@ msgstr "A men gomb zr"
msgid "Setup.OSD$Recording directories"
msgstr "Felvtelek listja"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "EPG"
diff --git a/po/it_IT.po b/po/it_IT.po
index 56799de0..c4782845 100644
--- a/po/it_IT.po
+++ b/po/it_IT.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2010-01-31 23:06+0100\n"
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
"Language-Team: Italian\n"
@@ -840,6 +840,9 @@ msgstr "Tasto Menu per chiudere"
msgid "Setup.OSD$Recording directories"
msgstr "Directory di registrazione"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "Guida programmi EPG"
diff --git a/po/lt_LT.po b/po/lt_LT.po
index d5a1c4fb..d79f03fc 100644
--- a/po/lt_LT.po
+++ b/po/lt_LT.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.7.12\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2010-02-22 18:05+0200\n"
"Last-Translator: Valdemaras Pipiras <varas@ambernet.lt>\n"
"Language-Team: Lithuanian\n"
@@ -833,6 +833,9 @@ msgstr "Uždaryti Meniu mygtuku"
msgid "Setup.OSD$Recording directories"
msgstr "Įrašų katalogai"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "Elektroninis programų gidas (EPG)"
diff --git a/po/nl_NL.po b/po/nl_NL.po
index 0d506896..f4d91207 100644
--- a/po/nl_NL.po
+++ b/po/nl_NL.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2008-02-26 17:20+0100\n"
"Last-Translator: Johan Schuring <johan.schuring@vetteblei.nl>\n"
"Language-Team: Dutch\n"
@@ -837,6 +837,9 @@ msgstr "Menu toets sluit ook af"
msgid "Setup.OSD$Recording directories"
msgstr "Opname mappen"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "EPG"
diff --git a/po/nn_NO.po b/po/nn_NO.po
index 2d6afbfd..e739b35a 100644
--- a/po/nn_NO.po
+++ b/po/nn_NO.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Truls Slevigen <truls@slevigen.no>\n"
"Language-Team: Norwegian\n"
@@ -834,6 +834,9 @@ msgstr ""
msgid "Setup.OSD$Recording directories"
msgstr "Kataloger til opptak"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "Programoversikt"
diff --git a/po/pl_PL.po b/po/pl_PL.po
index 5232a383..9af02272 100644
--- a/po/pl_PL.po
+++ b/po/pl_PL.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2008-03-09 12:59+0100\n"
"Last-Translator: Michael Rakowski <mrak@gmx.de>\n"
"Language-Team: Polish\n"
@@ -834,6 +834,9 @@ msgstr "Przycisk Menu zamyka"
msgid "Setup.OSD$Recording directories"
msgstr "Katalogi nagra"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "EPG"
diff --git a/po/pt_PT.po b/po/pt_PT.po
index 210c71b3..edea421f 100644
--- a/po/pt_PT.po
+++ b/po/pt_PT.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2008-03-18 17:04+0100\n"
"Last-Translator: anonymous\n"
"Language-Team: Portuguese\n"
@@ -833,6 +833,9 @@ msgstr "Tecla Menu fecha"
msgid "Setup.OSD$Recording directories"
msgstr "Directorias de gravao"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "Guia de programao"
diff --git a/po/ro_RO.po b/po/ro_RO.po
index 8543f706..ffac7e9d 100644
--- a/po/ro_RO.po
+++ b/po/ro_RO.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.7.12\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2010-02-11 13:38+0100\n"
"Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n"
"Language-Team: Romanian\n"
@@ -836,6 +836,9 @@ msgstr "Tasta 'Meniu' nchide"
msgid "Setup.OSD$Recording directories"
msgstr "Directoare nregistrri"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "EPG"
diff --git a/po/ru_RU.po b/po/ru_RU.po
index 0b3f3b39..44093944 100644
--- a/po/ru_RU.po
+++ b/po/ru_RU.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2008-12-15 14:37+0100\n"
"Last-Translator: Oleg Roitburd <oleg@roitburd.de>\n"
"Language-Team: Russian\n"
@@ -834,6 +834,9 @@ msgstr " "
msgid "Setup.OSD$Recording directories"
msgstr " "
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr ""
diff --git a/po/sk_SK.po b/po/sk_SK.po
index 9c7059dd..bedb1338 100644
--- a/po/sk_SK.po
+++ b/po/sk_SK.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2009-09-30 12:50+0100\n"
"Last-Translator: Milan Hrala <hrala.milan@gmail.com>\n"
"Language-Team: Slovak\n"
@@ -834,6 +834,9 @@ msgstr "Klvesa Menu zaviera"
msgid "Setup.OSD$Recording directories"
msgstr "Zoznam zznamov"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "EPG"
diff --git a/po/sl_SI.po b/po/sl_SI.po
index b2b695c7..7f45b027 100644
--- a/po/sl_SI.po
+++ b/po/sl_SI.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2008-02-28 19:44+0100\n"
"Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n"
"Language-Team: Slovenian\n"
@@ -834,6 +834,9 @@ msgstr "Meni gumb zapre meni"
msgid "Setup.OSD$Recording directories"
msgstr "Direktoriji za posnetke"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "Programski vodnik"
diff --git a/po/sv_SE.po b/po/sv_SE.po
index 750ab02a..732e1798 100644
--- a/po/sv_SE.po
+++ b/po/sv_SE.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2008-03-12 18:25+0100\n"
"Last-Translator: Magnus Andersson <svankan@bahnhof.se>\n"
"Language-Team: Swedish\n"
@@ -836,6 +836,9 @@ msgstr "Menyknappen stnger"
msgid "Setup.OSD$Recording directories"
msgstr "Kataloger fr inspelningar"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "EPG"
diff --git a/po/tr_TR.po b/po/tr_TR.po
index 2ed1db94..1a3382cf 100644
--- a/po/tr_TR.po
+++ b/po/tr_TR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2008-02-28 00:33+0100\n"
"Last-Translator: Oktay Yolgeen <oktay_73@yahoo.de>\n"
"Language-Team: Turkish\n"
@@ -833,6 +833,9 @@ msgstr "Men dmesi kapatyor"
msgid "Setup.OSD$Recording directories"
msgstr "Kayt dizinleri"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "EPG"
diff --git a/po/uk_UA.po b/po/uk_UA.po
index 538dc404..a373fb59 100644
--- a/po/uk_UA.po
+++ b/po/uk_UA.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.7.7\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2009-05-31 13:17+0200\n"
"Last-Translator: Yarema aka Knedlyk <yupadmin@gmail.com>\n"
"Language-Team: Ukrainian\n"
@@ -833,6 +833,9 @@ msgstr "Кнопку Меню закрити"
msgid "Setup.OSD$Recording directories"
msgstr "Каталоги зберігання записів"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "Телегід"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 60bb6183..48c4a384 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
-"POT-Creation-Date: 2010-03-07 13:36+0100\n"
+"POT-Creation-Date: 2010-03-12 16:49+0100\n"
"PO-Revision-Date: 2009-09-23 23:50+0800\n"
"Last-Translator: Nan Feng <nfgx@21cn.com>\n"
"Language-Team: Chinese\n"
@@ -836,6 +836,9 @@ msgstr "菜单关闭结束"
msgid "Setup.OSD$Recording directories"
msgstr "录像目录"
+msgid "Setup.OSD$Folders in timer menu"
+msgstr ""
+
msgid "EPG"
msgstr "电子节目单设置"