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/tr_TR/Makefile.am | |
parent | 158b515e21f0f0154041cd5985ec38fe37c0e875 (diff) | |
download | fluxbox-35fe2d5e128c1b13d34a5152945a1b8979401d6f.zip fluxbox-35fe2d5e128c1b13d34a5152945a1b8979401d6f.tar.bz2 |
fix nls bad message errors
Diffstat (limited to 'nls/tr_TR/Makefile.am')
-rw-r--r-- | nls/tr_TR/Makefile.am | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/nls/tr_TR/Makefile.am b/nls/tr_TR/Makefile.am index b7075dd..b82bc9e 100644 --- a/nls/tr_TR/Makefile.am +++ b/nls/tr_TR/Makefile.am | |||
@@ -1,35 +1,38 @@ | |||
1 | # nls/tr_TR/Makefile.am for Blackbox-0.61.x - an X11 Window Manager | 1 | # nls/tr_TR/Makefile.am for Fluxbox - an X11 Window Manager |
2 | # | 2 | # |
3 | # -- Türkce tercüme dizini için bir yapim-dosya-tabanı | 3 | # -- Türkce tercüme dizini için bir yapim-dosya-tabanı |
4 | # kabalak -- kabalak@gmx.net | 4 | # kabalak -- kabalak@gmx.net |
5 | # | 5 | # |
6 | 6 | ||
7 | THE_LANG = tr_TR | ||
8 | CODESET = ISO-8859-1 | ||
9 | |||
7 | NLSTEST = @NLS@ | 10 | NLSTEST = @NLS@ |
8 | CLEANFILES = fluxbox.cat | 11 | CLEANFILES = fluxbox.cat |
9 | MAINTAINERCLEANFILES = Makefile.in Translation.m | 12 | MAINTAINERCLEANFILES = Makefile.in Translation.m |
10 | MFILES = BaseDisplay.m Basemenu.m Configmenu.m Icon.m Image.m Screen.m Slit.m Toolbar.m Window.m Windowmenu.m Workspace.m Workspacemenu.m fluxbox.m common.m main.m bsetroot.m | 13 | MFILES = BaseDisplay.m Basemenu.m Configmenu.m Icon.m Image.m Screen.m Slit.m Toolbar.m Window.m Windowmenu.m Workspace.m Workspacemenu.m fluxbox.m common.m main.m bsetroot.m |
11 | EXTRA_DIST=$(MFILES) | 14 | EXTRA_DIST = $(MFILES) |
12 | 15 | ||
13 | all-local: fluxbox.cat | 16 | all-local: fluxbox.cat |
14 | install-data-local: fluxbox.cat | 17 | install-data-local: fluxbox.cat |
15 | @if test x$(NLSTEST) = "x-DNLS"; then \ | 18 | @if test x$(NLSTEST) = "x-DNLS"; then \ |
16 | echo "Installing catalog in $(DESTDIR)$(pkgdatadir)/nls/tr_TR"; \ | 19 | echo "Installing catalog in $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG)"; \ |
17 | $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/nls/tr_TR; \ | 20 | $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \ |
18 | $(INSTALL_DATA) fluxbox.cat $(DESTDIR)$(pkgdatadir)/nls/tr_TR; \ | 21 | $(INSTALL_DATA) fluxbox.cat $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \ |
19 | fi | 22 | fi |
20 | uninstall-local: | 23 | uninstall-local: |
21 | @if test x$(NLSTEST) = "x-DNLS"; then \ | 24 | @if test x$(NLSTEST) = "x-DNLS"; then \ |
22 | rm -f $(DESTDIR)$(pkgdatadir)/nls/tr_TR/fluxbox.cat; \ | 25 | rm -f $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG)/fluxbox.cat; \ |
23 | rmdir $(DESTDIR)$(pkgdatadir)/nls/tr_TR; \ | 26 | rmdir $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \ |
24 | fi | 27 | fi |
25 | 28 | ||
26 | Translation.m: $(MFILES) | 29 | Translation.m: $(MFILES) |
27 | @if test x$(NLSTEST) = "x-DNLS"; then \ | 30 | @if test x$(NLSTEST) = "x-DNLS"; then \ |
28 | rm -f Translation.m; \ | 31 | rm -f Translation.m; \ |
29 | awk -f ../convert.awk output=Translation.m $(MFILES); \ | 32 | awk -f ../convert.awk codeset=$(CODESET) codeset=$(CODESET) output=Translation.m $(MFILES); \ |
30 | fi | 33 | fi |
31 | 34 | ||
32 | fluxbox.cat: Translation.m | 35 | fluxbox.cat: Translation.m |
33 | @if test x$(NLSTEST) = "x-DNLS"; then \ | 36 | @if test x$(NLSTEST) = "x-DNLS"; then \ |
34 | LANG=tr_TR $(gencat_cmd) fluxbox.cat Translation.m; \ | 37 | LANG=$(THE_LANG) $(gencat_cmd) fluxbox.cat Translation.m; \ |
35 | fi | 38 | fi |