3 # Common rules for Native Language Support (NLS)
5 # If some subdirectory of the source tree wants to provide NLS, it
6 # needs to contain a file 'nls.mk' with the following make variable
9 # CATALOG_NAME -- name of the message catalog (xxx.po); probably
11 # AVAIL_LANGUAGES -- list of languages that are provided/supported
12 # GETTEXT_FILES -- list of source files that contain message strings
13 # GETTEXT_TRIGGERS -- (optional) list of functions that contain
14 # translatable strings
16 # That's all, the rest is done here, if --enable-nls was specified.
18 # The only user-visible targets here are 'init-po', to make an initial
19 # "blank" catalog from program sources, and 'update-po', which is to
20 # be called if the messages in the program source have changed, in
21 # order to merge the changes into the existing .po files.
24 # existence checked by Makefile.global; otherwise we won't get here
25 include $(srcdir)/nls.mk
27 # If user specified the languages he wants in --enable-nls=LANGUAGES,
28 # filter out the rest. Else use all available ones.
29 ifdef WANTED_LANGUAGES
30 LANGUAGES
= $(filter $(WANTED_LANGUAGES
), $(AVAIL_LANGUAGES
))
32 LANGUAGES
= $(AVAIL_LANGUAGES
)
35 PO_FILES
= $(addprefix po
/, $(addsuffix .po
, $(LANGUAGES
)))
36 MO_FILES
= $(addprefix po
/, $(addsuffix .mo
, $(LANGUAGES
)))
39 XGETTEXT
+= --foreign-user
-ctranslator
49 ifeq ($(word 1,$(GETTEXT_FILES
)),+)
50 po
/$(CATALOG_NAME
).pot
: $(word 2, $(GETTEXT_FILES
))
51 $(XGETTEXT
) -D
$(srcdir) -n
$(addprefix -k
, $(GETTEXT_TRIGGERS
)) -f
$<
53 po
/$(CATALOG_NAME
).pot
: $(GETTEXT_FILES
)
54 # Change to srcdir explicitly, don't rely on $^. That way we get
55 # consistent #: file references in the po files.
56 $(XGETTEXT
) -D
$(srcdir) -n
$(addprefix -k
, $(GETTEXT_TRIGGERS
)) $(GETTEXT_FILES
)
58 @
$(mkinstalldirs
) $(dir $@
)
61 @echo
"You don't have 'xgettext'."; exit
1
65 install-po
: all-po installdirs-po
67 for lang in
$(LANGUAGES
); do \
68 $(INSTALL_DATA
) po
/$$lang.mo
'$(DESTDIR)$(localedir)'/$$lang/LC_MESSAGES
/$(CATALOG_NAME
).mo || exit
1; \
73 $(mkinstalldirs
) $(foreach lang
, $(LANGUAGES
), '$(DESTDIR)$(localedir)'/$(lang
)/LC_MESSAGES
)
76 rm -f
$(foreach lang
, $(LANGUAGES
), '$(DESTDIR)$(localedir)'/$(lang
)/LC_MESSAGES
/$(CATALOG_NAME
).mo
)
80 $(if
$(MO_FILES
),rm -f
$(MO_FILES
))
81 @
$(if
$(PO_FILES
),rm -f
$(addsuffix .old
, $(PO_FILES
)))
82 rm -f po
/$(CATALOG_NAME
).pot
85 maintainer-check-po
: $(PO_FILES
)
87 $(MSGFMT
) -c
-v
-o
/dev
/null
$$file || exit
1; \
91 init-po
: po
/$(CATALOG_NAME
).pot
95 @printf
'merging $(1) '
96 @if
$(MSGMERGE
) $(srcdir)/po
/$(1).po
$< -o po
/$(1).po.new
$(addprefix --compendium
=,$(shell find
$(top_srcdir
) -name
$(1).po
-printf
'%p ')); \
98 mv
$(srcdir)/po
/$(1).po po
/$(1).po.old
; \
99 mv po
/$(1).po.new
$(srcdir)/po
/$(1).po
; \
101 echo
"msgmerge for $(1) failed"; \
102 rm -f po
/$(1).po.new
; \
107 update-po
: po
/$(CATALOG_NAME
).pot
109 $(foreach lang
,$(LANGUAGES
),$(call merge-lang
,$(lang
)))
111 @echo
"You don't have 'msgmerge'." ; exit
1
117 installdirs: installdirs-po
118 uninstall: uninstall-po
119 clean distclean maintainer-clean
: clean-po
120 maintainer-check
: maintainer-check-po
122 .PHONY
: all-po install-po installdirs-po uninstall-po clean-po \
123 maintainer-check-po init-po update-po
124 .SILENT
: installdirs-po