]> git.lyx.org Git - lyx.git/blobdiff - po/Makefile.in.in
po remerge
[lyx.git] / po / Makefile.in.in
index 43af78386347f6a5991e00ce5c64ecb480ba7bb1..2f0bc2c73c8840d75e6325981f9d57d993f00be7 100644 (file)
@@ -22,6 +22,7 @@ VPATH = @srcdir@
 
 prefix = @prefix@
 exec_prefix = @exec_prefix@
+datarootdir = @datarootdir@
 datadir = @datadir@
 localedir = $(datadir)/locale
 gettextsrcdir = $(datadir)/gettext/po
@@ -31,6 +32,8 @@ INSTALL_DATA = @INSTALL_DATA@
 MKINSTALLDIRS = @MKINSTALLDIRS@
 mkinstalldirs = $(SHELL) $(MKINSTALLDIRS)
 
+AWK = @AWK@
+
 GMSGFMT = @GMSGFMT@
 MSGFMT = @MSGFMT@
 XGETTEXT = @XGETTEXT@
@@ -50,6 +53,8 @@ DISTFILES = $(DISTFILES.common) Makevars POTFILES.in $(DOMAIN).pot stamp-po \
 $(POFILES) $(GMOFILES) \
 $(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3)
 
+DISTFILES.extra1 = lyx_pot.py
+
 POTFILE_IN_DEPS = $(shell find $(top_srcdir)/src -name Makefile.am)
 
 POTFILES = \
@@ -366,146 +371,37 @@ ${srcdir}/POTFILES.in: $(POTFILE_IN_DEPS)
        LC_ALL=C ; export LC_ALL ; \
        rm -f $@-t \
        && ( cd $(top_srcdir); \
-            grep -l "_(\".*\")" `find src \( -name '*.[Cch]' -o -name '*.C.in' \) -print` |\
-            sed -e '/xforms.forms/d'| grep -v -e "src/support/package.C$$" |\
+            grep -l "_(\".*\")" `find src \( -name '*.h' -o -name '*.cpp' -o -name '*.cpp.in' \) -print` |\
+            grep -v -e "src/support/Package.cpp$$" |\
             sort | uniq ) > $@-t \
        && mv $@-t $@
 
-l10n_pots: xforms_l10n.pot qt_l10n.pot layouts_l10n.pot languages_l10n.pot ui_l10n.pot
+l10n_pots: qt4_l10n.pot layouts_l10n.pot languages_l10n.pot ui_l10n.pot external_l10n.pot
        cat $^ | \
        msguniq -o $(DOMAIN).po && rm -f  $^
 
