summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY5
-rw-r--r--contrib/README4
-rwxr-xr-xcontrib/vdr-getcountryfrominfo.sh28
-rwxr-xr-xcontrib/vdr-getyearfrominfo.sh19
-rw-r--r--extrecmenu.c111
-rw-r--r--mymenurecordings.c309
-rw-r--r--mymenusetup.c299
-rw-r--r--mymenusetup.h84
-rw-r--r--myreplaycontrol.c2
-rw-r--r--po/ca_ES.po78
-rw-r--r--po/cs_CZ.po91
-rw-r--r--po/da_DK.po78
-rw-r--r--po/de_DE.po90
-rw-r--r--po/el_GR.po78
-rw-r--r--po/es_ES.po78
-rw-r--r--po/et_EE.po78
-rw-r--r--po/fi_FI.po91
-rw-r--r--po/fr_FR.po91
-rw-r--r--po/hr_HR.po78
-rw-r--r--po/hu_HU.po78
-rw-r--r--po/it_IT.po96
-rw-r--r--po/nl_NL.po78
-rw-r--r--po/nn_NO.po78
-rw-r--r--po/pl_PL.po78
-rw-r--r--po/pt_PT.po78
-rw-r--r--po/ro_RO.po78
-rw-r--r--po/ru_RU.po78
-rwxr-xr-xpo/sk_SK.po120
-rw-r--r--po/sl_SI.po78
-rw-r--r--po/sv_SE.po78
-rw-r--r--po/tr_TR.po78
31 files changed, 2272 insertions, 416 deletions
diff --git a/HISTORY b/HISTORY
index c634e8c..bd18ed3 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1,9 +1,10 @@
VDR Plugin 'extrecmenu' Revision History
----------------------------------------
-2010-xx-xx: Version 1.2.1
+2011-xx-xx: Version 1.2.1
+- [sibbi] added ability to configure items that should be shown in recording list.
- [amair] Merged following changes from v1.3-devel head (Submitted by Joe_D @vdr-portal.de).
-- [amair] Lifetime and priority for TS recording can be edited again.
+- [amair] Lifetime and priority for TS recordings can be edited again.
- [amair] Use international characters for renaming recordings and creating directories like VDR.
- [amair] Don't use the VDR cutter by default as this crashes VDR (Can be enabled by defining USE_VDR_CUTTER).
- [amair] Updated Italian translation (Submitted by Diego Pierotto).
diff --git a/contrib/README b/contrib/README
index adba3b3..1fc62d6 100644
--- a/contrib/README
+++ b/contrib/README
@@ -24,3 +24,7 @@ see rating/README.
reclist
-------------------------------------------------------------------------------
see reclist/README
+
+vdr-getcountryfrominfo.sh + vdr-getyearfrominfo.sh
+-------------------------------------------------------------------------------
+sample scripts to get the country/year out of the info file
diff --git a/contrib/vdr-getcountryfrominfo.sh b/contrib/vdr-getcountryfrominfo.sh
new file mode 100755
index 0000000..ae4d3d0
--- /dev/null
+++ b/contrib/vdr-getcountryfrominfo.sh
@@ -0,0 +1,28 @@
+#!/bin/sh
+
+# old info file
+infofile="$1/info.vdr"
+
+# use new info file if available
+if [ -e "$1/info" ]; then
+ infofile="$1/info"
+fi
+
+# try "Land: XXX 2010" first
+country=`cat "${infofile}" | grep '|Land:' | sed -e 's/.*|Land: \([^ ]*\).*/\1/g'`
+#echo "country1:>${country}<"
+
+if [ "$country" == "" ]; then
+ country=`cat ${infofile} | grep '|Country:' | sed -e 's/.*|Country: \([^|]*\).*/\1/g'`
+ #echo "country2:>${country}<"
+fi
+
+if [ "$country" == "" ]; then
+ country=`cat ${infofile} | grep -e '^D .*' | sed -e 's/^D [^, ]*[, ]*\([A-Z/]*\).*/\1/g'`
+ #echo "country3:>${country}<"
+fi
+
+if [ ! "$country" == "" ]; then
+ echo "${country}" > "$1/country.vdr"
+ echo "${country}"
+fi
diff --git a/contrib/vdr-getyearfrominfo.sh b/contrib/vdr-getyearfrominfo.sh
new file mode 100755
index 0000000..9ffa913
--- /dev/null
+++ b/contrib/vdr-getyearfrominfo.sh
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+# old info file
+infofile="$1/info.vdr"
+
+# use new info file if available
+if [ -e "$1/info" ]; then
+ infofile="$1/info"
+fi
+
+#try "|Year: XXXX|" first
+year=`cat "${infofile}" | grep '|Year:' | sed -e 's/.*|Year: \([0-9]*\)|.*/\1/g'`
+#echo "year1:>${year}<"
+
+
+if [ ! "$year" == "" ]; then
+ echo "${year}" > "$1/year.vdr"
+ echo "${year}"
+fi
diff --git a/extrecmenu.c b/extrecmenu.c
index df6ade7..08bce0d 100644
--- a/extrecmenu.c
+++ b/extrecmenu.c
@@ -113,17 +113,105 @@ cMenuSetupPage *cPluginExtrecmenu::SetupMenu(void)
bool cPluginExtrecmenu::SetupParse(const char *_Name,const char *Value)
{
+ bool rc = true;
+
if(!strcasecmp(_Name,"IsOrgRecMenu"))
return (mysetup.ReplaceOrgRecMenu==false); // vdr-replace patch
- if(!strcasecmp(_Name,"ShowRecDate"))
- mysetup.ShowRecDate=atoi(Value);
- else if(!strcasecmp(_Name,"ShowRecTime"))
- mysetup.ShowRecTime=atoi(Value);
- else if(!strcasecmp(_Name,"ShowRecLength"))
- mysetup.ShowRecLength=atoi(Value);
- else if(!strcasecmp(_Name,"ShowRecRating"))
- mysetup.ShowRecRating=atoi(Value);
+ if(!strncasecmp(_Name,"RecListColumn.", 14)) {
+ char *tmp=NULL;
+ for (int i=0; i<MAX_RECLIST_COLUMNS; i++) {
+
+ if(asprintf(&tmp,"RecListColumn.%d", i) == -1) {
+ rc = false;
+ } else {
+ if (!strcasecmp(_Name,tmp)) {
+
+ const char *m;
+
+ // get 'Name' from config line
+ m = strstr(Value, "name=");
+ if(m) {
+ char *tmp = strdup(m + 5);
+ if(strchr(tmp, ',')) *strchr(tmp, ',') = 0;
+ STRN0CPY(mysetup.RecListColumn[i].Name, tmp);
+ free(tmp);
+ } else {
+ mysetup.RecListColumn[i].Type = COLTYPE_NONE;
+ rc = false;
+ break;
+ }
+
+ // get 'Type' from config line
+ m = strstr(Value, "type=");
+ if(m) {
+ char *tmp = strdup(m + 5);
+ if(strchr(tmp, ',')) *strchr(tmp, ',') = 0;
+ mysetup.RecListColumn[i].Type=atoi(tmp);
+ free(tmp);
+ } else {
+ mysetup.RecListColumn[i].Type = COLTYPE_NONE;
+ rc = false;
+ break;
+ }
+
+ // get 'Width' from config line
+ m = strstr(Value, "width=");
+ if(m) {
+ char *tmp = strdup(m + 6);
+ if(strchr(tmp, ',')) *strchr(tmp, ',') = 0;
+ mysetup.RecListColumn[i].Width=atoi(tmp);
+ free(tmp);
+ } else {
+ mysetup.RecListColumn[i].Type = COLTYPE_NONE;
+ rc = false;
+ break;
+ }
+
+ // get 'Align' from config line
+ m = strstr(Value, "align=");
+ if(m) {
+ char *tmp = strdup(m + 7);
+ if(strchr(tmp, ',')) *strchr(tmp, ',') = 0;
+ mysetup.RecListColumn[i].Align=atoi(tmp);
+ free(tmp);
+ } else {
+ mysetup.RecListColumn[i].Type = COLTYPE_NONE;
+ rc = false;
+ break;
+ }
+
+ // get 'Op1' from config line
+ m = strstr(Value, "op1=");
+ if(m) {
+ char *tmp = strdup(m + 4);
+ if(strchr(tmp, ',')) *strchr(tmp, ',') = 0;
+ STRN0CPY(mysetup.RecListColumn[i].Op1, tmp);
+ free(tmp);
+ } else {
+ mysetup.RecListColumn[i].Type = COLTYPE_NONE;
+ rc = false;
+ break;
+ }
+
+ // get 'Op2' from config line
+ m = strstr(Value, "op2=");
+ if(m) {
+ char *tmp = strdup(m + 4);
+ STRN0CPY(mysetup.RecListColumn[i].Op2, tmp);
+ free(tmp);
+ } else {
+ mysetup.RecListColumn[i].Type = COLTYPE_NONE;
+ rc = false;
+ break;
+ }
+ break;
+ } else {
+ }
+ free(tmp);
+ }
+ }
+ }
else if(!strcasecmp(_Name,"HideMainMenuEntry"))
mysetup.HideMainMenuEntry=atoi(Value);
else if(!strcasecmp(_Name,"ReplaceOrgRecMenu"))
@@ -132,6 +220,8 @@ bool cPluginExtrecmenu::SetupParse(const char *_Name,const char *Value)
mysetup.PatchNew=atoi(Value);
else if(!strcasecmp(_Name,"ShowNewRecs"))
mysetup.ShowNewRecs=atoi(Value);
+ else if(!strcasecmp(_Name,"RecsPerDir"))
+ mysetup.RecsPerDir=atoi(Value);
else if(!strcasecmp(_Name,"DescendSorting"))
mysetup.DescendSorting=atoi(Value);
else if(!strcasecmp(_Name,"GoLastReplayed"))
@@ -149,8 +239,9 @@ bool cPluginExtrecmenu::SetupParse(const char *_Name,const char *Value)
else if(!strcasecmp(_Name,"UseCutterQueue"))
mysetup.UseCutterQueue=atoi(Value);
else
- return false;
- return true;
+ rc = false;
+
+ return rc;
}
bool cPluginExtrecmenu::Service(const char *Id,void *Data)
diff --git a/mymenurecordings.c b/mymenurecordings.c
index 05996f0..9abd4fb 100644
--- a/mymenurecordings.c
+++ b/mymenurecordings.c
@@ -176,11 +176,10 @@ myMenuRecordingsItem::myMenuRecordingsItem(cRecording *Recording,int Level)
break;
}
}
- title=MALLOC(char,s-p+3);
- *title='\t';
- *(title+1)='\t';
- strn0cpy(title+2,p,s-p+1);
- name=strdup(title+2);
+ title=MALLOC(char,s-p+1);
+ strn0cpy(title,p,s-p+1);
+ name=strdup(title);
+
uniqid=name;
}
else
@@ -191,6 +190,15 @@ myMenuRecordingsItem::myMenuRecordingsItem(cRecording *Recording,int Level)
stringstream titlebuffer;
stringstream idbuffer;
+ // date and time of recording
+ struct tm tm_r;
+ struct tm *t=localtime_r(&Recording->start,&tm_r);
+
+ idbuffer << t->tm_mday << t->tm_mon << t->tm_year
+ << t->tm_hour << t->tm_min;
+
+
+ // display symbol
buffer=filename;
if (isPesRecording)
buffer+="/001.vdr";
@@ -209,10 +217,10 @@ myMenuRecordingsItem::myMenuRecordingsItem(cRecording *Recording,int Level)
if(MoveCutterThread->IsMoving(filename))
titlebuffer << Icons::MovingRecording(); // moving recording
- else if(isdvd)
- titlebuffer << Icons::DVD(); // archive dvd
else if(ishdd)
titlebuffer << Icons::HDD(); // archive hdd
+ else if(isdvd)
+ titlebuffer << Icons::DVD(); // archive dvd
else if(MoveCutterThread->IsCutting(filename))
titlebuffer << Icons::Scissor(); // cutting recording
else if(Recording->IsNew() && !mysetup.PatchNew)
@@ -223,114 +231,179 @@ myMenuRecordingsItem::myMenuRecordingsItem(cRecording *Recording,int Level)
titlebuffer << '\t';
- // date and time of recording
- struct tm tm_r;
- struct tm *t=localtime_r(&Recording->start,&tm_r);
- if(mysetup.ShowRecDate)
- titlebuffer << setw(2) << setfill('0') << t->tm_mday << '.'
- << setw(2) << setfill('0') << t->tm_mon+1 << '.'
- << setw(2) << setfill('0') << t->tm_year%100 << '\t';
+ // loop all columns and write each output to ostringstream
+ for (int i=0; i<MAX_RECLIST_COLUMNS; i++) {
+ ostringstream sbuffer;
- if(mysetup.ShowRecTime)
- titlebuffer << setw(2) << setfill('0') << t->tm_hour << '.'
- << setw(2) << setfill('0') << t->tm_min << '\t';
+ if(mysetup.RecListColumn[i].Type == COLTYPE_DATE) {
+ sbuffer << setw(2) << setfill('0') << t->tm_mday << '.'
+ << setw(2) << setfill('0') << t->tm_mon+1 << '.'
+ << setw(2) << setfill('0') << t->tm_year%100;
+ }
+ if(mysetup.RecListColumn[i].Type == COLTYPE_TIME) {
+ sbuffer << setw(2) << setfill('0') << t->tm_hour << '.'
+ << setw(2) << setfill('0') << t->tm_min;
+ }
- idbuffer << t->tm_mday << t->tm_mon << t->tm_year
- << t->tm_hour << t->tm_min;
+ if(mysetup.RecListColumn[i].Type == COLTYPE_DATETIME) {
+ sbuffer << setw(2) << setfill('0') << t->tm_mday << '.'
+ << setw(2) << setfill('0') << t->tm_mon+1 << '.'
+ << setw(2) << setfill('0') << t->tm_year%100;
+ sbuffer << Icons::FixedBlank();
+ sbuffer << setw(2) << setfill('0') << t->tm_hour << '.'
+ << setw(2) << setfill('0') << t->tm_min;
+ }
- // recording length
- if(mysetup.ShowRecLength)
- {
- buffer=filename;
- if (isPesRecording)
- buffer+="/index.vdr";
- else
- buffer+="/index";
+ if(mysetup.RecListColumn[i].Type == COLTYPE_LENGTH) {
+ buffer=filename;
+ if (isPesRecording)
+ buffer+="/index.vdr";
+ else
+ buffer+="/index";
- struct stat statbuf;
- if(!stat(buffer.c_str(),&statbuf))
- {
- ostringstream strbuf;
+ struct stat statbuf;
+ if(!stat(buffer.c_str(),&statbuf))
+ {
#if APIVERSNUM >= 10714
- strbuf << setw(3) << (int)(statbuf.st_size/480/Recording->FramesPerSecond()) << "'";
+ sbuffer << (int)(statbuf.st_size/480/Recording->FramesPerSecond()) << "'";
#else
- strbuf << setw(3) << (int)(statbuf.st_size/12000) << "'";
+ sbuffer << (int)(statbuf.st_size/12000) << "'";
#endif
- // replace leading spaces with fixed blank (right align)
- titlebuffer << myStrReplace(strbuf.str(),' ',Icons::FixedBlank()) << '\t';
+ }
+ else
+ {
+ // get recording length from file 'length.vdr'
+ buffer=filename;
+ buffer+="/length.vdr";
+
+ ifstream in(buffer.c_str());
+ if(in)
+ {
+ if(!in.eof())
+ getline(in,buffer);
+ sbuffer << buffer << "'";
+ in.close();
+ }
+ }
}
- else
- {
- // get recording length from file 'length.vdr'
+
+ if(mysetup.RecListColumn[i].Type == COLTYPE_RATING) {
+ // get recording rating from file 'rated.vdr'
buffer=filename;
- buffer+="/length.vdr";
+ buffer+="/rated.vdr";
ifstream in(buffer.c_str());
if(in)
{
if(!in.eof())
getline(in,buffer);
+ int rated=atoi(buffer.c_str());
+ if (rated>10)
+ rated=10;
+
+ if (rated>0) {
+ while (rated>1) {
+ sbuffer << Icons::StarFull();
+ rated = rated-2;
+ }
+ if (rated>0) {
+ sbuffer << Icons::StarHalf();
+ rated--;
+ }
+ }
+ in.close();
+ }
+ }
- buffer+="'";
- // replace leading spaces with fixed blank (right align)
- while(buffer.length()<=3)
- buffer.insert(0,Icons::FixedBlank());
+ if(mysetup.RecListColumn[i].Type == COLTYPE_FILE ||
+ mysetup.RecListColumn[i].Type == COLTYPE_FILETHENCOMMAND) {
+ // get content from file
+ buffer=filename;
+ buffer+="/";
+ buffer+=mysetup.RecListColumn[i].Op1;
- titlebuffer << buffer << '\t';
+ ifstream in(buffer.c_str());
+ if(in)
+ {
+ if(!in.eof())
+ getline(in,buffer);
+ // cut to maximum width
+ buffer = buffer.substr(0, mysetup.RecListColumn[i].Width);
+ sbuffer << buffer;
in.close();
}
else
- titlebuffer << '\t';
- }
- }
-
- // recording rating
- if(mysetup.ShowRecRating)
- {
- // get recording rating from file 'rated.vdr'
- buffer=filename;
- buffer+="/rated.vdr";
+ {
+ if(mysetup.RecListColumn[i].Type == COLTYPE_FILETHENCOMMAND) {
+ // execute the command given by Op2
+ char result [1024];
+ strcpy(result, mysetup.RecListColumn[i].Op2);
+ strcat(result, " \"");
+ strcat(result, filename);
+ strcat(result, "\"");
+ FILE *fp = popen(result, "r");
+ int read = fread(result, 1, sizeof(result), fp);
+ pclose (fp);
+
+ if(read>0) {
+ // use output of command
+ // strip trailing whitespaces
+ result[read]=0;
+ while (strlen(result)>0 &&
+ (result[strlen(result)-1]==0x0a || result[strlen(result)-1]==0x0d || result[strlen(result)-1]==' ')) {
+ result[strlen(result)-1]=0;
+ }
+ result[mysetup.RecListColumn[i].Width]=0;
+ sbuffer << result;
+ } else {
+ // retry reading the file (useful when the execution of the command created the file)
+ buffer=filename;
+ buffer+="/";
+ buffer+=mysetup.RecListColumn[i].Op1;
+
+ ifstream in(buffer.c_str());
+ if(in)
+ {
+ if(!in.eof())
+ getline(in,buffer);
- ifstream in(buffer.c_str());
- if(in)
- {
- if(!in.eof())
- getline(in,buffer);
- int rated=atoi(buffer.c_str());
- buffer="";
- if (rated>10)
- rated=10;
-
- int cstar=0;
- if (rated>0) {
- while (rated>1) {
- buffer += Icons::StarFull();
- rated = rated-2;
- cstar++;
- }
- if (rated>0) {
- buffer += Icons::StarHalf();
- rated--;
- cstar++;
+ // cut to maximum width
+ buffer = buffer.substr(0, mysetup.RecListColumn[i].Width);
+ sbuffer << buffer;
+ in.close();
+ }
+ }
}
}
- while (cstar<5) {
- buffer += Icons::FixedBlank();
- cstar++;
- }
- titlebuffer << buffer;
+ }
- in.close();
+ // adjust alignment
+ int iLeftBlanks=0;
+ switch (mysetup.RecListColumn[i].Align) {
+ case 1:
+ // center alignment
+ iLeftBlanks = (mysetup.RecListColumn[i].Width - strlen(sbuffer.str().c_str())) / 2; // sbuffer.width()) / 2;
+ break;
+ case 2:
+ // right alignment
+ iLeftBlanks = (mysetup.RecListColumn[i].Width - strlen(sbuffer.str().c_str())); // sbuffer.width());
+ break;
+ default:
+ // left alignment
+ break;
}
- titlebuffer << '\t';
- }
+ if(iLeftBlanks>0) {
+ for (int j=0; j<iLeftBlanks; j++) {
+ titlebuffer << Icons::FixedBlank();
+ }
+ }
- if(!mysetup.ShowRecDate && !mysetup.ShowRecTime && !mysetup.ShowRecLength && !mysetup.ShowRecRating)
- titlebuffer << '\t';
+ titlebuffer << sbuffer.str() << '\t';
+ } // loop all columns
// recording title
string _s=Recording->Name();
@@ -373,32 +446,24 @@ void myMenuRecordingsItem::IncrementCounter(bool IsNew)
char *buffer=NULL;
ostringstream entries;
- entries << setw(3) << totalentries;
+ entries << setw(mysetup.RecsPerDir+1) << totalentries;
if(mysetup.ShowNewRecs)
{
- if(-1==asprintf(&buffer,"%s\t%s (%d)%s%s%s%s%s",
+ if(-1==asprintf(&buffer,"%s\t%s\t(%d)\t\t\t%s",
GetDirIsMoving()?Icons::MovingDirectory():Icons::Directory(),
// replace leading spaces with fixed blank (right align)
myStrReplace(entries.str(),' ',Icons::FixedBlank()).c_str(),
newentries,
- mysetup.ShowRecDate||mysetup.ShowOnlyRecs?"\t":"",
- mysetup.ShowRecTime?"\t":"",
- mysetup.ShowRecLength?"\t":"",
- mysetup.ShowRecRating?"\t":"",
name))
buffer=NULL;
}
else
{
- if(-1==asprintf(&buffer,"%s\t%s%s%s%s%s%s",
+ if(-1==asprintf(&buffer,"%s\t%s\t\t\t\t%s",
GetDirIsMoving()?Icons::MovingDirectory():Icons::Directory(),
// replace leading spaces with fixed blank (right align)
myStrReplace(entries.str(),' ',Icons::FixedBlank()).c_str(),
- mysetup.ShowRecDate||mysetup.ShowOnlyRecs?"\t":"",
- mysetup.ShowRecTime?"\t":"",
- mysetup.ShowRecLength?"\t":"",
- mysetup.ShowRecRating?"\t":"",
name))
buffer=NULL;
}
@@ -417,46 +482,27 @@ int myMenuRecordings::freediskspace=0;
myMenuRecordings::myMenuRecordings(const char *Base,int Level):cOsdMenu("")
{
- mysetup.ShowOnlyRecs=false;
- int c[5],i=0;
- for (i=0; i<5; i++) c[i]=0;
+ int c[MAX_RECLIST_COLUMNS],i=0;
- // set first tab to 2
- i=0;
- c[i]=2;//2;
-
- if(mysetup.ShowRecDate)
- {
- i++;
- c[i]=8;
- }
- if(mysetup.ShowRecTime)
- {
- i++;
- c[i]=6;
- }
- if(mysetup.ShowRecLength)
- {
- i++;
- c[i]=4;
- }
- if(mysetup.ShowRecRating)
- {
- i++;
- c[i]=8;//5;
+ for (i=0; i<MAX_RECLIST_COLUMNS; i++) {
+ c[i] = 1;
+ if ((mysetup.RecListColumn[i].Type != COLTYPE_NONE) &&
+ (mysetup.RecListColumn[i].Width > 0)) {
+ c[i] = mysetup.RecListColumn[i].Width+1;
+ }
}
- if(i==0)
- { // only icon and name colums: add column for number of recordings in folders
- i++;
- c[i]=(mysetup.ShowNewRecs?9:3);
- mysetup.ShowOnlyRecs=true;
+
+ // widen the first column if there isn't enough space for the number of recordings in a direcory
+ if (c[0] < mysetup.RecsPerDir+1) {
+ c[0] = mysetup.RecsPerDir+1;
}
- else
- { // make the first column wide enough
- c[1]=std::max(c[1],(mysetup.ShowNewRecs?9:3));
+ // widen the second column if the number of new recordings should be displayed and
+ // there isn't enough space for the number of new recordings in a direcory
+ if (mysetup.ShowNewRecs && c[1] < mysetup.RecsPerDir+3) {
+ c[1] = mysetup.RecsPerDir+3;
}
- SetCols(c[0], c[1], c[2], c[3], c[4]);
+ SetCols(2, c[0], c[1], c[2], c[3]);
edit=false;
level=Level;
@@ -662,7 +708,6 @@ void myMenuRecordings::Set(bool Refresh,char *_current)
const char *lastreplayed=_current?_current:myReplayControl::LastReplayed();
cThreadLock RecordingsLock(&Recordings);
-
if(Refresh && !_current)
{
fsid=0;
diff --git a/mymenusetup.c b/mymenusetup.c
index 9028996..9ff2cd8 100644
--- a/mymenusetup.c
+++ b/mymenusetup.c
@@ -2,9 +2,28 @@
* See the README file for copyright information and how to reach the author.
*/
+#include <stdarg.h>
#include <vdr/menu.h>
#include "mymenusetup.h"
+typedef struct {
+ int Width;
+ int Align;
+} RecListDefaultType;
+
+RecListDefaultType recListDefaultValues[MAX_COLTYPES] = {
+ { 0,0},
+ { 5,0},
+ { 8,0},
+ { 5,0},
+ {14,0},
+ { 4,2},
+ { 7,0},
+ { 5,0},
+ { 5,0}
+};
+
+
#if VDRVERSNUM > 10713
cNestedItemList RecordingDirCommands;
#else
@@ -16,12 +35,44 @@ mySetup::mySetup()
mysetup.HideMainMenuEntry=0;
mysetup.PatchNew=1;
mysetup.ReplaceOrgRecMenu=0;
- mysetup.ShowRecDate=1;
- mysetup.ShowRecTime=1;
- mysetup.ShowRecLength=0;
- mysetup.ShowRecRating=0;
+
+ mysetup.RecListColumn[0].Type = COLTYPE_DATETIME;
+ STRN0CPY(mysetup.RecListColumn[0].Name, "");
+ mysetup.RecListColumn[0].Width = 14; // DD.MM.YY HH:MM
+ mysetup.RecListColumn[0].Align = 0;
+ STRN0CPY(mysetup.RecListColumn[0].Op1, "");
+ STRN0CPY(mysetup.RecListColumn[0].Op2, "");
+
+ mysetup.RecListColumn[1].Type = COLTYPE_LENGTH;
+ STRN0CPY(mysetup.RecListColumn[1].Name, "");
+ mysetup.RecListColumn[1].Width = 4; // use 3 digits + '. eg: 123'
+ mysetup.RecListColumn[1].Align = 2;
+ STRN0CPY(mysetup.RecListColumn[1].Op1, "");
+ STRN0CPY(mysetup.RecListColumn[1].Op2, "");
+
+ mysetup.RecListColumn[2].Type = COLTYPE_RATING;
+ STRN0CPY(mysetup.RecListColumn[2].Name, "");
+ mysetup.RecListColumn[2].Width = 7; // use 7 instead of 5, because Star (1825) is wider than FixedBlank (1300) => 5*1825 / 1300 = 7.01
+ mysetup.RecListColumn[2].Align = 0;
+ STRN0CPY(mysetup.RecListColumn[2].Op1, "");
+ STRN0CPY(mysetup.RecListColumn[2].Op2, "");
+
+ mysetup.RecListColumn[3].Type = COLTYPE_FILETHENCOMMAND;
+ STRN0CPY(mysetup.RecListColumn[3].Name, "Country");
+ mysetup.RecListColumn[3].Width = 5;
+ mysetup.RecListColumn[3].Align = 0;
+ STRN0CPY(mysetup.RecListColumn[3].Op1, "country.vdr");
+ STRN0CPY(mysetup.RecListColumn[3].Op2, "/usr/local/bin/vdr-getcountryfrominfo.sh");
+
+// mysetup.RecListColumn[4].Type = COLTYPE_FILETHENCOMMAND;
+// STRN0CPY(mysetup.RecListColumn[4].Name, "Year");
+// mysetup.RecListColumn[4].Width = 4;
+// mysetup.RecListColumn[4].Align = 0;
+// STRN0CPY(mysetup.RecListColumn[4].Op1, "year.vdr");
+// STRN0CPY(mysetup.RecListColumn[4].Op2, "/usr/local/bin/vdr-getyearfrominfo.sh");
+
mysetup.ShowNewRecs=1;
- mysetup.ShowOnlyRecs=false;
+ mysetup.RecsPerDir=2;
mysetup.DescendSorting=0;
mysetup.GoLastReplayed=0;
mysetup.ReturnToPlugin=1;
@@ -34,18 +85,25 @@ mySetup::mySetup()
mySetup mysetup;
+/******************** myMenuSetup ********************/
myMenuSetup::myMenuSetup()
{
- SetCols(36);
+ SetCols(45);
hidemainmenuentry=mysetup.HideMainMenuEntry;
patchnew=mysetup.PatchNew;
replaceorgrecmenu=mysetup.ReplaceOrgRecMenu;
- showrecdate=mysetup.ShowRecDate;
- showrectime=mysetup.ShowRecTime;
- showreclength=mysetup.ShowRecLength;
- showrecrating=mysetup.ShowRecRating;
+
+ for(int i=0; i<MAX_RECLIST_COLUMNS; i++) {
+ reclistcolumn[i].Type = mysetup.RecListColumn[i].Type;
+ STRN0CPY(reclistcolumn[i].Name, mysetup.RecListColumn[i].Name);
+ reclistcolumn[i].Width = mysetup.RecListColumn[i].Width;
+ reclistcolumn[i].Align = mysetup.RecListColumn[i].Align;
+ STRN0CPY(reclistcolumn[i].Op1 , mysetup.RecListColumn[i].Op1);
+ STRN0CPY(reclistcolumn[i].Op2 , mysetup.RecListColumn[i].Op2);
+ }
shownewrecs=mysetup.ShowNewRecs;
+ recsperdir=mysetup.RecsPerDir;
descendsorting=mysetup.DescendSorting;
golastreplayed=mysetup.GoLastReplayed;
returntoplugin=mysetup.ReturnToPlugin;
@@ -58,11 +116,9 @@ myMenuSetup::myMenuSetup()
sortingtypetexts[0]=tr("ascending");
sortingtypetexts[1]=tr("descending");
- Add(new cMenuEditBoolItem(tr("Show recording date"),&showrecdate));
- Add(new cMenuEditBoolItem(tr("Show recording time"),&showrectime));
- Add(new cMenuEditBoolItem(tr("Show recording length"),&showreclength));
- Add(new cMenuEditBoolItem(tr("Show recording rating"),&showrecrating));
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));
Add(new cMenuEditStraItem(tr("Sorting"),&descendsorting,2,sortingtypetexts));
@@ -82,11 +138,31 @@ void myMenuSetup::Store()
SetupStore("HideMainMenuEntry",mysetup.HideMainMenuEntry=hidemainmenuentry);
SetupStore("PatchNew",mysetup.PatchNew=patchnew);
SetupStore("ReplaceOrgRecMenu",mysetup.ReplaceOrgRecMenu=replaceorgrecmenu);
- SetupStore("ShowRecDate",mysetup.ShowRecDate=showrecdate);
- SetupStore("ShowRecTime",mysetup.ShowRecTime=showrectime);
- SetupStore("ShowRecLength",mysetup.ShowRecLength=showreclength);
- SetupStore("ShowRecRating",mysetup.ShowRecRating=showrecrating);
+
+ char varname[16];
+ char* tmp=NULL;
+ for(int i=0; i<MAX_RECLIST_COLUMNS; i++) {
+ if(asprintf(&tmp,"type=%d,name=%s,width=%d,align=%d,op1=%s,op2=%s",
+ reclistcolumn[i].Type,
+ reclistcolumn[i].Name && (reclistcolumn[i].Type==COLTYPE_FILE || reclistcolumn[i].Type==COLTYPE_FILETHENCOMMAND) ? reclistcolumn[i].Name : "",
+ reclistcolumn[i].Width,
+ reclistcolumn[i].Align,
+ reclistcolumn[i].Op1 && (reclistcolumn[i].Type==COLTYPE_FILE || reclistcolumn[i].Type==COLTYPE_FILETHENCOMMAND) ? reclistcolumn[i].Op1 : "",
+ reclistcolumn[i].Op2 && reclistcolumn[i].Type==COLTYPE_FILETHENCOMMAND ? reclistcolumn[i].Op2 : "") != -1) {
+ mysetup.RecListColumn[i].Type = reclistcolumn[i].Type;
+ STRN0CPY(mysetup.RecListColumn[i].Name, reclistcolumn[i].Name);
+ mysetup.RecListColumn[i].Width = reclistcolumn[i].Width;
+ mysetup.RecListColumn[i].Align = reclistcolumn[i].Align;
+ STRN0CPY(mysetup.RecListColumn[i].Op1, reclistcolumn[i].Op1);
+ STRN0CPY(mysetup.RecListColumn[i].Op2, reclistcolumn[i].Op2);
+
+ snprintf(varname, 16, "RecListColumn.%d", i);
+ SetupStore(varname, tmp);
+ free(tmp);
+ }
+ }
SetupStore("ShowNewRecs",mysetup.ShowNewRecs=shownewrecs);
+ SetupStore("RecsPerDir",mysetup.RecsPerDir=recsperdir);
SetupStore("DescendSorting",mysetup.DescendSorting=descendsorting);
SetupStore("GoLastReplayed",mysetup.GoLastReplayed=golastreplayed);
SetupStore("ReturnToPlugin",mysetup.ReturnToPlugin=returntoplugin);
@@ -97,3 +173,190 @@ void myMenuSetup::Store()
SetupStore("UseCutterQueue",mysetup.UseCutterQueue=usecutterqueue);
}
+eOSState myMenuSetup::ProcessKey(eKeys Key) {
+ eOSState state = cMenuSetupPage::ProcessKey(Key);
+
+ switch (state) {
+ case osUser1:
+ return AddSubMenu(new myMenuSetupColumns(&reclistcolumn[0]));
+ default: ;
+ }
+ return state;
+}
+
+
+/******************** myMenuSetupColumns ********************/
+myMenuSetupColumns::myMenuSetupColumns(RecListColumnType *prlcs) : cOsdMenu(tr("Items to show in recording list"), 4) {
+ preclistcolumns = prlcs;
+
+ ColumnType_descriptions[0] = tr("--none--");
+ ColumnType_descriptions[1] = tr("Blank");
+ ColumnType_descriptions[2] = tr("Date of Recording");
+ ColumnType_descriptions[3] = tr("Time of Recording");
+ ColumnType_descriptions[4] = tr("Date and Time of Recording");
+ ColumnType_descriptions[5] = tr("Length of Recording");
+ ColumnType_descriptions[6] = tr("Rating of Recording");
+ ColumnType_descriptions[7] = tr("Content of File");
+ ColumnType_descriptions[8] = tr("Content of File, then Result of a Command");
+
+ AlignmentType_names[0] = tr("left");
+ AlignmentType_names[1] = tr("center");
+ AlignmentType_names[2] = tr("right");
+
+ Set();
+}
+
+void myMenuSetupColumns::Set() {
+ SetCols(30);
+
+ // build up menu entries
+// SetHelp(tr("Edit"), NULL, NULL, NULL); //SetHelp(tr("Edit"), NULL, tr("Move Up"), tr("Move down"));
+
+ // save current postion
+ int current = Current();
+ // clear entries, if any
+ Clear();
+
+
+ cOsdItem *sItem;
+ char *itemStr;
+ int ret;
+
+ ret = asprintf(&itemStr, "%s\t%s", tr("Icon"), tr("(fixed to the first position)"));
+ if (ret <= 0) {
+ esyslog("Error allocating linebuffer for cOsdItem.");
+ return;
+ }
+ sItem = new cOsdItem(itemStr);
+ sItem->SetSelectable(false);
+ Add(sItem);
+
+
+ // build up setup menu
+ for(int i=0; i<MAX_RECLIST_COLUMNS; i++) {
+
+ ret = asprintf(&itemStr, "%s %i", tr("Item"),i+1);
+ if (ret <= 0) {
+ esyslog("Error allocating linebuffer for cOsdItem.");
+ return;
+ }
+
+ Add(new cMenuEditStraItem(itemStr, &(preclistcolumns[i].Type), MAX_COLTYPES, ColumnType_descriptions));
+
+ switch (preclistcolumns[i].Type) {
+ case COLTYPE_NONE:
+ break;
+
+ case COLTYPE_BLANK:
+ Add(new cMenuEditIntItem(IndentMenuItem(tr("Width")), &(preclistcolumns[i].Width), 0, 24));
+ break;
+
+ case COLTYPE_DATE:
+ Add(new cMenuEditIntItem(IndentMenuItem(tr("Width")), &(preclistcolumns[i].Width), 8, 24));
+ Add(new cMenuEditStraItem(IndentMenuItem(tr("Alignment")), &(preclistcolumns[i].Align), 3, AlignmentType_names));
+ break;
+
+ case COLTYPE_TIME:
+ Add(new cMenuEditIntItem(IndentMenuItem(tr("Width")), &(preclistcolumns[i].Width), 5, 24));
+ Add(new cMenuEditStraItem(IndentMenuItem(tr("Alignment")), &(preclistcolumns[i].Align), 3, AlignmentType_names));
+ break;
+
+ case COLTYPE_DATETIME:
+ Add(new cMenuEditIntItem(IndentMenuItem(tr("Width")), &(preclistcolumns[i].Width), 14, 24));
+ Add(new cMenuEditStraItem(IndentMenuItem(tr("Alignment")), &(preclistcolumns[i].Align), 3, AlignmentType_names));
+ break;
+
+ case COLTYPE_LENGTH:
+ Add(new cMenuEditIntItem(IndentMenuItem(tr("Width")), &(preclistcolumns[i].Width), 3, 24));
+ Add(new cMenuEditStraItem(IndentMenuItem(tr("Alignment")), &(preclistcolumns[i].Align), 3, AlignmentType_names));
+ break;
+
+ case COLTYPE_RATING:
+ Add(new cMenuEditIntItem(IndentMenuItem(tr("Width")), &(preclistcolumns[i].Width), 5, 24));
+ Add(new cMenuEditStraItem(IndentMenuItem(tr("Alignment")), &(preclistcolumns[i].Align), 3, AlignmentType_names));
+ break;
+
+ case COLTYPE_FILE:
+ Add(new cMenuEditStrItem(IndentMenuItem(tr("Name")), (preclistcolumns[i].Name), 64, tr(FileNameChars)));
+
+ Add(new cMenuEditIntItem(IndentMenuItem(tr("Width")), &(preclistcolumns[i].Width), 1, 24));
+ Add(new cMenuEditStraItem(IndentMenuItem(tr("Alignment")), &(preclistcolumns[i].Align), 3, AlignmentType_names));
+ Add(new cMenuEditStrItem(IndentMenuItem(tr("Filename")), (preclistcolumns[i].Op1), 64, tr(FileNameChars)));
+ break;
+
+ case COLTYPE_FILETHENCOMMAND:
+ Add(new cMenuEditStrItem(IndentMenuItem(tr("Name")), (preclistcolumns[i].Name), 64, tr(FileNameChars)));
+
+ Add(new cMenuEditIntItem(IndentMenuItem(tr("Width")), &(preclistcolumns[i].Width), 1, 24));
+ Add(new cMenuEditStraItem(IndentMenuItem(tr("Alignment")), &(preclistcolumns[i].Align), 3, AlignmentType_names));
+ Add(new cMenuEditStrItem(IndentMenuItem(tr("Filename")), (preclistcolumns[i].Op1), 1024, tr(FileNameChars)));
+ Add(new cMenuEditStrItem(IndentMenuItem(tr("Command")), (preclistcolumns[i].Op2), 1024, tr(FileNameChars)));
+ break;
+ }
+ }
+
+ ret = asprintf(&itemStr, "%s\t%s", tr("Name of the recording"), tr("(fixed to the last position)"));
+ if (ret <= 0) {
+ esyslog("Error allocating linebuffer for cOsdItem.");
+ return;
+ }
+ sItem = new cOsdItem(itemStr);
+ sItem->SetSelectable(false);
+ Add(sItem);
+
+ // restore current position
+ SetCurrent(Get(current));
+}
+
+eOSState myMenuSetupColumns::ProcessKey(eKeys Key) {
+ int iTemp_type [4], i;
+ for (i=0; i<MAX_RECLIST_COLUMNS; i++) {
+ iTemp_type[i] = preclistcolumns[i].Type;
+ }
+
+ eOSState state = cOsdMenu::ProcessKey(Key);
+
+ int iChanged = -1;
+ for (i=0; i<MAX_RECLIST_COLUMNS && iChanged==-1; i++) {
+ if (iTemp_type[i] != preclistcolumns[i].Type) {
+ iChanged = i;
+ }
+ }
+
+ if (iChanged >= 0) {
+ preclistcolumns[iChanged].Width = recListDefaultValues[preclistcolumns[iChanged].Type].Width;
+ preclistcolumns[iChanged].Align = recListDefaultValues[preclistcolumns[iChanged].Type].Align;
+ Set();
+ Display();
+ }
+
+ if (state == osUnknown) {
+ if (HasSubMenu())
+ return osContinue;
+/*
+ switch (Key) {
+ case kOk:
+ return osBack;
+
+ default:
+ break;
+ }
+*/
+ }
+
+ return state;
+}
+
+int msprintf(char **strp, const char *fmt, ...) {
+ va_list ap;
+ va_start (ap, fmt);
+ int res=vasprintf (strp, fmt, ap);
+ va_end (ap);
+ return res;
+}
+
+char* IndentMenuItem(const char* szString, int indentions) {
+ char* szIndented = NULL;
+ msprintf(&szIndented, "%*s", strlen(szString)+indentions*2, szString);
+ return szIndented;
+}
diff --git a/mymenusetup.h b/mymenusetup.h
index 7861155..ec8e7a4 100644
--- a/mymenusetup.h
+++ b/mymenusetup.h
@@ -6,20 +6,64 @@ extern cNestedItemList RecordingDirCommands;
extern cCommands RecordingDirCommands;
#endif
+#define STRN0CPY(dst, src) \
+ do { \
+ strn0cpy(dst, src, sizeof(dst)); \
+ } while(0)
+/*
+#define STRN0CPYLOG(dst, src, Name) \
+ do { \
+ strn0cpy(dst, src, sizeof(dst)); \
+ if(strlen(src) >= sizeof(dst)) \
+ LOGMSG("WARNING: Setting %s truncated to %s !", Name, dst); \
+ } while(0)
+*/
+
+#define MAX_RECLIST_COLUMNS 4
+
+#define COLTYPE_NONE 0
+#define COLTYPE_BLANK 1
+#define COLTYPE_DATE 2
+#define COLTYPE_TIME 3
+#define COLTYPE_DATETIME 4
+#define COLTYPE_LENGTH 5
+#define COLTYPE_RATING 6
+#define COLTYPE_FILE 7
+#define COLTYPE_FILETHENCOMMAND 8
+#define MAX_COLTYPES 9
+
+
+
+static const char * const RecsPerDir_texts[] = {
+ trNOOP("0-9"),
+ trNOOP("0-99"),
+ trNOOP("0-999"),
+ trNOOP("0-9999"),
+ trNOOP("0-99999"),
+ NULL};
+
+
+typedef struct {
+ int Type;
+ char Name[64];
+ int Width;
+ int Align;
+ char Op1[1024];
+ char Op2[1024];
+} RecListColumnType;
+
+
class mySetup
{
public:
mySetup();
- int ShowRecDate;
- int ShowRecTime;
- int ShowRecLength;
- int ShowRecRating;
+ RecListColumnType RecListColumn[MAX_RECLIST_COLUMNS];
int HideMainMenuEntry;
int ReplaceOrgRecMenu;
int PatchNew;
- int ShowOnlyRecs;
int ShowNewRecs;
+ int RecsPerDir;
int DescendSorting;
int GoLastReplayed;
int ReturnToPlugin;
@@ -36,14 +80,12 @@ class myMenuSetup:public cMenuSetupPage
{
private:
const char *sortingtypetexts[2];
- int showrecdate;
- int showrectime;
- int showreclength;
- int showrecrating;
+ RecListColumnType reclistcolumn[MAX_RECLIST_COLUMNS];
int hidemainmenuentry;
int replaceorgrecmenu;
int patchnew;
int shownewrecs;
+ int recsperdir;
int descendsorting;
int golastreplayed;
int returntoplugin;
@@ -56,4 +98,28 @@ class myMenuSetup:public cMenuSetupPage
virtual void Store();
public:
myMenuSetup();
+// virtual ~myMenuSetup();
+ virtual eOSState ProcessKey(eKeys Key);
+};
+
+class myMenuSetupColumns:public cOsdMenu
+{
+ private:
+ RecListColumnType * preclistcolumns;
+ const char* ColumnType_descriptions[9];
+ const char* AlignmentType_names[3];
+ public:
+ myMenuSetupColumns(RecListColumnType *prlcs);
+// virtual ~myMenuSetupColumns();
+ virtual void Set();
+ virtual eOSState ProcessKey(eKeys Key);
};
+
+char* IndentMenuItem(const char*, int indentions=1);
+
+static inline cString Label_SubMenu(const char *Label) {
+ return cString::sprintf("%s ...", Label);
+}
+static inline cOsdItem *SubMenuItem(const char *Label, eOSState state) {
+ return new cOsdItem(Label_SubMenu(Label), state);
+}
diff --git a/myreplaycontrol.c b/myreplaycontrol.c
index 9403962..856ccf4 100644
--- a/myreplaycontrol.c
+++ b/myreplaycontrol.c
@@ -50,7 +50,7 @@ eOSState myReplayControl::ProcessKey(eKeys Key)
cMarks _marks;
#if VDRVERSNUM > 10713
cRecording Recording(filename);
- _marks.Load(filename, Recording.FramesPerSecond(), Recording.IsPesRecording());
+ _marks.Load(filename, Recording.FramesPerSecond(), Recording.IsPesRecording());
#else
_marks.Load(filename);
#endif
diff --git a/po/ca_ES.po b/po/ca_ES.po
index 58380c3..706c99b 100644
--- a/po/ca_ES.po
+++ b/po/ca_ES.po
@@ -9,10 +9,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: 2011-03-19 10:34+0100\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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -148,19 +149,13 @@ msgstr ""
msgid "descending"
msgstr ""
-msgid "Show recording date"
-msgstr ""
-
-msgid "Show recording time"
-msgstr ""
-
-msgid "Show recording length"
+msgid "Show nr. of new recordings of a directory"
msgstr ""
-msgid "Show recording rating"
+msgid "Maximum number of recordings per directory"
msgstr ""
-msgid "Show nr. of new recordings of a directory"
+msgid "Items to show in recording list"
msgstr ""
msgid "Show alternative to new marker"
@@ -193,6 +188,69 @@ msgstr ""
msgid "Use cutter queue"
msgstr ""
+msgid "--none--"
+msgstr ""
+
+msgid "Blank"
+msgstr ""
+
+msgid "Date of Recording"
+msgstr ""
+
+msgid "Time of Recording"
+msgstr ""
+
+msgid "Date and Time of Recording"
+msgstr ""
+
+msgid "Length of Recording"
+msgstr ""
+
+msgid "Rating of Recording"
+msgstr ""
+
+msgid "Content of File"
+msgstr ""
+
+msgid "Content of File, then Result of a Command"
+msgstr ""
+
+msgid "left"
+msgstr ""
+
+msgid "center"
+msgstr ""
+
+msgid "right"
+msgstr ""
+
+msgid "Icon"
+msgstr ""
+
+msgid "(fixed to the first position)"
+msgstr ""
+
+msgid "Item"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Alignment"
+msgstr ""
+
+msgid "Filename"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Name of the recording"
+msgstr ""
+
+msgid "(fixed to the last position)"
+msgstr ""
+
msgid "Recording already in cutter queue!"
msgstr ""
diff --git a/po/cs_CZ.po b/po/cs_CZ.po
index d176a81..3475e23 100644
--- a/po/cs_CZ.po
+++ b/po/cs_CZ.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: 2011-03-19 10:34+0100\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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -146,20 +147,14 @@ msgstr "vzestupně"
msgid "descending"
msgstr "sestupně"
-msgid "Show recording date"
-msgstr "Zobrazit datum nahrávky"
-
-msgid "Show recording time"
-msgstr "Zobrazit čas nahrávky"
-
-msgid "Show recording length"
-msgstr "Zobrazit délku nahrávky"
+msgid "Show nr. of new recordings of a directory"
+msgstr "Zobrazovat počet nových nahrávek v adresáři"
-msgid "Show recording rating"
+msgid "Maximum number of recordings per directory"
msgstr ""
-msgid "Show nr. of new recordings of a directory"
-msgstr "Zobrazovat počet nových nahrávek v adresáři"
+msgid "Items to show in recording list"
+msgstr ""
msgid "Show alternative to new marker"
msgstr "Zobrazit alternativu k novým značkám"
@@ -191,6 +186,69 @@ msgstr "Používat info menu nahrávek VDR"
msgid "Use cutter queue"
msgstr ""
+msgid "--none--"
+msgstr ""
+
+msgid "Blank"
+msgstr ""
+
+msgid "Date of Recording"
+msgstr ""
+
+msgid "Time of Recording"
+msgstr ""
+
+msgid "Date and Time of Recording"
+msgstr ""
+
+msgid "Length of Recording"
+msgstr ""
+
+msgid "Rating of Recording"
+msgstr ""
+
+msgid "Content of File"
+msgstr ""
+
+msgid "Content of File, then Result of a Command"
+msgstr ""
+
+msgid "left"
+msgstr ""
+
+msgid "center"
+msgstr ""
+
+msgid "right"
+msgstr ""
+
+msgid "Icon"
+msgstr ""
+
+msgid "(fixed to the first position)"
+msgstr ""
+
+msgid "Item"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Alignment"
+msgstr ""
+
+msgid "Filename"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Name of the recording"
+msgstr ""
+
+msgid "(fixed to the last position)"
+msgstr ""
+
msgid "Recording already in cutter queue!"
msgstr "Nahrávka je již ve střihové frontě!"
@@ -212,5 +270,14 @@ msgstr "Probíhá přesouvání nahrávek"
msgid "Can't start editing process!"
msgstr ""
+#~ msgid "Show recording date"
+#~ msgstr "Zobrazit datum nahrávky"
+
+#~ msgid "Show recording time"
+#~ msgstr "Zobrazit čas nahrávky"
+
+#~ msgid "Show recording length"
+#~ msgstr "Zobrazit délku nahrávky"
+
#~ msgid "Patch font"
#~ msgstr "Upravit font"
diff --git a/po/da_DK.po b/po/da_DK.po
index 028dfc2..b133be0 100644
--- a/po/da_DK.po
+++ b/po/da_DK.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: 2011-03-19 10:34+0100\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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -146,19 +147,13 @@ msgstr ""
msgid "descending"
msgstr ""
-msgid "Show recording date"
-msgstr ""
-
-msgid "Show recording time"
-msgstr ""
-
-msgid "Show recording length"
+msgid "Show nr. of new recordings of a directory"
msgstr ""
-msgid "Show recording rating"
+msgid "Maximum number of recordings per directory"
msgstr ""
-msgid "Show nr. of new recordings of a directory"
+msgid "Items to show in recording list"
msgstr ""
msgid "Show alternative to new marker"
@@ -191,6 +186,69 @@ msgstr ""
msgid "Use cutter queue"
msgstr ""
+msgid "--none--"
+msgstr ""
+
+msgid "Blank"
+msgstr ""
+
+msgid "Date of Recording"
+msgstr ""
+
+msgid "Time of Recording"
+msgstr ""
+
+msgid "Date and Time of Recording"
+msgstr ""
+
+msgid "Length of Recording"
+msgstr ""
+
+msgid "Rating of Recording"
+msgstr ""
+
+msgid "Content of File"
+msgstr ""
+
+msgid "Content of File, then Result of a Command"
+msgstr ""
+
+msgid "left"
+msgstr ""
+
+msgid "center"
+msgstr ""
+
+msgid "right"
+msgstr ""
+
+msgid "Icon"
+msgstr ""
+
+msgid "(fixed to the first position)"
+msgstr ""
+
+msgid "Item"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Alignment"
+msgstr ""
+
+msgid "Filename"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Name of the recording"
+msgstr ""
+
+msgid "(fixed to the last position)"
+msgstr ""
+
msgid "Recording already in cutter queue!"
msgstr ""
diff --git a/po/de_DE.po b/po/de_DE.po
index 3accc9c..912931f 100644
--- a/po/de_DE.po
+++ b/po/de_DE.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-07-03 10:55+0200\n"
-"PO-Revision-Date: 2008-03-15 16:21+0100\n"
-"Last-Translator: Klaus Schmidinger <kls@cadsoft.de>\n"
-"Language-Team: <vdr@linuxtv.org>\n"
+"POT-Creation-Date: 2011-01-24 12:19+0100\n"
+"PO-Revision-Date: 2011-01-21 14:17+0100\n"
+"Last-Translator: Carsten Siebholz <sibbi <AT> helmutauer <DOT> de>\n"
+"Language-Team: <vdr@linuxtv.org>\n"
+"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -146,21 +147,15 @@ msgstr "aufsteigend"
msgid "descending"
msgstr "absteigend"
-msgid "Show recording date"
-msgstr "Aufnahmedatum anzeigen"
-
-msgid "Show recording time"
-msgstr "Aufnahmezeit anzeigen"
-
-msgid "Show recording length"
-msgstr "Aufnahmelänge anzeigen"
-
-msgid "Show recording rating"
-msgstr "Aufnahmenbewertung anzeigen"
-
msgid "Show nr. of new recordings of a directory"
msgstr "Anzahl der neuen Aufz. eines Ordners anzeigen"
+msgid "Maximum number of recordings per directory"
+msgstr "Maximale Zahl der Aufzeichnungen pro Ordner"
+
+msgid "Items to show in recording list"
+msgstr "Anzuzeigende Elemente im Aufzeichnungs-Menü"
+
msgid "Show alternative to new marker"
msgstr "Alternative zu Neu-Marker anzeigen"
@@ -191,6 +186,69 @@ msgstr "VDRs Aufzeichnungs-Info-Menü benutzen"
msgid "Use cutter queue"
msgstr "Schnittwarteschlange benutzen"
+msgid "--none--"
+msgstr "--leer--"
+
+msgid "Blank"
+msgstr "Leerzeichen"
+
+msgid "Date of Recording"
+msgstr "Datum der Aufzeichnung"
+
+msgid "Time of Recording"
+msgstr "Uhrzeit der Aufzeichnung"
+
+msgid "Date and Time of Recording"
+msgstr "Datum und Uhrzeit der Aufzeichnung"
+
+msgid "Length of Recording"
+msgstr "Dauer der Aufzeichnung"
+
+msgid "Rating of Recording"
+msgstr "Bewertung der Aufzeichnung"
+
+msgid "Content of File"
+msgstr "Inhalt einer Datei"
+
+msgid "Content of File, then Result of a Command"
+msgstr "Inhalt einer Datei, sonst Rückgabewert eines Befehls"
+
+msgid "left"
+msgstr "linksbündig"
+
+msgid "center"
+msgstr "zentriert"
+
+msgid "right"
+msgstr "rechtsbündig"
+
+msgid "Icon"
+msgstr "Symbol"
+
+msgid "(fixed to the first position)"
+msgstr "(fest auf erster Position)"
+
+msgid "Item"
+msgstr "Element"
+
+msgid "Width"
+msgstr "Breite"
+
+msgid "Alignment"
+msgstr "Ausrichtung"
+
+msgid "Filename"
+msgstr "Dateiname"
+
+msgid "Command"
+msgstr "Befehl"
+
+msgid "Name of the recording"
+msgstr "Name der Aufzeichnung"
+
+msgid "(fixed to the last position)"
+msgstr "(fest auf letzter Position)"
+
msgid "Recording already in cutter queue!"
msgstr "Aufzeichnung bereits in Schnitt-Warteschlange"
diff --git a/po/el_GR.po b/po/el_GR.po
index 7786912..97d5ebe 100644
--- a/po/el_GR.po
+++ b/po/el_GR.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: 2011-03-19 10:34+0100\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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-7\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -146,19 +147,13 @@ msgstr ""
msgid "descending"
msgstr ""
-msgid "Show recording date"
-msgstr ""
-
-msgid "Show recording time"
-msgstr ""
-
-msgid "Show recording length"
+msgid "Show nr. of new recordings of a directory"
msgstr ""
-msgid "Show recording rating"
+msgid "Maximum number of recordings per directory"
msgstr ""
-msgid "Show nr. of new recordings of a directory"
+msgid "Items to show in recording list"
msgstr ""
msgid "Show alternative to new marker"
@@ -191,6 +186,69 @@ msgstr ""
msgid "Use cutter queue"
msgstr ""
+msgid "--none--"
+msgstr ""
+
+msgid "Blank"
+msgstr ""
+
+msgid "Date of Recording"
+msgstr ""
+
+msgid "Time of Recording"
+msgstr ""
+
+msgid "Date and Time of Recording"
+msgstr ""
+
+msgid "Length of Recording"
+msgstr ""
+
+msgid "Rating of Recording"
+msgstr ""
+
+msgid "Content of File"
+msgstr ""
+
+msgid "Content of File, then Result of a Command"
+msgstr ""
+
+msgid "left"
+msgstr ""
+
+msgid "center"
+msgstr ""
+
+msgid "right"
+msgstr ""
+
+msgid "Icon"
+msgstr ""
+
+msgid "(fixed to the first position)"
+msgstr ""
+
+msgid "Item"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Alignment"
+msgstr ""
+
+msgid "Filename"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Name of the recording"
+msgstr ""
+
+msgid "(fixed to the last position)"
+msgstr ""
+
msgid "Recording already in cutter queue!"
msgstr ""
diff --git a/po/es_ES.po b/po/es_ES.po
index f6495ce..d3f4faf 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: 2011-03-19 10:34+0100\n"
"PO-Revision-Date: 2008-03-15 16:21+0100\n"
"Last-Translator: Ruben Nunez Francisco <ruben.nunez@tang-it.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"
@@ -146,19 +147,13 @@ msgstr ""
msgid "descending"
msgstr ""
-msgid "Show recording date"
-msgstr ""
-
-msgid "Show recording time"
-msgstr ""
-
-msgid "Show recording length"
+msgid "Show nr. of new recordings of a directory"
msgstr ""
-msgid "Show recording rating"
+msgid "Maximum number of recordings per directory"
msgstr ""
-msgid "Show nr. of new recordings of a directory"
+msgid "Items to show in recording list"
msgstr ""
msgid "Show alternative to new marker"
@@ -191,6 +186,69 @@ msgstr ""
msgid "Use cutter queue"
msgstr ""
+msgid "--none--"
+msgstr ""
+
+msgid "Blank"
+msgstr ""
+
+msgid "Date of Recording"
+msgstr ""
+
+msgid "Time of Recording"
+msgstr ""
+
+msgid "Date and Time of Recording"
+msgstr ""
+
+msgid "Length of Recording"
+msgstr ""
+
+msgid "Rating of Recording"
+msgstr ""
+
+msgid "Content of File"
+msgstr ""
+
+msgid "Content of File, then Result of a Command"
+msgstr ""
+
+msgid "left"
+msgstr ""
+
+msgid "center"
+msgstr ""
+
+msgid "right"
+msgstr ""
+
+msgid "Icon"
+msgstr ""
+
+msgid "(fixed to the first position)"
+msgstr ""
+
+msgid "Item"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Alignment"
+msgstr ""
+
+msgid "Filename"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Name of the recording"
+msgstr ""
+
+msgid "(fixed to the last position)"
+msgstr ""
+
msgid "Recording already in cutter queue!"
msgstr ""
diff --git a/po/et_EE.po b/po/et_EE.po
index 363b88d..b5d202a 100644
--- a/po/et_EE.po
+++ b/po/et_EE.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: 2011-03-19 10:34+0100\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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-13\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -146,19 +147,13 @@ msgstr ""
msgid "descending"
msgstr ""
-msgid "Show recording date"
-msgstr ""
-
-msgid "Show recording time"
-msgstr ""
-
-msgid "Show recording length"
+msgid "Show nr. of new recordings of a directory"
msgstr ""
-msgid "Show recording rating"
+msgid "Maximum number of recordings per directory"
msgstr ""
-msgid "Show nr. of new recordings of a directory"
+msgid "Items to show in recording list"
msgstr ""
msgid "Show alternative to new marker"
@@ -191,6 +186,69 @@ msgstr ""
msgid "Use cutter queue"
msgstr ""
+msgid "--none--"
+msgstr ""
+
+msgid "Blank"
+msgstr ""
+
+msgid "Date of Recording"
+msgstr ""
+
+msgid "Time of Recording"
+msgstr ""
+
+msgid "Date and Time of Recording"
+msgstr ""
+
+msgid "Length of Recording"
+msgstr ""
+
+msgid "Rating of Recording"
+msgstr ""
+
+msgid "Content of File"
+msgstr ""
+
+msgid "Content of File, then Result of a Command"
+msgstr ""
+
+msgid "left"
+msgstr ""
+
+msgid "center"
+msgstr ""
+
+msgid "right"
+msgstr ""
+
+msgid "Icon"
+msgstr ""
+
+msgid "(fixed to the first position)"
+msgstr ""
+
+msgid "Item"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Alignment"
+msgstr ""
+
+msgid "Filename"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Name of the recording"
+msgstr ""
+
+msgid "(fixed to the last position)"
+msgstr ""
+
msgid "Recording already in cutter queue!"
msgstr ""
diff --git a/po/fi_FI.po b/po/fi_FI.po
index 6fb7a2a..abfc2db 100644
--- a/po/fi_FI.po
+++ b/po/fi_FI.po
@@ -10,10 +10,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: 2011-03-19 10:34+0100\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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -149,20 +150,14 @@ msgstr "nouseva"
msgid "descending"
msgstr "laskeva"
-msgid "Show recording date"
-msgstr "Näytä tallenteen päiväys"
-
-msgid "Show recording time"
-msgstr "Näytä tallenteen ajankohta"
-
-msgid "Show recording length"
-msgstr "Näytä tallenteen kesto"
+msgid "Show nr. of new recordings of a directory"
+msgstr "Näytä uusien tallenteiden lukumäärä"
-msgid "Show recording rating"
+msgid "Maximum number of recordings per directory"
msgstr ""
-msgid "Show nr. of new recordings of a directory"
-msgstr "Näytä uusien tallenteiden lukumäärä"
+msgid "Items to show in recording list"
+msgstr ""
msgid "Show alternative to new marker"
msgstr "Merkitse uudet tallenteet symbolilla"
@@ -194,6 +189,69 @@ msgstr "Käytä alkuperäistä tallenteen tiedot -valikkoa"
msgid "Use cutter queue"
msgstr ""
+msgid "--none--"
+msgstr ""
+
+msgid "Blank"
+msgstr ""
+
+msgid "Date of Recording"
+msgstr ""
+
+msgid "Time of Recording"
+msgstr ""
+
+msgid "Date and Time of Recording"
+msgstr ""
+
+msgid "Length of Recording"
+msgstr ""
+
+msgid "Rating of Recording"
+msgstr ""
+
+msgid "Content of File"
+msgstr ""
+
+msgid "Content of File, then Result of a Command"
+msgstr ""
+
+msgid "left"
+msgstr ""
+
+msgid "center"
+msgstr ""
+
+msgid "right"
+msgstr ""
+
+msgid "Icon"
+msgstr ""
+
+msgid "(fixed to the first position)"
+msgstr ""
+
+msgid "Item"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Alignment"
+msgstr ""
+
+msgid "Filename"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Name of the recording"
+msgstr ""
+
+msgid "(fixed to the last position)"
+msgstr ""
+
msgid "Recording already in cutter queue!"
msgstr "Tallenne on jo leikkausjonossa!"
@@ -215,5 +273,14 @@ msgstr "Tallenteiden siirto käynnissä"
msgid "Can't start editing process!"
msgstr ""
+#~ msgid "Show recording date"
+#~ msgstr "Näytä tallenteen päiväys"
+
+#~ msgid "Show recording time"
+#~ msgstr "Näytä tallenteen ajankohta"
+
+#~ msgid "Show recording length"
+#~ msgstr "Näytä tallenteen kesto"
+
#~ msgid "Patch font"
#~ msgstr "Käytä paikattua kirjasinta"
diff --git a/po/fr_FR.po b/po/fr_FR.po
index 34e2899..9399838 100644
--- a/po/fr_FR.po
+++ b/po/fr_FR.po
@@ -10,10 +10,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: 2011-03-19 10:34+0100\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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -149,20 +150,14 @@ msgstr "montant"
msgid "descending"
msgstr "descendant"
-msgid "Show recording date"
-msgstr "Afiicher la date d'enregistrement"
-
-msgid "Show recording time"
-msgstr "Afficher l'heure d'enregistrement"
-
-msgid "Show recording length"
-msgstr "Afficher la longeur de l'enregistrement"
+msgid "Show nr. of new recordings of a directory"
+msgstr "Afficher le nombre de nouveaux enregistrements dans les dossiers"
-msgid "Show recording rating"
+msgid "Maximum number of recordings per directory"
msgstr ""
-msgid "Show nr. of new recordings of a directory"
-msgstr "Afficher le nombre de nouveaux enregistrements dans les dossiers"
+msgid "Items to show in recording list"
+msgstr ""
msgid "Show alternative to new marker"
msgstr "Afficher les nouveaux symbols alternatifs"
@@ -194,6 +189,69 @@ msgstr "Utiliser le menu info enregistrement de VDR"
msgid "Use cutter queue"
msgstr ""
+msgid "--none--"
+msgstr ""
+
+msgid "Blank"
+msgstr ""
+
+msgid "Date of Recording"
+msgstr ""
+
+msgid "Time of Recording"
+msgstr ""
+
+msgid "Date and Time of Recording"
+msgstr ""
+
+msgid "Length of Recording"
+msgstr ""
+
+msgid "Rating of Recording"
+msgstr ""
+
+msgid "Content of File"
+msgstr ""
+
+msgid "Content of File, then Result of a Command"
+msgstr ""
+
+msgid "left"
+msgstr ""
+
+msgid "center"
+msgstr ""
+
+msgid "right"
+msgstr ""
+
+msgid "Icon"
+msgstr ""
+
+msgid "(fixed to the first position)"
+msgstr ""
+
+msgid "Item"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Alignment"
+msgstr ""
+
+msgid "Filename"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Name of the recording"
+msgstr ""
+
+msgid "(fixed to the last position)"
+msgstr ""
+
msgid "Recording already in cutter queue!"
msgstr "L'enregistrement est déjŕ dans la queue d'attente découpe!"
@@ -215,5 +273,14 @@ msgstr "Des enregistrements sont en déplacement"
msgid "Can't start editing process!"
msgstr ""
+#~ msgid "Show recording date"
+#~ msgstr "Afiicher la date d'enregistrement"
+
+#~ msgid "Show recording time"
+#~ msgstr "Afficher l'heure d'enregistrement"
+
+#~ msgid "Show recording length"
+#~ msgstr "Afficher la longeur de l'enregistrement"
+
#~ msgid "Patch font"
#~ msgstr "Patch des police"
diff --git a/po/hr_HR.po b/po/hr_HR.po
index fd570e0..0f8a956 100644
--- a/po/hr_HR.po
+++ b/po/hr_HR.po
@@ -8,10 +8,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: 2011-03-19 10:34+0100\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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -147,19 +148,13 @@ msgstr ""
msgid "descending"
msgstr ""
-msgid "Show recording date"
-msgstr ""
-
-msgid "Show recording time"
-msgstr ""
-
-msgid "Show recording length"
+msgid "Show nr. of new recordings of a directory"
msgstr ""
-msgid "Show recording rating"
+msgid "Maximum number of recordings per directory"
msgstr ""
-msgid "Show nr. of new recordings of a directory"
+msgid "Items to show in recording list"
msgstr ""
msgid "Show alternative to new marker"
@@ -192,6 +187,69 @@ msgstr ""
msgid "Use cutter queue"
msgstr ""
+msgid "--none--"
+msgstr ""
+
+msgid "Blank"
+msgstr ""
+
+msgid "Date of Recording"
+msgstr ""
+
+msgid "Time of Recording"
+msgstr ""
+
+msgid "Date and Time of Recording"
+msgstr ""
+
+msgid "Length of Recording"
+msgstr ""
+
+msgid "Rating of Recording"
+msgstr ""
+
+msgid "Content of File"
+msgstr ""
+
+msgid "Content of File, then Result of a Command"
+msgstr ""
+
+msgid "left"
+msgstr ""
+
+msgid "center"
+msgstr ""
+
+msgid "right"
+msgstr ""
+
+msgid "Icon"
+msgstr ""
+
+msgid "(fixed to the first position)"
+msgstr ""
+
+msgid "Item"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Alignment"
+msgstr ""
+
+msgid "Filename"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Name of the recording"
+msgstr ""
+
+msgid "(fixed to the last position)"
+msgstr ""
+
msgid "Recording already in cutter queue!"
msgstr ""
diff --git a/po/hu_HU.po b/po/hu_HU.po
index aeae350..ae3a841 100644
--- a/po/hu_HU.po
+++ b/po/hu_HU.po
@@ -8,10 +8,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: 2011-03-19 10:34+0100\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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -147,19 +148,13 @@ msgstr ""
msgid "descending"
msgstr ""
-msgid "Show recording date"
-msgstr ""
-
-msgid "Show recording time"
-msgstr ""
-
-msgid "Show recording length"
+msgid "Show nr. of new recordings of a directory"
msgstr ""
-msgid "Show recording rating"
+msgid "Maximum number of recordings per directory"
msgstr ""
-msgid "Show nr. of new recordings of a directory"
+msgid "Items to show in recording list"
msgstr ""
msgid "Show alternative to new marker"
@@ -192,6 +187,69 @@ msgstr ""
msgid "Use cutter queue"
msgstr ""
+msgid "--none--"
+msgstr ""
+
+msgid "Blank"
+msgstr ""
+
+msgid "Date of Recording"
+msgstr ""
+
+msgid "Time of Recording"
+msgstr ""
+
+msgid "Date and Time of Recording"
+msgstr ""
+
+msgid "Length of Recording"
+msgstr ""
+
+msgid "Rating of Recording"
+msgstr ""
+
+msgid "Content of File"
+msgstr ""
+
+msgid "Content of File, then Result of a Command"
+msgstr ""
+
+msgid "left"
+msgstr ""
+
+msgid "center"
+msgstr ""
+
+msgid "right"
+msgstr ""
+
+msgid "Icon"
+msgstr ""
+
+msgid "(fixed to the first position)"
+msgstr ""
+
+msgid "Item"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Alignment"
+msgstr ""
+
+msgid "Filename"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Name of the recording"
+msgstr ""
+
+msgid "(fixed to the last position)"
+msgstr ""
+
msgid "Recording already in cutter queue!"
msgstr ""
diff --git a/po/it_IT.po b/po/it_IT.po
index f740e31..404aa22 100644
--- a/po/it_IT.po
+++ b/po/it_IT.po
@@ -9,10 +9,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: 2011-03-19 10:34+0100\n"
"PO-Revision-Date: 2010-08-07 23:10+0100\n"
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
"Language-Team: <vdr@linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -151,21 +152,15 @@ msgstr "crescente"
msgid "descending"
msgstr "decrescente"
-msgid "Show recording date"
-msgstr "Mostra data registrazione"
-
-msgid "Show recording time"
-msgstr "Mostra ora registrazione"
-
-msgid "Show recording length"
-msgstr "Mostra durata registrazione"
-
-msgid "Show recording rating"
-msgstr "Mostra valutazione registrazione"
-
msgid "Show nr. of new recordings of a directory"
msgstr "Mostra num. nuove reg. directory"
+msgid "Maximum number of recordings per directory"
+msgstr ""
+
+msgid "Items to show in recording list"
+msgstr ""
+
msgid "Show alternative to new marker"
msgstr "Mostra opzioni nuovo marcatore"
@@ -196,6 +191,69 @@ msgstr "Utilizza menu info reg. di VDR"
msgid "Use cutter queue"
msgstr "Utilizza coda tagli"
+msgid "--none--"
+msgstr ""
+
+msgid "Blank"
+msgstr ""
+
+msgid "Date of Recording"
+msgstr ""
+
+msgid "Time of Recording"
+msgstr ""
+
+msgid "Date and Time of Recording"
+msgstr ""
+
+msgid "Length of Recording"
+msgstr ""
+
+msgid "Rating of Recording"
+msgstr ""
+
+msgid "Content of File"
+msgstr ""
+
+msgid "Content of File, then Result of a Command"
+msgstr ""
+
+msgid "left"
+msgstr ""
+
+msgid "center"
+msgstr ""
+
+msgid "right"
+msgstr ""
+
+msgid "Icon"
+msgstr ""
+
+msgid "(fixed to the first position)"
+msgstr ""
+
+msgid "Item"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Alignment"
+msgstr ""
+
+msgid "Filename"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Name of the recording"
+msgstr ""
+
+msgid "(fixed to the last position)"
+msgstr ""
+
msgid "Recording already in cutter queue!"
msgstr "Registrazione giĂ  presente nella coda tagli!"
@@ -216,3 +274,15 @@ msgstr "Spostamento registrazioni in corso"
msgid "Can't start editing process!"
msgstr "Impossibile avviare il processo di modifica!"
+
+#~ msgid "Show recording date"
+#~ msgstr "Mostra data registrazione"
+
+#~ msgid "Show recording time"
+#~ msgstr "Mostra ora registrazione"
+
+#~ msgid "Show recording length"
+#~ msgstr "Mostra durata registrazione"
+
+#~ msgid "Show recording rating"
+#~ msgstr "Mostra valutazione registrazione"
diff --git a/po/nl_NL.po b/po/nl_NL.po
index 4a436d8..74b93dd 100644
--- a/po/nl_NL.po
+++ b/po/nl_NL.po
@@ -9,10 +9,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: 2011-03-19 10:34+0100\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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -148,19 +149,13 @@ msgstr ""
msgid "descending"
msgstr ""
-msgid "Show recording date"
-msgstr ""
-
-msgid "Show recording time"
-msgstr ""
-
-msgid "Show recording length"
+msgid "Show nr. of new recordings of a directory"
msgstr ""
-msgid "Show recording rating"
+msgid "Maximum number of recordings per directory"
msgstr ""
-msgid "Show nr. of new recordings of a directory"
+msgid "Items to show in recording list"
msgstr ""
msgid "Show alternative to new marker"
@@ -193,6 +188,69 @@ msgstr ""
msgid "Use cutter queue"
msgstr ""
+msgid "--none--"
+msgstr ""
+
+msgid "Blank"
+msgstr ""
+
+msgid "Date of Recording"
+msgstr ""
+
+msgid "Time of Recording"
+msgstr ""
+
+msgid "Date and Time of Recording"
+msgstr ""
+
+msgid "Length of Recording"
+msgstr ""
+
+msgid "Rating of Recording"
+msgstr ""
+
+msgid "Content of File"
+msgstr ""
+
+msgid "Content of File, then Result of a Command"
+msgstr ""
+
+msgid "left"
+msgstr ""
+
+msgid "center"
+msgstr ""
+
+msgid "right"
+msgstr ""
+
+msgid "Icon"
+msgstr ""
+
+msgid "(fixed to the first position)"
+msgstr ""
+
+msgid "Item"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Alignment"
+msgstr ""
+
+msgid "Filename"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Name of the recording"
+msgstr ""
+
+msgid "(fixed to the last position)"
+msgstr ""
+
msgid "Recording already in cutter queue!"
msgstr ""
diff --git a/po/nn_NO.po b/po/nn_NO.po
index 93c92b4..56bf88a 100644
--- a/po/nn_NO.po
+++ b/po/nn_NO.po
@@ -8,10 +8,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: 2011-03-19 10:34+0100\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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -147,19 +148,13 @@ msgstr ""
msgid "descending"
msgstr ""
-msgid "Show recording date"
-msgstr ""
-
-msgid "Show recording time"
-msgstr ""
-
-msgid "Show recording length"
+msgid "Show nr. of new recordings of a directory"
msgstr ""
-msgid "Show recording rating"
+msgid "Maximum number of recordings per directory"
msgstr ""
-msgid "Show nr. of new recordings of a directory"
+msgid "Items to show in recording list"
msgstr ""
msgid "Show alternative to new marker"
@@ -192,6 +187,69 @@ msgstr ""
msgid "Use cutter queue"
msgstr ""
+msgid "--none--"
+msgstr ""
+
+msgid "Blank"
+msgstr ""
+
+msgid "Date of Recording"
+msgstr ""
+
+msgid "Time of Recording"
+msgstr ""
+
+msgid "Date and Time of Recording"
+msgstr ""
+
+msgid "Length of Recording"
+msgstr ""
+
+msgid "Rating of Recording"
+msgstr ""
+
+msgid "Content of File"
+msgstr ""
+
+msgid "Content of File, then Result of a Command"
+msgstr ""
+
+msgid "left"
+msgstr ""
+
+msgid "center"
+msgstr ""
+
+msgid "right"
+msgstr ""
+
+msgid "Icon"
+msgstr ""
+
+msgid "(fixed to the first position)"
+msgstr ""
+
+msgid "Item"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Alignment"
+msgstr ""
+
+msgid "Filename"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Name of the recording"
+msgstr ""
+
+msgid "(fixed to the last position)"
+msgstr ""
+
msgid "Recording already in cutter queue!"
msgstr ""
diff --git a/po/pl_PL.po b/po/pl_PL.po
index f1affd2..151ae53 100644
--- a/po/pl_PL.po
+++ b/po/pl_PL.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: 2011-03-19 10:34+0100\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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -146,19 +147,13 @@ msgstr ""
msgid "descending"
msgstr ""
-msgid "Show recording date"
-msgstr ""
-
-msgid "Show recording time"
-msgstr ""
-
-msgid "Show recording length"
+msgid "Show nr. of new recordings of a directory"
msgstr ""
-msgid "Show recording rating"
+msgid "Maximum number of recordings per directory"
msgstr ""
-msgid "Show nr. of new recordings of a directory"
+msgid "Items to show in recording list"
msgstr ""
msgid "Show alternative to new marker"
@@ -191,6 +186,69 @@ msgstr ""
msgid "Use cutter queue"
msgstr ""
+msgid "--none--"
+msgstr ""
+
+msgid "Blank"
+msgstr ""
+
+msgid "Date of Recording"
+msgstr ""
+
+msgid "Time of Recording"
+msgstr ""
+
+msgid "Date and Time of Recording"
+msgstr ""
+
+msgid "Length of Recording"
+msgstr ""
+
+msgid "Rating of Recording"
+msgstr ""
+
+msgid "Content of File"
+msgstr ""
+
+msgid "Content of File, then Result of a Command"
+msgstr ""
+
+msgid "left"
+msgstr ""
+
+msgid "center"
+msgstr ""
+
+msgid "right"
+msgstr ""
+
+msgid "Icon"
+msgstr ""
+
+msgid "(fixed to the first position)"
+msgstr ""
+
+msgid "Item"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Alignment"
+msgstr ""
+
+msgid "Filename"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Name of the recording"
+msgstr ""
+
+msgid "(fixed to the last position)"
+msgstr ""
+
msgid "Recording already in cutter queue!"
msgstr ""
diff --git a/po/pt_PT.po b/po/pt_PT.po
index 09c4727..2d7fb47 100644
--- a/po/pt_PT.po
+++ b/po/pt_PT.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: 2011-03-19 10:34+0100\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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -146,19 +147,13 @@ msgstr ""
msgid "descending"
msgstr ""
-msgid "Show recording date"
-msgstr ""
-
-msgid "Show recording time"
-msgstr ""
-
-msgid "Show recording length"
+msgid "Show nr. of new recordings of a directory"
msgstr ""
-msgid "Show recording rating"
+msgid "Maximum number of recordings per directory"
msgstr ""
-msgid "Show nr. of new recordings of a directory"
+msgid "Items to show in recording list"
msgstr ""
msgid "Show alternative to new marker"
@@ -191,6 +186,69 @@ msgstr ""
msgid "Use cutter queue"
msgstr ""
+msgid "--none--"
+msgstr ""
+
+msgid "Blank"
+msgstr ""
+
+msgid "Date of Recording"
+msgstr ""
+
+msgid "Time of Recording"
+msgstr ""
+
+msgid "Date and Time of Recording"
+msgstr ""
+
+msgid "Length of Recording"
+msgstr ""
+
+msgid "Rating of Recording"
+msgstr ""
+
+msgid "Content of File"
+msgstr ""
+
+msgid "Content of File, then Result of a Command"
+msgstr ""
+
+msgid "left"
+msgstr ""
+
+msgid "center"
+msgstr ""
+
+msgid "right"
+msgstr ""
+
+msgid "Icon"
+msgstr ""
+
+msgid "(fixed to the first position)"
+msgstr ""
+
+msgid "Item"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Alignment"
+msgstr ""
+
+msgid "Filename"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Name of the recording"
+msgstr ""
+
+msgid "(fixed to the last position)"
+msgstr ""
+
msgid "Recording already in cutter queue!"
msgstr ""
diff --git a/po/ro_RO.po b/po/ro_RO.po
index da7f234..ef1826a 100644
--- a/po/ro_RO.po
+++ b/po/ro_RO.po
@@ -8,10 +8,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: 2011-03-19 10:34+0100\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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -147,19 +148,13 @@ msgstr ""
msgid "descending"
msgstr ""
-msgid "Show recording date"
-msgstr ""
-
-msgid "Show recording time"
-msgstr ""
-
-msgid "Show recording length"
+msgid "Show nr. of new recordings of a directory"
msgstr ""
-msgid "Show recording rating"
+msgid "Maximum number of recordings per directory"
msgstr ""
-msgid "Show nr. of new recordings of a directory"
+msgid "Items to show in recording list"
msgstr ""
msgid "Show alternative to new marker"
@@ -192,6 +187,69 @@ msgstr ""
msgid "Use cutter queue"
msgstr ""
+msgid "--none--"
+msgstr ""
+
+msgid "Blank"
+msgstr ""
+
+msgid "Date of Recording"
+msgstr ""
+
+msgid "Time of Recording"
+msgstr ""
+
+msgid "Date and Time of Recording"
+msgstr ""
+
+msgid "Length of Recording"
+msgstr ""
+
+msgid "Rating of Recording"
+msgstr ""
+
+msgid "Content of File"
+msgstr ""
+
+msgid "Content of File, then Result of a Command"
+msgstr ""
+
+msgid "left"
+msgstr ""
+
+msgid "center"
+msgstr ""
+
+msgid "right"
+msgstr ""
+
+msgid "Icon"
+msgstr ""
+
+msgid "(fixed to the first position)"
+msgstr ""
+
+msgid "Item"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Alignment"
+msgstr ""
+
+msgid "Filename"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Name of the recording"
+msgstr ""
+
+msgid "(fixed to the last position)"
+msgstr ""
+
msgid "Recording already in cutter queue!"
msgstr ""
diff --git a/po/ru_RU.po b/po/ru_RU.po
index 9728897..d4033f7 100644
--- a/po/ru_RU.po
+++ b/po/ru_RU.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: 2011-03-19 10:34+0100\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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-5\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -146,19 +147,13 @@ msgstr ""
msgid "descending"
msgstr ""
-msgid "Show recording date"
-msgstr ""
-
-msgid "Show recording time"
-msgstr ""
-
-msgid "Show recording length"
+msgid "Show nr. of new recordings of a directory"
msgstr ""
-msgid "Show recording rating"
+msgid "Maximum number of recordings per directory"
msgstr ""
-msgid "Show nr. of new recordings of a directory"
+msgid "Items to show in recording list"
msgstr ""
msgid "Show alternative to new marker"
@@ -191,6 +186,69 @@ msgstr ""
msgid "Use cutter queue"
msgstr ""
+msgid "--none--"
+msgstr ""
+
+msgid "Blank"
+msgstr ""
+
+msgid "Date of Recording"
+msgstr ""
+
+msgid "Time of Recording"
+msgstr ""
+
+msgid "Date and Time of Recording"
+msgstr ""
+
+msgid "Length of Recording"
+msgstr ""
+
+msgid "Rating of Recording"
+msgstr ""
+
+msgid "Content of File"
+msgstr ""
+
+msgid "Content of File, then Result of a Command"
+msgstr ""
+
+msgid "left"
+msgstr ""
+
+msgid "center"
+msgstr ""
+
+msgid "right"
+msgstr ""
+
+msgid "Icon"
+msgstr ""
+
+msgid "(fixed to the first position)"
+msgstr ""
+
+msgid "Item"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Alignment"
+msgstr ""
+
+msgid "Filename"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Name of the recording"
+msgstr ""
+
+msgid "(fixed to the last position)"
+msgstr ""
+
msgid "Recording already in cutter queue!"
msgstr ""
diff --git a/po/sk_SK.po b/po/sk_SK.po
index f7726d7..fc3585e 100755
--- a/po/sk_SK.po
+++ b/po/sk_SK.po
@@ -7,10 +7,11 @@ msgid ""
msgstr ""
"Project-Id-Version: ExtRecMenu 1.2\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2008-08-13 08:38+0200\n"
+"POT-Creation-Date: 2011-03-19 10:34+0100\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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -78,6 +79,9 @@ msgstr "Veľkosť"
msgid "Error while mounting DVD!"
msgstr "Chyba během připojování DVD!"
+msgid "Error while mounting Archive-HDD!"
+msgstr ""
+
msgid "Button$Commands"
msgstr "Príkazy"
@@ -91,6 +95,22 @@ msgid "Button$Info"
msgstr "Info"
#, c-format
+msgid "Please attach Archive-HDD %s"
+msgstr ""
+
+msgid "Recording not found on Archive-HDD!"
+msgstr ""
+
+msgid "Error while linking [0-9]*.vdr!"
+msgstr "Chyba pri spojení [0-9]*.vdr!"
+
+msgid "sudo or mount --bind / umount error (vfat system)"
+msgstr "sudo alebo mount --bind / umount zlyhal (VFAT-systém)"
+
+msgid "Script 'hddarchive.sh' not found!"
+msgstr ""
+
+#, c-format
msgid "Please insert DVD %s"
msgstr "Vložte prosím DVD %s"
@@ -103,12 +123,6 @@ msgstr "V mechanike nie je DVD!"
msgid "Recording not found on DVD!"
msgstr "Nahrávka nebola na DVD nájdená!"
-msgid "Error while linking [0-9]*.vdr!"
-msgstr "Chyba pri spojení [0-9]*.vdr!"
-
-msgid "sudo or mount --bind / umount error (vfat system)"
-msgstr "sudo alebo mount --bind / umount zlyhal (VFAT-systém)"
-
msgid "Script 'dvdarchive.sh' not found!"
msgstr "Skript 'dvdarchive.sh' nebol nájdený!"
@@ -133,18 +147,15 @@ msgstr "vzostupne"
msgid "descending"
msgstr "zostupne"
-msgid "Show recording date"
-msgstr "Zobraziť dátum nahrávky"
-
-msgid "Show recording time"
-msgstr "Zobraziť čas nahrávky"
-
-msgid "Show recording length"
-msgstr "Zobraziť dĺžku nahrávky"
-
msgid "Show nr. of new recordings of a directory"
msgstr "Zobrazovať počet nových nahrávok v adresári"
+msgid "Maximum number of recordings per directory"
+msgstr ""
+
+msgid "Items to show in recording list"
+msgstr ""
+
msgid "Show alternative to new marker"
msgstr "Zobraziť alternatívu k novým značkám"
@@ -166,9 +177,6 @@ msgstr "Skočiť na posledný prehrávaný záznam"
msgid "Call plugin after playback"
msgstr "vrátiť sa po prehratí záznamu do modulu"
-msgid "Patch font"
-msgstr "Upraviť písmo"
-
msgid "Limit bandwidth for move recordings"
msgstr "Obmedziť rýchlosť pre presun nahrávok"
@@ -178,6 +186,69 @@ msgstr "Používať info menu nahrávok VDR"
msgid "Use cutter queue"
msgstr "použiť frontu strihania"
+msgid "--none--"
+msgstr ""
+
+msgid "Blank"
+msgstr ""
+
+msgid "Date of Recording"
+msgstr ""
+
+msgid "Time of Recording"
+msgstr ""
+
+msgid "Date and Time of Recording"
+msgstr ""
+
+msgid "Length of Recording"
+msgstr ""
+
+msgid "Rating of Recording"
+msgstr ""
+
+msgid "Content of File"
+msgstr ""
+
+msgid "Content of File, then Result of a Command"
+msgstr ""
+
+msgid "left"
+msgstr ""
+
+msgid "center"
+msgstr ""
+
+msgid "right"
+msgstr ""
+
+msgid "Icon"
+msgstr ""
+
+msgid "(fixed to the first position)"
+msgstr ""
+
+msgid "Item"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Alignment"
+msgstr ""
+
+msgid "Filename"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Name of the recording"
+msgstr ""
+
+msgid "(fixed to the last position)"
+msgstr ""
+
msgid "Recording already in cutter queue!"
msgstr "nahrávka je už v strihovej fronte!"
@@ -199,3 +270,14 @@ msgstr "Prebieha presúvanie nahrávok"
msgid "Can't start editing process!"
msgstr "nemôže spustiť proces úprav!"
+#~ msgid "Show recording date"
+#~ msgstr "Zobraziť dátum nahrávky"
+
+#~ msgid "Show recording time"
+#~ msgstr "Zobraziť čas nahrávky"
+
+#~ msgid "Show recording length"
+#~ msgstr "Zobraziť dĺžku nahrávky"
+
+#~ msgid "Patch font"
+#~ msgstr "Upraviť písmo"
diff --git a/po/sl_SI.po b/po/sl_SI.po
index f3a4418..8e5ee4a 100644
--- a/po/sl_SI.po
+++ b/po/sl_SI.po
@@ -8,10 +8,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: 2011-03-19 10:34+0100\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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -147,19 +148,13 @@ msgstr ""
msgid "descending"
msgstr ""
-msgid "Show recording date"
-msgstr ""
-
-msgid "Show recording time"
-msgstr ""
-
-msgid "Show recording length"
+msgid "Show nr. of new recordings of a directory"
msgstr ""
-msgid "Show recording rating"
+msgid "Maximum number of recordings per directory"
msgstr ""
-msgid "Show nr. of new recordings of a directory"
+msgid "Items to show in recording list"
msgstr ""
msgid "Show alternative to new marker"
@@ -192,6 +187,69 @@ msgstr ""
msgid "Use cutter queue"
msgstr ""
+msgid "--none--"
+msgstr ""
+
+msgid "Blank"
+msgstr ""
+
+msgid "Date of Recording"
+msgstr ""
+
+msgid "Time of Recording"
+msgstr ""
+
+msgid "Date and Time of Recording"
+msgstr ""
+
+msgid "Length of Recording"
+msgstr ""
+
+msgid "Rating of Recording"
+msgstr ""
+
+msgid "Content of File"
+msgstr ""
+
+msgid "Content of File, then Result of a Command"
+msgstr ""
+
+msgid "left"
+msgstr ""
+
+msgid "center"
+msgstr ""
+
+msgid "right"
+msgstr ""
+
+msgid "Icon"
+msgstr ""
+
+msgid "(fixed to the first position)"
+msgstr ""
+
+msgid "Item"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Alignment"
+msgstr ""
+
+msgid "Filename"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Name of the recording"
+msgstr ""
+
+msgid "(fixed to the last position)"
+msgstr ""
+
msgid "Recording already in cutter queue!"
msgstr ""
diff --git a/po/sv_SE.po b/po/sv_SE.po
index 9aec234..286b719 100644
--- a/po/sv_SE.po
+++ b/po/sv_SE.po
@@ -8,10 +8,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: 2011-03-19 10:34+0100\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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -147,19 +148,13 @@ msgstr ""
msgid "descending"
msgstr ""
-msgid "Show recording date"
-msgstr ""
-
-msgid "Show recording time"
-msgstr ""
-
-msgid "Show recording length"
+msgid "Show nr. of new recordings of a directory"
msgstr ""
-msgid "Show recording rating"
+msgid "Maximum number of recordings per directory"
msgstr ""
-msgid "Show nr. of new recordings of a directory"
+msgid "Items to show in recording list"
msgstr ""
msgid "Show alternative to new marker"
@@ -192,6 +187,69 @@ msgstr ""
msgid "Use cutter queue"
msgstr ""
+msgid "--none--"
+msgstr ""
+
+msgid "Blank"
+msgstr ""
+
+msgid "Date of Recording"
+msgstr ""
+
+msgid "Time of Recording"
+msgstr ""
+
+msgid "Date and Time of Recording"
+msgstr ""
+
+msgid "Length of Recording"
+msgstr ""
+
+msgid "Rating of Recording"
+msgstr ""
+
+msgid "Content of File"
+msgstr ""
+
+msgid "Content of File, then Result of a Command"
+msgstr ""
+
+msgid "left"
+msgstr ""
+
+msgid "center"
+msgstr ""
+
+msgid "right"
+msgstr ""
+
+msgid "Icon"
+msgstr ""
+
+msgid "(fixed to the first position)"
+msgstr ""
+
+msgid "Item"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Alignment"
+msgstr ""
+
+msgid "Filename"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Name of the recording"
+msgstr ""
+
+msgid "(fixed to the last position)"
+msgstr ""
+
msgid "Recording already in cutter queue!"
msgstr ""
diff --git a/po/tr_TR.po b/po/tr_TR.po
index 178468c..6040c26 100644
--- a/po/tr_TR.po
+++ b/po/tr_TR.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: 2011-03-19 10:34+0100\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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-9\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -146,19 +147,13 @@ msgstr ""
msgid "descending"
msgstr ""
-msgid "Show recording date"
-msgstr ""
-
-msgid "Show recording time"
-msgstr ""
-
-msgid "Show recording length"
+msgid "Show nr. of new recordings of a directory"
msgstr ""
-msgid "Show recording rating"
+msgid "Maximum number of recordings per directory"
msgstr ""
-msgid "Show nr. of new recordings of a directory"
+msgid "Items to show in recording list"
msgstr ""
msgid "Show alternative to new marker"
@@ -191,6 +186,69 @@ msgstr ""
msgid "Use cutter queue"
msgstr ""
+msgid "--none--"
+msgstr ""
+
+msgid "Blank"
+msgstr ""
+
+msgid "Date of Recording"
+msgstr ""
+
+msgid "Time of Recording"
+msgstr ""
+
+msgid "Date and Time of Recording"
+msgstr ""
+
+msgid "Length of Recording"
+msgstr ""
+
+msgid "Rating of Recording"
+msgstr ""
+
+msgid "Content of File"
+msgstr ""
+
+msgid "Content of File, then Result of a Command"
+msgstr ""
+
+msgid "left"
+msgstr ""
+
+msgid "center"
+msgstr ""
+
+msgid "right"
+msgstr ""
+
+msgid "Icon"
+msgstr ""
+
+msgid "(fixed to the first position)"
+msgstr ""
+
+msgid "Item"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Alignment"
+msgstr ""
+
+msgid "Filename"
+msgstr ""
+
+msgid "Command"
+msgstr ""
+
+msgid "Name of the recording"
+msgstr ""
+
+msgid "(fixed to the last position)"
+msgstr ""
+
msgid "Recording already in cutter queue!"
msgstr ""