aboutsummaryrefslogtreecommitdiff
path: root/nls/C
diff options
context:
space:
mode:
Diffstat (limited to 'nls/C')
-rw-r--r--nls/C/.cvsignore5
-rw-r--r--nls/C/Configmenu.m10
-rw-r--r--nls/C/Makefile.am41
-rw-r--r--nls/C/Windowmenu.m2
-rw-r--r--nls/C/fluxbox.m6
-rw-r--r--nls/C/main.m4
6 files changed, 53 insertions, 15 deletions
diff --git a/nls/C/.cvsignore b/nls/C/.cvsignore
new file mode 100644
index 0000000..4120fef
--- /dev/null
+++ b/nls/C/.cvsignore
@@ -0,0 +1,5 @@
1.cvsignore
2Makefile
3Makefile.in
4*.cat
5*.m
diff --git a/nls/C/Configmenu.m b/nls/C/Configmenu.m
index 7f64e97..a50e6fd 100644
--- a/nls/C/Configmenu.m
+++ b/nls/C/Configmenu.m
@@ -46,3 +46,13 @@ $ #TabRotateVertical
46# Rotate Vertical Tabs 46# Rotate Vertical Tabs
47$ #SemiSloppyFocus 47$ #SemiSloppyFocus
48# Semi Sloppy Focus 48# Semi Sloppy Focus
49$ #MaxOverSlit
50# Maximize Over Slit
51$ #SloppyWindowGrouping
52# Sloppy Window Grouping
53$ #WorkspaceWarping
54# Workspace Warping
55$ #DesktopWheeling
56# Desktop Wheeling
57$ #AntiAlias
58# AntiAlias
diff --git a/nls/C/Makefile.am b/nls/C/Makefile.am
index be588ad..2f429ad 100644
--- a/nls/C/Makefile.am
+++ b/nls/C/Makefile.am
@@ -1,16 +1,19 @@
1# nls/C/Makefile.am for Blackbox-0.61.x - an X11 Window Manager 1# nls/C/Makefile.am for Fluxbox - an X11 Window Manager
2
3THE_LANG = C
4# no CODESET
2 5
3NLSTEST = @NLS@ 6NLSTEST = @NLS@
4CLEANFILES = blackbox.cat 7CLEANFILES = fluxbox.cat
5MAINTAINERCLEANFILES = Makefile.in Translation.m 8MAINTAINERCLEANFILES = Makefile.in Translation.m
6MFILES = BaseDisplay.m Basemenu.m Configmenu.m Icon.m Image.m Screen.m Slit.m Toolbar.m Window.m Windowmenu.m Workspace.m Workspacemenu.m blackbox.m common.m main.m bsetroot.m 9MFILES = 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
7EXTRA_DIST= $(MFILES) 10EXTRA_DIST= $(MFILES)
8all-local: blackbox.cat 11all-local: fluxbox.cat
9install-data-local: blackbox.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/C"; \ 14 echo "Installing catalog in $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG)"; \
12 $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/nls/C; \ 15 $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \
13 $(INSTALL_DATA) blackbox.cat $(DESTDIR)$(pkgdatadir)/nls/C; \ 16 $(INSTALL_DATA) fluxbox.cat $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \
14 rm -f $(DESTDIR)$(pkgdatadir)/nls/US_ASCII; \ 17 rm -f $(DESTDIR)$(pkgdatadir)/nls/US_ASCII; \
15 ln -fs C $(DESTDIR)$(pkgdatadir)/nls/US_ASCII; \ 18 ln -fs C $(DESTDIR)$(pkgdatadir)/nls/US_ASCII; \
16 rm -f $(DESTDIR)$(pkgdatadir)/nls/POSIX; \ 19 rm -f $(DESTDIR)$(pkgdatadir)/nls/POSIX; \
@@ -22,25 +25,35 @@ install-data-local: blackbox.cat
22 fi 25 fi
23uninstall-local: 26uninstall-local:
24 @if test x$(NLSTEST) = "x-DNLS"; then \ 27 @if test x$(NLSTEST) = "x-DNLS"; then \
25 rm -f $(DESTDIR)$(pkgdatadir)/nls/C/blackbox.cat; \ 28 rm -f $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG)/fluxbox.cat; \
26 rm -f $(DESTDIR)$(pkgdatadir)/nls/US_ASCII; \ 29 rm -f $(DESTDIR)$(pkgdatadir)/nls/US_ASCII; \
27 rm -f $(DESTDIR)$(pkgdatadir)/nls/POSIX; \ 30 rm -f $(DESTDIR)$(pkgdatadir)/nls/POSIX; \
28 rm -f $(DESTDIR)$(pkgdatadir)/nls/en_US; \ 31 rm -f $(DESTDIR)$(pkgdatadir)/nls/en_US; \
29 rm -f $(DESTDIR)$(pkgdatadir)/nls/en; \ 32 rm -f $(DESTDIR)$(pkgdatadir)/nls/en; \
30 rmdir $(DESTDIR)$(pkgdatadir)/nls/C; \ 33 rmdir $(DESTDIR)$(pkgdatadir)/nls/$(THE_LANG); \
31 fi 34 fi
32 35
33# note... when adding new catalogs... you do not need the 36# note... when adding new catalogs... you do not need the
34# header=../blackbox-nls.hh which is passed to awk... we 37# header=../fluxbox-nls.hh which is passed to awk... we
35# only need to generate it once. 38# only need to generate it once.
36 39
37Translation.m: $(MFILES) 40Translation.m: $(MFILES)
38 @if test x$(NLSTEST) = "x-DNLS"; then \ 41 @if test x$(NLSTEST) = "x-DNLS"; then \
39 awk -f ../convert.awk header=../blackbox-nls.hh \ 42 rm -f Translation.m; \
43 echo "//This file is generated from nls/C" > ../fluxbox-nls.hh; \
44 echo "#ifndef BLACKBOX_NLS_HH" >> ../fluxbox-nls.hh; \
45 echo "#define BLACKBOX_NLS_HH" >> ../fluxbox-nls.hh; \
46 echo "namespace FBNLS {" >> ../fluxbox-nls.hh; \
47 echo "enum {" >> ../fluxbox-nls.hh; \
48 awk -f ../convert.awk header=../fluxbox-nls.hh \
40 output=Translation.m $(MFILES); \ 49 output=Translation.m $(MFILES); \
50 echo " dummy_not_used = 0 //just for the ending" >> ../fluxbox-nls.hh; \
51 echo "}; //end enum" >> ../fluxbox-nls.hh; \
52 echo "}; //end namespace" >> ../fluxbox-nls.hh; \
53 echo "#endif //BLACKBOX_NLS_HH" >> ../fluxbox-nls.hh; \
41 fi 54 fi
42 55
43blackbox.cat: Translation.m 56fluxbox.cat: Translation.m
44 @if test x$(NLSTEST) = "x-DNLS"; then \ 57 @if test x$(NLSTEST) = "x-DNLS"; then \
45 $(gencat_cmd) blackbox.cat Translation.m; \ 58 $(gencat_cmd) fluxbox.cat Translation.m; \
46 fi 59 fi
diff --git a/nls/C/Windowmenu.m b/nls/C/Windowmenu.m
index 13b3c38..58ccfe2 100644
--- a/nls/C/Windowmenu.m
+++ b/nls/C/Windowmenu.m
@@ -20,3 +20,5 @@ $ #KillClient
20# Kill Client 20# Kill Client
21$ #Close 21$ #Close
22# Close 22# Close
23$ #Tab
24# Tab
diff --git a/nls/C/fluxbox.m b/nls/C/fluxbox.m
new file mode 100644
index 0000000..74d09f6
--- /dev/null
+++ b/nls/C/fluxbox.m
@@ -0,0 +1,6 @@
1$set 13 #blackbox
2
3$ #NoManagableScreens
4# Blackbox::Blackbox: no managable screens found, aborting\n
5$ #MapRequest
6# Blackbox::process_event: MapRequest for 0x%lx\n
diff --git a/nls/C/main.m b/nls/C/main.m
index 5ff1b70..b5a1a8e 100644
--- a/nls/C/main.m
+++ b/nls/C/main.m
@@ -7,10 +7,12 @@ $ #DISPLAYRequiresArg
7$ #WarnDisplaySet 7$ #WarnDisplaySet
8# warning: could not set environment variable 'DISPLAY'\n 8# warning: could not set environment variable 'DISPLAY'\n
9$ #Usage 9$ #Usage
10# Fluxkbox %s: (c) 2001 Henrik Kinnunen\n\n\ 10# Fluxbox %s: (c) %s Henrik Kinnunen\n\n\
11 -display <string>\t\tuse display connection.\n\ 11 -display <string>\t\tuse display connection.\n\
12 -rc <string>\t\t\tuse alternate resource file.\n\ 12 -rc <string>\t\t\tuse alternate resource file.\n\
13 -version\t\t\tdisplay version and exit.\n\ 13 -version\t\t\tdisplay version and exit.\n\
14 -info\t\t\t\tdisplay some useful information.\n\
15 -log <filename>\t\t\tlog output to file.\n\
14 -help\t\t\t\tdisplay this help text and exit.\n\n 16 -help\t\t\t\tdisplay this help text and exit.\n\n
15$ #CompileOptions 17$ #CompileOptions
16# Compile time options:\n\ 18# Compile time options:\n\