summaryrefslogtreecommitdiff
path: root/PLUGINS/src/hello
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 /PLUGINS/src/hello
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 'PLUGINS/src/hello')
-rw-r--r--PLUGINS/src/hello/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/PLUGINS/src/hello/Makefile b/PLUGINS/src/hello/Makefile
index eac0f83b..92e8af4a 100644
--- a/PLUGINS/src/hello/Makefile
+++ b/PLUGINS/src/hello/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for a Video Disk Recorder plugin
#
-# $Id: Makefile 1.19 2007/10/13 09:28:10 kls Exp $
+# $Id: Makefile 1.20 2007/10/14 09:23:04 kls Exp $
# The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin.
@@ -85,7 +85,7 @@ $(I18Npot): $(wildcard *.c)
$(I18Npo): $(I18Npot)
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;\