diff options
Diffstat (limited to 'nls/pl_PL')
-rw-r--r-- | nls/pl_PL/.cvsignore | 5 | ||||
-rw-r--r-- | nls/pl_PL/Makefile.am | 40 |
2 files changed, 45 insertions, 0 deletions
diff --git a/nls/pl_PL/.cvsignore b/nls/pl_PL/.cvsignore new file mode 100644 index 0000000..3d3e6f8 --- /dev/null +++ b/nls/pl_PL/.cvsignore | |||
@@ -0,0 +1,5 @@ | |||
1 | .cvsignore | ||
2 | Makefile | ||
3 | Makefile.in | ||
4 | *.cat | ||
5 | Translation.m | ||
diff --git a/nls/pl_PL/Makefile.am b/nls/pl_PL/Makefile.am new file mode 100644 index 0000000..52a2d6e --- /dev/null +++ b/nls/pl_PL/Makefile.am | |||
@@ -0,0 +1,40 @@ | |||
1 | # nls/de_DE/Makefile.am for Fluxbox - fluxbox.sf.net | ||
2 | |||
3 | THE_LANG = pl_PL | ||
4 | CODESET = ISO-8859-1 | ||
5 | |||
6 | NLSTEST = @NLS@ | ||
7 | CLEANFILES = fluxbox.cat | ||
8 | MAINTAINERCLEANFILES = Makefile.in Translation.m | ||
9 | 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 | ||
10 | EXTRA_DIST= $(MFILES) | ||
11 | |||
12 | all-local: fluxbox.cat | ||
13 | |||
14 | install-data-local: fluxbox.cat | ||
15 | @if test x$(NLSTEST) = "x-DNLS"; then \ | ||
16 | echo "Installing catalog in $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG)"; \ | ||
17 | $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \ | ||
18 | $(INSTALL_DATA) fluxbox.cat $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \ | ||
19 | fi | ||
20 | |||
21 | uninstall-local: | ||
22 | @if test x$(NLSTEST) = "x-DNLS"; then \ | ||
23 | rm -f $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG)/fluxbox.cat; \ | ||
24 | rmdir $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \ | ||
25 | fi | ||
26 | |||
27 | # note... when adding new catalogs... you do not need the | ||
28 | # header=../fluxbox-nls.hh which is passed to awk... we | ||
29 | # only need to generate it once. | ||
30 | |||
31 | Translation.m: $(MFILES) | ||
32 | @if test x$(NLSTEST) = "x-DNLS"; then \ | ||
33 | rm -f Translation.m; \ | ||
34 | awk -f ../convert.awk codeset=$(CODESET) output=Translation.m $(MFILES); \ | ||
35 | fi | ||
36 | |||
37 | fluxbox.cat: Translation.m | ||
38 | @if test x$(NLSTEST) = "x-DNLS"; then \ | ||
39 | $(gencat_cmd) fluxbox.cat Translation.m; \ | ||
40 | fi | ||