aboutsummaryrefslogtreecommitdiff
path: root/nls/C
diff options
context:
space:
mode:
Diffstat (limited to 'nls/C')
-rw-r--r--nls/C/Configmenu.m8
-rw-r--r--nls/C/Makefile.am30
-rw-r--r--nls/C/Windowmenu.m2
-rw-r--r--nls/C/fluxbox.m6
-rw-r--r--nls/C/main.m2
5 files changed, 37 insertions, 11 deletions
diff --git a/nls/C/Configmenu.m b/nls/C/Configmenu.m
index 7f64e97..c2bb813 100644
--- a/nls/C/Configmenu.m
+++ b/nls/C/Configmenu.m
@@ -46,3 +46,11 @@ $ #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
diff --git a/nls/C/Makefile.am b/nls/C/Makefile.am
index be588ad..7ed9025 100644
--- a/nls/C/Makefile.am
+++ b/nls/C/Makefile.am
@@ -1,16 +1,16 @@
1# nls/C/Makefile.am for Blackbox-0.61.x - an X11 Window Manager 1# nls/C/Makefile.am for Blackbox-0.61.x - an X11 Window Manager
2 2
3NLSTEST = @NLS@ 3NLSTEST = @NLS@
4CLEANFILES = blackbox.cat 4CLEANFILES = fluxbox.cat
5MAINTAINERCLEANFILES = Makefile.in Translation.m 5MAINTAINERCLEANFILES = 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 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 fluxbox.m common.m main.m bsetroot.m
7EXTRA_DIST= $(MFILES) 7EXTRA_DIST= $(MFILES)
8all-local: blackbox.cat 8all-local: fluxbox.cat
9install-data-local: blackbox.cat 9install-data-local: fluxbox.cat
10 @if test x$(NLSTEST) = "x-DNLS"; then \ 10 @if test x$(NLSTEST) = "x-DNLS"; then \
11 echo "Installing catalog in $(DESTDIR)$(pkgdatadir)/nls/C"; \ 11 echo "Installing catalog in $(DESTDIR)$(pkgdatadir)/nls/C"; \
12 $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/nls/C; \ 12 $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/nls/C; \
13 $(INSTALL_DATA) blackbox.cat $(DESTDIR)$(pkgdatadir)/nls/C; \ 13 $(INSTALL_DATA) fluxbox.cat $(DESTDIR)$(pkgdatadir)/nls/C; \
14 rm -f $(DESTDIR)$(pkgdatadir)/nls/US_ASCII; \ 14 rm -f $(DESTDIR)$(pkgdatadir)/nls/US_ASCII; \
15 ln -fs C $(DESTDIR)$(pkgdatadir)/nls/US_ASCII; \ 15 ln -fs C $(DESTDIR)$(pkgdatadir)/nls/US_ASCII; \
16 rm -f $(DESTDIR)$(pkgdatadir)/nls/POSIX; \ 16 rm -f $(DESTDIR)$(pkgdatadir)/nls/POSIX; \
@@ -22,7 +22,7 @@ install-data-local: blackbox.cat
22 fi 22 fi
23uninstall-local: 23uninstall-local:
24 @if test x$(NLSTEST) = "x-DNLS"; then \ 24 @if test x$(NLSTEST) = "x-DNLS"; then \
25 rm -f $(DESTDIR)$(pkgdatadir)/nls/C/blackbox.cat; \ 25 rm -f $(DESTDIR)$(pkgdatadir)/nls/C/fluxbox.cat; \
26 rm -f $(DESTDIR)$(pkgdatadir)/nls/US_ASCII; \ 26 rm -f $(DESTDIR)$(pkgdatadir)/nls/US_ASCII; \
27 rm -f $(DESTDIR)$(pkgdatadir)/nls/POSIX; \ 27 rm -f $(DESTDIR)$(pkgdatadir)/nls/POSIX; \
28 rm -f $(DESTDIR)$(pkgdatadir)/nls/en_US; \ 28 rm -f $(DESTDIR)$(pkgdatadir)/nls/en_US; \
@@ -31,16 +31,26 @@ uninstall-local:
31 fi 31 fi
32 32
33# note... when adding new catalogs... you do not need the 33# note... when adding new catalogs... you do not need the
34# header=../blackbox-nls.hh which is passed to awk... we 34# header=../fluxbox-nls.hh which is passed to awk... we
35# only need to generate it once. 35# only need to generate it once.
36 36
37Translation.m: $(MFILES) 37Translation.m: $(MFILES)
38 @if test x$(NLSTEST) = "x-DNLS"; then \ 38 @if test x$(NLSTEST) = "x-DNLS"; then \
39 awk -f ../convert.awk header=../blackbox-nls.hh \ 39 rm -f Translation.m; \
40 echo "//This file is generated from nls/C" > ../fluxbox-nls.hh; \
41 echo "#ifndef BLACKBOX_NLS_HH" >> ../fluxbox-nls.hh; \
42 echo "#define BLACKBOX_NLS_HH" >> ../fluxbox-nls.hh; \
43 echo "namespace FBNLS {" >> ../fluxbox-nls.hh; \
44 echo "enum {" >> ../fluxbox-nls.hh; \
45 awk -f ../convert.awk header=../fluxbox-nls.hh \
40 output=Translation.m $(MFILES); \ 46 output=Translation.m $(MFILES); \
47 echo " dummy_not_used = 0 //just for the ending" >> ../fluxbox-nls.hh; \
48 echo "}; //end enum" >> ../fluxbox-nls.hh; \
49 echo "}; //end namespace" >> ../fluxbox-nls.hh; \
50 echo "#endif //BLACKBOX_NLS_HH" >> ../fluxbox-nls.hh; \
41 fi 51 fi
42 52
43blackbox.cat: Translation.m 53fluxbox.cat: Translation.m
44 @if test x$(NLSTEST) = "x-DNLS"; then \ 54 @if test x$(NLSTEST) = "x-DNLS"; then \
45 $(gencat_cmd) blackbox.cat Translation.m; \ 55 $(gencat_cmd) fluxbox.cat Translation.m; \
46 fi 56 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..2ea8a63 100644
--- a/nls/C/main.m
+++ b/nls/C/main.m
@@ -7,7 +7,7 @@ $ #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) 2001-2002 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\