aboutsummaryrefslogtreecommitdiff
path: root/nls/pt_PT
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-10-04 12:44:47 (GMT)
committerrathnor <rathnor>2003-10-04 12:44:47 (GMT)
commit35fe2d5e128c1b13d34a5152945a1b8979401d6f (patch)
treeca52ca41b7a80acc290753d266b540b6a5c3eac4 /nls/pt_PT
parent158b515e21f0f0154041cd5985ec38fe37c0e875 (diff)
downloadfluxbox-35fe2d5e128c1b13d34a5152945a1b8979401d6f.zip
fluxbox-35fe2d5e128c1b13d34a5152945a1b8979401d6f.tar.bz2
fix nls bad message errors
Diffstat (limited to 'nls/pt_PT')
-rw-r--r--nls/pt_PT/Makefile.am19
1 files changed, 11 insertions, 8 deletions
diff --git a/nls/pt_PT/Makefile.am b/nls/pt_PT/Makefile.am
index cf35d0c..7ece564 100644
--- a/nls/pt_PT/Makefile.am
+++ b/nls/pt_PT/Makefile.am
@@ -1,4 +1,7 @@
1# nls/pt_PT/Makefile.am for Fluxbox - an X11 Window Manager 1# nls/pt_PT/Makefile.am for Fluxbox - an X11 Window Manager
2
3THE_LANG = pt_PT
4CODESET = ISO-8859-1
2 5
3NLSTEST = @NLS@ 6NLSTEST = @NLS@
4CLEANFILES = fluxbox.cat 7CLEANFILES = fluxbox.cat
@@ -8,23 +11,23 @@ EXTRA_DIST=$(MFILES)
8all-local: fluxbox.cat 11all-local: fluxbox.cat
9install-data-local: fluxbox.cat 12install-data-local: fluxbox.cat
10 @if test x$(NLSTEST) = "x-DNLS"; then \ 13 @if test x$(NLSTEST) = "x-DNLS"; then \
11 echo "Installing catalog in $(DESTDIR)$(pkgdatadir)/nls/pt_PT"; \ 14 echo "Installing catalog in $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG)"; \
12 $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/nls/pt_PT; \ 15 $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \
13 $(INSTALL_DATA) fluxbox.cat $(DESTDIR)$(pkgdatadir)/nls/pt_PT; \ 16 $(INSTALL_DATA) fluxbox.cat $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \
14 fi 17 fi
15uninstall-local: 18uninstall-local:
16 @if test x$(NLSTEST) = "x-DNLS"; then \ 19 @if test x$(NLSTEST) = "x-DNLS"; then \
17 rm -f $(DESTDIR)$(pkgdatadir)/nls/pt_PT/fluxbox.cat; \ 20 rm -f $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG)/fluxbox.cat; \
18 rmdir $(DESTDIR)$(pkgdatadir)/nls/pt_PT; \ 21 rmdir $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \
19 fi 22 fi
20 23
21Translation.m: $(MFILES) 24Translation.m: $(MFILES)
22 @if test x$(NLSTEST) = "x-DNLS"; then \ 25 @if test x$(NLSTEST) = "x-DNLS"; then \
23 rm -f Translation.m; \ 26 rm -f Translation.m; \
24 awk -f ../convert.awk output=Translation.m $(MFILES); \ 27 awk -f ../convert.awk codeset=$(CODESET) output=Translation.m $(MFILES); \
25 fi 28 fi
26 29
27fluxbox.cat: Translation.m 30fluxbox.cat: Translation.m
28 @if test x$(NLSTEST) = "x-DNLS"; then \ 31 @if test x$(NLSTEST) = "x-DNLS"; then \
29 LANG=pt_PT $(gencat_cmd) fluxbox.cat Translation.m; \ 32 LANG=$(THE_LANG) $(gencat_cmd) fluxbox.cat Translation.m; \
30 fi 33 fi