summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY1
-rw-r--r--extrecmenu.c6
-rw-r--r--mymenurecordings.c42
-rw-r--r--mymenusetup.c44
-rw-r--r--mymenusetup.h7
-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.po9
-rw-r--r--po/el_GR.po5
-rw-r--r--po/es_ES.po60
-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/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
-rwxr-xr-xpo/sk_SK.po5
-rw-r--r--po/sl_SI.po5
-rw-r--r--po/sv_SE.po5
-rw-r--r--po/tr_TR.po5
27 files changed, 203 insertions, 66 deletions
diff --git a/HISTORY b/HISTORY
index 494f7f7..edd1aea 100644
--- a/HISTORY
+++ b/HISTORY
@@ -2,6 +2,7 @@ VDR Plugin 'extrecmenu' Revision History
----------------------------------------
2012-xx-xx: Version 1.2.3
+- [amair] Set menu category in VDR >= 1.7.28 (Closes #1110).
- [amair] Close replay OSD before starting cutter so that marks are saved to disk (submitted by mini73 @vdr-portal.de).
- [amair] Always use VDR's cutting feature in VDR >=1.7.32.
- [amair] Reduced calls to get the free disk space.
diff --git a/extrecmenu.c b/extrecmenu.c
index 75d3362..a09c6a2 100644
--- a/extrecmenu.c
+++ b/extrecmenu.c
@@ -20,7 +20,7 @@
using namespace std;
-static const char *VERSION = "1.2.2";
+static const char *VERSION = "1.2.3-git";
static const char *DESCRIPTION = tr("Extended recordings menu");
static const char *MAINMENUENTRY = "ExtRecMenu";
@@ -240,6 +240,10 @@ bool cPluginExtrecmenu::SetupParse(const char *_Name,const char *Value)
mysetup.PatchFont=atoi(Value);
else if(!strcasecmp(_Name,"FileSystemFreeMB"))
mysetup.FileSystemFreeMB=atoi(Value);
+#if VDRVERSNUM >= 10728
+ else if(!strcasecmp(_Name,"SetRecordingCat"))
+ mysetup.SetRecordingCat=atoi(Value);
+#endif
else if(!strcasecmp(_Name,"UseCutterQueue"))
mysetup.UseCutterQueue=atoi(Value);
else
diff --git a/mymenurecordings.c b/mymenurecordings.c
index 52b1750..f21cec9 100644
--- a/mymenurecordings.c
+++ b/mymenurecordings.c
@@ -45,6 +45,11 @@ class myMenuRecordingInfo:public cOsdMenu
myMenuRecordingInfo::myMenuRecordingInfo(const cRecording *Recording, bool WithButtons):cOsdMenu(trVDR("Recording info"))
{
+#if VDRVERSNUM >= 10728
+ if (mysetup.SetRecordingCat){
+ SetMenuCategory(mcRecordingInfo);
+ }
+#endif
recording=Recording;
withButtons=WithButtons;
if(withButtons)
@@ -505,6 +510,11 @@ int myMenuRecordings::lastFreeMB=-1;
myMenuRecordings::myMenuRecordings(const char *Base,int Level):cOsdMenu("")
{
+#if VDRVERSNUM >= 10728
+ if(mysetup.SetRecordingCat){
+ SetMenuCategory(mcRecording);
+ }
+#endif
int c[MAX_RECLIST_COLUMNS],i=0;
for (i=0; i<MAX_RECLIST_COLUMNS; i++) {
@@ -660,14 +670,6 @@ int myMenuRecordings::FreeMB()
void myMenuRecordings::Title()
{
- int freemb=FreeMB();
-#if VDRVERSNUM >= 10727
- double MBperMinute = Recordings.MBperMinute();
- int minutes=int(double(freemb)/(MBperMinute>0?MBperMinute:MB_PER_MINUTE));
-#else
- int minutes=int(double(freemb)/MB_PER_MINUTE);
-#endif
-
stringstream buffer;
if(MoveCutterThread->IsMoveListEmpty())
buffer << Icons::MovingRecording();
@@ -683,11 +685,25 @@ void myMenuRecordings::Title()
else
buffer << trVDR("Recordings");
- buffer << " ("
- << minutes/60 << ":"
- << setw(2) << setfill('0') << minutes%60 << " "
- << trVDR("free")
- << ")";
+#if VDRVERSNUM >= 10728
+ if(mysetup.SetRecordingCat == 0){
+#endif
+ int freemb=FreeMB();
+#if VDRVERSNUM >= 10727
+ double MBperMinute = Recordings.MBperMinute();
+ int minutes=int(double(freemb)/(MBperMinute>0?MBperMinute:MB_PER_MINUTE));
+#else
+ int minutes=int(double(freemb)/MB_PER_MINUTE);
+#endif
+
+ buffer << " ("
+ << minutes/60 << ":"
+ << setw(2) << setfill('0') << minutes%60 << " "
+ << trVDR("free")
+ << ")";
+#if VDRVERSNUM >= 10728
+ }
+#endif
SetTitle(buffer.str().c_str());
}
diff --git a/mymenusetup.c b/mymenusetup.c
index a2fa719..3092d2a 100644
--- a/mymenusetup.c
+++ b/mymenusetup.c
@@ -62,6 +62,9 @@ mySetup::mySetup()
mysetup.UseVDRsRecInfoMenu=0;
mysetup.PatchFont=1;
mysetup.FileSystemFreeMB=1;
+#if VDRVERSNUM >= 10728
+ mysetup.SetRecordingCat=1;
+#endif
mysetup.UseCutterQueue=1;
}
@@ -93,16 +96,31 @@ myMenuSetup::myMenuSetup()
usevdrsrecinfomenu=mysetup.UseVDRsRecInfoMenu;
patchfont=mysetup.PatchFont;
filesystemfreemb=mysetup.FileSystemFreeMB;
+#if VDRVERSNUM >= 10728
+ setrecordingcat=mysetup.SetRecordingCat;
+#endif
usecutterqueue=mysetup.UseCutterQueue;
sortingtypetexts[0]=tr("ascending");
sortingtypetexts[1]=tr("descending");
+ Set();
+}
+
+void myMenuSetup::Set()
+{
+ int currentItem = Current();
+ Clear();
+
Add(new cMenuEditBoolItem(tr("Show nr. of new recordings of a directory"),&shownewrecs));
Add(new cMenuEditStraItem(tr("Maximum number of recordings per directory"), &recsperdir, 5, RecsPerDir_texts));
Add(SubMenuItem(tr("Items to show in recording list"), osUser1));
Add(new cMenuEditBoolItem(tr("Show alternative to new marker"),&patchnew));
- Add(new cMenuEditBoolItem(tr("Show free disk space for each file system"),&filesystemfreemb));
+#if VDRVERSNUM >= 10728
+ Add(new cMenuEditBoolItem(tr("Set menu category"),&setrecordingcat));
+ if (setrecordingcat == 0)
+#endif
+ Add(new cMenuEditBoolItem(tr("Show free disk space for each file system"),&filesystemfreemb));
Add(new cMenuEditStraItem(tr("Sorting"),&descendsorting,2,sortingtypetexts));
Add(new cMenuEditBoolItem(tr("Hide main menu entry"),&hidemainmenuentry));
#ifdef MAINMENUHOOKSVERSNUM
@@ -113,6 +131,10 @@ myMenuSetup::myMenuSetup()
Add(new cMenuEditBoolItem(tr("Limit bandwidth for move recordings"),&limitbandwidth));
Add(new cMenuEditBoolItem(tr("Use VDR's recording info menu"),&usevdrsrecinfomenu));
Add(new cMenuEditBoolItem(tr("Use cutter queue"),&usecutterqueue));
+
+ SetCurrent(Get(currentItem));
+ Display();
+ SetHelp(NULL, NULL, NULL, NULL);
}
void myMenuSetup::Store()
@@ -152,12 +174,27 @@ void myMenuSetup::Store()
SetupStore("UseVDRsRecInfoMenu",mysetup.UseVDRsRecInfoMenu=usevdrsrecinfomenu);
SetupStore("PatchFont",mysetup.PatchFont=patchfont);
SetupStore("FileSystemFreeMB",mysetup.FileSystemFreeMB=filesystemfreemb);
+#if VDRVERSNUM >= 10728
+ SetupStore("SetRecordingCat",mysetup.SetRecordingCat=setrecordingcat);
+#endif
SetupStore("UseCutterQueue",mysetup.UseCutterQueue=usecutterqueue);
}
eOSState myMenuSetup::ProcessKey(eKeys Key) {
+#if VDRVERSNUM >= 10728
+ int oldSetRecordingCat = setrecordingcat;
+#endif
+
eOSState state = cMenuSetupPage::ProcessKey(Key);
+#if VDRVERSNUM >= 10728
+ if (Key != kNone &&
+ (oldSetRecordingCat != setrecordingcat)
+ ) {
+ Set();
+ }
+#endif
+
switch (state) {
case osUser1:
return AddSubMenu(new myMenuSetupColumns(&reclistcolumn[0]));
@@ -171,6 +208,11 @@ eOSState myMenuSetup::ProcessKey(eKeys Key) {
myMenuSetupColumns::myMenuSetupColumns(RecListColumnType *prlcs) : cOsdMenu(tr("Items to show in recording list"), 4) {
preclistcolumns = prlcs;
+#if VDRVERSNUM >= 10728
+ if(mysetup.SetRecordingCat){
+ SetMenuCategory(mcPluginSetup);
+ }
+#endif
ColumnType_descriptions[0] = tr("--none--");
ColumnType_descriptions[1] = tr("Blank");
ColumnType_descriptions[2] = tr("Date of Recording");
diff --git a/mymenusetup.h b/mymenusetup.h
index ec8e7a4..0b88bd0 100644
--- a/mymenusetup.h
+++ b/mymenusetup.h
@@ -71,6 +71,9 @@ class mySetup
int UseVDRsRecInfoMenu;
int PatchFont;
int FileSystemFreeMB;
+#if VDRVERSNUM >= 10728
+ int SetRecordingCat;
+#endif
int UseCutterQueue;
};
@@ -93,12 +96,16 @@ class myMenuSetup:public cMenuSetupPage
int usevdrsrecinfomenu;
int patchfont;
int filesystemfreemb;
+#if VDRVERSNUM >= 10728
+ int setrecordingcat;
+#endif
int usecutterqueue;
protected:
virtual void Store();
public:
myMenuSetup();
// virtual ~myMenuSetup();
+ virtual void Set();
virtual eOSState ProcessKey(eKeys Key);
};
diff --git a/po/ca_ES.po b/po/ca_ES.po
index 438fea0..9b2fed3 100644
--- a/po/ca_ES.po
+++ b/po/ca_ES.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2011-06-24 08:43+0200\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
"PO-Revision-Date: 2008-03-15 16:21+0100\n"
"Last-Translator: Jordi Vilŕ <jvila@tinet.org>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -182,6 +182,9 @@ msgstr ""
msgid "Show alternative to new marker"
msgstr ""
+msgid "Set menu category"
+msgstr ""
+
msgid "Show free disk space for each file system"
msgstr ""
diff --git a/po/cs_CZ.po b/po/cs_CZ.po
index e82dd60..8d09a82 100644
--- a/po/cs_CZ.po
+++ b/po/cs_CZ.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2011-06-24 08:43+0200\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
"PO-Revision-Date: 2008-03-15 16:21+0100\n"
"Last-Translator: Vladimír Bárta <vladimir.barta@k2atmitec.cz>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -180,6 +180,9 @@ msgstr ""
msgid "Show alternative to new marker"
msgstr "Zobrazit alternativu k novým značkám"
+msgid "Set menu category"
+msgstr ""
+
msgid "Show free disk space for each file system"
msgstr "Zobrazit volné místo pro kaľdý souborový systém"
diff --git a/po/da_DK.po b/po/da_DK.po
index b53f86d..7940eec 100644
--- a/po/da_DK.po
+++ b/po/da_DK.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2011-06-24 08:43+0200\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
"PO-Revision-Date: 2008-03-15 16:21+0100\n"
"Last-Translator: Mogens Elneff <mogens@elneff.dk>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -180,6 +180,9 @@ msgstr ""
msgid "Show alternative to new marker"
msgstr ""
+msgid "Set menu category"
+msgstr ""
+
msgid "Show free disk space for each file system"
msgstr ""
diff --git a/po/de_DE.po b/po/de_DE.po
index d9b0d34..26ca4f1 100644
--- a/po/de_DE.po
+++ b/po/de_DE.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2011-06-24 08:43+0200\n"
-"PO-Revision-Date: 2011-01-21 14:17+0100\n"
-"Last-Translator: Carsten Siebholz <sibbi <AT> helmutauer <DOT> de>\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
+"PO-Revision-Date: 2013-04-08 15:17+0100\n"
+"Last-Translator: Andreas Mair <amair.sob <AT> gmail <DOT> com>\n"
"Language-Team: <vdr@linuxtv.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -180,6 +180,9 @@ msgstr "Anzuzeigende Elemente im Aufzeichnungs-Menü"
msgid "Show alternative to new marker"
msgstr "Alternative zu Neu-Marker anzeigen"
+msgid "Set menu category"
+msgstr "Menü-Kategorie setzen"
+
msgid "Show free disk space for each file system"
msgstr "Freien Speicherplatz für jede Partition anzeigen"
diff --git a/po/el_GR.po b/po/el_GR.po
index 1b84aa0..7e5d215 100644
--- a/po/el_GR.po
+++ b/po/el_GR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2011-06-24 08:43+0200\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
"PO-Revision-Date: 2008-03-15 16:21+0100\n"
"Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -180,6 +180,9 @@ msgstr ""
msgid "Show alternative to new marker"
msgstr ""
+msgid "Set menu category"
+msgstr ""
+
msgid "Show free disk space for each file system"
msgstr ""
diff --git a/po/es_ES.po b/po/es_ES.po
index 72f170a..82f0bbd 100644
--- a/po/es_ES.po
+++ b/po/es_ES.po
@@ -7,10 +7,11 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2010-06-17 20:39+0200\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
"PO-Revision-Date: 2008-03-15 16:21+0100\n"
"Last-Translator: Javier Bradineras <jbradi@hotmail.com>\n"
"Language-Team: <vdr@linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -54,6 +55,27 @@ msgstr "No se puede acceder a la información de la partición"
msgid "Details"
msgstr "Detalles"
+msgid "Rename/Move failed!"
+msgstr "ˇRenombrar/Mover ha fallado!"
+
+msgid "Cutter queue not empty"
+msgstr "La cola de recortado no está vacía"
+
+msgid "Move recordings in progress"
+msgstr "Se está moviendo la grabación"
+
+msgid "Can't start editing process!"
+msgstr "ˇNo se puede iniciar el proceso de edición!"
+
+msgid "Recording already in cutter queue!"
+msgstr "ˇLa grabación está en la cola de recortado!"
+
+msgid "No editing marks defined!"
+msgstr "No definidas marcas de edición"
+
+msgid "Added recording to cutter queue"
+msgstr "Grabación ańadida a la cola de recortado"
+
msgid "Button$Play"
msgstr "Reproducir"
@@ -146,12 +168,6 @@ msgstr "Ascendente"
msgid "descending"
msgstr "Descendente"
-msgid "Show recording date"
-msgstr "Mostrar la fecha de la grabación"
-
-msgid "Show recording rating"
-msgstr "Mostrar clasificación de la grabación"
-
msgid "Show nr. of new recordings of a directory"
msgstr "Mostrar el número de nuevas grabaciones"
@@ -164,6 +180,9 @@ msgstr "Elementos a mostrar en la lista de grabaciones"
msgid "Show alternative to new marker"
msgstr "Mostrar alternativas al nuevo marcador"
+msgid "Set menu category"
+msgstr ""
+
msgid "Show free disk space for each file system"
msgstr "Mostrar espacio libre de particiones"
@@ -191,27 +210,6 @@ msgstr "Usar el menú de información del VDR"
msgid "Use cutter queue"
msgstr "Usar cola para recortar"
-msgid "Recording already in cutter queue!"
-msgstr "ˇLa grabación está en la cola de recortado!"
-
-msgid "No editing marks defined!"
-msgstr "No definidas marcas de edición"
-
-msgid "Added recording to cutter queue"
-msgstr "Grabación ańadida a la cola de recortado"
-
-msgid "Rename/Move failed!"
-msgstr "ˇRenombrar/Mover ha fallado!"
-
-msgid "Cutter queue not empty"
-msgstr "La cola de recortado no está vacía"
-
-msgid "Move recordings in progress"
-msgstr "Se está moviendo la grabación"
-
-msgid "Can't start editing process!"
-msgstr "ˇNo se puede iniciar el proceso de edición!"
-
msgid "--none--"
msgstr "--nada--"
@@ -274,3 +272,9 @@ msgstr "Nombre de la grabación"
msgid "(fixed to the last position)"
msgstr "(fijado en la última posición)"
+
+#~ msgid "Show recording date"
+#~ msgstr "Mostrar la fecha de la grabación"
+
+#~ msgid "Show recording rating"
+#~ msgstr "Mostrar clasificación de la grabación"
diff --git a/po/et_EE.po b/po/et_EE.po
index 1e0873d..e1917a2 100644
--- a/po/et_EE.po
+++ b/po/et_EE.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2011-06-24 08:43+0200\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
"PO-Revision-Date: 2008-03-15 16:21+0100\n"
"Last-Translator: Arthur Konovalov <kasjas@hot.ee>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -180,6 +180,9 @@ msgstr ""
msgid "Show alternative to new marker"
msgstr ""
+msgid "Set menu category"
+msgstr ""
+
msgid "Show free disk space for each file system"
msgstr ""
diff --git a/po/fi_FI.po b/po/fi_FI.po
index e814407..7bcdf4f 100644
--- a/po/fi_FI.po
+++ b/po/fi_FI.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2011-06-24 08:43+0200\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
"PO-Revision-Date: 2008-03-15 16:21+0100\n"
"Last-Translator: Rolf Ahrenberg <rahrenbe@cc.hut.fi>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -183,6 +183,9 @@ msgstr ""
msgid "Show alternative to new marker"
msgstr "Merkitse uudet tallenteet symbolilla"
+msgid "Set menu category"
+msgstr ""
+
msgid "Show free disk space for each file system"
msgstr "Näytä vapaa levytila jokaisella tiedostojärjestelmällä"
diff --git a/po/fr_FR.po b/po/fr_FR.po
index a77f670..a6dfc21 100644
--- a/po/fr_FR.po
+++ b/po/fr_FR.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2011-06-24 08:43+0200\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
"PO-Revision-Date: 2008-03-15 16:21+0100\n"
"Last-Translator: Nicolas Huillard <nhuillard@e-dition.fr>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -183,6 +183,9 @@ msgstr ""
msgid "Show alternative to new marker"
msgstr "Afficher les nouveaux symbols alternatifs"
+msgid "Set menu category"
+msgstr ""
+
msgid "Show free disk space for each file system"
msgstr "Afficher la place libre de chaque partition"
diff --git a/po/hr_HR.po b/po/hr_HR.po
index 9422e95..3cd0852 100644
--- a/po/hr_HR.po
+++ b/po/hr_HR.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2011-06-24 08:43+0200\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
"PO-Revision-Date: 2008-03-15 16:21+0100\n"
"Last-Translator: Drazen Dupor <drazen.dupor@dupor.com>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -181,6 +181,9 @@ msgstr ""
msgid "Show alternative to new marker"
msgstr ""
+msgid "Set menu category"
+msgstr ""
+
msgid "Show free disk space for each file system"
msgstr ""
diff --git a/po/hu_HU.po b/po/hu_HU.po
index 5bcfcd3..b90d882 100644
--- a/po/hu_HU.po
+++ b/po/hu_HU.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2011-06-24 08:43+0200\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
"PO-Revision-Date: 2008-03-15 16:21+0100\n"
"Last-Translator: Istvan Koenigsberger <istvnko@hotmail.com>, Guido Josten <guido.josten@t-online.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -181,6 +181,9 @@ msgstr ""
msgid "Show alternative to new marker"
msgstr ""
+msgid "Set menu category"
+msgstr ""
+
msgid "Show free disk space for each file system"
msgstr ""
diff --git a/po/it_IT.po b/po/it_IT.po
index 6e8a89c..78d7dc3 100644
--- a/po/it_IT.po
+++ b/po/it_IT.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2012-04-24 12:27+0200\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
"PO-Revision-Date: 2011-07-09 23:47+0100\n"
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -185,6 +185,9 @@ msgstr "Voci da mostrare nell'elenco reg."
msgid "Show alternative to new marker"
msgstr "Mostra opzioni nuovo marcatore"
+msgid "Set menu category"
+msgstr ""
+
msgid "Show free disk space for each file system"
msgstr "Mostra spazio disponibile partizioni"
diff --git a/po/nl_NL.po b/po/nl_NL.po
index ef19711..aa119cd 100644
--- a/po/nl_NL.po
+++ b/po/nl_NL.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2011-06-24 08:43+0200\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
"PO-Revision-Date: 2008-03-15 16:21+0100\n"
"Last-Translator: Maarten Wisse <Maarten.Wisse@urz.uni-hd.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -182,6 +182,9 @@ msgstr ""
msgid "Show alternative to new marker"
msgstr ""
+msgid "Set menu category"
+msgstr ""
+
msgid "Show free disk space for each file system"
msgstr ""
diff --git a/po/nn_NO.po b/po/nn_NO.po
index 478ce97..19d2868 100644
--- a/po/nn_NO.po
+++ b/po/nn_NO.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2011-06-24 08:43+0200\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
"PO-Revision-Date: 2008-03-15 16:21+0100\n"
"Last-Translator: Truls Slevigen <truls@slevigen.no>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -181,6 +181,9 @@ msgstr ""
msgid "Show alternative to new marker"
msgstr ""
+msgid "Set menu category"
+msgstr ""
+
msgid "Show free disk space for each file system"
msgstr ""
diff --git a/po/pl_PL.po b/po/pl_PL.po
index c4ffe01..1306d24 100644
--- a/po/pl_PL.po
+++ b/po/pl_PL.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2011-06-24 08:43+0200\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
"PO-Revision-Date: 2008-03-15 16:21+0100\n"
"Last-Translator: Michael Rakowski <mrak@gmx.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -180,6 +180,9 @@ msgstr ""
msgid "Show alternative to new marker"
msgstr ""
+msgid "Set menu category"
+msgstr ""
+
msgid "Show free disk space for each file system"
msgstr ""
diff --git a/po/pt_PT.po b/po/pt_PT.po
index 8716c12..fd81b2a 100644
--- a/po/pt_PT.po
+++ b/po/pt_PT.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2011-06-24 08:43+0200\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
"PO-Revision-Date: 2008-03-15 16:21+0100\n"
"Last-Translator: Paulo Lopes <pmml@netvita.pt>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -180,6 +180,9 @@ msgstr ""
msgid "Show alternative to new marker"
msgstr ""
+msgid "Set menu category"
+msgstr ""
+
msgid "Show free disk space for each file system"
msgstr ""
diff --git a/po/ro_RO.po b/po/ro_RO.po
index 2a749db..c76130f 100644
--- a/po/ro_RO.po
+++ b/po/ro_RO.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2011-06-24 08:43+0200\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
"PO-Revision-Date: 2008-03-15 16:21+0100\n"
"Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -181,6 +181,9 @@ msgstr ""
msgid "Show alternative to new marker"
msgstr ""
+msgid "Set menu category"
+msgstr ""
+
msgid "Show free disk space for each file system"
msgstr ""
diff --git a/po/ru_RU.po b/po/ru_RU.po
index 6831096..235a262 100644
--- a/po/ru_RU.po
+++ b/po/ru_RU.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2011-06-24 08:43+0200\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
"PO-Revision-Date: 2008-03-15 16:21+0100\n"
"Last-Translator: Vyacheslav Dikonov <sdiconov@mail.ru>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -180,6 +180,9 @@ msgstr ""
msgid "Show alternative to new marker"
msgstr ""
+msgid "Set menu category"
+msgstr ""
+
msgid "Show free disk space for each file system"
msgstr ""
diff --git a/po/sk_SK.po b/po/sk_SK.po
index 0a934af..b390340 100755
--- a/po/sk_SK.po
+++ b/po/sk_SK.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2011-06-24 08:43+0200\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
"PO-Revision-Date: 2011-02-15 21:20+0100\n"
"Last-Translator: Milan Hrala <hrala.milan@gmail.com>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -180,6 +180,9 @@ msgstr ""
msgid "Show alternative to new marker"
msgstr "Zobrazi» alternatívu k novým značkám"
+msgid "Set menu category"
+msgstr ""
+
msgid "Show free disk space for each file system"
msgstr "Zobrazi» volné miesto pre kaľdý súborový systém"
diff --git a/po/sl_SI.po b/po/sl_SI.po
index bd83246..c2cef68 100644
--- a/po/sl_SI.po
+++ b/po/sl_SI.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2011-06-24 08:43+0200\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
"PO-Revision-Date: 2008-03-15 16:21+0100\n"
"Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -181,6 +181,9 @@ msgstr ""
msgid "Show alternative to new marker"
msgstr ""
+msgid "Set menu category"
+msgstr ""
+
msgid "Show free disk space for each file system"
msgstr ""
diff --git a/po/sv_SE.po b/po/sv_SE.po
index cb33ae1..515aa82 100644
--- a/po/sv_SE.po
+++ b/po/sv_SE.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2011-06-24 08:43+0200\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
"PO-Revision-Date: 2008-03-15 16:21+0100\n"
"Last-Translator: Tomas Prybil <tomas@prybil.se>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -181,6 +181,9 @@ msgstr ""
msgid "Show alternative to new marker"
msgstr ""
+msgid "Set menu category"
+msgstr ""
+
msgid "Show free disk space for each file system"
msgstr ""
diff --git a/po/tr_TR.po b/po/tr_TR.po
index de84721..c2835a2 100644
--- a/po/tr_TR.po
+++ b/po/tr_TR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2011-06-24 08:43+0200\n"
+"POT-Creation-Date: 2013-04-08 15:06+0200\n"
"PO-Revision-Date: 2008-03-15 16:21+0100\n"
"Last-Translator: Oktay Yolgeçen <oktay_73@yahoo.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -180,6 +180,9 @@ msgstr ""
msgid "Show alternative to new marker"
msgstr ""
+msgid "Set menu category"
+msgstr ""
+
msgid "Show free disk space for each file system"
msgstr ""