-xforms_l10n.pot: $(top_srcdir)/src/frontends/xforms/forms/*.fd
-       LC_ALL=C ; export LC_ALL ; \
-       awk -v top_srcdir="$(top_srcdir)" ' \
-               function fixupfilename() \
-               {\
-                       return substr(FILENAME, length(top_srcdir "/") + 1);\
-               }\
-               BEGIN { \
-                       print "#, fuzzy"; \
-                       print "msgid \"\""; \
-                       print "msgstr \"\""; \
-                       print "\"Content-Type: text/plain; charset=ISO-8859-1\\n\""; \
-                       print "\"Content-Transfer-Encoding: 8bit\\n\""; \
-                       print "\n"; \
-                       skip=0; \
-               } \
-               /style: 15/ { \
-                       skip=1; \
-               } \
-               /label: / { \
-                       if (NF > 1 && skip == 0) { \
-                               line=$$0;\
-                               sub(/label: /,"",line);\
-                               printf("#: %s:%d\nmsgid \"%s\"\nmsgstr \"\"\n\n", fixupfilename(), FNR, line);\
-                       }\
-                       skip=0; \
-               }' \
-       ${top_srcdir}/src/frontends/xforms/forms/*.fd > $@
-
-qt_l10n.pot: $(top_srcdir)/src/frontends/qt2/ui/*.ui
+
+qt4_l10n.pot: $(top_srcdir)/src/frontends/qt4/ui/*.ui
        LC_ALL=C ; export LC_ALL ; \
-       awk -v top_srcdir="$(top_srcdir)" ' \
-               function fixupfilename() \
-               {\
-                       return substr(FILENAME, length(top_srcdir "/") + 1);\
-               }\
-               /<string>/ { \
-                       line=$$0; \
-                       sub(/.*<string>/, "", line); \
-                       sub(/<\/string>.*/, "", line); \
-                       gsub(/&amp;/, "\\&", line); \
-                       gsub(/&lt;/, "<", line); \
-                       gsub(/&gt;/, ">", line); \
-                       gsub(/\"/, "\\\"", line); \
-                       if (length(line) > 0) {\
-                               printf("#: %s:%d\nmsgid \"%s\"\nmsgstr \"\"\n\n",\
-                                       fixupfilename(), FNR, line); \
-                       } \
-               }' \
-       ${top_srcdir}/src/frontends/qt2/ui/*.ui > $@
+       python $(srcdir)/lyx_pot.py -b $(top_srcdir) -o $@ -t qt4 ${top_srcdir}/src/frontends/qt4/ui/*.ui 
 
 layouts_l10n.pot: $(top_srcdir)/lib/layouts/*.layout $(top_srcdir)/lib/layouts/*.inc
        LC_ALL=C ; export LC_ALL ; \
-       awk -v top_srcdir="$(top_srcdir)" ' \
-               function fixupfilename() \
-               {\
-                       return substr(FILENAME, length(top_srcdir "/") + 1);\
-               }\
-               /^Style / { \
-                       line=$$0; \
-                       sub(/Style /, "", line); \
-                       printf("#: %s:%d\nmsgid \"%s\"\nmsgstr \"\"\n\n", \
-                               fixupfilename(), FNR, line); \
-               } \
-               /GuiName/ { \
-                       line=$$0; \
-                       sub(/[[:space:]]*GuiName[[:space:]]*/, "", line); \
-                       gsub(/"/, "", line); \
-                       printf("#: %s:%d\nmsgid \"%s\"\nmsgstr \"\"\n\n", \
-                               fixupfilename(), FNR, line); \
-               } \
-               /ListName/ { \
-                       line=$$0; \
-                       sub(/[[:space:]]*ListName[[:space:]]*/, "", line); \
-                       gsub(/"/, "", line); \
-                       printf("#: %s:%d\nmsgid \"%s\"\nmsgstr \"\"\n\n", \
-                               fixupfilename(), FNR, line); \
-               }' \
-       ${top_srcdir}/lib/layouts/*.layout ${top_srcdir}/lib/layouts/*.inc > $@
+       python $(srcdir)/lyx_pot.py -b $(top_srcdir) -o $@ -t layouts ${top_srcdir}/lib/layouts/*.layout ${top_srcdir}/lib/layouts/*.inc
 
 languages_l10n.pot: $(top_srcdir)/lib/languages
-       awk -v top_srcdir="$(top_srcdir)" ' \
-               function fixupfilename() \
-               {\
-                       return substr(FILENAME, length(top_srcdir "/") + 1);\
-               }\
-               /^#/ { \
-                       next; \
-               } \
-               { \
-                       match($$0,"\"[^\"]*\""); \
-                       lang=substr($$0,RSTART,RLENGTH); \
-                       gsub(/\"/, "", lang); \
-                       printf("#: %s:%d\nmsgid \"%s\"\nmsgstr \"\"\n\n", \
-                       fixupfilename(), FNR, lang); \
-               }' \
-       ${top_srcdir}/lib/languages > $@
-
-ui_l10n.pot: $(top_srcdir)/lib/ui/*.ui
+       python $(srcdir)/lyx_pot.py -b $(top_srcdir) -o $@ -t languages ${top_srcdir}/lib/languages
+
+ui_l10n.pot: $(top_srcdir)/lib/ui/*.ui $(top_srcdir)/lib/ui/*.inc
        LC_ALL=C ; export LC_ALL ; \
-       awk -v top_srcdir="$(top_srcdir)" ' \
-               function fixupfilename() \
-               {\
-                       return substr(FILENAME, length(top_srcdir "/") + 1);\
-               }\
-               /^[^#]*Submenu/ { \
-                       line=$$0; \
-                       sub(/[^"]*"/, "", line); \
-                       sub(/".*/, "", line); \
-                       printf("#: %s:%d\nmsgid \"%s\"\nmsgstr \"\"\n\n", \
-                               fixupfilename(), FNR, line); \
-               } \
-               /^[^#]*Toolbar/ { \
-                       line=$$0; \
-                       sub(/[^"]*"/, "", line); \
-                       sub(/".*/, "", line); \
-                       printf("#: %s:%d\nmsgid \"%s\"\nmsgstr \"\"\n\n", \
-                               fixupfilename(), FNR, line); \
-               } \
-               /^[^#]*Item/ { \
-                       line=$$0; \
-                       sub(/[^"]*"/, "", line); \
-                       sub(/".*/, "", line); \
-                       printf("#: %s:%d\nmsgid \"%s\"\nmsgstr \"\"\n\n", \
-                               fixupfilename(), FNR, line); \
-               }' \
-       ${top_srcdir}/lib/ui/*.ui > $@
-
-i18n.php3: $(POFILES)
+       python $(srcdir)/lyx_pot.py -b $(top_srcdir) -o $@ -t ui ${top_srcdir}/lib/ui/*.ui ${top_srcdir}/lib/ui/*.inc
+
+i18n.php: $(POFILES) postats.sh
        (cd $(srcdir) ; ./postats.sh $(POFILES)) >$@
 
+external_l10n.pot: $(top_srcdir)/lib/external_templates
+       python $(srcdir)/lyx_pot.py -b $(top_srcdir) -o $@ -t external ${top_srcdir}/lib/external_templates
+
 force:
 
 # Tell versions [3.59,3.63) of GNU make not to export all variables.