summaryrefslogtreecommitdiff
path: root/i18n-to-gettext.pl
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2007-10-14 09:29:59 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2007-10-14 09:29:59 +0200
commit714e61b090f1a466978a84bde52210483c99f142 (patch)
treec9749c4f659b065c991d40460804d98e481a226f /i18n-to-gettext.pl
parentde45da896a4cd46aa3ffbf07642b8f3bc448c216 (diff)
downloadvdr-714e61b090f1a466978a84bde52210483c99f142.tar.gz
vdr-714e61b090f1a466978a84bde52210483c99f142.tar.bz2
Added a note about how to initiate internationalization support to the README.i18n file; the Makefile generated by the 'newplugin' script now has the 'i18n' target automatically create an initial 'po/pluginname.pot' file
Diffstat (limited to 'i18n-to-gettext.pl')
-rwxr-xr-xi18n-to-gettext.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/i18n-to-gettext.pl b/i18n-to-gettext.pl
index e46c6440..b17f7d63 100755
--- a/i18n-to-gettext.pl
+++ b/i18n-to-gettext.pl
@@ -10,7 +10,7 @@
# See the main source file 'vdr.c' for copyright information and
# how to reach the author.
#
-# $Id: i18n-to-gettext.pl 1.4 2007/08/24 13:19:34 kls Exp $
+# $Id: i18n-to-gettext.pl 1.5 2007/10/14 09:29:59 kls Exp $
# How to convert an actual plugin:
#
@@ -319,7 +319,7 @@ $(I18Npot): $(wildcard *.c)
$(I18Npo): $(I18Npot)
msgmerge -U --no-wrap -F --backup=none -q $@ $<
-i18n: $(I18Nmo)
+i18n: $(I18Npot) $(I18Nmo)
@mkdir -p $(LOCALEDIR)
for i in $(I18Ndirs); do\
mkdir -p $(LOCALEDIR)/$$i/LC_MESSAGES;\