From 7915728c0daf44bc55a04c5190ea08172728b0a7 Mon Sep 17 00:00:00 2001 From: Andreas Brachold Date: Mon, 8 Oct 2007 16:58:00 +0000 Subject: * Add setup option to hide main menu entry (Thanks to Alf Fahland, for summit a patch) * Fix some compiler warnings * Remove pregenerated header from i18n files and set proper owner, if known --- HISTORY | 4 +++ Makefile | 2 +- data.c | 2 +- exif.c | 2 +- image.c | 2 +- libimage/error.xpm | 2 +- libimage/error_small.xpm | 2 +- libimage/img1.xpm | 2 +- libimage/img2.xpm | 2 +- libimage/img3.xpm | 2 +- libimage/img4.xpm | 2 +- libimage/img5.xpm | 2 +- libimage/img6.xpm | 2 +- libimage/img7.xpm | 2 +- libimage/img8.xpm | 2 +- libimage/img9.xpm | 2 +- libimage/pnm.c | 2 +- libimage/pnm.h | 2 +- libimage/xpm.c | 6 ++-- libimage/xpm.h | 4 +-- player-image.c | 9 +++--- po/ca_ES.po | 74 ++++++++++++++++++++++++++++----------------- po/cs_CZ.po | 72 ++++++++++++++++++++++++++++---------------- po/da_DK.po | 72 ++++++++++++++++++++++++++++---------------- po/de_DE.po | 74 ++++++++++++++++++++++++++++----------------- po/el_GR.po | 72 ++++++++++++++++++++++++++++---------------- po/es_ES.po | 75 +++++++++++++++++++++++++++++----------------- po/et_EE.po | 72 ++++++++++++++++++++++++++++---------------- po/fi_FI.po | 78 +++++++++++++++++++++++++++++------------------- po/fr_FR.po | 76 ++++++++++++++++++++++++++++------------------ po/hr_HR.po | 73 +++++++++++++++++++++++++++----------------- po/hu_HU.po | 73 +++++++++++++++++++++++++++----------------- po/image.pot | 42 ++++++++++++++------------ po/it_IT.po | 76 ++++++++++++++++++++++++++++------------------ po/nl_NL.po | 76 ++++++++++++++++++++++++++++------------------ po/nn_NO.po | 73 +++++++++++++++++++++++++++----------------- po/pl_PL.po | 72 ++++++++++++++++++++++++++++---------------- po/pt_PT.po | 74 ++++++++++++++++++++++++++++----------------- po/ro_RO.po | 73 +++++++++++++++++++++++++++----------------- po/ru_RU.po | 74 ++++++++++++++++++++++++++++----------------- po/sl_SI.po | 73 +++++++++++++++++++++++++++----------------- po/sv_SE.po | 73 +++++++++++++++++++++++++++----------------- po/tr_TR.po | 72 ++++++++++++++++++++++++++++---------------- setup-image.c | 8 +++++ setup-image.h | 3 ++ 45 files changed, 1041 insertions(+), 616 deletions(-) diff --git a/HISTORY b/HISTORY index 1a3a721..7cd71ac 100644 --- a/HISTORY +++ b/HISTORY @@ -1,6 +1,10 @@ VDR Plugin 'image' Revision History ----------------------------------- +2007-10-08 +- Check for codec only at startup +- Add setup option to hide main menu entry (Thanks to Alf Fahland, for summit a patch) + 2007-08-22 - begin developer series 0.3.x - Use now gettext for i18n texts, introduced with vdr-1.5.8 (Required) diff --git a/Makefile b/Makefile index b5b247f..3c41800 100644 --- a/Makefile +++ b/Makefile @@ -161,7 +161,7 @@ I18Npot = $(PODIR)/$(PLUGIN).pot msgfmt -c -o $@ $< $(I18Npot): $(wildcard *.c) - xgettext -C -cTRANSLATORS --no-wrap -F -k -ktr -ktrNOOP --msgid-bugs-address='' -o $@ $(wildcard *.c) + xgettext -C -cTRANSLATORS --no-wrap -F -k -ktr -ktrNOOP --msgid-bugs-address='Andreas Brachold ' -o $@ $(wildcard *.c) $(I18Npo): $(I18Npot) msgmerge -U --no-wrap -F --backup=none -q $@ $< diff --git a/data.c b/data.c index 9a8cba8..87bf6c5 100644 --- a/data.c +++ b/data.c @@ -430,7 +430,7 @@ bool cFileSource::Parse(char *s) bool cFileSource::Action(eAction act) { - static char *str[] = { "mount", "unmount", "eject", "status" }; + static const char *str[] = { "mount", "unmount", "eject", "status" }; char *cmd = 0; asprintf(&cmd, "%s %s %s", g_szMountScript, str[act], basedir); diff --git a/exif.c b/exif.c index efee114..209571f 100644 --- a/exif.c +++ b/exif.c @@ -81,7 +81,7 @@ static bool MarkerNodes (std::string& s, ExifData *d) c = exif_mnote_data_count (md); for (i = 0; i < c; i++) { p = exif_mnote_data_get_value (md, i, v, sizeof (v)); - if (p && v && strlen(v)) { + if (p && strlen(v)) { const char * t = exif_mnote_data_get_title (md, i); s += t ? t : ""; s += ":\t"; diff --git a/image.c b/image.c index f4e90c7..242f63e 100644 --- a/image.c +++ b/image.c @@ -51,7 +51,7 @@ public: virtual const char *CommandLineHelp(void); virtual bool ProcessArgs(int argc, char *argv[]); virtual bool Start(void); - virtual const char *MainMenuEntry(void) { return tr("Image"); } + virtual const char *MainMenuEntry(void) { return (ImageSetup.m_bHideMenu ? NULL : tr("Image")); } virtual cOsdMenu *MainMenuAction(void); virtual cMenuSetupPage *SetupMenu(void); virtual bool SetupParse(const char *Name, const char *Value); diff --git a/libimage/error.xpm b/libimage/error.xpm index f704a56..deeec9a 100644 --- a/libimage/error.xpm +++ b/libimage/error.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * error_xpm[] = { +static const char * error_xpm[] = { "491 386 65 1", " c None", ". c #5E605D", diff --git a/libimage/error_small.xpm b/libimage/error_small.xpm index 5c61f2a..ffd582e 100644 --- a/libimage/error_small.xpm +++ b/libimage/error_small.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * error_small_xpm[] = { +static const char * error_small_xpm[] = { "150 115 65 1", " c None", ". c #5F605E", diff --git a/libimage/img1.xpm b/libimage/img1.xpm index 02143eb..de075f6 100644 --- a/libimage/img1.xpm +++ b/libimage/img1.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * img1_xpm[] = { +static const char * img1_xpm[] = { "37 50 3 1", " c None", ". c #000000", diff --git a/libimage/img2.xpm b/libimage/img2.xpm index f4046e4..68b2f2b 100644 --- a/libimage/img2.xpm +++ b/libimage/img2.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * img2_xpm[] = { +static const char * img2_xpm[] = { "42 50 3 1", " c None", ". c #000000", diff --git a/libimage/img3.xpm b/libimage/img3.xpm index c83fa64..d56a9df 100644 --- a/libimage/img3.xpm +++ b/libimage/img3.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * img3_xpm[] = { +static const char * img3_xpm[] = { "42 50 3 1", " c None", ". c #000000", diff --git a/libimage/img4.xpm b/libimage/img4.xpm index 3be99a9..fa50c91 100644 --- a/libimage/img4.xpm +++ b/libimage/img4.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * img4_xpm[] = { +static const char * img4_xpm[] = { "44 50 3 1", " c None", ". c #000000", diff --git a/libimage/img5.xpm b/libimage/img5.xpm index 9aa80d3..9201405 100644 --- a/libimage/img5.xpm +++ b/libimage/img5.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * img5_xpm[] = { +static const char * img5_xpm[] = { "43 50 3 1", " c None", ". c #000000", diff --git a/libimage/img6.xpm b/libimage/img6.xpm index e915233..92d22f1 100644 --- a/libimage/img6.xpm +++ b/libimage/img6.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * img6_xpm[] = { +static const char * img6_xpm[] = { "41 50 3 1", " c None", ". c #000000", diff --git a/libimage/img7.xpm b/libimage/img7.xpm index d9ef9e5..b8d8230 100644 --- a/libimage/img7.xpm +++ b/libimage/img7.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * img7_xpm[] = { +static const char * img7_xpm[] = { "43 50 3 1", " c None", ". c #000000", diff --git a/libimage/img8.xpm b/libimage/img8.xpm index 3baee10..c82d72d 100644 --- a/libimage/img8.xpm +++ b/libimage/img8.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * img8_xpm[] = { +static const char * img8_xpm[] = { "42 50 3 1", " c None", ". c #000000", diff --git a/libimage/img9.xpm b/libimage/img9.xpm index 31debe9..f08202b 100644 --- a/libimage/img9.xpm +++ b/libimage/img9.xpm @@ -1,5 +1,5 @@ /* XPM */ -static char * img9_xpm[] = { +static const char * img9_xpm[] = { "39 50 3 1", " c None", ". c #000000", diff --git a/libimage/pnm.c b/libimage/pnm.c index cb91dc5..f9b6b36 100644 --- a/libimage/pnm.c +++ b/libimage/pnm.c @@ -33,7 +33,7 @@ Print error message and get out @param variable list of arguments explaining error @return - none*/ -void cPNM::error(char* format, ... ) +void cPNM::error(const char* format, ... ) { if(m_szError) free(m_szError); diff --git a/libimage/pnm.h b/libimage/pnm.h index 1b4d50e..f97cbda 100644 --- a/libimage/pnm.h +++ b/libimage/pnm.h @@ -139,7 +139,7 @@ protected: Print error message and get out @param variable list of arguments explaining error @return - none*/ - void error (char* format, ... ); + void error (const char* format, ... ); /***************************************************************************** Get pnm magic number (P1, P2, ...) diff --git a/libimage/xpm.c b/libimage/xpm.c index 2165f1f..bfcb1ad 100644 --- a/libimage/xpm.c +++ b/libimage/xpm.c @@ -55,10 +55,10 @@ cXPM gOverlay_Image_9(img9_xpm); cXPM gOverlay_Error(error_xpm); cXPM gOverlay_ErrorSmall(error_small_xpm); -cXPM::cXPM(char* pXPM[]) +cXPM::cXPM(const char* pXPM[]) :m_Colors(NULL) { - char **p = pXPM; + const char **p = pXPM; int c; if (4 != sscanf(*p, "%d %d %d %d", &m_nWidth, &m_nHeight, &m_nColors, &c) || c != 1 ) @@ -117,7 +117,7 @@ bool cXPM::Overlay(unsigned char* pRGBMem,unsigned int nMemWidth,unsigned int nM if(!m_Colors || !pRGBMem || !m_pXPM) return false; - char **p = m_pXPM; + const char **p = m_pXPM; for(unsigned int h = 0; h < m_nHeight diff --git a/libimage/xpm.h b/libimage/xpm.h index ace7837..3268ce2 100644 --- a/libimage/xpm.h +++ b/libimage/xpm.h @@ -29,7 +29,7 @@ class cXPM { - char **m_pXPM; + const char **m_pXPM; unsigned int m_nWidth; unsigned int m_nHeight; unsigned int m_nColors; @@ -42,7 +42,7 @@ class cXPM protected: bool GetColor(unsigned int color,unsigned int& rgb) const; public: - cXPM(char* pXPM[]); + cXPM(const char* pXPM[]); virtual ~cXPM(); enum ePlacement diff --git a/player-image.c b/player-image.c index 449350a..f0c43e8 100644 --- a/player-image.c +++ b/player-image.c @@ -331,7 +331,8 @@ void cImagePlayer::LoadImage(cShellWrapper* pShell) // Build Error, depends PNM Errormsg or system messages char szErr[128]; - + szErr[0] = '\0'; + if(pnmImage.GetError()) strncpy(szErr,pnmImage.GetError(),sizeof(szErr)); else if(errno) { @@ -343,18 +344,18 @@ void cImagePlayer::LoadImage(cShellWrapper* pShell) } // Make Syslog entry - if(pShell && pShell->szPNM && szErr) + if(pShell && pShell->szPNM && szErr[0] != '\0') esyslog("imageplugin: Error until read %s : '%s'", pShell->szPNM, szErr); else if(pShell && pShell->szPNM) esyslog("imageplugin: Error until read %s", pShell->szPNM); else - esyslog("imageplugin: Error until read image %s",szErr?szErr:""); + esyslog("imageplugin: Error until read image %s",(szErr[0] != '\0')?szErr:""); { // Copy Errormessage forward to OSD Thread cMutexLock lock(&m_MutexErr); if(m_szError) free(m_szError); - if(szErr) + if(szErr[0] != '\0') asprintf(&m_szError, "%s : %s", tr("Image couldn't load"),szErr); else m_szError = strdup(tr("Image couldn't load")); diff --git a/po/ca_ES.po b/po/ca_ES.po index b986f9f..90e69eb 100644 --- a/po/ca_ES.po +++ b/po/ca_ES.po @@ -1,18 +1,32 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Marc Rovira Vall , 2003 -# Ramon Roca , 2003 -# Jordi Vilà , 2003 -# +# * +# * Image plugin to VDR (C++) +# * +# * (C) 2004 - 2007 Andreas Brachold +# * based on (C) 2003 Kai Tobias Burwieck +# * +# * This code is free software; you can redistribute it and/or +# * modify it under the terms of the GNU General Public License +# * as published by the Free Software Foundation; either version 2 +# * of the License, or (at your option) any later version. +# * +# * This code is distributed in the hope that it will be useful, +# * but WITHOUT ANY WARRANTY; without even the implied warranty of +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# * GNU General Public License for more details. +# * +# * You should have received a copy of the GNU General Public License +# * along with this program; if not, write to the Free Software +# * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# * Or, point your browser to http://www.gnu.org/copyleft/gpl.html +# * msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-18 13:02+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: 2007-08-18 08:13+0200\n" -"Last-Translator: Jordi Vilà \n" -"Language-Team: \n" +"Last-Translator: FULL NAME \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" @@ -63,7 +77,7 @@ msgstr "Retornar" msgid "A Image Viewer plugin" msgstr "" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "" @@ -139,56 +153,60 @@ msgstr "No puc desmontar!" msgid "Eject failed!" msgstr "No puc expulsar!" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "" -#: setup-image.c:110 -msgid "Slide show" +#: setup-image.c:114 +msgid "Hide main menu entry" msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "no" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "sí" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "" diff --git a/po/cs_CZ.po b/po/cs_CZ.po index 7260623..c86025a 100644 --- a/po/cs_CZ.po +++ b/po/cs_CZ.po @@ -1,16 +1,32 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Vladimír Bárta , 2006 -# +# * +# * Image plugin to VDR (C++) +# * +# * (C) 2004 - 2007 Andreas Brachold +# * based on (C) 2003 Kai Tobias Burwieck +# * +# * This code is free software; you can redistribute it and/or +# * modify it under the terms of the GNU General Public License +# * as published by the Free Software Foundation; either version 2 +# * of the License, or (at your option) any later version. +# * +# * This code is distributed in the hope that it will be useful, +# * but WITHOUT ANY WARRANTY; without even the implied warranty of +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# * GNU General Public License for more details. +# * +# * You should have received a copy of the GNU General Public License +# * along with this program; if not, write to the Free Software +# * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# * Or, point your browser to http://www.gnu.org/copyleft/gpl.html +# * msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-18 13:02+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: 2007-08-18 08:13+0200\n" -"Last-Translator: Vladimír Bárta \n" -"Language-Team: \n" +"Last-Translator: FULL NAME \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" @@ -61,7 +77,7 @@ msgstr "Zp msgid "A Image Viewer plugin" msgstr "" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "" @@ -137,56 +153,60 @@ msgstr "" msgid "Eject failed!" msgstr "" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "" -#: setup-image.c:110 -msgid "Slide show" +#: setup-image.c:114 +msgid "Hide main menu entry" msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "ne" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "ano" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "" diff --git a/po/da_DK.po b/po/da_DK.po index 1deae03..48d70ed 100644 --- a/po/da_DK.po +++ b/po/da_DK.po @@ -1,16 +1,32 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Mogens Elneff , 2004 -# +# * +# * Image plugin to VDR (C++) +# * +# * (C) 2004 - 2007 Andreas Brachold +# * based on (C) 2003 Kai Tobias Burwieck +# * +# * This code is free software; you can redistribute it and/or +# * modify it under the terms of the GNU General Public License +# * as published by the Free Software Foundation; either version 2 +# * of the License, or (at your option) any later version. +# * +# * This code is distributed in the hope that it will be useful, +# * but WITHOUT ANY WARRANTY; without even the implied warranty of +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# * GNU General Public License for more details. +# * +# * You should have received a copy of the GNU General Public License +# * along with this program; if not, write to the Free Software +# * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# * Or, point your browser to http://www.gnu.org/copyleft/gpl.html +# * msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-18 13:02+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: 2007-08-18 08:13+0200\n" -"Last-Translator: Mogens Elneff \n" -"Language-Team: \n" +"Last-Translator: FULL NAME \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" @@ -61,7 +77,7 @@ msgstr "Tilbage" msgid "A Image Viewer plugin" msgstr "" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "" @@ -137,56 +153,60 @@ msgstr "" msgid "Eject failed!" msgstr "" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "" -#: setup-image.c:110 -msgid "Slide show" +#: setup-image.c:114 +msgid "Hide main menu entry" msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "nej" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "ja" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "" diff --git a/po/de_DE.po b/po/de_DE.po index c08e4d5..0a7d189 100644 --- a/po/de_DE.po +++ b/po/de_DE.po @@ -1,16 +1,32 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Klaus Schmidinger , 2000 -# +# * +# * Image plugin to VDR (C++) +# * +# * (C) 2004 - 2007 Andreas Brachold +# * based on (C) 2003 Kai Tobias Burwieck +# * +# * This code is free software; you can redistribute it and/or +# * modify it under the terms of the GNU General Public License +# * as published by the Free Software Foundation; either version 2 +# * of the License, or (at your option) any later version. +# * +# * This code is distributed in the hope that it will be useful, +# * but WITHOUT ANY WARRANTY; without even the implied warranty of +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# * GNU General Public License for more details. +# * +# * You should have received a copy of the GNU General Public License +# * along with this program; if not, write to the Free Software +# * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# * Or, point your browser to http://www.gnu.org/copyleft/gpl.html +# * msgid "" msgstr "" "Project-Id-Version: vdr-image 0.3.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-18 13:02+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: 2007-08-18 08:13+0200\n" -"Last-Translator: Klaus Schmidinger \n" -"Language-Team: \n" +"Last-Translator: Andreas Brachold \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" @@ -61,7 +77,7 @@ msgstr "Zur msgid "A Image Viewer plugin" msgstr "Ein Bildbetrachter Plugin" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "Bilder" @@ -137,56 +153,60 @@ msgstr "Aush msgid "Eject failed!" msgstr "Auswerfen fehlgeschlagen!" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "Konnte Bild nicht lesen" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "Scriptausführung fehlgeschlagen" -#: setup-image.c:110 -msgid "Slide show" -msgstr "Diavorführung" +#: setup-image.c:114 +msgid "Hide main menu entry" +msgstr "Hauptmenueintrag verstecken" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "nein" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "ja" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "Diavorführung" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "Anzeigedauer (Sek)" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "Wiederholung der Diavorführung" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "Zeige Zahlen im Indexbild" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "Live Audio vom primären Gerät" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "Verzeichnis mit temporären Dateien" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "Lösche temporäre Dateien" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "Rand für Underscan (Höhe)" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "Rand für Underscan (Breite)" diff --git a/po/el_GR.po b/po/el_GR.po index 1e12e41..8276e7b 100644 --- a/po/el_GR.po +++ b/po/el_GR.po @@ -1,16 +1,32 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Dimitrios Dimitrakos , 2002 -# +# * +# * Image plugin to VDR (C++) +# * +# * (C) 2004 - 2007 Andreas Brachold +# * based on (C) 2003 Kai Tobias Burwieck +# * +# * This code is free software; you can redistribute it and/or +# * modify it under the terms of the GNU General Public License +# * as published by the Free Software Foundation; either version 2 +# * of the License, or (at your option) any later version. +# * +# * This code is distributed in the hope that it will be useful, +# * but WITHOUT ANY WARRANTY; without even the implied warranty of +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# * GNU General Public License for more details. +# * +# * You should have received a copy of the GNU General Public License +# * along with this program; if not, write to the Free Software +# * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# * Or, point your browser to http://www.gnu.org/copyleft/gpl.html +# * msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-18 13:02+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: 2007-08-18 08:13+0200\n" -"Last-Translator: Dimitrios Dimitrakos \n" -"Language-Team: \n" +"Last-Translator: FULL NAME \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-7\n" "Content-Transfer-Encoding: 8bit\n" @@ -61,7 +77,7 @@ msgstr " msgid "A Image Viewer plugin" msgstr "" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "" @@ -137,56 +153,60 @@ msgstr "I aposindesi den itan epitixis!" msgid "Eject failed!" msgstr "I apovoli apetixe!" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "" -#: setup-image.c:110 -msgid "Slide show" +#: setup-image.c:114 +msgid "Hide main menu entry" msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "ü÷é" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "íáß" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "" diff --git a/po/es_ES.po b/po/es_ES.po index fd0dbbd..c566683 100644 --- a/po/es_ES.po +++ b/po/es_ES.po @@ -1,16 +1,33 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Ruben Nunez Francisco , 2002 -# +# * +# * Image plugin to VDR (C++) +# * +# * (C) 2004 - 2007 Andreas Brachold +# * based on (C) 2003 Kai Tobias Burwieck +# * Jesús Bravo Álvarez +# * +# * This code is free software; you can redistribute it and/or +# * modify it under the terms of the GNU General Public License +# * as published by the Free Software Foundation; either version 2 +# * of the License, or (at your option) any later version. +# * +# * This code is distributed in the hope that it will be useful, +# * but WITHOUT ANY WARRANTY; without even the implied warranty of +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# * GNU General Public License for more details. +# * +# * You should have received a copy of the GNU General Public License +# * along with this program; if not, write to the Free Software +# * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# * Or, point your browser to http://www.gnu.org/copyleft/gpl.html +# * msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-22 11:27+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: 2007-08-18 08:13+0200\n" -"Last-Translator: Ruben Nunez Francisco \n" -"Language-Team: \n" +"Last-Translator: Jesús Bravo Álvarez \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" @@ -61,7 +78,7 @@ msgstr "Atr msgid "A Image Viewer plugin" msgstr "Un plugin para visualizar imágenes" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "Imágenes" @@ -137,57 +154,61 @@ msgstr " msgid "Eject failed!" msgstr "¡No se puede expulsar!" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "No se pudo cargar la imagen" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "Fallo al ejecutar el script" -#: setup-image.c:110 -msgid "Slide show" -msgstr "Presentación de imágenes" +#: setup-image.c:114 +msgid "Hide main menu entry" +msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "no" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "sí" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "Presentación de imágenes" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "Duración de cada imagen (sg)" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "Repetir la presentación" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "Mostrar números en la imagen índice" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "Usar audio del dispositivo primario" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "Directorio para ficheros temporales" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "Borrar los ficheros temporales" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "Margen para underscan (altura)" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "Margen para underscan (anchura)" diff --git a/po/et_EE.po b/po/et_EE.po index a94f68e..2cf6e74 100644 --- a/po/et_EE.po +++ b/po/et_EE.po @@ -1,16 +1,32 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Arthur Konovalov , 2004 -# +# * +# * Image plugin to VDR (C++) +# * +# * (C) 2004 - 2007 Andreas Brachold +# * based on (C) 2003 Kai Tobias Burwieck +# * +# * This code is free software; you can redistribute it and/or +# * modify it under the terms of the GNU General Public License +# * as published by the Free Software Foundation; either version 2 +# * of the License, or (at your option) any later version. +# * +# * This code is distributed in the hope that it will be useful, +# * but WITHOUT ANY WARRANTY; without even the implied warranty of +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# * GNU General Public License for more details. +# * +# * You should have received a copy of the GNU General Public License +# * along with this program; if not, write to the Free Software +# * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# * Or, point your browser to http://www.gnu.org/copyleft/gpl.html +# * msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-18 13:02+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: 2007-08-18 08:13+0200\n" -"Last-Translator: Arthur Konovalov \n" -"Language-Team: \n" +"Last-Translator: FULL NAME \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-13\n" "Content-Transfer-Encoding: 8bit\n" @@ -61,7 +77,7 @@ msgstr "Tagasi" msgid "A Image Viewer plugin" msgstr "" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "" @@ -137,56 +153,60 @@ msgstr "" msgid "Eject failed!" msgstr "" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "" -#: setup-image.c:110 -msgid "Slide show" +#: setup-image.c:114 +msgid "Hide main menu entry" msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "ei" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "jah" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "" diff --git a/po/fi_FI.po b/po/fi_FI.po index 998b151..8447326 100644 --- a/po/fi_FI.po +++ b/po/fi_FI.po @@ -1,19 +1,33 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Hannu Savolainen , 2002 -# Jaakko Hyvätti , 2002 -# Niko Tarnanen , 2003 -# Rolf Ahrenberg , 2003 -# +# * +# * Image plugin to VDR (C++) +# * +# * (C) 2004 - 2007 Andreas Brachold +# * based on (C) 2003 Kai Tobias Burwieck +# * Rolf Ahrenberg , 2003 +# * +# * This code is free software; you can redistribute it and/or +# * modify it under the terms of the GNU General Public License +# * as published by the Free Software Foundation; either version 2 +# * of the License, or (at your option) any later version. +# * +# * This code is distributed in the hope that it will be useful, +# * but WITHOUT ANY WARRANTY; without even the implied warranty of +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# * GNU General Public License for more details. +# * +# * You should have received a copy of the GNU General Public License +# * along with this program; if not, write to the Free Software +# * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# * Or, point your browser to http://www.gnu.org/copyleft/gpl.html +# * msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-18 13:02+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: 2007-08-18 08:13+0200\n" -"Last-Translator: Rolf Ahrenberg \n" -"Language-Team: \n" +"Last-Translator: Rolf Ahrenberg \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" @@ -64,7 +78,7 @@ msgstr "Takaisin" msgid "A Image Viewer plugin" msgstr "Katso valokuvia ruudullasi" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "Kuvat" @@ -140,56 +154,60 @@ msgstr "Irrottaminen ep msgid "Eject failed!" msgstr "Avaaminen epäonnistui!" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "Kuvan lukeminen epäonnistui" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "Skriptin suoritus epäonnistui" -#: setup-image.c:110 -msgid "Slide show" -msgstr "Käytä diaesitystä" +#: setup-image.c:114 +msgid "Hide main menu entry" +msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "ei" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "kyllä" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "Käytä diaesitystä" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "Dian esitysaika (s)" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "Diaesityksen uudelleentoisto" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "Näytä numerot indeksikuvassa" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "Live-ääni ensisijaiselta sovittimelta" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "Väliaikaistiedostot" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "Tyhjennä väliaikaistiedostot" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "Reunuksen korkeus keskitykselle" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "Reunuksen leveys keskitykselle" diff --git a/po/fr_FR.po b/po/fr_FR.po index 53bca81..65d1f96 100644 --- a/po/fr_FR.po +++ b/po/fr_FR.po @@ -1,19 +1,33 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Jean-Claude Repetto , 2001 -# Olivier Jacques , 2003 -# Gregoire Favre , 2003 -# Nicolas Huillard , 2005 +# * +# * Image plugin to VDR (C++) +# * +# * (C) 2004 - 2007 Andreas Brachold +# * based on (C) 2003 Kai Tobias Burwieck +# * 2006 NIVAL Michaël # +# * This code is free software; you can redistribute it and/or +# * modify it under the terms of the GNU General Public License +# * as published by the Free Software Foundation; either version 2 +# * of the License, or (at your option) any later version. +# * +# * This code is distributed in the hope that it will be useful, +# * but WITHOUT ANY WARRANTY; without even the implied warranty of +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# * GNU General Public License for more details. +# * +# * You should have received a copy of the GNU General Public License +# * along with this program; if not, write to the Free Software +# * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# * Or, point your browser to http://www.gnu.org/copyleft/gpl.html +# * msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-18 13:02+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: 2007-08-18 08:13+0200\n" -"Last-Translator: Nicolas Huillard \n" -"Language-Team: \n" +"Last-Translator: NIVAL Michaël \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" @@ -64,7 +78,7 @@ msgstr "Retour" msgid "A Image Viewer plugin" msgstr "Visualisateur d'images" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "Images" @@ -140,56 +154,60 @@ msgstr "Echec du d msgid "Eject failed!" msgstr "Echec de l'éjection!" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "Impossible de charger l'image" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "Impossible d'exécuter le script" -#: setup-image.c:110 -msgid "Slide show" -msgstr "Projection de diapositives" +#: setup-image.c:114 +msgid "Hide main menu entry" +msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "non" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "oui" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "Projection de diapositives" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "Durée entre les images (Sec)" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "Répéter le diaporama" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "Afficher nombre sur la page d'index" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "Audio en direct" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "Répertoire temporaire" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "Effacer les fichiers temporaires" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "Frontière pour Underscan (taille)" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "Frontière pour Underscan (largeur)" diff --git a/po/hr_HR.po b/po/hr_HR.po index 1d5a189..5bc18a8 100644 --- a/po/hr_HR.po +++ b/po/hr_HR.po @@ -1,17 +1,32 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Drazen Dupor , 2004 -# Dino Ravnic , 2004 -# +# * +# * Image plugin to VDR (C++) +# * +# * (C) 2004 - 2007 Andreas Brachold +# * based on (C) 2003 Kai Tobias Burwieck +# * +# * This code is free software; you can redistribute it and/or +# * modify it under the terms of the GNU General Public License +# * as published by the Free Software Foundation; either version 2 +# * of the License, or (at your option) any later version. +# * +# * This code is distributed in the hope that it will be useful, +# * but WITHOUT ANY WARRANTY; without even the implied warranty of +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# * GNU General Public License for more details. +# * +# * You should have received a copy of the GNU General Public License +# * along with this program; if not, write to the Free Software +# * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# * Or, point your browser to http://www.gnu.org/copyleft/gpl.html +# * msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-18 13:02+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: 2007-08-18 08:13+0200\n" -"Last-Translator: Drazen Dupor \n" -"Language-Team: \n" +"Last-Translator: FULL NAME \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" @@ -62,7 +77,7 @@ msgstr "Nazad" msgid "A Image Viewer plugin" msgstr "" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "" @@ -138,56 +153,60 @@ msgstr "" msgid "Eject failed!" msgstr "" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "" -#: setup-image.c:110 -msgid "Slide show" +#: setup-image.c:114 +msgid "Hide main menu entry" msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "ne" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "da" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "" diff --git a/po/hu_HU.po b/po/hu_HU.po index c29e81d..3662b57 100644 --- a/po/hu_HU.po +++ b/po/hu_HU.po @@ -1,17 +1,32 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Istvan Koenigsberger , 2002 -# Guido Josten , 2002 -# +# * +# * Image plugin to VDR (C++) +# * +# * (C) 2004 - 2007 Andreas Brachold +# * based on (C) 2003 Kai Tobias Burwieck +# * +# * This code is free software; you can redistribute it and/or +# * modify it under the terms of the GNU General Public License +# * as published by the Free Software Foundation; either version 2 +# * of the License, or (at your option) any later version. +# * +# * This code is distributed in the hope that it will be useful, +# * but WITHOUT ANY WARRANTY; without even the implied warranty of +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# * GNU General Public License for more details. +# * +# * You should have received a copy of the GNU General Public License +# * along with this program; if not, write to the Free Software +# * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# * Or, point your browser to http://www.gnu.org/copyleft/gpl.html +# * msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-22 11:27+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: 2007-08-18 08:13+0200\n" -"Last-Translator: Istvan Koenigsberger , Guido Josten \n" -"Language-Team: \n" +"Last-Translator: FULL NAME \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" @@ -62,7 +77,7 @@ msgstr "Vissza" msgid "A Image Viewer plugin" msgstr "" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "" @@ -138,57 +153,61 @@ msgstr "" msgid "Eject failed!" msgstr "" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "" -#: setup-image.c:110 -msgid "Slide show" +#: setup-image.c:114 +msgid "Hide main menu entry" msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "nem" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "igen" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "" diff --git a/po/image.pot b/po/image.pot index 7f1d952..1a8b3e8 100644 --- a/po/image.pot +++ b/po/image.pot @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-22 11:27+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -62,7 +62,7 @@ msgstr "" msgid "A Image Viewer plugin" msgstr "" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "" @@ -138,56 +138,60 @@ msgstr "" msgid "Eject failed!" msgstr "" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "" -#: setup-image.c:110 -msgid "Slide show" +#: setup-image.c:114 +msgid "Hide main menu entry" msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "" diff --git a/po/it_IT.po b/po/it_IT.po index 5135cde..987c816 100644 --- a/po/it_IT.po +++ b/po/it_IT.po @@ -1,18 +1,32 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Alberto Carraro , 2001 -# Antonio Ospite , 2003 -# Sean Carlos , 2005 -# +# * +# * Image plugin to VDR (C++) +# * +# * (C) 2004 - 2007 Andreas Brachold +# * based on (C) 2003 Kai Tobias Burwieck +# * +# * This code is free software; you can redistribute it and/or +# * modify it under the terms of the GNU General Public License +# * as published by the Free Software Foundation; either version 2 +# * of the License, or (at your option) any later version. +# * +# * This code is distributed in the hope that it will be useful, +# * but WITHOUT ANY WARRANTY; without even the implied warranty of +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# * GNU General Public License for more details. +# * +# * You should have received a copy of the GNU General Public License +# * along with this program; if not, write to the Free Software +# * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# * Or, point your browser to http://www.gnu.org/copyleft/gpl.html +# * msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-18 13:02+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: 2007-08-18 08:13+0200\n" -"Last-Translator: Sean Carlos \n" -"Language-Team: \n" +"Last-Translator: FULL NAME \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" @@ -63,7 +77,7 @@ msgstr "Indietro" msgid "A Image Viewer plugin" msgstr "Un visore di immagine plugin" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "Immagine" @@ -139,56 +153,60 @@ msgstr "Smonti venuto a mancare!" msgid "Eject failed!" msgstr "Espella venuto a mancare!" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "L'immagine non ha potuto caricare" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "L'esecuzione dello scritto è venuto a mancare" -#: setup-image.c:110 -msgid "Slide show" -msgstr "Proiezione di diapositive" +#: setup-image.c:114 +msgid "Hide main menu entry" +msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "no" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "si" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "Proiezione di diapositive" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "Faccia scorrere la durata (sec)" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "Ripeti la proiezione di diapositive" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "Mostri i numeri sull'immagine di indice" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "Audio in tensione dal dispositivo primario" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "Indice con le lime provvisorie" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "Rimuova le lime provvisorie" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "Bordo per Underscan (altezza)" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "Bordo per Underscan (larghezza)" diff --git a/po/nl_NL.po b/po/nl_NL.po index 5fa4586..884c737 100644 --- a/po/nl_NL.po +++ b/po/nl_NL.po @@ -1,18 +1,32 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Arnold Niessen , 2001 -# Hans Dingemans , 2003 -# Maarten Wisse , 2005 -# +# * +# * Image plugin to VDR (C++) +# * +# * (C) 2004 - 2007 Andreas Brachold +# * based on (C) 2003 Kai Tobias Burwieck +# * +# * This code is free software; you can redistribute it and/or +# * modify it under the terms of the GNU General Public License +# * as published by the Free Software Foundation; either version 2 +# * of the License, or (at your option) any later version. +# * +# * This code is distributed in the hope that it will be useful, +# * but WITHOUT ANY WARRANTY; without even the implied warranty of +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# * GNU General Public License for more details. +# * +# * You should have received a copy of the GNU General Public License +# * along with this program; if not, write to the Free Software +# * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# * Or, point your browser to http://www.gnu.org/copyleft/gpl.html +# * msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-18 13:02+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: 2007-08-18 08:13+0200\n" -"Last-Translator: Maarten Wisse \n" -"Language-Team: \n" +"Last-Translator: FULL NAME \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" @@ -63,7 +77,7 @@ msgstr "Terug" msgid "A Image Viewer plugin" msgstr "Een Kijker van het Beeld plugin" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "Beelden" @@ -139,56 +153,60 @@ msgstr "Ontbroken Unmount!" msgid "Eject failed!" msgstr "Werp ontbroken uit!" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "Het beeld kon niet laden" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "Ontbroken de uitvoering van het manuscript" -#: setup-image.c:110 -msgid "Slide show" -msgstr "De show van de dia" +#: setup-image.c:114 +msgid "Hide main menu entry" +msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "nee" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "ja" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "De show van de dia" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "De duur van de dia (seconde)" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "Herhaal diashow" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "Toon aantallen op indexbeeld" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "Leef Audio van primair Apparaat" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "Folder met tijdelijke dossiers" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "Verwijder tijdelijke dossiers" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "Grens voor Underscan (Hoogte)" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "Grens voor Underscan (Breedte)" diff --git a/po/nn_NO.po b/po/nn_NO.po index 13542cb..cba6a5c 100644 --- a/po/nn_NO.po +++ b/po/nn_NO.po @@ -1,17 +1,32 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Jørgen Tvedt , 2001 -# Truls Slevigen , 2002 -# +# * +# * Image plugin to VDR (C++) +# * +# * (C) 2004 - 2007 Andreas Brachold +# * based on (C) 2003 Kai Tobias Burwieck +# * +# * This code is free software; you can redistribute it and/or +# * modify it under the terms of the GNU General Public License +# * as published by the Free Software Foundation; either version 2 +# * of the License, or (at your option) any later version. +# * +# * This code is distributed in the hope that it will be useful, +# * but WITHOUT ANY WARRANTY; without even the implied warranty of +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# * GNU General Public License for more details. +# * +# * You should have received a copy of the GNU General Public License +# * along with this program; if not, write to the Free Software +# * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# * Or, point your browser to http://www.gnu.org/copyleft/gpl.html +# * msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-18 13:02+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: 2007-08-18 08:13+0200\n" -"Last-Translator: Truls Slevigen \n" -"Language-Team: \n" +"Last-Translator: FULL NAME \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" @@ -62,7 +77,7 @@ msgstr "Tilbake" msgid "A Image Viewer plugin" msgstr "" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "" @@ -138,56 +153,60 @@ msgstr "" msgid "Eject failed!" msgstr "" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "" -#: setup-image.c:110 -msgid "Slide show" +#: setup-image.c:114 +msgid "Hide main menu entry" msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "nei" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "ja" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "" diff --git a/po/pl_PL.po b/po/pl_PL.po index 3158427..7d011ea 100644 --- a/po/pl_PL.po +++ b/po/pl_PL.po @@ -1,16 +1,32 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Michael Rakowski , 2002 -# +# * +# * Image plugin to VDR (C++) +# * +# * (C) 2004 - 2007 Andreas Brachold +# * based on (C) 2003 Kai Tobias Burwieck +# * +# * This code is free software; you can redistribute it and/or +# * modify it under the terms of the GNU General Public License +# * as published by the Free Software Foundation; either version 2 +# * of the License, or (at your option) any later version. +# * +# * This code is distributed in the hope that it will be useful, +# * but WITHOUT ANY WARRANTY; without even the implied warranty of +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# * GNU General Public License for more details. +# * +# * You should have received a copy of the GNU General Public License +# * along with this program; if not, write to the Free Software +# * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# * Or, point your browser to http://www.gnu.org/copyleft/gpl.html +# * msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-18 13:02+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: 2007-08-18 08:13+0200\n" -"Last-Translator: Michael Rakowski \n" -"Language-Team: \n" +"Last-Translator: FULL NAME \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" @@ -61,7 +77,7 @@ msgstr "Wstecz" msgid "A Image Viewer plugin" msgstr "" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "" @@ -137,56 +153,60 @@ msgstr "" msgid "Eject failed!" msgstr "" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "" -#: setup-image.c:110 -msgid "Slide show" +#: setup-image.c:114 +msgid "Hide main menu entry" msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "nie" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "tak" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "" diff --git a/po/pt_PT.po b/po/pt_PT.po index 451a4f5..759c7c7 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -1,16 +1,32 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Paulo Lopes , 2001 -# +# * +# * Image plugin to VDR (C++) +# * +# * (C) 2004 - 2007 Andreas Brachold +# * based on (C) 2003 Kai Tobias Burwieck +# * +# * This code is free software; you can redistribute it and/or +# * modify it under the terms of the GNU General Public License +# * as published by the Free Software Foundation; either version 2 +# * of the License, or (at your option) any later version. +# * +# * This code is distributed in the hope that it will be useful, +# * but WITHOUT ANY WARRANTY; without even the implied warranty of +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# * GNU General Public License for more details. +# * +# * You should have received a copy of the GNU General Public License +# * along with this program; if not, write to the Free Software +# * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# * Or, point your browser to http://www.gnu.org/copyleft/gpl.html +# * msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-18 13:02+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: 2007-08-18 08:13+0200\n" -"Last-Translator: Paulo Lopes \n" -"Language-Team: \n" +"Last-Translator: FULL NAME \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" @@ -61,7 +77,7 @@ msgstr "Voltar" msgid "A Image Viewer plugin" msgstr "Um visor da imagem plugin" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "Imagens" @@ -137,56 +153,60 @@ msgstr "Unmount falhado!" msgid "Eject failed!" msgstr "Ejete falhado!" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "A imagem não podia carregar" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "A execução do certificado falhou" -#: setup-image.c:110 -msgid "Slide show" -msgstr "Mostra de corrediça" +#: setup-image.c:114 +msgid "Hide main menu entry" +msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "não" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "sim" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "Mostra de corrediça" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "Deslize a duração (segundo)" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "Repita a mostra de corrediça" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "Mostre números na imagem do índice" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "Áudio vivo do dispositivo preliminar" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "Diretório com limas provisórias" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "Remova as limas provisórias" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "Beira para Underscan (altura)" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "Beira para Underscan (largura)" diff --git a/po/ro_RO.po b/po/ro_RO.po index 051e773..73d755b 100644 --- a/po/ro_RO.po +++ b/po/ro_RO.po @@ -1,17 +1,32 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Paul Lacatus , 2002 -# Lucian Muresan , 2004 -# +# * +# * Image plugin to VDR (C++) +# * +# * (C) 2004 - 2007 Andreas Brachold +# * based on (C) 2003 Kai Tobias Burwieck +# * +# * This code is free software; you can redistribute it and/or +# * modify it under the terms of the GNU General Public License +# * as published by the Free Software Foundation; either version 2 +# * of the License, or (at your option) any later version. +# * +# * This code is distributed in the hope that it will be useful, +# * but WITHOUT ANY WARRANTY; without even the implied warranty of +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# * GNU General Public License for more details. +# * +# * You should have received a copy of the GNU General Public License +# * along with this program; if not, write to the Free Software +# * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# * Or, point your browser to http://www.gnu.org/copyleft/gpl.html +# * msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-18 13:02+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: 2007-08-18 08:13+0200\n" -"Last-Translator: Lucian Muresan \n" -"Language-Team: \n" +"Last-Translator: FULL NAME \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" @@ -62,7 +77,7 @@ msgstr " msgid "A Image Viewer plugin" msgstr "" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "" @@ -138,56 +153,60 @@ msgstr "" msgid "Eject failed!" msgstr "" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "" -#: setup-image.c:110 -msgid "Slide show" +#: setup-image.c:114 +msgid "Hide main menu entry" msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "nu" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "da" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "" diff --git a/po/ru_RU.po b/po/ru_RU.po index eef79de..24e3272 100644 --- a/po/ru_RU.po +++ b/po/ru_RU.po @@ -1,16 +1,32 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Vyacheslav Dikonov , 2004 -# +# * +# * Image plugin to VDR (C++) +# * +# * (C) 2004 - 2007 Andreas Brachold +# * based on (C) 2003 Kai Tobias Burwieck +# * +# * This code is free software; you can redistribute it and/or +# * modify it under the terms of the GNU General Public License +# * as published by the Free Software Foundation; either version 2 +# * of the License, or (at your option) any later version. +# * +# * This code is distributed in the hope that it will be useful, +# * but WITHOUT ANY WARRANTY; without even the implied warranty of +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# * GNU General Public License for more details. +# * +# * You should have received a copy of the GNU General Public License +# * along with this program; if not, write to the Free Software +# * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# * Or, point your browser to http://www.gnu.org/copyleft/gpl.html +# * msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-18 13:02+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: 2007-08-18 08:13+0200\n" -"Last-Translator: Vyacheslav Dikonov \n" -"Language-Team: \n" +"Last-Translator: FULL NAME \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-5\n" "Content-Transfer-Encoding: 8bit\n" @@ -61,7 +77,7 @@ msgstr " msgid "A Image Viewer plugin" msgstr "¿ÛÐÓØÝ ÔÛï ßàÞáÜÞâàÐ Ø×ÞÑàÐÖÕÝØÙ" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "¸×ÞÑàÐÖÕÝØï" @@ -137,56 +153,60 @@ msgstr " msgid "Eject failed!" msgstr "¾èØÑÚÐ ÒëÑàÞáÐ ÔØáÚÐ!" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "¾èØÑÚÐ çâÕÝØï äÐÙÛÐ" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "¾èØÑÚÐ ÒëßÞÛÝÕÝØï áÚàØßâÐ!" -#: setup-image.c:110 -msgid "Slide show" -msgstr "´ØÐäØÛìÜ?" +#: setup-image.c:114 +msgid "Hide main menu entry" +msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "ÝÕâ" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "ÔÐ" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "´ØÐäØÛìÜ?" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "²àÕÜï ÞâÞÑàÐÖÕÝØï (áÕÚ)" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "¿ÞÒâÞà ÔØÐäØÛìÜÐ" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "¿ÞÚÐ×Ðâì ÝÞÜÕàÐ Ò ØÝÔÕÚáÕ" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "¸áßÞÛì×ÞÒÐâì ÐÚâØÒÝÞÕ(Live) ×ÒãÚÞÒÞÕ áÞßàÞÒÞÖÔÕÝØÕ" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "¼À ÔØàÕÚâÞàØï" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "áâØàÐÝØÕ tmp äÐÙÛÞÒ" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "" diff --git a/po/sl_SI.po b/po/sl_SI.po index 0e8c889..e97c676 100644 --- a/po/sl_SI.po +++ b/po/sl_SI.po @@ -1,17 +1,32 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Miha Setina , 2000 -# Matjaz Thaler , 2003 -# +# * +# * Image plugin to VDR (C++) +# * +# * (C) 2004 - 2007 Andreas Brachold +# * based on (C) 2003 Kai Tobias Burwieck +# * +# * This code is free software; you can redistribute it and/or +# * modify it under the terms of the GNU General Public License +# * as published by the Free Software Foundation; either version 2 +# * of the License, or (at your option) any later version. +# * +# * This code is distributed in the hope that it will be useful, +# * but WITHOUT ANY WARRANTY; without even the implied warranty of +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# * GNU General Public License for more details. +# * +# * You should have received a copy of the GNU General Public License +# * along with this program; if not, write to the Free Software +# * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# * Or, point your browser to http://www.gnu.org/copyleft/gpl.html +# * msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-18 13:02+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: 2007-08-18 08:13+0200\n" -"Last-Translator: Matjaz Thaler \n" -"Language-Team: \n" +"Last-Translator: FULL NAME \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" @@ -62,7 +77,7 @@ msgstr "Nazaj" msgid "A Image Viewer plugin" msgstr "" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "" @@ -138,56 +153,60 @@ msgstr "Napaka pri izklopu!" msgid "Eject failed!" msgstr "Napaka pri izmetu!" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "" -#: setup-image.c:110 -msgid "Slide show" +#: setup-image.c:114 +msgid "Hide main menu entry" msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "ne" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "da" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "" diff --git a/po/sv_SE.po b/po/sv_SE.po index c856ab7..807feaf 100644 --- a/po/sv_SE.po +++ b/po/sv_SE.po @@ -1,17 +1,32 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Tomas Prybil , 2002 -# Jan Ekholm , 2003 -# +# * +# * Image plugin to VDR (C++) +# * +# * (C) 2004 - 2007 Andreas Brachold +# * based on (C) 2003 Kai Tobias Burwieck +# * +# * This code is free software; you can redistribute it and/or +# * modify it under the terms of the GNU General Public License +# * as published by the Free Software Foundation; either version 2 +# * of the License, or (at your option) any later version. +# * +# * This code is distributed in the hope that it will be useful, +# * but WITHOUT ANY WARRANTY; without even the implied warranty of +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# * GNU General Public License for more details. +# * +# * You should have received a copy of the GNU General Public License +# * along with this program; if not, write to the Free Software +# * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# * Or, point your browser to http://www.gnu.org/copyleft/gpl.html +# * msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-18 13:02+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: 2007-08-18 08:13+0200\n" -"Last-Translator: Tomas Prybil \n" -"Language-Team: \n" +"Last-Translator: FULL NAME \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" @@ -62,7 +77,7 @@ msgstr "Tillbaka" msgid "A Image Viewer plugin" msgstr "" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "" @@ -138,56 +153,60 @@ msgstr "Avmonteringen misslyckades!" msgid "Eject failed!" msgstr "Mata ut!" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "" -#: setup-image.c:110 -msgid "Slide show" +#: setup-image.c:114 +msgid "Hide main menu entry" msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "nej" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "ja" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "" diff --git a/po/tr_TR.po b/po/tr_TR.po index e84fa83..db7381d 100644 --- a/po/tr_TR.po +++ b/po/tr_TR.po @@ -1,16 +1,32 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Oktay Yolgeçen , 2007 -# +# * +# * Image plugin to VDR (C++) +# * +# * (C) 2004 - 2007 Andreas Brachold +# * based on (C) 2003 Kai Tobias Burwieck +# * +# * This code is free software; you can redistribute it and/or +# * modify it under the terms of the GNU General Public License +# * as published by the Free Software Foundation; either version 2 +# * of the License, or (at your option) any later version. +# * +# * This code is distributed in the hope that it will be useful, +# * but WITHOUT ANY WARRANTY; without even the implied warranty of +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# * GNU General Public License for more details. +# * +# * You should have received a copy of the GNU General Public License +# * along with this program; if not, write to the Free Software +# * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# * Or, point your browser to http://www.gnu.org/copyleft/gpl.html +# * msgid "" msgstr "" "Project-Id-Version: VDR 1.5.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-08-18 13:02+0200\n" +"Report-Msgid-Bugs-To: Andreas Brachold \n" +"POT-Creation-Date: 2007-10-08 18:53+0200\n" "PO-Revision-Date: 2007-08-18 08:13+0200\n" -"Last-Translator: Oktay Yolgeçen \n" -"Language-Team: \n" +"Last-Translator: FULL NAME \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-9\n" "Content-Transfer-Encoding: 8bit\n" @@ -61,7 +77,7 @@ msgstr "" msgid "A Image Viewer plugin" msgstr "" -#: image.c:54 setup-image.c:108 +#: image.c:54 setup-image.c:112 msgid "Image" msgstr "" @@ -137,56 +153,60 @@ msgstr "" msgid "Eject failed!" msgstr "" -#: player-image.c:358 player-image.c:360 +#: player-image.c:359 player-image.c:361 msgid "Image couldn't load" msgstr "" -#: player-image.c:466 +#: player-image.c:467 msgid "Script execution failed" msgstr "" -#: setup-image.c:110 -msgid "Slide show" +#: setup-image.c:114 +msgid "Hide main menu entry" msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "no" msgstr "" -#: setup-image.c:112 setup-image.c:120 setup-image.c:124 setup-image.c:128 -#: setup-image.c:136 +#: setup-image.c:116 setup-image.c:120 setup-image.c:128 setup-image.c:132 +#: setup-image.c:136 setup-image.c:144 msgid "yes" msgstr "" -#: setup-image.c:114 +#: setup-image.c:118 +msgid "Slide show" +msgstr "" + +#: setup-image.c:122 msgid "Slide duration (sec)" msgstr "" -#: setup-image.c:118 +#: setup-image.c:126 msgid "Repeat slide show" msgstr "" -#: setup-image.c:122 +#: setup-image.c:130 msgid "Show numbers on index image" msgstr "" -#: setup-image.c:126 +#: setup-image.c:134 msgid "Live Audio from primary Device" msgstr "" -#: setup-image.c:130 +#: setup-image.c:138 msgid "Directory with temporary files" msgstr "" -#: setup-image.c:134 +#: setup-image.c:142 msgid "Remove temporary files" msgstr "" -#: setup-image.c:138 +#: setup-image.c:146 msgid "Border for Underscan (Height)" msgstr "" -#: setup-image.c:142 +#: setup-image.c:150 msgid "Border for Underscan (Width)" msgstr "" diff --git a/setup-image.c b/setup-image.c index 5d6cae2..5f1f7d0 100644 --- a/setup-image.c +++ b/setup-image.c @@ -59,6 +59,8 @@ cImageSetup::cImageSetup(void) m_nBorderHeight = 16; m_nBorderWidth = 16; + + m_bHideMenu = false; } #define ParseInteger(szTitle,nValue,nMin,nMax) \ @@ -80,6 +82,7 @@ bool cImageSetup::SetupParse(const char *szName, const char *szValue) else ParseInteger("ShowNumbers", m_bShowNumbers,0,1) else ParseInteger("LiveAudio", m_bLiveAudio,0,1) else ParseInteger("Housekeeping", m_bHousekeeping,0,1) + else ParseInteger("HideMainMenu", m_bHideMenu,0,1) else if(!strcasecmp(szName, "TempDir")) { strn0cpy(m_szTempDir,szValue,sizeof(m_szTempDir)); } @@ -100,6 +103,7 @@ void cMenuSetupImage::Store(void) SetupStore("Housekeeping", ImageSetup.m_bHousekeeping); SetupStore("BorderHeight", ImageSetup.m_nBorderHeight); SetupStore("BorderWidth", ImageSetup.m_nBorderWidth); + SetupStore("HideMainMenu", ImageSetup.m_bHideMenu); } cMenuSetupImage::cMenuSetupImage(void) @@ -107,6 +111,10 @@ cMenuSetupImage::cMenuSetupImage(void) { SetSection(tr("Image")); + Add(new cMenuEditBoolItem(tr("Hide main menu entry"), + &m_tmpSetup.m_bHideMenu, + tr("no"), tr("yes"))); + Add(new cMenuEditBoolItem(tr("Slide show"), &m_tmpSetup.m_bSlideShow, tr("no"), tr("yes"))); diff --git a/setup-image.h b/setup-image.h index 715edaa..1e658dd 100644 --- a/setup-image.h +++ b/setup-image.h @@ -64,6 +64,9 @@ public: static const int m_cnMinBorderWidth; static const int m_cnMaxBorderWidth; int m_nBorderWidth; + + /** Show entry in Main menu */ + int m_bHideMenu; public: -- cgit v1.2.3