summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJochen Dolze <vdr@dolze.de>2010-11-09 22:08:05 +0100
committerJochen Dolze <vdr@dolze.de>2010-11-09 22:08:05 +0100
commit94dd6f768ab19fa3af4ff2a9b72a6c18951e7601 (patch)
tree3a13d3e3828e1c13d0e1b1ce9fa3a81fccd6cda6
parent4d1a2b3671a315bc8b54e7bfcba4002d6c909e41 (diff)
downloadvdr-plugin-tvonscreen-94dd6f768ab19fa3af4ff2a9b72a6c18951e7601.tar.gz
vdr-plugin-tvonscreen-94dd6f768ab19fa3af4ff2a9b72a6c18951e7601.tar.bz2
Added new fontsize calculation, new option fontsize and transparency
-rw-r--r--config.cpp14
-rw-r--r--config.h2
-rw-r--r--magazine.cpp136
-rw-r--r--magazine.h7
-rw-r--r--po/ca_ES.po8
-rw-r--r--po/cs_CZ.po8
-rw-r--r--po/da_DK.po8
-rw-r--r--po/de_DE.po8
-rw-r--r--po/el_GR.po8
-rw-r--r--po/es_ES.po8
-rw-r--r--po/et_EE.po8
-rw-r--r--po/fr_FR.po8
-rw-r--r--po/hr_HR.po8
-rw-r--r--po/hu_HU.po8
-rw-r--r--po/it_IT.po9
-rw-r--r--po/nl_NL.po8
-rw-r--r--po/nn_NO.po8
-rw-r--r--po/pl_PL.po8
-rw-r--r--po/pt_PT.po8
-rw-r--r--po/ro_RO.po8
-rw-r--r--po/ru_RU.po8
-rw-r--r--po/sl_SI.po8
-rw-r--r--po/sv_SE.po8
-rw-r--r--po/tr_TR.po8
-rw-r--r--tvonscreen.cpp2
25 files changed, 245 insertions, 77 deletions
diff --git a/config.cpp b/config.cpp
index 5b8d77a..942ae72 100644
--- a/config.cpp
+++ b/config.cpp
@@ -30,6 +30,8 @@ tvonscreenConfig::tvonscreenConfig(void)
usertime3=2015;
thenshownextday=true;
showsearchinitiator=true;
+ fontdsize=0;
+ transparency=100;
memset(logos,0,sizeof(logos));
memset(vdradminfile,0,sizeof(vdradminfile));
@@ -48,6 +50,8 @@ bool tvonscreenConfig::SetupParse(const char *Name, const char *Value)
else if (strcmp(Name,"usertime3")==0) usertime3 = atoi(Value);
else if (strcmp(Name,"thenshownextday")==0) thenshownextday = atoi(Value);
else if (strcmp(Name,"showsearchinitiator")==0) showsearchinitiator = atoi(Value);
+ else if (strcmp(Name,"fontdsize")==0) fontdsize = atoi(Value);
+ else if (strcmp(Name,"transparency")==0) transparency = atoi(Value);
else
return false;
@@ -97,6 +101,12 @@ bool tvonscreenConfig::ProcessArgs(int argc, char *argv[])
tvonscreenConfigPage::tvonscreenConfigPage(void) : cMenuSetupPage()
{
m_NewConfig = tvonscreenCfg;
+
+ Add(new cMenuEditIntItem(tr("font size"),
+ &m_NewConfig.fontdsize,-5,5));
+ Add(new cMenuEditIntItem(tr("transparency"),
+ &m_NewConfig.transparency,0,100));
+
if (getTL_YSTART()>24)
{
Add(new cMenuEditBoolItem(tr("show channel logos"),
@@ -125,8 +135,6 @@ tvonscreenConfigPage::tvonscreenConfigPage(void) : cMenuSetupPage()
Add(new cMenuEditBoolItem(tr("Show search item itself"),
&m_NewConfig.showsearchinitiator));
-
-
}
tvonscreenConfigPage::~tvonscreenConfigPage()
@@ -146,6 +154,8 @@ void tvonscreenConfigPage::Store(void)
SetupStore("usertime3", m_NewConfig.usertime3);
SetupStore("thenshownextday", m_NewConfig.thenshownextday);
SetupStore("showsearchinitiator", m_NewConfig.showsearchinitiator);
+ SetupStore("fontdsize", m_NewConfig.fontdsize);
+ SetupStore("transparency", m_NewConfig.transparency);
tvonscreenCfg = m_NewConfig;
}
diff --git a/config.h b/config.h
index 5b4b4be..1fcda14 100644
--- a/config.h
+++ b/config.h
@@ -31,6 +31,8 @@ public:
int usertime3;
int thenshownextday;
int showsearchinitiator;
+ int fontdsize;
+ int transparency;
char logos[PATH_MAX];
char vdradminfile[PATH_MAX];
diff --git a/magazine.cpp b/magazine.cpp
index dfc318e..7ba42d3 100644
--- a/magazine.cpp
+++ b/magazine.cpp
@@ -11,8 +11,8 @@
#include <vdr/osd.h>
#include <vdr/device.h>
-#define clrGrey 0xFF5F5F5F
-#define clrBackground clrGray50 // this should be tied somehow into current theme
+#define clrGray75 0xBF000000
+#define clrBackground 0x7F000000 // this should be tied somehow into current theme
void GetOsdSize(int &Width, int &Height, double &Aspect)
{
@@ -112,6 +112,23 @@ static int CompareSchedules(const void *p1, const void *p2)
return c1nr - c2nr;
}
+void magazine::setTransparency(int *color)
+{
+ if (!color) return;
+ if (tvonscreenCfg.transparency==100) return;
+
+ int alpha,delta,value;
+
+ alpha=(*color & 0xFF000000)>>24;
+ delta=255-alpha;
+ value=100-tvonscreenCfg.transparency;
+ value*=delta;
+ value/=100;
+ value+=alpha;
+ value<<=24;
+ *color=(*color & 0x00FFFFFF) | value;
+}
+
magazine::magazine(class cPlugin *p)
{
parent=p;
@@ -120,6 +137,16 @@ magazine::magazine(class cPlugin *p)
curmode=SHOW;
EDIT_curEvent=0;
+
+ clrSched1=clrGray75;
+ clrSched2=clrGray50;
+
+ setTransparency(&clrSched1);
+ setTransparency(&clrSched2);
+
+ clrTimeline1=clrBlue;
+ clrTimeline2=clrBlack;
+
f1=NULL;
f2=NULL;
f3=NULL;
@@ -302,21 +329,21 @@ void magazine::printHead(const cSchedule *s,int p)
yoff=28;
osd->DrawRectangle(x+Areas[a].x1+getScheduleWidth()-4,0+Areas[a].y1+28,x+Areas[a].x1+
- getScheduleWidth()-2,Areas[a].y1+28+20,clrGrey);
+ getScheduleWidth()-2,Areas[a].y1+28+20,clrGray75);
// nie zu sehen, ausser wenn kein Logo gefunden wird
osd->DrawRectangle(x+Areas[a].x1,0+Areas[a].y1+28,x+
- Areas[a].x1+2,Areas[a].y1+28+20,clrGrey);
+ Areas[a].x1+2,Areas[a].y1+28+20,clrGray75);
if (p==2) DrawXpm(TVonscreen,osd,x+Areas[a].x1+getScheduleWidth()-112,0+Areas[a].y1);
if (tvonscreenCfg.showChannels || !tvonscreenCfg.showLogos)
osd->DrawRectangle(x+Areas[a].x1,yoff+Areas[a].y1,x+Areas[a].x1+getScheduleWidth()-2,
- Areas[a].y1+gTL_YSTART-1,clrBlue);
+ Areas[a].y1+gTL_YSTART-1,clrTimeline1);
}
else
{
osd->DrawRectangle(x+Areas[a].x1,yoff+Areas[a].y1,x+Areas[a].x1+getScheduleWidth()-2,
- Areas[a].y1+gTL_YSTART-1,clrBlue);
+ Areas[a].y1+gTL_YSTART-1,clrTimeline1);
}
if (tvonscreenCfg.showChannels || !tvonscreenCfg.showLogos)
@@ -335,10 +362,10 @@ void magazine::printHead(const cSchedule *s,int p)
if (!tvonscreenCfg.XLfonts || f3->LargeWidth(txt)>=getScheduleWidth()-wmin)
f3->Text(wmin+x+Areas[a].x1+(getScheduleWidth()-wmin-f3->Width(txt))/2,
- Areas[a].y1+yoff-1,txt,col,clrBlue);
+ Areas[a].y1+yoff-1,txt,col,clrTimeline1);
else
f3->LargeText(wmin+x+Areas[a].x1+(getScheduleWidth()-wmin-f3->LargeWidth(txt))/2,
- Areas[a].y1+yoff-1,txt,col,clrBlue);
+ Areas[a].y1+yoff-1,txt,col,clrTimeline1);
}
}
}
@@ -390,10 +417,12 @@ void magazine::showTimeline(void)
{
int lh=-1;
int lhc=0;
- tColor hgr[]={clrBlue,clrBlack};
char dtxt[50];
time_t t1;
struct tm tm_r1;
+ tColor hgr[2]; // {clrBlue,clrBlack}
+ hgr[0]=clrTimeline1;
+ hgr[1]=clrTimeline2;
t1=currentFirstTime;
localtime_r(&t1,&tm_r1);
@@ -471,7 +500,10 @@ void magazine::showSched(cEvent **ev,tMagazineArea area)
int lh=-1;
int lhc=0;
- tColor hgr[]={clrGrey,clrBackground};
+ tColor hgr[2]; //{clrGray,clrBackground};
+ hgr[0]=clrSched1;
+ hgr[1]=clrSched2;
+
tColor col=clrWhite;
osd->DrawRectangle(Areas[area].x1, Areas[area].y1, Areas[area].x2+1, Areas[area].y2+1, clrGray50);
@@ -743,28 +775,36 @@ void magazine::calcScheds()
}
}
+void magazine::colorworkaround(cBitmap *b)
+{
+ // This is an ugly work around for color problems with
+ // DVB driver or hardware or vdr handling, who knows
+ b->SetColor(0,clrTransparent);
+ b->SetColor(2,clrBlack);
+ b->SetColor(2,clrWhite);
+ b->SetColor(3,clrGray50);
+ b->SetColor(4,clrGray75);
+ b->SetColor(5,clrCyan);
+
+ b->SetColor(6,clrSched1);
+ b->SetColor(7,clrSched2);
+ b->SetColor(8,clrTimeline1);
+ b->SetColor(9,clrTimeline2);
+
+ for (int i=10;i<128;i++)
+ {
+ b->SetColor(i,0x01000000|i);
+ }
+ // End work around
+}
+
void magazine::output(void)
{
cBitmap *b=osd->GetBitmap(NAMES_AREA);
if (b)
{
b->Reset();
- if (tvonscreenCfg.colorworkaround)
- {
- // This is an ugly work around for color problems with
- // DVB driver or hardware or vdr handling, who knows
- b->SetColor(0,clrTransparent);
- b->SetColor(1,clrBlue);
- b->SetColor(2,clrWhite);
- b->SetColor(3,clrGrey);
- b->SetColor(4,0xffff0000);
- b->SetColor(5,clrCyan);
- for (int i=6;i<128;i++)
- {
- b->SetColor(i,0x01000000|i);
- }
- // End work around
- }
+ if (tvonscreenCfg.colorworkaround) colorworkaround(b);
}
showHeads();
@@ -782,22 +822,7 @@ void magazine::outputLR(void)
if (b)
{
b->Reset();
- if (tvonscreenCfg.colorworkaround)
- {
- // This is an ugly work around for color problems with
- // DVB driver or hardware or vdr handling, who knows
- b->SetColor(0,clrTransparent);
- b->SetColor(1,clrBlue);
- b->SetColor(2,clrWhite);
- b->SetColor(3,clrGrey);
- b->SetColor(4,0xffff0000);
- b->SetColor(5,clrCyan);
- for (int i=6;i<128;i++)
- {
- b->SetColor(i,0x01000000|i);
- }
- // End work around
- }
+ if (tvonscreenCfg.colorworkaround) colorworkaround(b);
}
showHeads();
@@ -860,18 +885,18 @@ void magazine::showHelp()
int gTL_YSTART = getTL_YSTART();
osd->DrawRectangle(Areas[SCHED1_AREA].x1, Areas[SCHED1_AREA].y1+1,
- Areas[SCHED1_AREA].x2+1, Areas[SCHED1_AREA].y2+1, clrGrey);
+ Areas[SCHED1_AREA].x2+1, Areas[SCHED1_AREA].y2+1, clrSched1);
osd->DrawRectangle(Areas[SCHED2_AREA].x1, Areas[SCHED2_AREA].y1+1,
- Areas[SCHED2_AREA].x2+1, Areas[SCHED2_AREA].y2+1, clrGrey);
+ Areas[SCHED2_AREA].x2+1, Areas[SCHED2_AREA].y2+1, clrSched1);
osd->DrawRectangle(Areas[SCHED3_AREA].x1, Areas[SCHED3_AREA].y1+1,
- Areas[SCHED3_AREA].x2+1, Areas[SCHED3_AREA].y2+1, clrGrey);
+ Areas[SCHED3_AREA].x2+1, Areas[SCHED3_AREA].y2+1, clrSched1);
osd->DrawRectangle(Areas[SCHED1_AREA].x1+2, Areas[SCHED1_AREA].y1,
- Areas[SCHED1_AREA].x2+1-3, Areas[SCHED1_AREA].y2+1-3, clrGray50);
+ Areas[SCHED1_AREA].x2+1-3, Areas[SCHED1_AREA].y2+1-3, clrSched2);
osd->DrawRectangle(Areas[SCHED2_AREA].x1+2, Areas[SCHED2_AREA].y1,
- Areas[SCHED2_AREA].x2+1-3, Areas[SCHED2_AREA].y2+1-3, clrGray50);
+ Areas[SCHED2_AREA].x2+1-3, Areas[SCHED2_AREA].y2+1-3, clrSched2);
osd->DrawRectangle(Areas[SCHED3_AREA].x1+2, Areas[SCHED3_AREA].y1,
- Areas[SCHED3_AREA].x2+1-3, Areas[SCHED3_AREA].y2+1-3, clrGray50);
+ Areas[SCHED3_AREA].x2+1-3, Areas[SCHED3_AREA].y2+1-3, clrSched2);
osd->DrawRectangle(0+Areas[TIMELINE_AREA].x1,0+Areas[TIMELINE_AREA].y1+gTL_YSTART,
Areas[TIMELINE_AREA].x1+getTimelineWidth(),
@@ -1009,11 +1034,16 @@ void magazine::Show(void)
delete f4;
delete f5;
- f1=new anyFont(osd,(round(12*Width) / Height),1); // Sendung
- f2=new anyFont(osd,(round(11*Width) / Height),1); // Extra-Info
- f3=new anyFont(osd,(round(12*Width) / Height),1); // Sender
- f4=new anyFont(osd,(round(11*Width) / Height)); // Tasten
- f5=new anyFont(osd,(round(11*Width) / Height)); // Datum
+ int h1=(int) round(Height/35);
+ int h2=h1-2;
+ h1+=tvonscreenCfg.fontdsize;
+ h2+=tvonscreenCfg.fontdsize;
+
+ f1=new anyFont(osd,h1,1); // Sendung
+ f2=new anyFont(osd,h2,1); // Extra-Info
+ f3=new anyFont(osd,h1,1); // Sender
+ f4=new anyFont(osd,h2); // Tasten
+ f5=new anyFont(osd,h2); // Datum
for (int i=0; i < (int)(sizeof(Areas)/sizeof(tArea)); i++)
{
diff --git a/magazine.h b/magazine.h
index 1d1ef8e..499bcb3 100644
--- a/magazine.h
+++ b/magazine.h
@@ -92,6 +92,7 @@ private:
void calcSched(const cSchedule *s,cEvent **ev);
void calcScheds(void);
+ void colorworkaround(cBitmap *b);
void output(void);
void outputLR(void);
@@ -100,6 +101,12 @@ private:
void autoTimer(const class cEvent *EventInfo);
+ void setTransparency(int *color);
+ int clrSched1;
+ int clrSched2;
+ int clrTimeline1;
+ int clrTimeline2;
+
public:
magazine(class cPlugin *);
virtual ~magazine();
diff --git a/po/ca_ES.po b/po/ca_ES.po
index 0a6a569..c2a9cb6 100644
--- a/po/ca_ES.po
+++ b/po/ca_ES.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2010-08-02 15:03+0200\n"
+"POT-Creation-Date: 2010-11-09 20:45+0100\n"
"PO-Revision-Date: 2008-12-22 18:10+0000\n"
"Last-Translator: Jordi Vilà <jvila@tinet.org>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -17,6 +17,12 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
+msgid "font size"
+msgstr ""
+
+msgid "transparency"
+msgstr ""
+
msgid "show channel logos"
msgstr ""
diff --git a/po/cs_CZ.po b/po/cs_CZ.po
index 6ad2f60..5a5f8c7 100644
--- a/po/cs_CZ.po
+++ b/po/cs_CZ.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2010-08-02 15:03+0200\n"
+"POT-Creation-Date: 2010-11-09 20:45+0100\n"
"PO-Revision-Date: 2008-12-22 18:10+0000\n"
"Last-Translator: Vladimír Bárta <vladimir.barta@k2atmitec.cz>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -15,6 +15,12 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
+msgid "font size"
+msgstr ""
+
+msgid "transparency"
+msgstr ""
+
msgid "show channel logos"
msgstr ""
diff --git a/po/da_DK.po b/po/da_DK.po
index 30856a6..cfb5d15 100644
--- a/po/da_DK.po
+++ b/po/da_DK.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2010-08-02 15:03+0200\n"
+"POT-Creation-Date: 2010-11-09 20:45+0100\n"
"PO-Revision-Date: 2008-12-22 18:10+0000\n"
"Last-Translator: Mogens Elneff <mogens@elneff.dk>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -15,6 +15,12 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
+msgid "font size"
+msgstr ""
+
+msgid "transparency"
+msgstr ""
+
msgid "show channel logos"
msgstr ""
diff --git a/po/de_DE.po b/po/de_DE.po
index a49788b..cf108a7 100644
--- a/po/de_DE.po
+++ b/po/de_DE.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2010-08-02 15:03+0200\n"
+"POT-Creation-Date: 2010-11-09 20:45+0100\n"
"PO-Revision-Date: 2008-12-22 18:10+0000\n"
"Last-Translator: Klaus Schmidinger <kls@cadsoft.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -15,6 +15,12 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
+msgid "font size"
+msgstr "Zeichensatzgröße"
+
+msgid "transparency"
+msgstr "Transparenz"
+
msgid "show channel logos"
msgstr "zeige Kanal-Logos"
diff --git a/po/el_GR.po b/po/el_GR.po
index 2e9cc27..1aee866 100644
--- a/po/el_GR.po
+++ b/po/el_GR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2010-08-02 15:03+0200\n"
+"POT-Creation-Date: 2010-11-09 20:45+0100\n"
"PO-Revision-Date: 2008-12-22 18:10+0000\n"
"Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -15,6 +15,12 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-7\n"
"Content-Transfer-Encoding: 8bit\n"
+msgid "font size"
+msgstr ""
+
+msgid "transparency"
+msgstr ""
+
msgid "show channel logos"
msgstr ""
diff --git a/po/es_ES.po b/po/es_ES.po
index 8349af3..5ba4cc4 100644
--- a/po/es_ES.po
+++ b/po/es_ES.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2010-08-02 15:03+0200\n"
+"POT-Creation-Date: 2010-11-09 20:45+0100\n"
"PO-Revision-Date: 2008-12-22 18:10+0000\n"
"Last-Translator: Ruben Nunez Francisco <ruben.nunez@tang-it.com>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -15,6 +15,12 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
+msgid "font size"
+msgstr ""
+
+msgid "transparency"
+msgstr ""
+
msgid "show channel logos"
msgstr ""
diff --git a/po/et_EE.po b/po/et_EE.po
index 59345c2..062cd3b 100644
--- a/po/et_EE.po
+++ b/po/et_EE.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2010-08-02 15:03+0200\n"
+"POT-Creation-Date: 2010-11-09 20:45+0100\n"
"PO-Revision-Date: 2008-12-22 18:10+0000\n"
"Last-Translator: Arthur Konovalov <kasjas@hot.ee>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -15,6 +15,12 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-13\n"
"Content-Transfer-Encoding: 8bit\n"
+msgid "font size"
+msgstr ""
+
+msgid "transparency"
+msgstr ""
+
msgid "show channel logos"
msgstr ""
diff --git a/po/fr_FR.po b/po/fr_FR.po
index 2bb9d83..8f873da 100644
--- a/po/fr_FR.po
+++ b/po/fr_FR.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2010-08-02 15:03+0200\n"
+"POT-Creation-Date: 2010-11-09 20:45+0100\n"
"PO-Revision-Date: 2008-12-22 18:10+0000\n"
"Last-Translator: Nicolas Huillard <nhuillard@e-dition.fr>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -18,6 +18,12 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
+msgid "font size"
+msgstr ""
+
+msgid "transparency"
+msgstr ""
+
msgid "show channel logos"
msgstr ""
diff --git a/po/hr_HR.po b/po/hr_HR.po
index 0362d2d..f25459b 100644
--- a/po/hr_HR.po
+++ b/po/hr_HR.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2010-08-02 15:03+0200\n"
+"POT-Creation-Date: 2010-11-09 20:45+0100\n"
"PO-Revision-Date: 2008-12-22 18:10+0000\n"
"Last-Translator: Drazen Dupor <drazen.dupor@dupor.com>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -16,6 +16,12 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
+msgid "font size"
+msgstr ""
+
+msgid "transparency"
+msgstr ""
+
msgid "show channel logos"
msgstr ""
diff --git a/po/hu_HU.po b/po/hu_HU.po
index 5b60c1c..87721e2 100644
--- a/po/hu_HU.po
+++ b/po/hu_HU.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2010-08-02 15:03+0200\n"
+"POT-Creation-Date: 2010-11-09 20:45+0100\n"
"PO-Revision-Date: 2008-12-22 18:10+0000\n"
"Last-Translator: Istvan Koenigsberger <istvnko@hotmail.com>, Guido Josten <guido.josten@t-online.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -16,6 +16,12 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
+msgid "font size"
+msgstr ""
+
+msgid "transparency"
+msgstr ""
+
msgid "show channel logos"
msgstr ""
diff --git a/po/it_IT.po b/po/it_IT.po
index 2343513..c872b5a 100644
--- a/po/it_IT.po
+++ b/po/it_IT.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2010-08-02 15:03+0200\n"
+"POT-Creation-Date: 2010-11-09 20:45+0100\n"
"PO-Revision-Date: 2010-08-09 19:08+0100\n"
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -20,6 +20,12 @@ msgstr ""
"X-Poedit-Country: ITALY\n"
"X-Poedit-SourceCharset: utf-8\n"
+msgid "font size"
+msgstr ""
+
+msgid "transparency"
+msgstr ""
+
msgid "show channel logos"
msgstr "Mostra loghi canali"
@@ -201,4 +207,3 @@ msgstr "Mostra informazioni EPG in forma di un tipico magazine TV"
msgid "TV-OnScreen"
msgstr "TV OnScreen"
-
diff --git a/po/nl_NL.po b/po/nl_NL.po
index 0736b6b..ad33169 100644
--- a/po/nl_NL.po
+++ b/po/nl_NL.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2010-08-02 15:03+0200\n"
+"POT-Creation-Date: 2010-11-09 20:45+0100\n"
"PO-Revision-Date: 2008-12-22 18:10+0000\n"
"Last-Translator: Maarten Wisse <Maarten.Wisse@urz.uni-hd.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -17,6 +17,12 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
+msgid "font size"
+msgstr ""
+
+msgid "transparency"
+msgstr ""
+
msgid "show channel logos"
msgstr ""
diff --git a/po/nn_NO.po b/po/nn_NO.po
index fa4f378..4a06e1c 100644
--- a/po/nn_NO.po
+++ b/po/nn_NO.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2010-08-02 15:03+0200\n"
+"POT-Creation-Date: 2010-11-09 20:45+0100\n"
"PO-Revision-Date: 2008-12-22 18:10+0000\n"
"Last-Translator: Truls Slevigen <truls@slevigen.no>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -16,6 +16,12 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
+msgid "font size"
+msgstr ""
+
+msgid "transparency"
+msgstr ""
+
msgid "show channel logos"
msgstr ""
diff --git a/po/pl_PL.po b/po/pl_PL.po
index 3020112..7d5b12a 100644
--- a/po/pl_PL.po
+++ b/po/pl_PL.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2010-08-02 15:03+0200\n"
+"POT-Creation-Date: 2010-11-09 20:45+0100\n"
"PO-Revision-Date: 2008-12-22 18:10+0000\n"
"Last-Translator: Michael Rakowski <mrak@gmx.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -15,6 +15,12 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
+msgid "font size"
+msgstr ""
+
+msgid "transparency"
+msgstr ""
+
msgid "show channel logos"
msgstr ""
diff --git a/po/pt_PT.po b/po/pt_PT.po
index 4b7f4a5..873947b 100644
--- a/po/pt_PT.po
+++ b/po/pt_PT.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2010-08-02 15:03+0200\n"
+"POT-Creation-Date: 2010-11-09 20:45+0100\n"
"PO-Revision-Date: 2008-12-22 18:10+0000\n"
"Last-Translator: Paulo Lopes <pmml@netvita.pt>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -15,6 +15,12 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
+msgid "font size"
+msgstr ""
+
+msgid "transparency"
+msgstr ""
+
msgid "show channel logos"
msgstr ""
diff --git a/po/ro_RO.po b/po/ro_RO.po
index 19a7dda..d544553 100644
--- a/po/ro_RO.po
+++ b/po/ro_RO.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2010-08-02 15:03+0200\n"
+"POT-Creation-Date: 2010-11-09 20:45+0100\n"
"PO-Revision-Date: 2008-12-22 18:10+0000\n"
"Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -16,6 +16,12 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
+msgid "font size"
+msgstr ""
+
+msgid "transparency"
+msgstr ""
+
msgid "show channel logos"
msgstr ""
diff --git a/po/ru_RU.po b/po/ru_RU.po
index 99f0e73..8acda37 100644
--- a/po/ru_RU.po
+++ b/po/ru_RU.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2010-08-02 15:03+0200\n"
+"POT-Creation-Date: 2010-11-09 20:45+0100\n"
"PO-Revision-Date: 2008-12-22 18:10+0000\n"
"Last-Translator: Vyacheslav Dikonov <sdiconov@mail.ru>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -15,6 +15,12 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-5\n"
"Content-Transfer-Encoding: 8bit\n"
+msgid "font size"
+msgstr ""
+
+msgid "transparency"
+msgstr ""
+
msgid "show channel logos"
msgstr ""
diff --git a/po/sl_SI.po b/po/sl_SI.po
index 7594f14..0be2b12 100644
--- a/po/sl_SI.po
+++ b/po/sl_SI.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2010-08-02 15:03+0200\n"
+"POT-Creation-Date: 2010-11-09 20:45+0100\n"
"PO-Revision-Date: 2008-12-22 18:10+0000\n"
"Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -16,6 +16,12 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
+msgid "font size"
+msgstr ""
+
+msgid "transparency"
+msgstr ""
+
msgid "show channel logos"
msgstr ""
diff --git a/po/sv_SE.po b/po/sv_SE.po
index 29d4fba..f1bb1f6 100644
--- a/po/sv_SE.po
+++ b/po/sv_SE.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2010-08-02 15:03+0200\n"
+"POT-Creation-Date: 2010-11-09 20:45+0100\n"
"PO-Revision-Date: 2008-12-22 18:10+0000\n"
"Last-Translator: Tomas Prybil <tomas@prybil.se>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -16,6 +16,12 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
+msgid "font size"
+msgstr ""
+
+msgid "transparency"
+msgstr ""
+
msgid "show channel logos"
msgstr ""
diff --git a/po/tr_TR.po b/po/tr_TR.po
index a5af96d..de34676 100644
--- a/po/tr_TR.po
+++ b/po/tr_TR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
-"POT-Creation-Date: 2010-08-02 15:03+0200\n"
+"POT-Creation-Date: 2010-11-09 20:45+0100\n"
"PO-Revision-Date: 2008-12-22 18:10+0000\n"
"Last-Translator: Oktay Yolgeçen <oktay_73@yahoo.de>\n"
"Language-Team: <vdr@linuxtv.org>\n"
@@ -15,6 +15,12 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-9\n"
"Content-Transfer-Encoding: 8bit\n"
+msgid "font size"
+msgstr ""
+
+msgid "transparency"
+msgstr ""
+
msgid "show channel logos"
msgstr ""
diff --git a/tvonscreen.cpp b/tvonscreen.cpp
index 6353c21..35cd102 100644
--- a/tvonscreen.cpp
+++ b/tvonscreen.cpp
@@ -10,7 +10,7 @@
#include "config.h"
#include "i18n.h"
-static const char *VERSION = "1.1.141";
+static const char *VERSION = "1.1.142";
static const char *DESCRIPTION = trNOOP("Shows the EPG info in form of a typical TV magazine");
static const char *MAINMENUENTRY = trNOOP("TV-OnScreen");