diff options
author | mathias <mathias> | 2005-08-29 23:44:17 (GMT) |
---|---|---|
committer | mathias <mathias> | 2005-08-29 23:44:17 (GMT) |
commit | a11b6eb4f24cfc37de2932fbc9a06598d2b321fe (patch) | |
tree | 70b61d0cfdee859c70bca87eb2fe01408330ecdc /nls/el_GR/Makefile.am | |
parent | da8d245704832c6473eb8b9a7e4d59b16d96daad (diff) | |
download | fluxbox_pavel-a11b6eb4f24cfc37de2932fbc9a06598d2b321fe.zip fluxbox_pavel-a11b6eb4f24cfc37de2932fbc9a06598d2b321fe.tar.bz2 |
added el_GR (greek) Translation, thanx to Theofilos Intzoglou
Diffstat (limited to 'nls/el_GR/Makefile.am')
-rw-r--r-- | nls/el_GR/Makefile.am | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/nls/el_GR/Makefile.am b/nls/el_GR/Makefile.am new file mode 100644 index 0000000..29f7376 --- /dev/null +++ b/nls/el_GR/Makefile.am | |||
@@ -0,0 +1,30 @@ | |||
1 | # nls/el_GR/Makefile.am for Fluxbox - www.fluxbox.org | ||
2 | |||
3 | THE_LANG = el_GR | ||
4 | |||
5 | LOCALE_PATH = @LOCALE_PATH@ | ||
6 | NLSTEST = @NLS@ | ||
7 | CLEANFILES = fluxbox.cat | ||
8 | MAINTAINERCLEANFILES = Makefile.in | ||
9 | MFILES = Translation.m | ||
10 | EXTRA_DIST= $(MFILES) | ||
11 | |||
12 | all-local: fluxbox.cat | ||
13 | install-data-local: fluxbox.cat | ||
14 | @if test x$(NLSTEST) = "x-DNLS"; then \ | ||
15 | echo "Installing catalog in $(DESTDIR)$(LOCALE_PATH)/$(THE_LANG)"; \ | ||
16 | $(mkinstalldirs) $(DESTDIR)$(LOCALE_PATH)/$(THE_LANG); \ | ||
17 | $(INSTALL_DATA) fluxbox.cat $(DESTDIR)$(LOCALE_PATH)/$(THE_LANG); \ | ||
18 | fi | ||
19 | |||
20 | uninstall-local: | ||
21 | @if test x$(NLSTEST) = "x-DNLS"; then \ | ||
22 | rm -f $(DESTDIR)$(LOCALE_PATH)/$(THE_LANG)/fluxbox.cat; \ | ||
23 | rmdir $(DESTDIR)$(LOCALE_PATH)/$(THE_LANG); \ | ||
24 | fi | ||
25 | |||
26 | fluxbox.cat: Translation.m | ||
27 | @if test x$(NLSTEST) = "x-DNLS"; then \ | ||
28 | $(gencat_cmd) fluxbox.cat Translation.m; \ | ||
29 | fi | ||
30 | |||