summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoranbr <vdr07@deltab.de>2010-11-02 16:18:10 +0100
committeranbr <vdr07@deltab.de>2010-11-02 16:18:10 +0100
commit1550e775dce261c30a6b7c3870d3fb57161865dd (patch)
tree13701ac8c0b04223d964e971f0c16e17647c59ab
parent05b1e47cd40f1604fbe687e86319790ad774bbf7 (diff)
downloadvdr-plugin-targavfd-1550e775dce261c30a6b7c3870d3fb57161865dd.tar.gz
vdr-plugin-targavfd-1550e775dce261c30a6b7c3870d3fb57161865dd.tar.bz2
Update italian translation (Support #445)
Add missing files
-rw-r--r--README.git32
-rwxr-xr-x[-rw-r--r--]po/it_IT.po18
-rw-r--r--targavfd.c2
-rw-r--r--targavfd.h61
4 files changed, 103 insertions, 10 deletions
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
index 949366d..bf4cb66 100644..100755
--- 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: <see README>\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 <vdr-italian@tiscali.it>\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 <vdr07 AT deltab de>
+ *
+ * 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 <vdr/plugin.h>
+
+#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