summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY4
-rw-r--r--control-image.c6
-rw-r--r--data-image.c22
-rw-r--r--data-image.h10
-rw-r--r--image.c4
-rw-r--r--list.c52
-rw-r--r--list.h8
-rw-r--r--player-image.c10
-rw-r--r--player-image.h2
-rw-r--r--po/ca_ES.po3
-rw-r--r--po/cs_CZ.po3
-rw-r--r--po/da_DK.po3
-rw-r--r--po/de_DE.po3
-rw-r--r--po/el_GR.po3
-rw-r--r--po/es_ES.po3
-rw-r--r--po/et_EE.po3
-rw-r--r--po/fi_FI.po3
-rw-r--r--po/fr_FR.po3
-rw-r--r--po/hr_HR.po3
-rw-r--r--po/hu_HU.po3
-rw-r--r--po/it_IT.po5
-rw-r--r--po/nl_NL.po3
-rw-r--r--po/nn_NO.po3
-rw-r--r--po/pl_PL.po3
-rw-r--r--po/pt_PT.po3
-rw-r--r--po/ro_RO.po3
-rw-r--r--po/ru_RU.po3
-rw-r--r--po/sl_SI.po3
-rw-r--r--po/sv_SE.po3
-rw-r--r--po/tr_TR.po3
30 files changed, 104 insertions, 79 deletions
diff --git a/HISTORY b/HISTORY
index 690d4ce..d9eda4f 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1,6 +1,10 @@
VDR Plugin 'image' Revision History
-----------------------------------
+2011-03-19
+- Release Version 0.3.1
+- Adjust to compile plugin with VDR >= 1.7.17
+
2010-03-06
- Fix to compile plugins with VDR >= 1.7.13 (Thomas Günther, for summit a patch)
diff --git a/control-image.c b/control-image.c
index ef4fb7c..2285af6 100644
--- a/control-image.c
+++ b/control-image.c
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <anbr at users.berlios.de>
* based on (C) 2003 Kai Tobias Burwieck <kai -at- burwieck.net>
*
* This code is distributed under the terms and conditions of the
@@ -663,7 +663,7 @@ void cImageControl::OriginalImage(bool bCached)
m_nZoomFactor = 0;
m_nRotation = 2;
#ifdef HAVE_LIBEXIF
- cImage* pImage = theSlideShow.GetImage();
+ cImageData* pImage = theSlideShow.GetImage();
if(pImage)
{
int nRot = pImage->DefaultRotate();
@@ -727,7 +727,7 @@ void cImageControl::PictureZoomInitial(void)
FILE *f;
char buf[80];
- cImage* pImage = theSlideShow.GetImage();
+ cImageData* pImage = theSlideShow.GetImage();
if(!pImage)
return;
diff --git a/data-image.c b/data-image.c
index 9dff570..0717293 100644
--- a/data-image.c
+++ b/data-image.c
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <anbr at users.berlios.de>
* based on (C) 2003 Kai Tobias Burwieck <kai -at- burwieck.net>
*
* This code is distributed under the terms and conditions of the
@@ -24,9 +24,9 @@
cFileSources ImageSources;
-// --- cImage -------------------------------------------------------------
+// --- cImageData -------------------------------------------------------------
-cImage::cImage(const char *szName, cFileSource * pSource)
+cImageData::cImageData(const char *szName, cFileSource * pSource)
: m_pSource(pSource)
, m_szFileName(NULL)
, m_szFileNamePNM(NULL)
@@ -46,13 +46,13 @@ cImage::cImage(const char *szName, cFileSource * pSource)
}
-cImage::~cImage()
+cImageData::~cImageData()
{
Clear();
m_pSource->Unblock();
}
-const char *cImage::NameIndex()
+const char *cImageData::NameIndex()
{
if(!m_szFileNameIndex)
{
@@ -76,7 +76,7 @@ const char *cImage::NameIndex()
return m_szFileNameIndex;
}
-const char *cImage::NamePNM()
+const char *cImageData::NamePNM()
{
if(!m_szFileNamePNM)
{
@@ -100,7 +100,7 @@ const char *cImage::NamePNM()
return m_szFileNamePNM;
}
-const char *cImage::NameZoom()
+const char *cImageData::NameZoom()
{
if(!m_szFileNameZoom)
{
@@ -141,7 +141,7 @@ bool UnlinkFile(const char *szFile)
return true;
}
-void cImage::Unlink(const char *szName)
+void cImageData::Unlink(const char *szName)
{
if(ImageSetup.m_bHousekeeping)
{
@@ -160,7 +160,7 @@ void cImage::Unlink(const char *szName)
}
-void cImage::Clear(void)
+void cImageData::Clear(void)
{
if(m_szFileNameIndex)
{
@@ -190,7 +190,7 @@ void cImage::Clear(void)
}
}
-bool cImage::CompareBaseDir(const cFileSource * pSource) const
+bool cImageData::CompareBaseDir(const cFileSource * pSource) const
{
return 0 == strcmp(m_pSource->BaseDir(),pSource->BaseDir());
@@ -262,7 +262,7 @@ void cSlideShow::DoItem(cFileSource * src, const char *subdir,
char *path = (char *)name;
if(subdir)
path = AddPath(subdir, name);
- Add(new cImage(path, src));
+ Add(new cImageData(path, src));
if(subdir)
free(path);
}
diff --git a/data-image.h b/data-image.h
index 0b21316..29badae 100644
--- a/data-image.h
+++ b/data-image.h
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <anbr at users.berlios.de>
* (C) 2003 Kai Tobias Burwieck <kai@burwieck.net>
*
* This code is distributed under the terms and conditions of the
@@ -23,7 +23,7 @@ class cFileSource;
// ----------------------------------------------------------------
-class cImage
+class cImageData
: public cListObject {
cFileSource *m_pSource;
@@ -39,8 +39,8 @@ protected:
void Unlink(const char *szName);
void Clear(void);
public:
- cImage(const char *szName, cFileSource * pSource);
- virtual ~cImage();
+ cImageData(const char *szName, cFileSource * pSource);
+ virtual ~cImageData();
bool CompareBaseDir(const cFileSource * pSource) const;
inline const char *Name(void) const
@@ -61,7 +61,7 @@ public:
class cSlideShow
: public cScanDir
-, public cList < cImage > {
+, public cList < cImageData > {
char* m_szFirstImageName;
cDirItem m_DirItem;
diff --git a/image.c b/image.c
index 4827439..cce8c0e 100644
--- a/image.c
+++ b/image.c
@@ -5,7 +5,7 @@
* (C) 2004 "Interpohl" <interpohl at vdr-portal.de>
* (C) 2004 O. Kreuzinger <Onno at Kreuzinger.biz>
* (C) 2004 A. Holzhammer for the massive script updates
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <anbr at users.berlios.de>
*
* based on mp3/mplayer plugin by Stefan Hülswitt <huels at iname.com>
*
@@ -26,7 +26,7 @@
#include "commands.h"
#include "liboutput/encode.h"
-static const char *VERSION = "0.3.0";
+static const char *VERSION = "0.3.1";
class cPluginImage : public cPlugin {
cDirItem* m_pServiceDirItem;
diff --git a/list.c b/list.c
index cc7d4fb..e96370d 100644
--- a/list.c
+++ b/list.c
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <anbr at users.berlios.de>
*
* This code is distributed under the terms and conditions of the
* GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
@@ -30,21 +30,21 @@ cActivSlideShow::cActivSlideShow()
void cActivSlideShow::Remove(cFileSource* src){
if(m_pCurSlideShow) {
- cImage* p = m_pCurSlideShow->cList < cImage >::First();
+ cImageData* p = m_pCurSlideShow->cList < cImageData >::First();
while (p) {
if(p->CompareBaseDir(src)) {
bool bRemoveCurrent = (m_pCurImage == p);
- m_pCurSlideShow->cList < cImage >::Del(p);
- p = m_pCurSlideShow->cList < cImage >::First();
+ m_pCurSlideShow->cList < cImageData >::Del(p);
+ p = m_pCurSlideShow->cList < cImageData >::First();
if(bRemoveCurrent) {
m_nCurrentImage = 1;
m_pCurImage = p;
}
} else {
- p = m_pCurSlideShow->cList < cImage >::Next(p);
+ p = m_pCurSlideShow->cList < cImageData >::Next(p);
}
}
- m_nTotalImages = m_pCurSlideShow->cList < cImage >::Count();
+ m_nTotalImages = m_pCurSlideShow->cList < cImageData >::Count();
}
}
@@ -62,7 +62,7 @@ void cActivSlideShow::Assign(cSlideShow *pCurSlideShow)
bool bFound = false;
if(m_pCurSlideShow->FirstImage()) {
- cImage* p = m_pCurSlideShow->cList < cImage >::First();
+ cImageData* p = m_pCurSlideShow->cList < cImageData >::First();
for (;p && i < m_nTotalImages; ++i) {
// find out first image
@@ -71,14 +71,14 @@ void cActivSlideShow::Assign(cSlideShow *pCurSlideShow)
bFound = true;
break;
}
- p = m_pCurSlideShow->cList < cImage >::Next(p);
+ p = m_pCurSlideShow->cList < cImageData >::Next(p);
}
}
if(bFound) {
m_nCurrentImage = i+1;
}
else {
- m_pCurImage = m_pCurSlideShow->cList < cImage >::First();
+ m_pCurImage = m_pCurSlideShow->cList < cImageData >::First();
m_nCurrentImage = 1;
}
}
@@ -101,7 +101,7 @@ cSlideShow *cActivSlideShow::SlideShow(void)
}
-cImage* cActivSlideShow::GetImage()
+cImageData* cActivSlideShow::GetImage()
{
return m_pCurSlideShow?m_pCurImage:NULL;
}
@@ -110,18 +110,18 @@ cImage* cActivSlideShow::GetImage()
bool cActivSlideShow::NextImage(int nOffset)
{
if(m_pCurImage && m_nCurrentImage < m_nTotalImages) {
- cImage *pNewActiv;
+ cImageData *pNewActiv;
for (int i = 0; (i < nOffset) && (m_nCurrentImage < m_nTotalImages); ++i) {
- pNewActiv = m_pCurSlideShow->cList < cImage >::Next(m_pCurImage);
+ pNewActiv = m_pCurSlideShow->cList < cImageData >::Next(m_pCurImage);
m_pCurImage = pNewActiv;
++m_nCurrentImage;
}
return m_pCurImage != NULL;
}
else if(ImageSetup.m_bAutoRepeat) {
- cImage *pNewActiv;
+ cImageData *pNewActiv;
- pNewActiv = m_pCurSlideShow->cList < cImage >::First();
+ pNewActiv = m_pCurSlideShow->cList < cImageData >::First();
m_pCurImage = pNewActiv;
m_nCurrentImage = 1;
@@ -135,19 +135,19 @@ bool cActivSlideShow::NextImage(int nOffset)
bool cActivSlideShow::PrevImage(int nOffset)
{
if(m_pCurImage && m_nCurrentImage > 1) {
- cImage *pNewActiv;
+ cImageData *pNewActiv;
for (int i = 0; (i < nOffset) && (m_nCurrentImage > 1); ++i) {
- pNewActiv = m_pCurSlideShow->cList < cImage >::Prev(m_pCurImage);
+ pNewActiv = m_pCurSlideShow->cList < cImageData >::Prev(m_pCurImage);
m_pCurImage = pNewActiv;
--m_nCurrentImage;
}
return m_pCurImage != NULL;
}
else if(ImageSetup.m_bAutoRepeat) {
- cImage *pNewActiv;
+ cImageData *pNewActiv;
- pNewActiv = m_pCurSlideShow->cList < cImage >::Last();
+ pNewActiv = m_pCurSlideShow->cList < cImageData >::Last();
m_pCurImage = pNewActiv;
m_nCurrentImage = m_nTotalImages;
return m_pCurImage != NULL;
@@ -159,12 +159,12 @@ bool cActivSlideShow::PrevImage(int nOffset)
bool cActivSlideShow::GotoImage(unsigned int nNewPictureIndex)
{
if(m_pCurImage && nNewPictureIndex > 0 && nNewPictureIndex < m_nTotalImages) {
- cImage *pNewActiv;
- pNewActiv = m_pCurSlideShow->cList < cImage >::First();
+ cImageData *pNewActiv;
+ pNewActiv = m_pCurSlideShow->cList < cImageData >::First();
m_pCurImage = pNewActiv;
m_nCurrentImage = 0;
for (unsigned int i = 0; i < nNewPictureIndex; ++i) {
- pNewActiv = m_pCurSlideShow->cList < cImage >::Next(m_pCurImage);
+ pNewActiv = m_pCurSlideShow->cList < cImageData >::Next(m_pCurImage);
m_pCurImage = pNewActiv;
++m_nCurrentImage;
}
@@ -173,10 +173,10 @@ bool cActivSlideShow::GotoImage(unsigned int nNewPictureIndex)
return false;
}
-int cActivSlideShow::GetJumpNames(int nOffset,cImage* pImage[],const unsigned int nMAX_BILDER)
+int cActivSlideShow::GetJumpNames(int nOffset,cImageData* pImage[],const unsigned int nMAX_BILDER)
{
unsigned int i;
- cImage *pNewActiv;
+ cImageData *pNewActiv;
int nBilder = 0;
if(m_pCurImage && m_nCurrentImage > 0) {
@@ -194,16 +194,16 @@ int cActivSlideShow::GetJumpNames(int nOffset,cImage* pImage[],const unsigned in
if(m_nCurrentImage < 1)
m_nCurrentImage = 1;
- pNewActiv = m_pCurSlideShow->cList < cImage >::First();
+ pNewActiv = m_pCurSlideShow->cList < cImageData >::First();
for (int n = 1; n < nJumpFirst && pNewActiv; ++n)
- pNewActiv = m_pCurSlideShow->cList < cImage >::Next(pNewActiv);
+ pNewActiv = m_pCurSlideShow->cList < cImageData >::Next(pNewActiv);
for (i = 0; (i < nMAX_BILDER) && ((nJumpFirst + i) <= m_nTotalImages) && pNewActiv; ++i,++nBilder) {
pImage[i] = pNewActiv;
dsyslog("imageplugin: File%d: %s", i, pNewActiv->Name());
if((nJumpFirst + i) == m_nCurrentImage)
m_pCurImage = pNewActiv;
- pNewActiv = m_pCurSlideShow->cList < cImage >::Next(pNewActiv);
+ pNewActiv = m_pCurSlideShow->cList < cImageData >::Next(pNewActiv);
}
}
return nBilder;
diff --git a/list.h b/list.h
index 47ba66e..ddcd678 100644
--- a/list.h
+++ b/list.h
@@ -12,7 +12,7 @@
#define ___IMAGE_LIST_H
class cSlideShow;
-class cImage;
+class cImageData;
class cFileSource;
class cActivSlideShow
@@ -24,18 +24,18 @@ class cActivSlideShow
/** Total number of Images in slide */
unsigned int m_nTotalImages;
/** Reference to current Image of this player */
- cImage *m_pCurImage;
+ cImageData *m_pCurImage;
public:
cActivSlideShow();
void Assign(cSlideShow *pCurSlideShow);
void Shutdown(void);
cSlideShow *SlideShow(void);
- cImage* GetImage();
+ cImageData* GetImage();
bool PrevImage(int nOffset);
bool GotoImage(unsigned int nNewPictureIndex);
bool NextImage(int nOffset);
- int GetJumpNames(int nOffset,cImage* pImage[],const unsigned int nMAX_BILDER);
+ int GetJumpNames(int nOffset,cImageData* pImage[],const unsigned int nMAX_BILDER);
void Remove(cFileSource* src);
diff --git a/player-image.c b/player-image.c
index 404268e..0718d5f 100644
--- a/player-image.c
+++ b/player-image.c
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <anbr at users.berlios.de>
* based on (C) 2003 Kai Tobias Burwieck <kai-at-burwieck.net>
*
* This code is distributed under the terms and conditions of the
@@ -99,7 +99,7 @@ bool cImagePlayer::GotoImage(unsigned int nNewPictureIndex)
bool cImagePlayer::Convert(const char *szChange)
{
- cImage* pImage = theSlideShow.GetImage();
+ cImageData* pImage = theSlideShow.GetImage();
if(pImage)
{
cShellWrapper* pCmd = new cShellWrapper;
@@ -135,7 +135,7 @@ bool cImagePlayer::ConvertJump(int nOffset)
{
register unsigned int w,h;
const unsigned int MAX_BILDER = 9;
- cImage* pImage[MAX_BILDER];
+ cImageData* pImage[MAX_BILDER];
for (w = 0; w < MAX_BILDER; ++w)
pImage[w] = NULL;
int nBilder = theSlideShow.GetJumpNames(nOffset,pImage,MAX_BILDER);
@@ -185,7 +185,7 @@ bool cImagePlayer::ConvertJump(int nOffset)
bool cImagePlayer::ConvertZoom(const char *szChange, int nZoomFaktor,
int nLeftPos, int nTopPos)
{
- cImage* pImage = theSlideShow.GetImage();
+ cImageData* pImage = theSlideShow.GetImage();
if(pImage)
{
cShellWrapper* pCmd = new cShellWrapper;
@@ -405,7 +405,7 @@ void cImagePlayer::ErrorMsg()
const char* cImagePlayer::FileName(void) const
{
- cImage* pImage = theSlideShow.GetImage();
+ cImageData* pImage = theSlideShow.GetImage();
return pImage?pImage->Name():NULL;
}
diff --git a/player-image.h b/player-image.h
index 026b21f..ab46ee1 100644
--- a/player-image.h
+++ b/player-image.h
@@ -19,7 +19,7 @@
#include <vdr/player.h>
#include <liboutput/stillimage-player.h>
-class cImage;
+class cImageData;
class cSlideShow;
struct cShellWrapper {
diff --git a/po/ca_ES.po b/po/ca_ES.po
index 4df3c53..46dbf01 100644
--- a/po/ca_ES.po
+++ b/po/ca_ES.po
@@ -23,10 +23,11 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2008-03-27 20:59+0100\n"
+"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/po/cs_CZ.po b/po/cs_CZ.po
index 2501e5e..11d2ffd 100644
--- a/po/cs_CZ.po
+++ b/po/cs_CZ.po
@@ -23,10 +23,11 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2008-03-27 20:59+0100\n"
+"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/po/da_DK.po b/po/da_DK.po
index 0c3d0f0..f371522 100644
--- a/po/da_DK.po
+++ b/po/da_DK.po
@@ -23,10 +23,11 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2008-03-27 20:59+0100\n"
+"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/po/de_DE.po b/po/de_DE.po
index a970f40..85df513 100644
--- a/po/de_DE.po
+++ b/po/de_DE.po
@@ -23,10 +23,11 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2008-03-27 20:59+0100\n"
+"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: Andreas Brachold <anbr at users.berlios.de>\n"
"Language-Team: <vdr at linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/po/el_GR.po b/po/el_GR.po
index f3d96ce..7558aad 100644
--- a/po/el_GR.po
+++ b/po/el_GR.po
@@ -23,10 +23,11 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2008-03-27 20:59+0100\n"
+"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-7\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/po/es_ES.po b/po/es_ES.po
index 93fc5c9..939606f 100644
--- a/po/es_ES.po
+++ b/po/es_ES.po
@@ -24,10 +24,11 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2008-03-27 20:59+0100\n"
+"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: Jesús Bravo Álvarez <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/po/et_EE.po b/po/et_EE.po
index 1cc1b6d..a64a059 100644
--- a/po/et_EE.po
+++ b/po/et_EE.po
@@ -23,10 +23,11 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2008-03-27 20:59+0100\n"
+"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-13\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/po/fi_FI.po b/po/fi_FI.po
index 8fa872a..4c3fc45 100644
--- a/po/fi_FI.po
+++ b/po/fi_FI.po
@@ -24,10 +24,11 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2008-03-27 20:59+0100\n"
+"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: Rolf Ahrenberg <rahrenbe at cc.hut.fi>\n"
"Language-Team: <vdr at linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/po/fr_FR.po b/po/fr_FR.po
index cf315a2..01f1be8 100644
--- a/po/fr_FR.po
+++ b/po/fr_FR.po
@@ -24,10 +24,11 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2008-03-27 20:59+0100\n"
+"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: NIVAL Michaël <mnival at club-internet.fr>\n"
"Language-Team: <vdr at linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/po/hr_HR.po b/po/hr_HR.po
index 8f03da3..524b1e2 100644
--- a/po/hr_HR.po
+++ b/po/hr_HR.po
@@ -23,10 +23,11 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2008-03-27 20:59+0100\n"
+"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/po/hu_HU.po b/po/hu_HU.po
index 8a85622..e3afd1d 100644
--- a/po/hu_HU.po
+++ b/po/hu_HU.po
@@ -23,10 +23,11 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2008-03-27 20:59+0100\n"
+"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/po/it_IT.po b/po/it_IT.po
index 6c2e2b7..4dc8bc0 100644
--- a/po/it_IT.po
+++ b/po/it_IT.po
@@ -23,10 +23,11 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2008-06-25 06:16+0200\n"
+"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2008-08-13 22:17+0100\n"
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
"Language-Team: <vdr at linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -162,6 +163,6 @@ msgstr "Bordo per Underscan (largh.)"
#~ msgid "no"
#~ msgstr "no"
+
#~ msgid "yes"
#~ msgstr "sì"
-
diff --git a/po/nl_NL.po b/po/nl_NL.po
index 89c72df..1a29aaa 100644
--- a/po/nl_NL.po
+++ b/po/nl_NL.po
@@ -23,10 +23,11 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2008-03-27 20:59+0100\n"
+"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/po/nn_NO.po b/po/nn_NO.po
index f01f8c0..f7c2c24 100644
--- a/po/nn_NO.po
+++ b/po/nn_NO.po
@@ -23,10 +23,11 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2008-03-27 20:59+0100\n"
+"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/po/pl_PL.po b/po/pl_PL.po
index e72090e..a8dc825 100644
--- a/po/pl_PL.po
+++ b/po/pl_PL.po
@@ -23,10 +23,11 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2008-03-27 20:59+0100\n"
+"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/po/pt_PT.po b/po/pt_PT.po
index 395a184..a095690 100644
--- a/po/pt_PT.po
+++ b/po/pt_PT.po
@@ -23,10 +23,11 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2008-03-27 20:59+0100\n"
+"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/po/ro_RO.po b/po/ro_RO.po
index 645dc90..9a573ca 100644
--- a/po/ro_RO.po
+++ b/po/ro_RO.po
@@ -23,10 +23,11 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2008-03-27 20:59+0100\n"
+"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/po/ru_RU.po b/po/ru_RU.po
index 7975695..e3bb0a6 100644
--- a/po/ru_RU.po
+++ b/po/ru_RU.po
@@ -23,10 +23,11 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2008-03-27 20:59+0100\n"
+"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-5\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/po/sl_SI.po b/po/sl_SI.po
index cd3dfd1..a86ecc3 100644
--- a/po/sl_SI.po
+++ b/po/sl_SI.po
@@ -23,10 +23,11 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2008-03-27 20:59+0100\n"
+"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/po/sv_SE.po b/po/sv_SE.po
index 8c1f383..8963d9e 100644
--- a/po/sv_SE.po
+++ b/po/sv_SE.po
@@ -23,10 +23,11 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2008-03-27 20:59+0100\n"
+"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
diff --git a/po/tr_TR.po b/po/tr_TR.po
index c6bbcf8..0bc307c 100644
--- a/po/tr_TR.po
+++ b/po/tr_TR.po
@@ -23,10 +23,11 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2008-03-27 20:59+0100\n"
+"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: Oktay Yolgeçen <oktay_73 at yahoo.de>\n"
"Language-Team: <vdr at linuxtv.org>\n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-9\n"
"Content-Transfer-Encoding: 8bit\n"