diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-04-11 03:20:38 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-04-11 03:20:38 +0000 |
| commit | dfc5f034581f5a26cba5c4811500438f89f0634a (patch) | |
| tree | efb1e3af799383aa5835a736cabf658d18db4be5 /nls/C | |
| parent | 17532e906b1dd6340bb1eccd2d9724643637958b (diff) | |
Initial revision
Diffstat (limited to 'nls/C')
| -rw-r--r-- | nls/C/BaseDisplay.m | 16 | ||||
| -rw-r--r-- | nls/C/Basemenu.m | 4 | ||||
| -rw-r--r-- | nls/C/Configmenu.m | 38 | ||||
| -rw-r--r-- | nls/C/Icon.m | 4 | ||||
| -rw-r--r-- | nls/C/Image.m | 24 | ||||
| -rw-r--r-- | nls/C/Makefile.am | 48 | ||||
| -rw-r--r-- | nls/C/Makefile.in | 235 | ||||
| -rw-r--r-- | nls/C/Screen.m | 54 | ||||
| -rw-r--r-- | nls/C/Slit.m | 8 | ||||
| -rw-r--r-- | nls/C/Toolbar.m | 22 | ||||
| -rw-r--r-- | nls/C/Window.m | 17 | ||||
| -rw-r--r-- | nls/C/Windowmenu.m | 20 | ||||
| -rw-r--r-- | nls/C/Workspace.m | 4 | ||||
| -rw-r--r-- | nls/C/Workspacemenu.m | 8 | ||||
| -rw-r--r-- | nls/C/bsetroot.m | 16 | ||||
| -rw-r--r-- | nls/C/common.m | 38 | ||||
| -rw-r--r-- | nls/C/main.m | 24 | ||||
| -rw-r--r-- | nls/C/openbox.m | 6 |
18 files changed, 586 insertions, 0 deletions
diff --git a/nls/C/BaseDisplay.m b/nls/C/BaseDisplay.m new file mode 100644 index 00000000..f7f3d9b4 --- /dev/null +++ b/nls/C/BaseDisplay.m @@ -0,0 +1,16 @@ +$set 1 #BaseDisplay + +$ #XError +# %s: X error: %s(%d) opcodes %d/%d\n resource 0x%lx\n +$ #SignalCaught +# %s: signal %d caught\n +$ #ShuttingDown +# shutting down\n +$ #Aborting +# aborting... dumping core\n +$ #XConnectFail +# BaseDisplay::BaseDisplay: connection to X server failed.\n +$ #CloseOnExecFail +# BaseDisplay::BaseDisplay: couldn't mark display connection as close-on-exec\n +$ #BadWindowRemove +# BaseDisplay::eventLoop(): removing bad window from event queue\n diff --git a/nls/C/Basemenu.m b/nls/C/Basemenu.m new file mode 100644 index 00000000..e7867249 --- /dev/null +++ b/nls/C/Basemenu.m @@ -0,0 +1,4 @@ +$set 2 #Basemenu + +$ #OpenboxMenu +# Openbox Menu diff --git a/nls/C/Configmenu.m b/nls/C/Configmenu.m new file mode 100644 index 00000000..d01e3c15 --- /dev/null +++ b/nls/C/Configmenu.m @@ -0,0 +1,38 @@ +$set 3 #Configmenu + +$ #ConfigOptions +# Config Options +$ #FocusModel +# Focus Model +$ #WindowPlacement +# Window Placement +$ #ImageDithering +# Image Dithering +$ #OpaqueMove +# Opaque Window Moving +$ #FullMax +# Full Maximization +$ #FocusNew +# Focus New Windows +$ #FocusLast +# Focus Window on Workspace Change +$ #ClickToFocus +# Click to Focus +$ #SloppyFocus +# Sloppy Focus +$ #AutoRaise +# Auto Raise +$ #SmartRows +# Smart Placement (Rows) +$ #SmartCols +# Smart Placement (Columns) +$ #Cascade +# Cascade Placement +$ #LeftRight +# Left to Right +$ #RightLeft +# Right to Left +$ #TopBottom +# Top to Bottom +$ #BottomTop +# Bottom to Top diff --git a/nls/C/Icon.m b/nls/C/Icon.m new file mode 100644 index 00000000..54b96a63 --- /dev/null +++ b/nls/C/Icon.m @@ -0,0 +1,4 @@ +$set 4 #Icon + +$ #Icons +# Icons diff --git a/nls/C/Image.m b/nls/C/Image.m new file mode 100644 index 00000000..5dd251a6 --- /dev/null +++ b/nls/C/Image.m @@ -0,0 +1,24 @@ +$set 5 #Image + +$ #ErrorCreatingSolidPixmap +# BImage::render_solid: error creating pixmap\n +$ #ErrorCreatingXImage +# BImage::renderXImage: error creating XImage\n +$ #UnsupVisual +# BImage::renderXImage: unsupported visual\n +$ #ErrorCreatingPixmap +# BImage::renderPixmap: error creating pixmap\n +$ #InvalidColormapSize +# BImageControl::BImageControl: invalid colormap size %d (%d/%d/%d) - reducing\n +$ #ErrorAllocatingColormap +# BImageControl::BImageControl: error allocating colormap\n +$ #ColorAllocFail +# BImageControl::BImageControl: failed to alloc color %d/%d/%d\n +$ #PixmapRelease +# BImageControl::~BImageControl: pixmap cache - releasing %d pixmaps\n +$ #PixmapCacheLarge +# BImageControl::renderImage: cache is large, forcing cleanout\n +$ #ColorParseError +# BImageControl::getColor: color parse error: '%s'\n +$ #ColorAllocError +# BImageControl::getColor: color alloc error: '%s'\n diff --git a/nls/C/Makefile.am b/nls/C/Makefile.am new file mode 100644 index 00000000..36ccd676 --- /dev/null +++ b/nls/C/Makefile.am @@ -0,0 +1,48 @@ +# nls/C/Makefile.am for Openbox + +NLSTEST = @NLS@ +CLEANFILES = openbox.cat +MAINTAINERCLEANFILES = Makefile.in Translation.m +DISTCLEANFILES = Translation.m +MFILES = @srcdir@/BaseDisplay.m @srcdir@/Basemenu.m @srcdir@/Configmenu.m @srcdir@/Icon.m @srcdir@/Image.m @srcdir@/Screen.m @srcdir@/Slit.m @srcdir@/Toolbar.m @srcdir@/Window.m @srcdir@/Windowmenu.m @srcdir@/Workspace.m @srcdir@/Workspacemenu.m @srcdir@/openbox.m @srcdir@/common.m @srcdir@/main.m @srcdir@/bsetroot.m + +all-local: Translation.m openbox.cat +install-data-local: openbox.cat + @if test x$(NLSTEST) = "x-DNLS"; then \ + echo "Installing catalog in $(DESTDIR)$(pkgdatadir)/nls/C"; \ + $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/nls/C; \ + $(INSTALL_DATA) openbox.cat $(DESTDIR)$(pkgdatadir)/nls/C; \ + rm -f $(DESTDIR)$(pkgdatadir)/nls/US_ASCII; \ + ln -f -ss C $(DESTDIR)$(pkgdatadir)/nls/US_ASCII; \ + rm -f $(DESTDIR)$(pkgdatadir)/nls/POSIX; \ + ln -f -s C $(DESTDIR)$(pkgdatadir)/nls/POSIX; \ + rm -f $(DESTDIR)$(pkgdatadir)/nls/en_US; \ + ln -f -s C $(DESTDIR)$(pkgdatadir)/nls/en_US; \ + rm -f $(DESTDIR)$(pkgdatadir)/nls/en; \ + ln -f -s C $(DESTDIR)$(pkgdatadir)/nls/en; \ + fi +uninstall-local: + @if test x$(NLSTEST) = "x-DNLS"; then \ + rm -f $(DESTDIR)$(pkgdatadir)/nls/C/openbox.cat; \ + rm -f $(DESTDIR)$(pkgdatadir)/nls/US_ASCII; \ + rm -f $(DESTDIR)$(pkgdatadir)/nls/POSIX; \ + rm -f $(DESTDIR)$(pkgdatadir)/nls/en_US; \ + rm -f $(DESTDIR)$(pkgdatadir)/nls/en; \ + rmdir $(DESTDIR)$(pkgdatadir)/nls/C; \ + fi + +# note... when adding new catalogs... you do not need the +# header=../openbox-nls.h which is passed to awk... we +# only need to generate it once. + +Translation.m: $(MFILES) + awk -f @srcdir@/../convert.awk header=../openbox-nls.h \ + output=Translation.m $(MFILES) + +openbox.cat: Translation.m + @if test x$(NLSTEST) = "x-DNLS"; then \ + $(gencat_cmd) openbox.cat Translation.m; \ + fi + +distclean-local: + rm -f *\~ diff --git a/nls/C/Makefile.in b/nls/C/Makefile.in new file mode 100644 index 00000000..51a61954 --- /dev/null +++ b/nls/C/Makefile.in @@ -0,0 +1,235 @@ +# Makefile.in generated automatically by automake 1.4-p5 from Makefile.am + +# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +# nls/C/Makefile.am for Openbox + + +SHELL = @SHELL@ + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +VPATH = @srcdir@ +prefix = @prefix@ +exec_prefix = @exec_prefix@ + +bindir = @bindir@ +sbindir = @sbindir@ +libexecdir = @libexecdir@ +datadir = @datadir@ +sysconfdir = @sysconfdir@ +sharedstatedir = @sharedstatedir@ +localstatedir = @localstatedir@ +libdir = @libdir@ +infodir = @infodir@ +mandir = @mandir@ +includedir = @includedir@ +oldincludedir = /usr/include + +DESTDIR = + +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ + +top_builddir = ../.. + +ACLOCAL = @ACLOCAL@ +AUTOCONF = @AUTOCONF@ +AUTOMAKE = @AUTOMAKE@ +AUTOHEADER = @AUTOHEADER@ + +INSTALL = @INSTALL@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS) +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +transform = @program_transform_name@ + +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +CC = @CC@ +CLOBBER = @CLOBBER@ +CXX = @CXX@ +DEBUG = @DEBUG@ +INTERLACE = @INTERLACE@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +NEWWMSPEC = @NEWWMSPEC@ +NLS = @NLS@ +ORDEREDPSEUDO = @ORDEREDPSEUDO@ +PACKAGE = @PACKAGE@ +SHAPE = @SHAPE@ +SLIT = @SLIT@ +TIMEDCACHE = @TIMEDCACHE@ +VERSION = @VERSION@ +gencat_cmd = @gencat_cmd@ +regex_cmd = @regex_cmd@ + +NLSTEST = @NLS@ +CLEANFILES = openbox.cat +MAINTAINERCLEANFILES = Makefile.in Translation.m +DISTCLEANFILES = Translation.m +MFILES = @srcdir@/BaseDisplay.m @srcdir@/Basemenu.m @srcdir@/Configmenu.m @srcdir@/Icon.m @srcdir@/Image.m @srcdir@/Screen.m @srcdir@/Slit.m @srcdir@/Toolbar.m @srcdir@/Window.m @srcdir@/Windowmenu.m @srcdir@/Workspace.m @srcdir@/Workspacemenu.m @srcdir@/openbox.m @srcdir@/common.m @srcdir@/main.m @srcdir@/bsetroot.m +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = ../../config.h +CONFIG_CLEAN_FILES = +DIST_COMMON = Makefile.am Makefile.in + + +DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) + +TAR = tar +GZIP_ENV = --best +all: all-redirect +.SUFFIXES: +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) + cd $(top_srcdir) && $(AUTOMAKE) --gnu nls/C/Makefile + +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES) + cd $(top_builddir) \ + && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status + +tags: TAGS +TAGS: + + +distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) + +subdir = nls/C + +distdir: $(DISTFILES) + here=`cd $(top_builddir) && pwd`; \ + top_distdir=`cd $(top_distdir) && pwd`; \ + distdir=`cd $(distdir) && pwd`; \ + cd $(top_srcdir) \ + && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu nls/C/Makefile + @for file in $(DISTFILES); do \ + d=$(srcdir); \ + if test -d $$d/$$file; then \ + cp -pr $$d/$$file $(distdir)/$$file; \ + else \ + test -f $(distdir)/$$file \ + || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ + || cp -p $$d/$$file $(distdir)/$$file || :; \ + fi; \ + done +info-am: +info: info-am +dvi-am: +dvi: dvi-am +check-am: all-am +check: check-am +installcheck-am: +installcheck: installcheck-am +install-exec-am: +install-exec: install-exec-am + +install-data-am: install-data-local +install-data: install-data-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am +install: install-am +uninstall-am: uninstall-local +uninstall: uninstall-am +all-am: Makefile all-local +all-redirect: all-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install +installdirs: + + +mostlyclean-generic: + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -rm -f Makefile $(CONFIG_CLEAN_FILES) + -rm -f config.cache config.log stamp-h stamp-h[0-9]* + -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) + +maintainer-clean-generic: + -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) +mostlyclean-am: mostlyclean-generic + +mostlyclean: mostlyclean-am + +clean-am: clean-generic mostlyclean-am + +clean: clean-am + +distclean-am: distclean-generic clean-am distclean-local + +distclean: distclean-am + +maintainer-clean-am: maintainer-clean-generic distclean-am + @echo "This command is intended for maintainers to use;" + @echo "it deletes files that may require special tools to rebuild." + +maintainer-clean: maintainer-clean-am + +.PHONY: tags distdir info-am info dvi-am dvi check check-am \ +installcheck-am installcheck install-exec-am install-exec \ +install-data-local install-data-am install-data install-am install \ +uninstall-local uninstall-am uninstall all-local all-redirect all-am \ +all installdirs mostlyclean-generic distclean-generic clean-generic \ +maintainer-clean-generic clean mostlyclean distclean maintainer-clean + + +all-local: Translation.m openbox.cat +install-data-local: openbox.cat + @if test x$(NLSTEST) = "x-DNLS"; then \ + echo "Installing catalog in $(DESTDIR)$(pkgdatadir)/nls/C"; \ + $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/nls/C; \ + $(INSTALL_DATA) openbox.cat $(DESTDIR)$(pkgdatadir)/nls/C; \ + rm -f $(DESTDIR)$(pkgdatadir)/nls/US_ASCII; \ + ln -f -ss C $(DESTDIR)$(pkgdatadir)/nls/US_ASCII; \ + rm -f $(DESTDIR)$(pkgdatadir)/nls/POSIX; \ + ln -f -s C $(DESTDIR)$(pkgdatadir)/nls/POSIX; \ + rm -f $(DESTDIR)$(pkgdatadir)/nls/en_US; \ + ln -f -s C $(DESTDIR)$(pkgdatadir)/nls/en_US; \ + rm -f $(DESTDIR)$(pkgdatadir)/nls/en; \ + ln -f -s C $(DESTDIR)$(pkgdatadir)/nls/en; \ + fi +uninstall-local: + @if test x$(NLSTEST) = "x-DNLS"; then \ + rm -f $(DESTDIR)$(pkgdatadir)/nls/C/openbox.cat; \ + rm -f $(DESTDIR)$(pkgdatadir)/nls/US_ASCII; \ + rm -f $(DESTDIR)$(pkgdatadir)/nls/POSIX; \ + rm -f $(DESTDIR)$(pkgdatadir)/nls/en_US; \ + rm -f $(DESTDIR)$(pkgdatadir)/nls/en; \ + rmdir $(DESTDIR)$(pkgdatadir)/nls/C; \ + fi + +# note... when adding new catalogs... you do not need the +# header=../openbox-nls.h which is passed to awk... we +# only need to generate it once. + +Translation.m: $(MFILES) + awk -f @srcdir@/../convert.awk header=../openbox-nls.h \ + output=Translation.m $(MFILES) + +openbox.cat: Translation.m + @if test x$(NLSTEST) = "x-DNLS"; then \ + $(gencat_cmd) openbox.cat Translation.m; \ + fi + +distclean-local: + rm -f *\~ + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/nls/C/Screen.m b/nls/C/Screen.m new file mode 100644 index 00000000..128c06e7 --- /dev/null +++ b/nls/C/Screen.m @@ -0,0 +1,54 @@ +$set 6 #Screen + +$ #AnotherWMRunning +# BScreen::BScreen: an error occured while querying the X server.\n \ +another window manager is already running on display %s.\n +$ #ManagingScreen +# BScreen::BScreen: managing screen %d using visual 0x%lx, depth %d\n +$ #FontLoadFail +# BScreen::LoadStyle(): couldn't load font '%s'\n +$ #DefaultFontLoadFail +# BScreen::LoadStyle(): couldn't load default font.\n +$ #EmptyMenuFile +# %s: empty menu file\n +$ #xterm +# xterm +$ #Restart +# Restart +$ #Exit +# Exit +$ #EXECError +# BScreen::parseMenuFile: [exec] error, no menu label and/or command defined\n +$ #EXITError +# BScreen::parseMenuFile: [exit] error, no menu label defined\n +$ #STYLEError +# BScreen::parseMenuFile: [style] error, no menu label and/or filename \ +defined\n +$ #CONFIGError +# BScreen::parseMenuFile: [config] error, no menu label defined\n +$ #INCLUDEError +# BScreen::parseMenuFile: [include] error, no filename defined\n +$ #INCLUDEErrorReg +# BScreen::parseMenuFile: [include] error, '%s' is not a regular file\n +$ #SUBMENUError +# BScreen::parseMenuFile: [submenu] error, no menu label defined\n +$ #RESTARTError +# BScreen::parseMenuFile: [restart] error, no menu label defined\n +$ #RECONFIGError +# BScreen::parseMenuFile: [reconfig] error, no menu label defined\n +$ #STYLESDIRError +# BScreen::parseMenuFile: [stylesdir/stylesmenu] error, no directory defined\n +$ #STYLESDIRErrorNotDir +# BScreen::parseMenuFile: [stylesdir/stylesmenu] error, '%s' is not a \ +directory\n +$ #STYLESDIRErrorNoExist +# BScreen::parseMenuFile: [stylesdir/stylesmenu] error, '%s' does not exist\n +$ #WORKSPACESError +# BScreen::parseMenuFile: [workspaces] error, no menu label defined\n +$ #PositionLength +# 0: 0000 x 0: 0000 +$ #PositionFormat +# X: %4d x Y: %4d +$ #GeometryFormat +# W: %4d x H: %4d + diff --git a/nls/C/Slit.m b/nls/C/Slit.m new file mode 100644 index 00000000..0e5e3a4f --- /dev/null +++ b/nls/C/Slit.m @@ -0,0 +1,8 @@ +$set 7 #Slit + +$ #SlitTitle +# Slit +$ #SlitDirection +# Slit Direction +$ #SlitPlacement +# Slit Placement diff --git a/nls/C/Toolbar.m b/nls/C/Toolbar.m new file mode 100644 index 00000000..93e26453 --- /dev/null +++ b/nls/C/Toolbar.m @@ -0,0 +1,22 @@ +$set 8 #Toolbar + +$ #NoStrftimeLength +# 00:00000 +$ #NoStrftimeDateFormat +# %02d/%02d/%02d +$ #NoStrftimeDateFormatEu +# %02d.%02d.%02d +$ #NoStrftimeTimeFormat24 +# %02d:%02d +$ #NoStrftimeTimeFormat12 +# %02d:%02d %sm +$ #NoStrftimeTimeFormatP +# p +$ #NoStrftimeTimeFormatA +# a +$ #ToolbarTitle +# Toolbar +$ #EditWkspcName +# Edit current workspace name +$ #ToolbarPlacement +# Toolbar Placement diff --git a/nls/C/Window.m b/nls/C/Window.m new file mode 100644 index 00000000..057593a3 --- /dev/null +++ b/nls/C/Window.m @@ -0,0 +1,17 @@ +$set 9 #Window + + +$ #Creating +# OpenboxWindow::OpenboxWindow: creating 0x%lx\n +$ #XGetWindowAttributesFail +# OpenboxWindow::OpenboxWindow: XGetWindowAttributres failed\n +$ #CannotFindScreen +# OpenboxWindow::OpenboxWindow: cannot find screen for root window 0x%lx\n +$ #Unnamed +# Unnamed +$ #MapRequest +# OpenboxWindow::mapRequestEvent() for 0x%lx\n +$ #UnmapNotify +# OpenboxWindow::unmapNotifyEvent() for 0x%lx\n +$ #UnmapNotifyReparent +# OpenboxWindow::unmapnotifyEvent: reparent 0x%lx to root\n diff --git a/nls/C/Windowmenu.m b/nls/C/Windowmenu.m new file mode 100644 index 00000000..4bf90cf4 --- /dev/null +++ b/nls/C/Windowmenu.m @@ -0,0 +1,20 @@ +$set 10 #Windowmenu + +$ #SendTo +# Send To ... +$ #Shade +# Shade +$ #Iconify +# Iconify +$ #Maximize +# Maximize +$ #Raise +# Raise +$ #Lower +# Lower +$ #Stick +# Stick +$ #KillClient +# Kill Client +$ #Close +# Close diff --git a/nls/C/Workspace.m b/nls/C/Workspace.m new file mode 100644 index 00000000..315460a0 --- /dev/null +++ b/nls/C/Workspace.m @@ -0,0 +1,4 @@ +$set 11 #Workspace + +$ #DefaultNameFormat +# Workspace %d diff --git a/nls/C/Workspacemenu.m b/nls/C/Workspacemenu.m new file mode 100644 index 00000000..5423a191 --- /dev/null +++ b/nls/C/Workspacemenu.m @@ -0,0 +1,8 @@ +$set 12 #Workspacemenu + +$ #WorkspacesTitle +# Workspaces +$ #NewWorkspace +# New Workspace +$ #RemoveLast +# Remove Last diff --git a/nls/C/bsetroot.m b/nls/C/bsetroot.m new file mode 100644 index 00000000..ddd7be6a --- /dev/null +++ b/nls/C/bsetroot.m @@ -0,0 +1,16 @@ +$set 16 #bsetroot + +$ #MustSpecify +# %s: error: must specify one of: -solid, -mod, -gradient\n +$ #Usage +# %s 2.0: (c) 1997-2000 Brad Hughes\n\n\ + -display <string> display connection\n\ + -mod <x> <y> modula pattern\n\ + -foreground, -fg <color> modula foreground color\n\ + -background, -bg <color> modula background color\n\n\ + -gradient <texture> gradient texture\n\ + -from <color> gradient start color\n\ + -to <color> gradient end color\n\n\ + -solid <color> solid color\n\n\ + -help print this help text and exit\n + diff --git a/nls/C/common.m b/nls/C/common.m new file mode 100644 index 00000000..53217029 --- /dev/null +++ b/nls/C/common.m @@ -0,0 +1,38 @@ +$set 15 #Common + +$ #Yes +# Yes +$ #No +# No + +$ #DirectionTitle +# Direction +$ #DirectionHoriz +# Horizontal +$ #DirectionVert +# Vertical + +$ #AlwaysOnTop +# Always on top + +$ #PlacementTitle +# Placement +$ #PlacementTopLeft +# Top Left +$ #PlacementCenterLeft +# Center Left +$ #PlacementBottomLeft +# Bottom Left +$ #PlacementTopCenter +# Top Center +$ #PlacementBottomCenter +# BottomCenter +$ #PlacementTopRight +# Top Right +$ #PlacementCenterRight +# Center Right +$ #PlacementBottomRight +# Bottom Right + +$ #AutoHide +# Auto hide diff --git a/nls/C/main.m b/nls/C/main.m new file mode 100644 index 00000000..e7d9f157 --- /dev/null +++ b/nls/C/main.m @@ -0,0 +1,24 @@ +$set 14 #main + +$ #RCRequiresArg +# error: '-rc' requires an argument\n +$ #DISPLAYRequiresArg +# error: '-display' requires an argument\n +$ #WarnDisplaySet +# warning: could not set environment variable 'DISPLAY'\n +$ #Usage +# Openbox %s: (c) 2002 - 2002 Ben Jansens\n\ + \t\t\t 2001 - 2002 Sean 'Shaleh' Perry\n\ + \t\t\t 1997 - 2000 Brad Hughes\n\n\ + -display <string>\t\tuse display connection.\n\ + -rc <string>\t\t\tuse alternate resource file.\n\ + -version\t\t\tdisplay version and exit.\n\ + -help\t\t\t\tdisplay this help text and exit.\n\n +$ #CompileOptions +# Compile time options:\n\ + Debugging\t\t\t%s\n\ + Interlacing:\t\t\t%s\n\ + Shape:\t\t\t%s\n\ + Slit:\t\t\t\t%s\n\ + 8bpp Ordered Dithering:\t%s\n\ + Event Clobbering:\t\t%s\n\n diff --git a/nls/C/openbox.m b/nls/C/openbox.m new file mode 100644 index 00000000..006d12b7 --- /dev/null +++ b/nls/C/openbox.m @@ -0,0 +1,6 @@ +$set 13 #openbox + +$ #NoManagableScreens +# Openbox::Openbox: no managable screens found, aborting\n +$ #MapRequest +# Openbox::process_event: MapRequest for 0x%lx\n |
