1
0
mirror of https://github.com/rofafor/vdr-plugin-iptv.git synced 2023-10-10 11:37:03 +00:00

Modified for vdr-1.5.10.

This commit is contained in:
Rolf Ahrenberg
2007-10-14 18:45:34 +00:00
parent 62b420f65b
commit 0f0c49dce3
10 changed files with 59 additions and 193 deletions

View File

@@ -1,7 +1,7 @@
#
# Makefile for a Video Disk Recorder plugin
#
# $Id: Makefile,v 1.17 2007/10/05 20:25:58 rahrenbe Exp $
# $Id: Makefile,v 1.18 2007/10/14 18:45:34 rahrenbe Exp $
# Debugging on/off
#IPTV_DEBUG = 1
@@ -92,12 +92,12 @@ I18Npot = $(PODIR)/$(PLUGIN).pot
msgfmt -c -o $@ $<
$(I18Npot): $(wildcard *.c)
xgettext -C -cTRANSLATORS --no-wrap -F -k -ktr -ktrNOOP --msgid-bugs-address='Rolf Ahrenberg' -o $@ $(wildcard *.c)
xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --msgid-bugs-address='Rolf Ahrenberg' -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;\