diff options
Diffstat (limited to 'PLUGINS/src/skincurses')
-rw-r--r-- | PLUGINS/src/skincurses/HISTORY | 4 | ||||
-rw-r--r-- | PLUGINS/src/skincurses/Makefile | 8 | ||||
-rw-r--r-- | PLUGINS/src/skincurses/po/de_DE.po | 4 | ||||
-rw-r--r-- | PLUGINS/src/skincurses/po/fi_FI.po | 4 | ||||
-rw-r--r-- | PLUGINS/src/skincurses/skincurses.c | 6 |
5 files changed, 11 insertions, 15 deletions
diff --git a/PLUGINS/src/skincurses/HISTORY b/PLUGINS/src/skincurses/HISTORY index 02065a4..34efba9 100644 --- a/PLUGINS/src/skincurses/HISTORY +++ b/PLUGINS/src/skincurses/HISTORY @@ -57,3 +57,7 @@ VDR Plugin 'skincurses' Revision History - Moved the "all" target in the Makefile before the "Implicit rules", so that a plain "make" will compile everything. - Added internationalization. + +2007-08-26: Version 0.1.4 + +- Adapted to the new Level parameter of cOsd. diff --git a/PLUGINS/src/skincurses/Makefile b/PLUGINS/src/skincurses/Makefile index 5199dd8..3eea4dd 100644 --- a/PLUGINS/src/skincurses/Makefile +++ b/PLUGINS/src/skincurses/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile 1.11 2007/08/19 14:19:07 kls Exp $ +# $Id: Makefile 1.13 2007/10/14 09:23:25 kls Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -78,12 +78,12 @@ I18Npot = $(PODIR)/$(PLUGIN).pot msgfmt -c -o $@ $< $(I18Npot): $(wildcard *.c) - xgettext -C -cTRANSLATORS --no-wrap -F -k -ktr -ktrNOOP --msgid-bugs-address='<vdr-bugs@cadsoft.de>' -o $@ $(wildcard *.c) + xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --msgid-bugs-address='<vdr-bugs@cadsoft.de>' -o $@ $(wildcard *.c) $(I18Npo): $(I18Npot) - msgmerge -U --no-wrap -F --backup=none -q $@ $< + msgmerge -U --no-wrap --no-location --backup=none -q $@ $< -i18n: $(I18Nmo) +i18n: $(I18Npot) $(I18Nmo) @mkdir -p $(LOCALEDIR) for i in $(I18Ndirs); do\ mkdir -p $(LOCALEDIR)/$$i/LC_MESSAGES;\ diff --git a/PLUGINS/src/skincurses/po/de_DE.po b/PLUGINS/src/skincurses/po/de_DE.po index e80cdc6..98659df 100644 --- a/PLUGINS/src/skincurses/po/de_DE.po +++ b/PLUGINS/src/skincurses/po/de_DE.po @@ -15,18 +15,14 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" -#: skincurses.c:15 msgid "A text only skin" msgstr "Eine reine Text-Oberfläche" -#: skincurses.c:566 msgid "Key$Mute" msgstr "Stumm" -#: skincurses.c:569 msgid "Volume " msgstr "Lautstärke" -#: skincurses.c:699 msgid "Text mode" msgstr "Text-Modus" diff --git a/PLUGINS/src/skincurses/po/fi_FI.po b/PLUGINS/src/skincurses/po/fi_FI.po index d4a4742..1f527cd 100644 --- a/PLUGINS/src/skincurses/po/fi_FI.po +++ b/PLUGINS/src/skincurses/po/fi_FI.po @@ -15,18 +15,14 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" -#: skincurses.c:15 msgid "A text only skin" msgstr "Tekstipohjainen ulkoasu" -#: skincurses.c:566 msgid "Key$Mute" msgstr "Mykistys" -#: skincurses.c:569 msgid "Volume " msgstr "Äänenvoimakkuus " -#: skincurses.c:699 msgid "Text mode" msgstr "Teksti" diff --git a/PLUGINS/src/skincurses/skincurses.c b/PLUGINS/src/skincurses/skincurses.c index 0553de9..b9a4fc0 100644 --- a/PLUGINS/src/skincurses/skincurses.c +++ b/PLUGINS/src/skincurses/skincurses.c @@ -3,7 +3,7 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: skincurses.c 1.17 2007/08/15 14:01:54 kls Exp $ + * $Id: skincurses.c 1.18 2007/08/26 20:16:59 kls Exp $ */ #include <ncurses.h> @@ -11,7 +11,7 @@ #include <vdr/plugin.h> #include <vdr/skins.h> -static const char *VERSION = "0.1.3"; +static const char *VERSION = "0.1.4"; static const char *DESCRIPTION = trNOOP("A text only skin"); static const char *MAINMENUENTRY = NULL; @@ -72,7 +72,7 @@ public: }; cCursesOsd::cCursesOsd(int Left, int Top) -:cOsd(Left, Top) +:cOsd(Left, Top, 0) { savedRegion = NULL; |