From 42904fe20202edab5b0404833cb6ad504ae62a23 Mon Sep 17 00:00:00 2001 From: Midas Date: Tue, 27 Apr 2010 15:42:38 +0200 Subject: Version 0.0.1b+bf1 (bugfix1) Initial work on strings/translation (planned for one of the next releases): -translation file and necessary fixes to block.c and Makefile included. -corrected xgettext --msgid-bugs-address (thx opp). Main reason for this commit: Version 0.0.1b may not build in certain situations (on debianizing) --- Makefile | 5 +++-- block.c | 6 +++--- po/de_DE.po | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ po/empty | 0 4 files changed, 58 insertions(+), 5 deletions(-) create mode 100644 po/de_DE.po delete mode 100644 po/empty diff --git a/Makefile b/Makefile index 6d52c44..39d2d41 100644 --- a/Makefile +++ b/Makefile @@ -87,7 +87,7 @@ I18Npot = $(PODIR)/$(PLUGIN).pot msgfmt -c -o $@ $< $(I18Npot): $(wildcard *.c) - xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --msgid-bugs-address='' -o $@ $^ + xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --msgid-bugs-address='' -o $@ $^ %.po: $(I18Npot) msgmerge -U --no-wrap --no-location --backup=none -q $@ $< @@ -98,7 +98,7 @@ $(I18Nmsgs): $(LOCALEDIR)/%/LC_MESSAGES/vdr-$(PLUGIN).mo: $(PODIR)/%.mo cp $< $@ .PHONY: i18n -i18n: $(I18Nmsgs) $(I18Npot) +i18n: $(I18Nmsgs) ### Targets: @@ -115,4 +115,5 @@ dist: clean @echo Distribution package created as $(PACKAGE).tgz clean: + @-rm -f $(PODIR)/*.mo $(PODIR)/*.pot @-rm -f $(OBJS) $(DEPFILE) *.so *.tgz core* *~ $(PODIR)/*.mo $(PODIR)/*.pot diff --git a/block.c b/block.c index 0e3cf37..2634d9d 100644 --- a/block.c +++ b/block.c @@ -17,9 +17,9 @@ #include "config.h" #include "i18n.h" -static const char *VERSION = "0.0.1b"; -static const char *DESCRIPTION = trNOOP("Lock unwanted shows by keywords"); -static const char *MAINMENUENTRY = trNOOP("Schedule not acceptable"); +static const char *VERSION = "0.0.1b+bf1"; +static const char *DESCRIPTION = trNOOP("Block unwanted shows by EPG title"); +static const char *MAINMENUENTRY = trNOOP("Block broadcast"); class cPluginBlock : public cPlugin { private: diff --git a/po/de_DE.po b/po/de_DE.po new file mode 100644 index 0000000..de5f09a --- /dev/null +++ b/po/de_DE.po @@ -0,0 +1,52 @@ +# 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 +# +msgid "" +msgstr "" +"Project-Id-Version: VDR 1.5.7\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-27 14:26+0200\n" +"PO-Revision-Date: 2010-04-27 14:19+0200\n" +"Last-Translator: Klaus Schmidinger \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Block unwanted shows by EPG title" +msgstr "Sendung/EPG-Titel sperren" + +msgid "Block broadcast" +msgstr "Sendung sperren" + +msgid "Channel not acceptable!" +msgstr "Aktuelle Sendung unzumutbar!" + +msgid "New Entry" +msgstr "Neuer Eintrag" + +msgid "Hide Mainmenu Entry" +msgstr "Hauptmenüeintrag verstecken" + +msgid "Message Timeout [s]" +msgstr "Wartezeit bis Umschalten [s]" + +msgid "--- Keywords -------------------------------------------------------------------" +msgstr "--- Schlagworte ----------------------------------------------------------------" + +msgid "Delete keyword?" +msgstr "Schlagwort löschen?" + +msgid "Pattern" +msgstr "Suchmuster" + +msgid "Regular Expression" +msgstr "Regulärer Ausdruck" + +msgid "Ignore Case" +msgstr "Groß/Kleinschreibung ignorieren" + +msgid "Malformed regular expression!" +msgstr "Ungültiger regulärer Ausdruck!" diff --git a/po/empty b/po/empty deleted file mode 100644 index e69de29..0000000 -- cgit v1.2.3