From 1550e775dce261c30a6b7c3870d3fb57161865dd Mon Sep 17 00:00:00 2001 From: anbr Date: Tue, 2 Nov 2010 16:18:10 +0100 Subject: Update italian translation (Support #445) Add missing files --- README.git | 32 ++++++++++++++++++++++++++++++++ po/it_IT.po | 18 +++++++++--------- targavfd.c | 2 +- targavfd.h | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 103 insertions(+), 10 deletions(-) create mode 100644 README.git mode change 100644 => 100755 po/it_IT.po create mode 100644 targavfd.h diff --git a/README.git b/README.git new file mode 100644 index 0000000..a482d4c --- /dev/null +++ b/README.git @@ -0,0 +1,32 @@ +how to anonymously get the current source +========================================= + +git clone git://projects.vdr-developer.org/vdr-plugin-targavfd.git targavfd + +how to make a new release +========================= + +adapt version in targavfd.c and HISTORY + +set date in HISTORY + +git commit +git status # must be clean +git tag -a -m'new release' '0.0.5' +git push --tags + +cd +cd tmp +rm -rf targavfd-0.0.5 +git clone git://projects.vdr-developer.org/vdr-plugin-targavfd.git targavfd-0.0.5 +cd targavfd-0.0.5 +git checkout 0.0.5 +rm -rf .git* +cd .. +tar cfz vdr-targavfd-0.0.5.tgz targavfd-0.0.5 + +in the project configuration, add new version 0.0.5 +upload vdr-targavfd-0.0.5.tgz + +announce new version at vdr@linuxtv.org + diff --git a/po/it_IT.po b/po/it_IT.po old mode 100644 new mode 100755 index 949366d..bf4cb66 --- a/po/it_IT.po +++ b/po/it_IT.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: vdr-targavfd-plugin 0.0.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-10-23 18:00+0200\n" -"PO-Revision-Date: 2010-07-17 23:32+0100\n" +"PO-Revision-Date: 2010-11-01 22:55+0100\n" "Last-Translator: Diego Pierotto \n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -40,7 +40,7 @@ msgid "Dual lines" msgstr "Linee doppie" msgid "Only topic" -msgstr "Titolo solo" +msgstr "Solo titolo" msgid "Render mode" msgstr "Modalità visualizzazione" @@ -82,23 +82,22 @@ msgid "Ever" msgstr "Sempre" msgid "Show volume bargraph" -msgstr "Mostra grafico a barre volume" +msgstr "Mostra grafico a barre del volume" msgid "Resume on activities" -msgstr "" +msgstr "Riprendi attività" -#, fuzzy msgid "Only per time" -msgstr "Titolo solo" +msgstr "Solo per l'ora" msgid "Suspend display at night" -msgstr "" +msgstr "Sospendi schermo la notte" msgid "Beginning of suspend" -msgstr "" +msgstr "Inizio sospensione" msgid "End time of suspend" -msgstr "" +msgstr "Fine sospensione" msgid "Control a targa vfd" msgstr "Controlla una targa VFD" @@ -108,3 +107,4 @@ msgstr "Nessun timer attivo" msgid "Unknown title" msgstr "Titolo sconosciuto" + diff --git a/targavfd.c b/targavfd.c index 100dfef..e2fdc9e 100644 --- a/targavfd.c +++ b/targavfd.c @@ -21,7 +21,7 @@ #include "status.h" #include "setup.h" -static const char *VERSION = "0.0.6"; +static const char *VERSION = "0.0.7"; cPluginTargaVFD::cPluginTargaVFD(void) { diff --git a/targavfd.h b/targavfd.h new file mode 100644 index 0000000..1b8dcc4 --- /dev/null +++ b/targavfd.h @@ -0,0 +1,61 @@ +/* + * targavfd plugin for VDR (C++) + * + * (C) 2010 Andreas Brachold + * + * This targavfd plugin 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, version 3 of the License. + * + * See the files README and COPYING for details. + * + */ + +#ifndef __TARGAVFD_H___ +#define __TARGAVFD_H___ + +#include + +#include "vfd.h" +#include "watch.h" +#include "status.h" + +class cPluginTargaVFD : public cPlugin { +private: + cVFDStatusMonitor *statusMonitor; + cVFDWatch m_dev; + bool m_bSuspend; + char* m_szIconHelpPage; +protected: + bool resume(); + bool suspend(); + + const char* SVDRPCommandOn(const char *Option, int &ReplyCode); + const char* SVDRPCommandOff(const char *Option, int &ReplyCode); + const char* SVDRPCommandIcon(const char *Option, int &ReplyCode); + +public: + cPluginTargaVFD(void); + virtual ~cPluginTargaVFD(); + virtual const char *Version(void); + virtual const char *Description(void); + virtual const char *CommandLineHelp(void); + virtual bool ProcessArgs(int argc, char *argv[]); + virtual bool Initialize(void); + virtual bool Start(void); + virtual void Stop(void); + virtual void Housekeeping(void); + virtual void MainThreadHook(void); + virtual cString Active(void); + virtual time_t WakeupTime(void); + virtual const char *MainMenuEntry(void) { return NULL; } + virtual cOsdObject *MainMenuAction(void); + virtual cMenuSetupPage *SetupMenu(void); + virtual bool SetupParse(const char *Name, const char *Value); + virtual bool Service(const char *Id, void *Data = NULL); + virtual const char **SVDRPHelpPages(void); + virtual cString SVDRPCommand(const char *Command, const char *Option, int &ReplyCode); + +}; + +#endif -- cgit v1.2.3