remove no longer needed enigma2_rel25.pot file
[enigma2.git] / po / Makefile.am
old mode 100644 (file)
new mode 100755 (executable)
index 22d96a4..9ca7901
@@ -5,7 +5,7 @@ GETTEXT=xgettext
 #MSGFMT = ./msgfmt.py
 MSGFMT = msgfmt
 
-LANGS := de en ar nl es is it da sv no fr fi tr ca cs hr hu
+LANGS := $(shell cat $(srcdir)/LINGUAS)
 LANGPO := $(foreach LANG, $(LANGS),$(LANG).po)
 LANGMO := $(foreach LANG, $(LANGS),$(LANG).mo)
 
@@ -20,14 +20,20 @@ merge:
                msgmerge --no-location -s -N -U $$lang.po enigma2.pot; \
        done
 
+
+# the TRANSLATORS: allows putting translation comments before the to-be-translated line.
 enigma2.pot:
-       $(GETTEXT)      -d enigma2 -s -o enigma2.pot ../lib/python/Screens/*.py ../lib/python/Components/*.py \
+       $(GETTEXT) -L python --add-comments="TRANSLATORS:" -d enigma2 -s -o enigma2.pot ../lib/python/Screens/*.py ../lib/python/Components/*.py \
                        ../lib/python/Tools/*.py \
                        ../*.py \
                        ../lib/python/Plugins/*/*/*.py
 
        ./xml2po.py     ../data/ >> enigma2.pot
-       msguniq -o enigma2uniq.pot enigma2.pot
+       ./xml2po.py     ../lib/python/Plugins/SystemPlugins/Videomode/ >> enigma2.pot
+       ./xml2po.py     ../lib/python/Plugins/SystemPlugins/SoftwareManager/ >> enigma2.pot
+       ./xml2po.py     ../lib/python/Plugins/SystemPlugins/CleanupWizard/ >> enigma2.pot
+       ./xml2po.py     ../lib/python/Plugins/SystemPlugins/NetworkWizard/ >> enigma2.pot
+       msguniq --no-location -o enigma2uniq.pot enigma2.pot
        $(RM) enigma2.pot
        mv enigma2uniq.pot enigma2.pot
 
@@ -40,11 +46,13 @@ enigma2.pot:
 %.po:
        msginit -l $@ -o $@ -i enigma2.pot --no-translator
 
-clean:
-       $(RM) *.mo *.pot
+CLEANFILES = $(foreach LANG, $(LANGS),$(LANG).mo)
+
+clean-local:
+       $(RM) -r $(LANGS)
 
 install-data-am: default
        for lang in $(LANGS); do \
-               mkdir -p $(DESTDIR)$(DATADIR)/enigma2/po/$$lang/LC_MESSAGES; \
-               cp $$lang.mo $(DESTDIR)$(DATADIR)/enigma2/po/$$lang/LC_MESSAGES/$(DOMAIN).mo; \
+               mkdir -p $(DESTDIR)$(pkgdatadir)/po/$$lang/LC_MESSAGES; \
+               cp $$lang.mo $(DESTDIR)$(pkgdatadir)/po/$$lang/LC_MESSAGES/$(DOMAIN).mo; \
        done