diff options
author | rathnor <rathnor> | 2003-10-04 12:44:47 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-10-04 12:44:47 (GMT) |
commit | 35fe2d5e128c1b13d34a5152945a1b8979401d6f (patch) | |
tree | ca52ca41b7a80acc290753d266b540b6a5c3eac4 /nls/pt_BR | |
parent | 158b515e21f0f0154041cd5985ec38fe37c0e875 (diff) | |
download | fluxbox-35fe2d5e128c1b13d34a5152945a1b8979401d6f.zip fluxbox-35fe2d5e128c1b13d34a5152945a1b8979401d6f.tar.bz2 |
fix nls bad message errors
Diffstat (limited to 'nls/pt_BR')
-rw-r--r-- | nls/pt_BR/Makefile.am | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/nls/pt_BR/Makefile.am b/nls/pt_BR/Makefile.am index f0f9749..4745ce1 100644 --- a/nls/pt_BR/Makefile.am +++ b/nls/pt_BR/Makefile.am | |||
@@ -1,4 +1,7 @@ | |||
1 | # nls/pt_BR/Makefile.am for Blackbox-0.61.x - an X11 Window Manager | 1 | # nls/pt_BR/Makefile.am for Fluxbox - an X11 Window Manager |
2 | |||
3 | THE_LANG = pt_BR | ||
4 | CODESET = ISO-8859-1 | ||
2 | 5 | ||
3 | NLSTEST = @NLS@ | 6 | NLSTEST = @NLS@ |
4 | CLEANFILES = fluxbox.cat | 7 | CLEANFILES = fluxbox.cat |
@@ -8,23 +11,23 @@ EXTRA_DIST=$(MFILES) | |||
8 | all-local: fluxbox.cat | 11 | all-local: fluxbox.cat |
9 | install-data-local: fluxbox.cat | 12 | install-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/pr_BR"; \ | 14 | echo "Installing catalog in $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG)"; \ |
12 | $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/nls/pt_BR; \ | 15 | $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \ |
13 | $(INSTALL_DATA) fluxbox.cat $(DESTDIR)$(pkgdatadir)/nls/pt_BR; \ | 16 | $(INSTALL_DATA) fluxbox.cat $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \ |
14 | fi | 17 | fi |
15 | uninstall-local: | 18 | uninstall-local: |
16 | @if test x$(NLSTEST) = "x-DNLS"; then \ | 19 | @if test x$(NLSTEST) = "x-DNLS"; then \ |
17 | rm -f $(DESTDIR)$(pkgdatadir)/nls/pt_BR/fluxbox.cat; \ | 20 | rm -f $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG)/fluxbox.cat; \ |
18 | rmdir $(DESTDIR)$(pkgdatadir)/nls/pt_BR; \ | 21 | rmdir $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \ |
19 | fi | 22 | fi |
20 | 23 | ||
21 | Translation.m: $(MFILES) | 24 | Translation.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 | ||
27 | fluxbox.cat: Translation.m | 30 | fluxbox.cat: Translation.m |
28 | @if test x$(NLSTEST) = "x-DNLS"; then \ | 31 | @if test x$(NLSTEST) = "x-DNLS"; then \ |
29 | LANG=pt_BR $(gencat_cmd) fluxbox.cat Translation.m; \ | 32 | LANG=$(THE_LANG) $(gencat_cmd) fluxbox.cat Translation.m; \ |
30 | fi | 33 | fi |