[sawfish] * configure.in: - fix the last incomplete AC_DEFINE



commit 21719a798e4fa97f3a7c4c1f392eefa6645514e2
Author: chrisb <zanghar freenet de>
Date:   Mon May 4 19:31:37 2009 +0200

            * configure.in: - fix the last incomplete AC_DEFINE
                            - remove unsed configure flags
                            - don't add CFLAGS if non given
                            - check for intltool 0.40.0
    
            * autogen.sh: run intltoolize
    
            * po/POTFILES.in: updated
    
            * sawfish.ebuild.in: updated
    
            * po/LINGUAS: added
    
            * po/sawfish.pot
            * po/make-pot
            * po/sawfish-xgettext
            * po/update.sh: removed, using intltool instead
---
 ChangeLog           |   18 +-
 autogen.sh          |    2 +
 configure.in        |   41 +-
 man/news.texi       |    2 +
 po/LINGUAS          |   52 +
 po/Makefile.in      |   87 --
 po/POTFILES.in      |    2 +
 po/make-pot         |   51 -
 po/sawfish-xgettext |  178 ---
 po/sawfish.pot      | 3258 ---------------------------------------------------
 po/update.sh        |   26 -
 sawfish.ebuild.in   |   13 +-
 12 files changed, 88 insertions(+), 3642 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 1fe8e20..62a7cd1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,21 @@
 2009-05-04  Christopher Bratusek <zanghar freenet de>
-	* configure.in: fix the last incomplete AC_DEFINE
+	* configure.in: - fix the last incomplete AC_DEFINE
+			- remove unsed configure flags
+			- don't add CFLAGS if non given
+			- check for intltool 0.40.0
+
+	* autogen.sh: run intltoolize
+
+	* po/POTFILES.in: updated
+
+	* sawfish.ebuild.in: updated
+
+	* po/LINGUAS: added
+
+	* po/sawfish.pot
+	* po/make-pot
+	* po/sawfish-xgettext
+	* po/update.sh: removed, using intltool instead
 
 2009-05-03  Christopher Bratusek <zanghar freenet de>
 	* lisp/sawfish/ui/slot.jl: make defcustoms strings translatable [Alexey I. Froloff]
diff --git a/autogen.sh b/autogen.sh
index 3d7597b..c0b739d 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -25,6 +25,8 @@ if [ -f configure.in ]; then
     else    libtoolize --force --copy --install || exit 1
     fi
   fi
+  echo "Running intltoolize"
+  intltoolize --copy --force
   echo "Running aclocal $ACLOCAL_FLAGS"
   aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 
diff --git a/configure.in b/configure.in
index 9043d2a..0e8dee6 100644
--- a/configure.in
+++ b/configure.in
@@ -26,11 +26,18 @@ AC_CONFIG_MACRO_DIR([m4])
 
 AM_PROG_LIBTOOL
 
+IT_PROG_INTLTOOL([0.40.0])
+
 dnl Release versioning info
 version="1.5.0"
 subversion=""
 codename="The Hardstyle Factory"
 
+VERSION=${version}
+
+PACKAGE="sawfish"
+GETTEXT_PACKAGE=${PACKAGE}
+
 install_sh=../install-sh
 
 SUBDIRS="src lisp scripts themes sounds man po"
@@ -297,8 +304,6 @@ fi
 AC_MSG_RESULT([$with_gnome_prefix])
 GNOMEDIR=$with_gnome_prefix
 
-dnl Custom tests
-
 dnl How do we get dependency lines in the Makefile?
 if test "x${GCC}" = "xyes"; then
   MAKEDEP='$(CC) -MM'
@@ -319,31 +324,6 @@ else
   esac
 fi
 
-dnl If using GCC and it doesn't look as though the cflags have been
-dnl set explicitly, add some warning options. Turn off implicit-int
-dnl warnings since the X11 includes on Solaris generate a lot of these
-if test "x${GCC}" = "xyes" -a "x$CFLAGS" = "x-g -O2"; then
-  CFLAGS="${CFLAGS} -Wall -Wmissing-prototypes -Wno-implicit-int"
-fi
-
-AC_MSG_CHECKING(for languages to install)
-AC_ARG_ENABLE(linguas,
-	      [  --enable-linguas=LANGS... Install language catalogs for language codes LANGS],
-	      [ LINGUAS="$enableval" ], [ LINGUAS="" ])
-
-if test "x$LINGUAS" = x; then
-	changequote({,})
-	LINGUAS="`echo $srcdir/po/*.po | sed -e 's/[^ ]*\/po\/\([^ ]*\)\.po/\1/g'`"
-	changequote([,])
-fi
-
-dnl too gross for words..
-if test $REP_MSGFMT = true; then
-	LINGUAS=""
-fi
-
-AC_MSG_RESULT($LINGUAS)
-
 dnl Nonstandard exported symbols
 AC_SUBST(version)
 AC_SUBST(subversion)
@@ -392,10 +372,9 @@ AC_SUBST(AUDIOFILE_CFLAGS)
 AC_SUBST(ESD_MIN_VER)
 AC_SUBST(ESD_LIBS)
 AC_SUBST(ESD_CFLAGS)
-AC_SUBST(GETTEXT_PACKAGE)
-AC_SUBST(PACKAGE)
 AC_SUBST(VERSION)
-AC_SUBST(LINGUAS)
+AC_SUBST(PACKAGE)
+AC_SUBST(GETTEXT_PACKAGE)
 
 dnl Build all files
 AC_CONFIG_FILES([
@@ -409,7 +388,7 @@ lisp/sawfish/ui/Makefile
 lisp/sawfish/gtk/Makefile
 lisp/sawfish/gtk/widgets/font.jl
 man/Makefile
-po/Makefile
+po/Makefile.in
 scripts/Makefile
 sounds/Makefile
 src/Makefile
diff --git a/man/news.texi b/man/news.texi
index c52575f..c286f82 100644
--- a/man/news.texi
+++ b/man/news.texi
@@ -18,6 +18,8 @@ they occurred between. For more detailed information see the
 @item librep 0.17 -> 0.17.3
 
 @item rep-gtk 0.18.3 -> 0.18.4
+
+ item intltool 0.40.0
 @end itemize
 
 @item User visible changes:
diff --git a/po/LINGUAS b/po/LINGUAS
new file mode 100644
index 0000000..6fabd65
--- /dev/null
+++ b/po/LINGUAS
@@ -0,0 +1,52 @@
+am
+ar
+az
+be
+bg
+bs
+ca
+cs
+da
+de
+dz
+el
+en_CA
+en_GB
+es
+et
+eu
+fi
+fr
+ga
+gl
+hu
+it
+ja
+ko
+lv
+mk
+ms
+nb
+ne
+nl
+nn
+no
+oc
+pa
+pl
+pt_BR
+pt
+ro
+ru
+rw
+sk
+sl
+sr Latn
+sr
+sv
+tr
+uk
+vi
+wa
+zh_CN
+zh_TW
diff --git a/po/Makefile.in b/po/Makefile.in
deleted file mode 100644
index cb115be..0000000
--- a/po/Makefile.in
+++ /dev/null
@@ -1,87 +0,0 @@
-# Makefile.in for sawmill's message catalogues
-# $Id: Makefile.in,v 1.7 2000/07/06 13:30:07 john Exp $
-#
-# Copyright (C) 1999 John Harper <john dcs warwick ac uk>
-#
-# This file is part of sawmill.
-#
-# sawmill is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
-# any later version.
-#
-# sawmill is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with sawmill; see the file COPYING.  If not, write to
-# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
-
-include ../Makedefs
-top_srcdir= top_srcdir@
-top_builddir=..
-srcdir= srcdir@
-VPATH= srcdir@:@top_srcdir@
-
-PACKAGE=sawfish
-MSGMERGE=msgmerge
-CATOBJEXT=.mo
-
-POFILES=$(LINGUAS:%=%.po)
-CATALOGS=$(LINGUAS:%=%$(CATOBJEXT))
-
-all : $(CATALOGS) $(PACKAGE).pot
-
-$(PACKAGE).pot :
-	./make-pot
-
-ifneq ($(CATALOGS),)
-install : $(CATALOGS) installdirs
-	for f in $(CATALOGS); do \
-	  st=`basename $$f .mo`; \
-	  if test '!' -d $(DESTDIR)$(localedir)/$$st/LC_MESSAGES/; then \
-	    $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(localedir)/$$st/LC_MESSAGES; \
-	  fi; \
-	  $(INSTALL_DATA) $$f $(DESTDIR)$(localedir)/$$st/LC_MESSAGES/$(PACKAGE).mo; \
-	done
-else
-install : $(CATALOGS) installdirs
-
-endif
-
-update-po:
-	$(MAKE) $(PACKAGE).pot
-	cd $(srcdir); \
-	catalogs='$(CATALOGS)'; \
-	for cat in $$catalogs; do \
-	  cat=`basename $$cat`; \
-	  lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
-	  mv $$lang.po $$lang.old.po; \
-	  echo "$$lang:"; \
-	  if $(MSGMERGE) $$lang.old.po $(PACKAGE).pot -o $$lang.po.x; then \
-	    if grep -v "^# \.\." $$lang.po.x >$$lang.po; then \
-	      rm -f $$lang.po.x; \
-	    fi; \
-	    rm -f $$lang.old.po; \
-	  else \
-	    echo "msgmerge for $$cat failed!"; \
-	    rm -f $$lang.po; \
-	    mv $$lang.old.po $$lang.po; \
-	  fi; \
-	done
-
-installdirs : $(top_srcdir)/mkinstalldirs
-	$(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(localedir)
-
-uninstall :
-	rm -f $(DESTDIR)$(localedir)/*/LC_MESSAGES/sawfish.mo
-
-clean :
-	rm -f core *~ *.mo
-
-realclean : clean
-	rm -f Makefile $(PACKAGE).pot
-
-.PHONY : all install uninstall clean realclean
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 7d3e739..343869a 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -26,6 +26,7 @@ lisp/sawfish/wm/commands/help.jl
 lisp/sawfish/wm/commands/move-cursor.jl
 lisp/sawfish/wm/commands/move-resize.jl
 lisp/sawfish/wm/commands/raise-commands.jl
+lisp/sawfish/wm/commands/shrink-yank.jl
 lisp/sawfish/wm/commands/size-window.jl
 lisp/sawfish/wm/commands/slide-window.jl
 lisp/sawfish/wm/commands/viewport-extras.jl
@@ -38,6 +39,7 @@ lisp/sawfish/wm/ext/3d-hack.jl
 lisp/sawfish/wm/ext/audio-events.jl
 lisp/sawfish/wm/ext/edge-flip.jl
 lisp/sawfish/wm/ext/error-handler.jl
+lisp/sawfish/wm/ext/infinite-desktop.jl
 lisp/sawfish/wm/ext/match-window.jl
 lisp/sawfish/wm/ext/shade-hover.jl
 lisp/sawfish/wm/ext/tooltips.jl
diff --git a/po/make-pot b/po/make-pot
deleted file mode 100755
index ffdd41f..0000000
--- a/po/make-pot
+++ /dev/null
@@ -1,51 +0,0 @@
-#!/bin/sh
-
-# make-pot -- extract .pot file from sources
-
-# $Id: make-pot,v 1.5 2000/09/01 22:45:15 john Exp $
-
-# This file is part of sawfish.
-
-# sawfish is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
-# any later version.
-
-# sawfish is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with sawfish; see the file COPYING.  If not, write to
-# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
-
-case $1 in
-	*update)
-		intltool-update --pot
-		mv -f untitled.pot sawfish.pot
-	;;
-
-	*generate)
-		REP_SRCS="../scripts/*.jl\
-		 ../themes/*/theme.jl"
-
-		REP_SRCS="$REP_SRCS `find ../lisp -name '*.jl' -print`"
-
-		rm -f sawfish.pot
-
-		if [ ! -r ../DOC ]; then
-  			echo "error: Need a DOC file!"
-  			exit 1
-		fi
-
-		lisp_c=.$$.lisp.c
-
-		./sawfish-xgettext --doc-file=../DOC --c $REP_SRCS >$lisp_c
-		
-		xgettext --add-comments -a --no-location $lisp_c 
-		mv -f messages.po sawfish.pot
-
-		rm -f $lisp_c
-	;;
-esac
diff --git a/po/sawfish-xgettext b/po/sawfish-xgettext
deleted file mode 100755
index 1d3aa8f..0000000
--- a/po/sawfish-xgettext
+++ /dev/null
@@ -1,178 +0,0 @@
-#!/bin/sh
-exec rep "$0" "$@"
-!#
-
-;; sawfish-xgettext -- extract i18n strings from lisp scripts
-;; $Id: sawfish-xgettext,v 1.8 2001/04/20 21:40:50 jsh Exp $
-
-;; This file is part of sawfish.
-
-;; sawfish is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 2, or (at your option)
-;; any later version.
-
-;; sawfish is distributed in the hope that it will be useful, but
-;; WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with sawfish; see the file COPYING.  If not, write to
-;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
-
-(require 'rep.i18n.xgettext)
-(require 'rep.lang.doc)
-
-(defvar *write-c-file* nil)
-
-(define (exit n) (throw 'quit n))
-
-;; random hackery
-
-;; from sawfish.ui.widgets.match-window
-(define (beautify-symbol-name symbol)
-  (cond ((stringp symbol) symbol)
-	((not (symbolp symbol)) (format "%s" symbol))
-	(t
-	 (let ((name (copy-sequence (symbol-name symbol))))
-	   (while (string-match "[-:]" name)
-	     (setq name (concat (substring name 0 (match-start))
-				?  (substring name (match-end)))))
-	   (aset name 0 (char-upcase (aref name 0)))
-	   name))))
-
-;; from sawfish.ui.layouts.keymaps
-(define (beautify-keymap-name symbol)
-  (cond ((stringp symbol) symbol)
-	((not (symbolp symbol)) (format "%s" symbol))
-	(t
-	 (let ((name (copy-sequence (symbol-name symbol))))
-	   (when (string-match "-keymap" name)
-	     (setq name (substring name 0 (match-start))))
-	   (while (string-match "[-:]" name)
-	     (setq name (concat (substring name 0 (match-start))
-				?  (substring name (match-end)))))
-	   (aset name 0 (char-upcase (aref name 0)))
-	   name))))
-
-;; helper function that groks sawfish specific forms
-
-(define (get-key key args) (and (listp args) (memq key args)))
-
-(define (helper form)
-  (case (car form)
-    ((defcustom)
-     (let ((variable (nth 1 form))
-	   (doc (nth 3 form))
-	   (keys (nthcdr 4 form)))
-       (let ((tooltip (cadr (get-key ':tooltip keys))))
-	 (when tooltip
-	   (setq doc (concat doc "\n\n" tooltip))))
-       (let ((type* (cadr (get-key ':type* keys))))
-	 (when type*
-	   (scan type*)))
-       (let ((options (cadr (get-key ':options keys))))
-	 ;; extract `:options (foo bar..)' strings
-	 (when (listp options)
-	   (mapc (lambda (s)
-		   (when s
-		     (register (symbol-name s)))) options)))
-       (let ((type (cadr (get-key ':type keys))))
-	 ;; extract `:type (choice foo bar..)' strings
-	 (when (eq (car type) 'choice)
-	   (mapc (lambda (s)
-		   (when (symbolp s)
-		     (register (symbol-name s)))) (cdr type)))
-	 ;; extract keymap names
-	 (when (eq type 'keymap)
-	   (register (beautify-keymap-name (symbol-name variable)))))
-       (when (stringp doc)
-	 (register doc))))
-
-    ((defgroup)
-     (let ((real-name (nth 2 form)))
-       (when (stringp real-name)
-	 (register real-name))))
-
-    ((define-command)
-     (let ((name (nth 1 form))
-	   (def (nth 2 form))
-	   (keys (nthcdr 3 form)))
-       (when (and (eq (car name) 'quote)
-		  (symbolp (cadr name)))
-	 (register (beautify-symbol-name (cadr name))))
-       (if (get-key #:doc keys)
-	   (register (cadr (get-key #:doc keys)))
-	 (let ((key (or (cadr (get-key #:doc-key keys))
-			(and (symbolp def)
-			     (doc-file-value-key
-			      def (fluid current-module))))))
-	   (when (stringp key)
-	     (let ((doc (doc-file-ref key)))
-	       (when doc
-		 (register doc))))))
-       (let ((type (car (cdr (get-key #:type keys)))))
-	 (when type
-	   (scan type)))))
-
-    ((i18n-defvar i18n-define)
-     (let ((name (cadr form))
-	   (value (caddr form)))
-       (case name
-	 ((match-window-properties)
-	  (mapc (lambda (x)
-		  (mapc (lambda (y)
-			  (register (beautify-symbol-name (car y)))) (cddr x)))
-		;; remove a `(backquote X)'
-		(nth 1 value)))
-
-	 ((match-window-x-properties)
-	  (mapc (lambda (x)
-		  (register (cdr x)))
-		;; strip a `(quote X)'
-		(nth 1 value))))
-
-       ;; always rescan as normal, to be sure not to miss anything
-       (scan (cons (if (eq (car form) 'i18n-defvar)
-		       'defvar
-		     'define)
-		   (cdr form)))))
-
-    (t (scan-list form))))
-
-;; entry point
-
-(when (get-command-line-option "--help")
-  (write standard-output "\
-Usage: sawfish-xgettext [OPTIONS...] FILES...
-
-Program to extract strings from sawfish Lisp files that should be
-translated.
-
-  --doc-file DOC
-  --c
-  --pot\n")
-  (exit 0))
-
-(when (or (get-command-line-option "-c") (get-command-line-option "--c"))
-  (setq *write-c-file* t))
-(when (or (get-command-line-option "-p") (get-command-line-option "--pot"))
-  (setq *write-c-file* nil))
-
-(let ((doc-file (get-command-line-option "--doc-file" t)))
-  (when doc-file
-    (setq documentation-files (list doc-file))))
-
-(set-helper helper)
-(set-included-definers '())
-(mapc scan-file command-line-args)
-(setq command-line-args '())
-
-(if *write-c-file*
-    (output-c-file)
-  (output-pot-file))
-
-;; Local variables:
-;; major-mode: lisp-mode
-;; End:
diff --git a/po/sawfish.pot b/po/sawfish.pot
deleted file mode 100644
index 0a6b436..0000000
--- a/po/sawfish.pot
+++ /dev/null
@@ -1,3258 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-03-05 08:31+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL ADDRESS>\n"
-"Language-Team: LANGUAGE <LL li org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. ../themes/Crux/theme.jl
-msgid "Crux Theme"
-msgstr ""
-
-#. ../themes/Crux/theme.jl
-msgid ""
-"Accent color for focused windows (if unset uses the GTK+ selection color)."
-msgstr ""
-
-#. ../themes/Crux/theme.jl
-msgid "Display the window's icon in its menu button."
-msgstr ""
-
-#. ../themes/Crux/theme.jl
-msgid "Display title buttons to mimic: \\w"
-msgstr ""
-
-#. ../themes/gradient/theme.jl
-msgid "Gradient Theme"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-#. ../themes/gradient/theme.jl
-msgid "horizontal"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-#. ../themes/gradient/theme.jl
-msgid "vertical"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-#. ../themes/gradient/theme.jl
-msgid "diagonal"
-msgstr ""
-
-#. ../themes/gradient/theme.jl
-msgid "Direction of gradient in `gradient' frame style."
-msgstr ""
-
-#. ../themes/gradient/theme.jl
-msgid "`From' color of inactive frames in `gradient' frame style."
-msgstr ""
-
-#. ../themes/gradient/theme.jl
-msgid "`To' color of inactive frames in `gradient' frame style."
-msgstr ""
-
-#. ../themes/gradient/theme.jl
-msgid "`From' color of active frames in `gradient' frame style."
-msgstr ""
-
-#. ../themes/gradient/theme.jl
-msgid "`To' color of active frames in `gradient' frame style."
-msgstr ""
-
-#. ../themes/gradient/theme.jl
-msgid "Use less memory when creating gradients, possibly affecting quality."
-msgstr ""
-
-#. ../themes/mono/theme.jl
-msgid "Mono Theme"
-msgstr ""
-
-#. ../themes/mono/theme.jl
-msgid "Color of inactive frames (if unset use GTK+ background color)."
-msgstr ""
-
-#. ../themes/mono/theme.jl
-msgid "Color of active frames (if unset use GTK+ selection color)."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-#. ../themes/mono/theme.jl
-msgid "left"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-#. ../themes/mono/theme.jl
-msgid "right"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-#. ../themes/mono/theme.jl
-msgid "center"
-msgstr ""
-
-#. ../themes/mono/theme.jl
-msgid "Text is \\w justified in window titles."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "mxflat"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "title"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "basic"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "gradient"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "colors"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "buttons"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "positions 1"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "positions 2"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "keymaps 1"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "keymaps 2"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "borders"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "extended"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "normal"
-msgstr ""
-
-#. ../lisp/sawfish/wm/stacking.jl
-#. ../themes/mxflat/theme.jl
-msgid "all"
-msgstr ""
-
-#. ../lisp/sawfish/wm/window-anim.jl
-#. ../lisp/sawfish/wm/util/stacking.jl
-#. ../lisp/sawfish/wm/state/iconify.jl
-#. ../lisp/sawfish/wm/stacking.jl
-#. ../themes/mxflat/theme.jl
-msgid "none"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"decoration mode\n"
-"\n"
-"set the mode 'when to draw a titlebar and window buttons'. the decoration "
-"mode 'all' means that all windows, even transients/dialogs, will get a "
-"titlebar and buttons. none means no window will get any :-). usually "
-"transients only have a contents-border. this option is for reimplementing a "
-"sawfish feature that is gone in the latest version."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "titlebar height (9 - 1000 pixel)"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"customize title string\n"
-"\n"
-"see the tooltip for the 'title string' option below for more information. "
-"(NOTE: i hope the redrawing problems with this option are solved. if not, "
-"write an email please!)"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"title string\n"
-"\n"
-"the string you insert here will be your new title string. variables always "
-"start with a dollar-sign $ and are replaced with their actual values. to get "
-"the value of an environment variable use $(variable), eg $(DISPLAY). to get "
-"the value of an rep/sawfish function use $[fuction], eg $[current-time-"
-"string]. the following vars are built-in: $name, $fullname, $width, $width-"
-"content, $height, $height-content, $depth, $x-pos, $y-pos, $current-ws and "
-"$last-ws. (NOTE: i hope the redrawing problems with this option are solved. "
-"if not, write an email please!"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"update title string periodically\n"
-"\n"
-"this is useful if your title string changes without user interaction (eg "
-"because it displays the current time or something like that)."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"title string update interval (1 - 1000000 s)\n"
-"\n"
-"this is useful if your title string changes without user interaction (eg "
-"because it displays the current time or something like that)."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"title string font\n"
-"\n"
-"you should really choose a better font. verdana bold 8 pt looks nice."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"customize title position\n"
-"\n"
-"by default the title string is centered horizontally and vertically."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "real-center"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"title string horizontal alignment\n"
-"\n"
-"'real-center' means to take the whole titlebar into account while centering "
-"the string. when selecting 'center' only the distance between the buttons is "
-"taken into account."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"title string horizontal align adjustment (-10000 - 10000 pixel)\n"
-"\n"
-"the horizontal position of the title string can only be adjusted if the "
-"horizontal alignment is not 'center'. the range also depends on the setting "
-"of the option above. it the title string is already aligned left, you cannot "
-"adjust it to be even further left because there are button in the way."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "top"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "bottom"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "title string vertical alignment"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "title string vertical align adjustment (-10000 - 10000 pixel)"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"gradient titlebar background (experimental)\n"
-"\n"
-"when activating the gradient background the normal titlebar background "
-"colors will be ignored. besides the button background colors will be "
-"ignored. (NOTE: this can be very cpu intensive if you set the quality to a "
-"low value, ie high quality.)"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"gradient mode\n"
-"\n"
-"with gradient mode vertical or diagonal only the first or last (reversed) 2 "
-"colors in the list are used."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"gradient quality (1 best - 20 worst)\n"
-"\n"
-"the value here is the factor the calculated gradient image will be scaled "
-"down. this increases speed but decreases quality."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "rainbow"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "jamaica"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "rgb"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "custom"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"gradient color mode\n"
-"\n"
-"the custom mode will respect the colors set in the list below."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"\n"
-"\n"
-"with gradient mode vertical or diagonal only the first or last (reversed) 2 "
-"colors in the list are used. besides the gradient color mode must be set to "
-"custom to activate this list."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "reverse colors"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"unfocused/highlighted titlebar colors hue (0 - 360)\n"
-"\n"
-"this value changes the hue of a color, by moving (0 - 360) degress around "
-"the color cycle...180 for example inverts the color"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-#, c-format
-msgid ""
-"unfocused/highlighted titlebar colors saturation (0 - 100% of the focused "
-"color)\n"
-"\n"
-"the saturation of a color is a measurement of the color intensity"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-#, c-format
-msgid ""
-"unfocused/highlighted titlebar colors brightness (0 - 100% of the focused "
-"color)"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"  focused titlebar color\n"
-"\n"
-"this is one of the 4 base colors. you can set these 4 colors and keep the "
-"extended colors deactivated. all other color options of the theme will then "
-"depend on these 4 colors."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"unfocused titlebar color\n"
-"\n"
-"this is one of the 4 base colors. you can set these 4 colors and keep the "
-"extended colors deactivated. all other color options of the theme will then "
-"depend on these 4 colors."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"  focused title string color\n"
-"\n"
-"this is one of the 4 base colors. you can set these 4 colors and keep the "
-"extended colors deactivated. all other color options of the theme will then "
-"depend on these 4 colors."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"unfocused title string color\n"
-"\n"
-"this is one of the 4 base colors. you can set these 4 colors and keep the "
-"extended colors deactivated. all other color options of the theme will then "
-"depend on these 4 colors."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"customize extended title string colors\n"
-"\n"
-"you can customize additional colors of the title string. if you deactivate "
-"this, these colors will be set to the focused title string color."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "  focused highlighted title string color"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "unfocused highlighted title string color"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "  focused clicked title string color"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "unfocused clicked title string color"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "default-9"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "default-12"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "square-6"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "square-9"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "square-12"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "square-15"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "square-18"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "ball-9"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "ball-12"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"button icon set (experimental)\n"
-"\n"
-"the number at the end is the width/height of the button icons in the icon "
-"set. (NOTE: YOU NEED TO RESTART SAWFISH AFTER CHANGING THE BUTTON ICON SET!)"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"customize button size\n"
-"\n"
-"by default the button size follows the size of the titlebar, but by "
-"activating this you can set it to something different."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"buttons size (1 - 1000 pixel)\n"
-"\n"
-"a buttons size that is bigger than your current titlebar height is ignored."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"button vertical alignment\n"
-"\n"
-"if a button is smaller than the titlebar you might want to set its vertical "
-"alignment."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"scale button icons (experimental)\n"
-"\n"
-"in case you don't like the default size of 9 pixel you might activate button-"
-"scaling. YOU NEED TO RESTART SAWFISH AFTER CHANGING THE BUTTON SCALE!"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"button icon scale; changes here need a restart of sawfish (0 - 1000 pixel)\n"
-"\n"
-"in case you don't like the default size of 9 pixel you might activate button-"
-"scaling. (NOTE: YOU NEED TO RESTART SAWFISH AFTER CHANGING THE BUTTON SCALE!)"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"display window icon on menu button\n"
-"\n"
-"many people like having the window-icon displayed on the menu-button. this "
-"icon is defined by the application itself and is also shown in your pager "
-"and task-list."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "menu icon scale (0 - 1000 pixel)"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "button distance (0 - 1000 pixel)"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "buttons left offset (0 - 1000 pixel)"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "buttons right offset (0 - 1000 pixel)"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"customize button position (-1 -2 -3 .. title string .. +3 +2 +1)\n"
-"\n"
-"enabling this will allow you to set the positon of each button in the "
-"titlebar manually. a negative/positiv value means the button will be drawn "
-"on left/right side of the titlebar."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "title-height"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "pixel"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"button position model\n"
-"\n"
-"'titel-height' means calculate position as multiple of title height. when "
-"selecting 'pixel' you can adjust the button position pixelwise, but keep in "
-"mind that several buttons might slide on top of each other. 'none' means no "
-"buttons at all."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "menu button position"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "shade button position"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "iconify button position"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "maximize button position"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "close button position"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "sticky button position"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "previous workspace button position"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "next workspace button position"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "configure button position"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "info button position"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "always-on-top button position"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "lock button position"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"customize sticky button keymap\n"
-"\n"
-"by default a button will work as it's name suggests. button1: toggle sticky "
-"state of window"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "mxflat:sticky-button-keymap"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"customize previous button keymap\n"
-"\n"
-"by default a button will work as it's name suggests. button1: send window to "
-"previous workspace - button2 workspace-list - button3 send window to first "
-"workspace - button6 pack window left"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "mxflat:previous-button-keymap"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"customize next button keymap\n"
-"\n"
-"by default a button will work as it's name suggests. button1: send window to "
-"next workspace - button2 workspace-list - button3 send window to last "
-"workspace - button6 pack window right"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "mxflat:next-button-keymap"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"\n"
-"\n"
-"button1: send window to next workspace - button2 workspace-list - button3 "
-"send window to last workspace - button6 pack window right"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"customize configure button keymap\n"
-"\n"
-"by default a button will work as it's name suggests. button1: start sawfish-"
-"ui - button3: toggle custom title string"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "mxflat:configure-button-keymap"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"\n"
-"\n"
-"button1: start sawfish-ui - button3: toggle custom title string"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"customize info button keymap\n"
-"\n"
-"by default a button will work as it's name suggests. button1: window list - "
-"button3 window snooper (not included by default)"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "mxflat:info-button-keymap"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"always on top depth (-1000 - 1000)\n"
-"\n"
-"a window will have this depth after you have pressed the always-on-top "
-"button. 0 is the normal window level. every positive value means above other "
-"windows, a negative value means below. keept it at a positive value in order "
-"to have the always-on-top button do it's job."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"customize always-on-top button keymap\n"
-"\n"
-"by default a button will work as it's name suggests. button1: sets window "
-"depth to the adjusted value"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "mxflat:always-on-top-button-keymap"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"customize look button keymap\n"
-"\n"
-"by default a button will work as it's name suggests. button1: lock window "
-"position"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "mxflat:lock-button-keymap"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"customize button-colors\n"
-"\n"
-"when you active this you will be able to set custom button colors. by "
-"default the button colors depend on the titlebar colors."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "  focused button background color"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "unfocused button background color"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "  focused highlighted button background color"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "unfocused highlighted button background color"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "  focused clicked button background color"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "unfocused clicked button background color"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "  focused button foreground color"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "unfocused button foreground color"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "  focused highlighted button foreground color"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "  focused clicked button foreground color"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"border width (0 - 1000 pixel)\n"
-"\n"
-"set the width border around the window."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"border width for maximized windows (0 - 1000 pixel)\n"
-"\n"
-"when you like having a big border around your windows you might have noticed "
-"that sawfish still draws that big border when the window is maximized. if "
-"you don't want that, set the border width for maximized windows smaller than "
-"the border width for unmaximized windows. (NOTE: this feature is still buggy "
-"as sawfish does not resize the windows correctly yet, so the best might be "
-"to set it to the normal border width.)"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"customize border for focused windows (experimental)\n"
-"\n"
-"(NOTE: this works but it is VERY cpu intensive and might slow down your "
-"computer noticably. so turn it on at your own risk.)"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"border width for focused windows (0 - 1000 pixel)\n"
-"\n"
-"(NOTE: this works but it is VERY cpu intensive and might slow down your "
-"computer noticably. so turn it on at your own risk.)"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"title-contents border width (0 - 1000 pixel)\n"
-"\n"
-"sets the widths of the line between titlebar and contents window"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"border offset (-1000 - 1000 pixel)\n"
-"\n"
-"adjust the point where the border actually starts. many gtk2 apps draw a "
-"small black border around their contents window and this is just ugly when "
-"sawfish draws another border around the window. with a border offset of -1 "
-"the sawfish window border will overlay the gtk2 border exactly."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"keep window borders and corners at their place when shading a window\n"
-"\n"
-"when shading a window borders and corners will stay where they were and not "
-"merge with the titlebar."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"show window corners\n"
-"\n"
-" the corners are used to resize a window in two directions at the same time. "
-"usually the width and length of window corners are determined by the border "
-"width but you can adjust them below."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"corners length adjustement (-1 - 100 pixel)\n"
-"\n"
-"increasing the corner length will grow the window corners along the window "
-"border (i.e. make them longer). with a border width of 1 pixel it is hard to "
-"grab the 1 pixel corner to be able to resize the window in two directions; "
-"thus, make it bigger."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "outside"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "inside"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "corner direction"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"corners width adjustement (0 - 100 pixel)\n"
-"\n"
-"this option makes the window corners broader. with a border width of 1 pixel "
-"it is hard to grab this 1 pixel corner to be able to resize the window in "
-"two directions; thus, make it bigger."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "corners width adjustement for maximized windows (0 - 100 pixel)"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"fake shadow (experimental)\n"
-"\n"
-"draw a small additional border around your windows emulating a solid shadow "
-"effect. use the options below to adjust its width and direction. (NOTE: this "
-"is VERY cpu intensive and might slow down your computer noticably. so turn "
-"it on at your own risk.)"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "fake shadow only on focused windows"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "north"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "east"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "south"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "west"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "north-east"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "north-west"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "south-east"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "south-west"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"fake shadow light source\n"
-"\n"
-"set the direction of the fake shadow. usually only 2 or 3 borders of your "
-"window have a fake shadow. this depends on where the light comes from."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"fake shadow light distance (0 - 100)\n"
-"\n"
-"this option has only an effect on the north, east, south and west light "
-"sources. the further away the light source is, the smaller will the two "
-"'side' shadows be."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "fake shadow width (0 - 100 pixel)"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "shadow color"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid ""
-"customize border colors\n"
-"\n"
-"you can customize your border colors here. if you deactivate this, these "
-"colors will be set to the focused title string color."
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "  focused border color"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "unfocused border color"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "  focused highlighted border color"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "unfocused highlighted border color"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "  focused clicked border color"
-msgstr ""
-
-#. ../themes/mxflat/theme.jl
-msgid "unfocused clicked border color"
-msgstr ""
-
-#. ../themes/simple/theme.jl
-msgid "Simple Theme"
-msgstr ""
-
-#. ../themes/simple/theme.jl
-msgid "Color of inactive frames in `simple' frame style."
-msgstr ""
-
-#. ../themes/simple/theme.jl
-msgid "Color of active frames in `simple' frame style."
-msgstr ""
-
-#. ../themes/smaker/theme.jl
-msgid "SMaker Theme"
-msgstr ""
-
-#. ../themes/smaker/theme.jl
-msgid "Use black-on-white button images."
-msgstr ""
-
-#. ../themes/smaker/theme.jl
-msgid "Color to use when drawing text."
-msgstr ""
-
-#. ../themes/smaker/theme.jl
-msgid "Bar image for unfocused windows."
-msgstr ""
-
-#. ../themes/smaker/theme.jl
-msgid "Bar image for focused windows."
-msgstr ""
-
-#. ../themes/smaker/theme.jl
-msgid "Bar image for highlighted parts."
-msgstr ""
-
-#. ../themes/smaker/theme.jl
-msgid "Bar image for clicked parts."
-msgstr ""
-
-#. ../themes/smaker/theme.jl
-msgid "Height of title bar."
-msgstr ""
-
-#. ../themes/smaker/theme.jl
-msgid "Width of window border."
-msgstr ""
-
-#. ../themes/smaker/theme.jl
-msgid "Border width of bar images."
-msgstr ""
-
-#. ../lisp/sawfish/gtk/widget.jl
-#, c-format
-msgid "No matching item for %S"
-msgstr ""
-
-#. ../lisp/sawfish/gtk/widget.jl
-msgid "** unknown widget **  "
-msgstr ""
-
-#. ../lisp/sawfish/ui/widgets/keymap.jl
-#. ../lisp/sawfish/gtk/widgets/alist.jl
-msgid "Key"
-msgstr ""
-
-#. ../lisp/sawfish/gtk/widgets/alist.jl
-msgid "Value"
-msgstr ""
-
-#. ../lisp/sawfish/gtk/widgets/color.jl
-msgid "Select color"
-msgstr ""
-
-#. ../lisp/sawfish/gtk/widgets/font.jl
-#. ../lisp/sawfish/gtk/widgets/file.jl
-msgid "Browse..."
-msgstr ""
-
-#. ../lisp/sawfish/gtk/widgets/file.jl
-msgid "Select file"
-msgstr ""
-
-#. ../lisp/sawfish/gtk/widgets/font.jl
-msgid "Select font"
-msgstr ""
-
-#. ../lisp/sawfish/gtk/widgets/list.jl
-msgid "Add..."
-msgstr ""
-
-#. ../lisp/sawfish/gtk/widgets/list.jl
-msgid "Delete"
-msgstr ""
-
-#. ../lisp/sawfish/gtk/widgets/list.jl
-msgid "Edit..."
-msgstr ""
-
-#. ../lisp/sawfish/gtk/widgets/list.jl
-msgid "Add:"
-msgstr ""
-
-#. ../lisp/sawfish/gtk/widgets/list.jl
-msgid "Edit:"
-msgstr ""
-
-#. ../lisp/sawfish/gtk/widgets/scheme-boolean.jl
-msgid "Yes"
-msgstr ""
-
-#. ../lisp/sawfish/gtk/widgets/scheme-boolean.jl
-msgid "No"
-msgstr ""
-
-#. ../lisp/sawfish/ui/apply.jl
-#, c-format
-msgid "While changing %s:"
-msgstr ""
-
-#. ../lisp/sawfish/ui/apply.jl
-msgid "Sawfish Error"
-msgstr ""
-
-#. ../lisp/sawfish/ui/layouts/keymaps.jl
-msgid "Context:"
-msgstr ""
-
-#. ../lisp/sawfish/ui/shell.jl
-msgid "Sawfish Configurator"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-#. ../lisp/sawfish/wm/commands.jl
-#. ../lisp/sawfish/ui/widgets/keymap.jl
-#. ../lisp/sawfish/ui/widgets/command.jl
-msgid "Command"
-msgstr ""
-
-#. ../lisp/sawfish/ui/widgets/command.jl
-msgid "Undocumented"
-msgstr ""
-
-#. ../lisp/sawfish/ui/widgets/match-window.jl
-#. ../lisp/sawfish/ui/widgets/event.jl
-msgid "Grab..."
-msgstr ""
-
-#. ../lisp/sawfish/ui/widgets/workspace-geometry.jl
-#. ../lisp/sawfish/ui/widgets/gtk/workspace-geometry.jl
-msgid "Workspaces:"
-msgstr ""
-
-#. ../lisp/sawfish/ui/widgets/workspace-geometry.jl
-#. ../lisp/sawfish/ui/widgets/gtk/workspace-geometry.jl
-msgid "Columns:"
-msgstr ""
-
-#. ../lisp/sawfish/ui/widgets/workspace-geometry.jl
-#. ../lisp/sawfish/ui/widgets/gtk/workspace-geometry.jl
-msgid "Rows:"
-msgstr ""
-
-#. ../lisp/sawfish/ui/widgets/keymap.jl
-msgid "Edit Binding"
-msgstr ""
-
-#. ../lisp/sawfish/ui/widgets/keymap.jl
-msgid "Key:"
-msgstr ""
-
-#. ../lisp/sawfish/ui/widgets/match-window.jl
-msgid "Matchers"
-msgstr ""
-
-#. ../lisp/sawfish/ui/widgets/match-window.jl
-msgid "Actions"
-msgstr ""
-
-#. ../lisp/sawfish/ui/widgets/match-window.jl
-msgid "not"
-msgstr ""
-
-#. ../lisp/sawfish/ui/widgets/match-window.jl
-msgid "Match Window Properties"
-msgstr ""
-
-#. ../lisp/sawfish/wm/animation/outline.jl
-msgid "Animation Outline Coordinates"
-msgstr ""
-
-#. ../lisp/sawfish/wm/animation/outline.jl
-msgid "Animation Steps"
-msgstr ""
-
-#. ../lisp/sawfish/wm/animation/outline.jl
-msgid "Animation Delay"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/x-cycle.jl
-#. ../lisp/sawfish/wm/autoload.jl
-msgid "Window Cycling"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/audio-events.jl
-#. ../lisp/sawfish/wm/autoload.jl
-msgid "Sound"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-#. ../lisp/sawfish/wm/autoload.jl
-msgid "Matched Windows"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/tooltips.jl
-#. ../lisp/sawfish/wm/autoload.jl
-msgid "Tooltips"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/viewport-linear.jl
-#. ../lisp/sawfish/wm/autoload.jl
-msgid "Index:"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/cycle.jl
-msgid "Next workspace window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/cycle.jl
-msgid "Previous workspace window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/cycle.jl
-msgid "Next window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/cycle.jl
-msgid "Previous window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/describe.jl
-msgid "Describe symbol"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/describe.jl
-msgid "Apropos function"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/describe.jl
-msgid "Apropos variable"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/gnome.jl
-msgid "Gnome toggle skip winlist"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/gnome.jl
-msgid "Gnome set skip winlist"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/gnome.jl
-msgid "Gnome clear skip winlist"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/gnome.jl
-msgid "Gnome toggle skip tasklist"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/gnome.jl
-msgid "Gnome set skip tasklist"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/gnome.jl
-msgid "Gnome clear skip tasklist"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/gnome.jl
-msgid "Gnome logout"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/gnome.jl
-msgid "Gnome www page"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/gnome.jl
-msgid "Gnome help browser"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/gnome.jl
-msgid "Gnome about"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/groups.jl
-msgid "Iconify group"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/groups.jl
-msgid "Uniconify group"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/groups.jl
-msgid "Iconify transient group"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/groups.jl
-msgid "Uniconify transientgroup"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/groups.jl
-msgid "Make group sticky"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/groups.jl
-msgid "Make group unsticky"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/groups.jl
-msgid "Toggle group sticky"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/groups.jl
-msgid "Send group to current workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/groups.jl
-msgid "Send group to next workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/groups.jl
-msgid "Send group to previous workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/groups.jl
-msgid "Move group to current viewport"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/groups.jl
-msgid "Move group left"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/groups.jl
-msgid "Move group right"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/groups.jl
-msgid "Move group up"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/groups.jl
-msgid "Move group down"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/groups.jl
-msgid "Raise group"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/groups.jl
-msgid "Lower group"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/groups.jl
-msgid "Raise lower group"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/groups.jl
-msgid "Raise group depth"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/groups.jl
-msgid "Lower group depth"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/groups.jl
-msgid "Delete group"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Growing and packing of windows"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Whether growing is considered to be maximization."
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "always"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "maybe"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "never"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Whether and how to move the pointer."
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Whether to bump into fully obscured windows."
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Whether to bump into windows on a different depth."
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Whether to bump into ignored windows."
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Grow window left"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Grow window right"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Grow window up"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Grow window down"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Pack window left"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Pack window right"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Pack window up"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Pack window down"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Grow left"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Grow right"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Grow up"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Grow down"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Pack left"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Pack right"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Pack up"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/grow-pack.jl
-msgid "Pack down"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/help.jl
-msgid "Help show faq"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/help.jl
-msgid "Help show news"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/help.jl
-msgid "Help show programmer manual"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/help.jl
-msgid "Help show homepage"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/help.jl
-msgid "Help about"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-cursor.jl
-msgid "Number of pixels to move pointer in."
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-cursor.jl
-msgid "Move cursor right"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-cursor.jl
-msgid "Move cursor left"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-cursor.jl
-msgid "Move cursor up"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-cursor.jl
-msgid "Move cursor down"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-cursor.jl
-msgid "Move cursor right fine"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-cursor.jl
-msgid "Move cursor left fine"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-cursor.jl
-msgid "Move cursor up fine"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-cursor.jl
-msgid "Move cursor down fine"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-resize.jl
-msgid "opaque"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-resize.jl
-msgid "box"
-msgstr ""
-
-#. ../lisp/sawfish/wm/window-anim.jl
-#. ../lisp/sawfish/wm/commands/move-resize.jl
-msgid "cross"
-msgstr ""
-
-#. ../lisp/sawfish/wm/window-anim.jl
-#. ../lisp/sawfish/wm/commands/move-resize.jl
-msgid "elliptical"
-msgstr ""
-
-#. ../lisp/sawfish/wm/window-anim.jl
-#. ../lisp/sawfish/wm/commands/move-resize.jl
-msgid "draft"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-resize.jl
-msgid "How windows being moved are animated"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-resize.jl
-msgid "How windows being resized are animated"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-resize.jl
-msgid "Raise windows when they are moved or resized."
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-resize.jl
-msgid "Show current position of windows while moving."
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-resize.jl
-msgid "Show current dimensions of windows while resizing."
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-resize.jl
-msgid "region"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-resize.jl
-msgid "border"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-resize.jl
-msgid "grab"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-resize.jl
-msgid "border-grab"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-resize.jl
-msgid "How to choose window edges when resizing."
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-resize.jl
-msgid ""
-"Distance in pixels before window edges align with each other.\n"
-"\n"
-"When moving a window, this option lets you align one of its edges with an "
-"edge of another window."
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-resize.jl
-msgid "Move window interactively"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-resize.jl
-msgid "Resize window interactively"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-resize.jl
-msgid "Move selected window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/move-resize.jl
-msgid "Resize selected window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/raise-commands.jl
-msgid "Raise and pass through click"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/raise-commands.jl
-msgid "Raise and pass through click if focused"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/raise-commands.jl
-msgid "Raise or pass through click"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/raise-commands.jl
-msgid "Raise window and pass through click"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/raise-commands.jl
-msgid "Raise group and pass through click"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/raise-commands.jl
-msgid "Raise transients and pass through click"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/shrink-yank.jl
-msgid "Shrinking and Yanking of windows"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/shrink-yank.jl
-msgid "The minimum height or width to which a window may be shrunk."
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/shrink-yank.jl
-msgid "The minimum amount of window left visible, if yanked over the edge."
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/shrink-yank.jl
-msgid "Shrink window left"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/shrink-yank.jl
-msgid "Shrink window right"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/shrink-yank.jl
-msgid "Shrink window up"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/shrink-yank.jl
-msgid "Shrink window down"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/shrink-yank.jl
-msgid "Yank window left"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/shrink-yank.jl
-msgid "Yank window right"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/shrink-yank.jl
-msgid "Yank window up"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/shrink-yank.jl
-msgid "Yank window down"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/size-window.jl
-msgid "Size window add row"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/size-window.jl
-msgid "Size window subtract row"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/size-window.jl
-msgid "Size window add column"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/size-window.jl
-msgid "Size window subtract column"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/slide-window.jl
-msgid "Slide window left"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/slide-window.jl
-msgid "Slide window right"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/slide-window.jl
-msgid "Slide window up"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/slide-window.jl
-msgid "Slide window down"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/slide-window.jl
-msgid "Slide group left"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/slide-window.jl
-msgid "Slide group right"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/slide-window.jl
-msgid "Slide group up"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/slide-window.jl
-msgid "Slide group down"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/viewport-extras.jl
-msgid "Move viewport next"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/viewport-extras.jl
-msgid "Move viewport previous"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/viewport-extras.jl
-msgid "Move window previous"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/viewport-extras.jl
-msgid "Move window next"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/viewport-linear.jl
-msgid "Set viewport linear"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/viewport-linear.jl
-msgid "Set window viewport linear"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/x-cycle.jl
-msgid "Display window names and icons while cycling through windows."
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/x-cycle.jl
-msgid "Include iconified windows when cycling."
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/x-cycle.jl
-msgid "Include windows on all workspaces when cycling."
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/x-cycle.jl
-msgid "Include windows on all viewports when cycling."
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/x-cycle.jl
-msgid "Raise windows while they're temporarily selected during cycling."
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/x-cycle.jl
-msgid "cycle-keymap"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/x-cycle.jl
-msgid ""
-"Keymap containing bindings active only during window cycling operations."
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/xterm.jl
-msgid "The program launched by the `xterm' command."
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/xterm.jl
-msgid "Arguments given to the `xterm' command."
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands/xterm.jl
-msgid "Xterm"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands.jl
-msgid "Call command"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands.jl
-msgid "Run shell command"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands.jl
-msgid "Command:"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands.jl
-msgid "Command sequence"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands.jl
-msgid "Quit"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands.jl
-msgid "Restart"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands.jl
-msgid "Destroy window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands.jl
-msgid "Kill client"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands.jl
-msgid "No operation"
-msgstr ""
-
-#. ../lisp/sawfish/wm/commands.jl
-msgid "Call command with output to screen"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-#. ../lisp/sawfish/wm/custom.jl
-msgid "Focus"
-msgstr ""
-
-#. ../lisp/sawfish/wm/custom.jl
-msgid "Move/Resize"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-#. ../lisp/sawfish/wm/custom.jl
-msgid "Appearance"
-msgstr ""
-
-#. ../lisp/sawfish/wm/custom.jl
-msgid "Workspaces"
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-#. ../lisp/sawfish/wm/custom.jl
-msgid "Bindings"
-msgstr ""
-
-#. ../lisp/sawfish/wm/custom.jl
-msgid "Mini/Maximizing"
-msgstr ""
-
-#. ../lisp/sawfish/wm/custom.jl
-msgid "Miscellaneous"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-#. ../lisp/sawfish/wm/custom.jl
-msgid "Placement"
-msgstr ""
-
-#. ../lisp/sawfish/wm/customize.jl
-msgid "Customize"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/3d-hack.jl
-msgid "3d hack"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/audio-events.jl
-msgid "Play sound effects for window events."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/audio-events.jl
-msgid "Event"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/audio-events.jl
-msgid "Audio file"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/auto-raise.jl
-msgid "Auto-Raise"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/auto-raise.jl
-msgid "Raise windows when they are focused."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/auto-raise.jl
-msgid "Delay in milliseconds until focused windows are raised."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/edge-flip.jl
-msgid "Edge Flipping"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/edge-flip.jl
-msgid "Select the next desktop when the pointer hits screen edge."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/edge-flip.jl
-msgid "viewport"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/edge-flip.jl
-msgid "workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/edge-flip.jl
-msgid "Hitting the screen edge selects the next: \\w"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/edge-flip.jl
-msgid "Only flip when interactively moving a window."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/edge-flip.jl
-msgid "Milliseconds to delay before edge flipping."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/error-handler.jl
-msgid "Beep when errors occur."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/error-handler.jl
-msgid "nowhere"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/error-handler.jl
-msgid "screen"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/error-handler.jl
-msgid "standard-error"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/error-handler.jl
-msgid "both"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/error-handler.jl
-msgid "Display error messages to: \\w"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/error-handler.jl
-msgid "No errors."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/error-handler.jl
-msgid "Display errors"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/infinite-desktop.jl
-msgid "Infinite Desktop"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/infinite-desktop.jl
-msgid "Simulate an infinite desktop (Conflicts edge-flipping)."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/infinite-desktop.jl
-msgid "Amount to move the workspace."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/infinite-desktop.jl
-msgid "Amount to move the cursor after moving the workspace."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/infinite-desktop.jl
-msgid "Stop scrolling at workspace borders (Fixes warp-to-window bugs)."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Name"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Class"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Icon Name"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Role"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Host"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Locale"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Avoid"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Ignore program position"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Place mode"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Position"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Dimensions"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/viewport.jl
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Viewport"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Depth"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Placement weight"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Maximized"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Raise on focus"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Focus when mapped"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Never focus"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Focus click through"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Focus mode"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Frame type"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Frame style"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Ignored"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Iconified"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Shaded"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Sticky"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Sticky viewport"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Group"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Ungrouped"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Cycle skip"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Window list skip"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Task list skip"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Unique name"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Auto gravity"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Shade hover"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Transients above"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Ignore stacking requests"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "State"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/match-window.jl
-msgid "Other"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/shade-hover.jl
-msgid "Shade Hover"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/shade-hover.jl
-msgid ""
-"Enable shade-hover mode.\n"
-"\n"
-"(Temporarily unshades windows while the mouse pointer is over them.)"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/shade-hover.jl
-msgid "Delay in milliseconds before unshading windows."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/shade-hover.jl
-msgid "Raise windows when they are unshaded."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/tooltips.jl
-msgid "Display tooltips for window frames."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/tooltips.jl
-msgid "Show full documentation in tooltips."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/tooltips.jl
-msgid "Number of milliseconds before displaying tooltips."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/tooltips.jl
-msgid "Number of milliseconds before removing tooltips."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/tooltips.jl
-msgid "Font used to display tooltips, or nil for default."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/tooltips.jl
-msgid "Color used for the tooltips background"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/tooltips.jl
-msgid "Color used for the tooltips foreground"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/window-history.jl
-msgid "Remember _position"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/window-history.jl
-msgid "Remember _dimensions"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/window-history.jl
-msgid "Remember _attributes"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/window-history.jl
-msgid "_Forget saved state"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/window-history.jl
-msgid "History"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/window-history.jl
-msgid "Automatically remember window positions."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/window-history.jl
-msgid "Automatically remember window sizes."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/window-history.jl
-msgid "Automatically remember other window attributes."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/window-history.jl
-msgid "Don't automatically remember details of transient windows."
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/window-history.jl
-msgid "Window history save position"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/window-history.jl
-msgid "Window history save dimensions"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/window-history.jl
-msgid "Window history save attributes"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/window-history.jl
-msgid "Window history forget"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/window-history.jl
-msgid "Window history clear"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/window-history.jl
-msgid "_History"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/workspace-grid.jl
-msgid "Workspace down"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/workspace-grid.jl
-msgid "Workspace up"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/workspace-grid.jl
-msgid "Workspace left"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/workspace-grid.jl
-msgid "Workspace right"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/workspace-grid.jl
-msgid "Send to workspace down"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/workspace-grid.jl
-msgid "Send to workspace up"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/workspace-grid.jl
-msgid "Send to workspace left"
-msgstr ""
-
-#. ../lisp/sawfish/wm/ext/workspace-grid.jl
-msgid "Send to workspace right"
-msgstr ""
-
-#. ../lisp/sawfish/wm/focus.jl
-msgid "When does the mouse pointer affect the input focus."
-msgstr ""
-
-#. ../lisp/sawfish/wm/focus.jl
-msgid "Click-to-focus mode passes the click through to the application."
-msgstr ""
-
-#. ../lisp/sawfish/wm/focus.jl
-msgid "Wether focusing a window doesn't change it's position in the stack."
-msgstr ""
-
-#. ../lisp/sawfish/wm/focus.jl
-msgid "When true, pointer in/out events don't cause focus changes."
-msgstr ""
-
-#. ../lisp/sawfish/wm/frames.jl
-msgid "Default frame style:"
-msgstr ""
-
-#. ../lisp/sawfish/wm/frames.jl
-msgid "Automatically reload themes when they are updated."
-msgstr ""
-
-#. ../lisp/sawfish/wm/frames.jl
-msgid "Default font: \\w"
-msgstr ""
-
-#. ../lisp/sawfish/wm/frames.jl
-msgid "Edit frame style"
-msgstr ""
-
-#. ../lisp/sawfish/wm/frames.jl
-msgid "Default"
-msgstr ""
-
-#. ../lisp/sawfish/wm/frames.jl
-msgid "Normal"
-msgstr ""
-
-#. ../lisp/sawfish/wm/frames.jl
-msgid "Title-only"
-msgstr ""
-
-#. ../lisp/sawfish/wm/frames.jl
-msgid "Border-only"
-msgstr ""
-
-#. ../lisp/sawfish/wm/frames.jl
-msgid "Top-border"
-msgstr ""
-
-#. ../lisp/sawfish/wm/frames.jl
-msgid "None"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-#. ../lisp/sawfish/wm/gnome/integration.jl
-msgid "_Help"
-msgstr ""
-
-#. ../lisp/sawfish/wm/gnome/integration.jl
-msgid "_GNOME Help..."
-msgstr ""
-
-#. ../lisp/sawfish/wm/gnome/integration.jl
-msgid "GNOME WWW..."
-msgstr ""
-
-#. ../lisp/sawfish/wm/gnome/integration.jl
-msgid "About GNOME..."
-msgstr ""
-
-#. ../lisp/sawfish/wm/gnome/menus.jl
-msgid "Gnome menus update"
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-msgid "global-keymap"
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-msgid "Keymap containing bindings active anywhere."
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-msgid "window-keymap"
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-msgid "Keymap containing bindings active when a client window is focused."
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-msgid "root-window-keymap"
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-msgid ""
-"Keymap containing bindings active when the pointer is in the root window\n"
-"(or when no window is focused)."
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-msgid "title-keymap"
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-msgid ""
-"Keymap containing bindings active when the pointer is in the title of\n"
-"a window. (Only mouse-bindings are evaluated in this map.)"
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-msgid "border-keymap"
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-msgid ""
-"Keymap containing bindings active when the pointer is in the border of\n"
-"a window. (Only mouse-bindings are evaluated in this map.)"
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-msgid "close-button-keymap"
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-msgid ""
-"Keymap containing bindings active when the pointer is in the close button\n"
-"of a window. (Only mouse-bindings are evaluated in this map.)"
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-msgid "iconify-button-keymap"
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-msgid ""
-"Keymap containing bindings active when the pointer is in the iconify\n"
-"button of a window. (Only mouse-bindings are evaluated in this map.)"
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-msgid "maximize-button-keymap"
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-msgid ""
-"Keymap containing bindings active when the pointer is in the maximize\n"
-"button of a window. (Only mouse-bindings are evaluated in this map.)"
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-msgid "menu-button-keymap"
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-msgid ""
-"Keymap containing bindings active when the pointer is in the menu button\n"
-"of a window. (Only mouse-bindings are evaluated in this map.)"
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-msgid "shade-button-keymap"
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-msgid ""
-"Keymap containing bindings active when the pointer is in the shade button\n"
-"of a window. (Only mouse-bindings are evaluated in this map.)"
-msgstr ""
-
-#. ../lisp/sawfish/wm/keymaps.jl
-msgid "Modifier key(s) used for default shortcuts."
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "Mi_nimize"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "Unma_ximize"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "Ma_ximize"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "_Move"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "_Resize"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "_Close"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "_Toggle"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "In _group"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "_Send window to"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "_Previous workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "_Next workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "Copy to p_revious"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "Copy to ne_xt"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "Stac_king"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "_Raise"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "_Lower"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "_Upper layer"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "Lo_wer layer"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "Frame ty_pe"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "Frame sty_le"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "_Windows"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "Work_spaces"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "_Programs"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "_Customize"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "_FAQ..."
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "_News..."
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "_WWW page..."
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "_Manual..."
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "_About Sawfish..."
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "_Restart"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "_Quit"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "Popup window menu"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "Popup root menu"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "Popup apps menu"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "_All settings"
-msgstr ""
-
-#. ../lisp/sawfish/wm/menus.jl
-msgid "Edit theme..."
-msgstr ""
-
-#. ../lisp/sawfish/wm/placement/stagger.jl
-msgid "Distance between successive placements in `stagger' placement mode."
-msgstr ""
-
-#. ../lisp/sawfish/wm/placement.jl
-msgid "Method of placing windows: \\w"
-msgstr ""
-
-#. ../lisp/sawfish/wm/placement.jl
-msgid "Method of placing dialog windows: \\w"
-msgstr ""
-
-#. ../lisp/sawfish/wm/placement.jl
-msgid "Ignore program-specified window placements."
-msgstr ""
-
-#. ../lisp/sawfish/wm/stacking.jl
-msgid "Stacking"
-msgstr ""
-
-#. ../lisp/sawfish/wm/stacking.jl
-msgid "parents"
-msgstr ""
-
-#. ../lisp/sawfish/wm/stacking.jl
-msgid "Keep transient windows stacked above: \\w"
-msgstr ""
-
-#. ../lisp/sawfish/wm/stacking.jl
-msgid "Raise single window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/stacking.jl
-msgid "Lower single window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/stacking.jl
-msgid "Raise lower single window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/stacking.jl
-msgid "Raise window depth"
-msgstr ""
-
-#. ../lisp/sawfish/wm/stacking.jl
-msgid "Lower window depth"
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/stacking.jl
-#. ../lisp/sawfish/wm/state/iconify.jl
-msgid "transients"
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/stacking.jl
-#. ../lisp/sawfish/wm/state/iconify.jl
-msgid "group"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/iconify.jl
-msgid "Minimizing a window also removes its: \\w"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/iconify.jl
-msgid "Unminimizing a window also restores its: \\w"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/iconify.jl
-msgid "Iconify window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/iconify.jl
-msgid "Uniconify window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/iconify.jl
-msgid "Toggle window iconified"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/iconify.jl
-msgid "Iconify workspace windows"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/iconify.jl
-msgid "Make window sticky"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/iconify.jl
-msgid "Make window unsticky"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/iconify.jl
-msgid "Toggle window sticky"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/iconify.jl
-msgid "_Sticky"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/ignored.jl
-msgid "Make window ignored"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/ignored.jl
-msgid "Make window not ignored"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/ignored.jl
-msgid "Toggle window ignored"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/ignored.jl
-msgid "Toggle window never focus"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/ignored.jl
-msgid "Toggle window cycle skip"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/ignored.jl
-msgid "Toggle window list skip"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/ignored.jl
-msgid "Toggle task list skip"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/ignored.jl
-msgid "_Ignored"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/ignored.jl
-msgid "_Focusable"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/ignored.jl
-msgid "_Cyclable"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/ignored.jl
-msgid "In _window list"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/ignored.jl
-msgid "In _task list"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/maximize.jl
-msgid "Lock position and size while windows are maximized."
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/maximize.jl
-msgid "Maximize window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/maximize.jl
-msgid "Unmaximize window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/maximize.jl
-msgid "Maximize window vertically"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/maximize.jl
-msgid "Maximize window horizontally"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/maximize.jl
-msgid "Maximize window toggle"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/maximize.jl
-msgid "Maximize window horizontally toggle"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/maximize.jl
-msgid "Maximize window vertically toggle"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/maximize.jl
-msgid "Maximize fill window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/maximize.jl
-msgid "Maximize fill window vertically"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/maximize.jl
-msgid "Maximize fill window horizontally"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/maximize.jl
-msgid "Maximize fill window toggle"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/maximize.jl
-msgid "Maximize fill window horizontally toggle"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/maximize.jl
-msgid "Maximize fill window vertically toggle"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/maximize.jl
-msgid "Maximize window fullscreen"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/maximize.jl
-msgid "Maximize window fullscreen toggle"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/maximize.jl
-msgid "Maximize window fullxinerama"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/maximize.jl
-msgid "Maximize window fullxinerama toggle"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/shading.jl
-msgid "Shade window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/shading.jl
-msgid "Unshade window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/shading.jl
-msgid "Toggle window shaded"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/shading.jl
-msgid "S_haded"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/transient.jl
-msgid "Focus on application windows when they first appear."
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/transient.jl
-msgid "Raise window and transients"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/transient.jl
-msgid "Lower window and transients"
-msgstr ""
-
-#. ../lisp/sawfish/wm/state/transient.jl
-msgid "Raise lower window and transients"
-msgstr ""
-
-#. ../lisp/sawfish/wm/tabs/tab.jl
-msgid "Tabs"
-msgstr ""
-
-#. ../lisp/sawfish/wm/tabs/tab.jl
-msgid "Width of tab's left-edge decoration"
-msgstr ""
-
-#. ../lisp/sawfish/wm/tabs/tab.jl
-msgid "Width of tab's right-edge decoration"
-msgstr ""
-
-#. ../lisp/sawfish/wm/tabs/tab.jl
-msgid "Width of tab area's left-edge decoration"
-msgstr ""
-
-#. ../lisp/sawfish/wm/tabs/tab.jl
-msgid "Width of tab area's right-edge decoration"
-msgstr ""
-
-#. ../lisp/sawfish/wm/tabs/tab.jl
-msgid "Add to group"
-msgstr ""
-
-#. ../lisp/sawfish/wm/tabs/tabgroup.jl
-msgid "Tab release window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/tabs/tabgroup.jl
-msgid "Tab raise left window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/tabs/tabgroup.jl
-msgid "Tab raise right window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/compat.jl
-msgid "Insert workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/display-window.jl
-msgid "Unshade selected windows."
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/display-window.jl
-msgid "Display window without focusing"
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/display-window.jl
-msgid "Display window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/groups.jl
-msgid "New group"
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/gtkrc.jl
-msgid "Gtkrc reload style"
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/keymap.jl
-msgid "Describe key"
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/keymap.jl
-msgid "Press key..."
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/keymap.jl
-msgid "[Quote]"
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/keymap.jl
-msgid "Quote event"
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/marks.jl
-msgid "Mark window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/marks.jl
-msgid "Unmark window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/marks.jl
-msgid "Unmark all windows"
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/play-audio.jl
-msgid ""
-"The program used to play audio samples. If unset, built-in support for ESD "
-"is used."
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/prompt-wm.jl
-msgid "Window:"
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/prompt-wm.jl
-#, c-format
-msgid "Workspace %d"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-#. ../lisp/sawfish/wm/util/prompt-wm.jl
-msgid "Workspace:"
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/prompt.jl
-msgid "prompt-keymap"
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/prompt.jl
-msgid "Keymap containing bindings active when reading a string from the user."
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/stacking.jl
-msgid "When raising a window, also raise its: \\w"
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/stacking.jl
-msgid "Raise window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/stacking.jl
-msgid "Lower window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/util/stacking.jl
-msgid "Raise lower window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/viewport.jl
-msgid "Number of columns and rows in each virtual workspace: \\w"
-msgstr ""
-
-#. ../lisp/sawfish/wm/viewport.jl
-msgid "Windows uniconify to the current viewport."
-msgstr ""
-
-#. ../lisp/sawfish/wm/viewport.jl
-msgid "Number of steps for viewport scrolling."
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-#. ../lisp/sawfish/wm/viewport.jl
-msgid "wrap-around"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-#. ../lisp/sawfish/wm/viewport.jl
-msgid "stop"
-msgstr ""
-
-#. ../lisp/sawfish/wm/viewport.jl
-msgid "Wether to stop or wrap-around on first/last viewport"
-msgstr ""
-
-#. ../lisp/sawfish/wm/viewport.jl
-msgid "Activate viewport"
-msgstr ""
-
-#. ../lisp/sawfish/wm/viewport.jl
-msgid "Column:"
-msgstr ""
-
-#. ../lisp/sawfish/wm/viewport.jl
-msgid "Row:"
-msgstr ""
-
-#. ../lisp/sawfish/wm/viewport.jl
-msgid "Activate viewport column"
-msgstr ""
-
-#. ../lisp/sawfish/wm/viewport.jl
-msgid "Activate viewport row"
-msgstr ""
-
-#. ../lisp/sawfish/wm/viewport.jl
-msgid "Move window to viewport"
-msgstr ""
-
-#. ../lisp/sawfish/wm/viewport.jl
-msgid "Move viewport right"
-msgstr ""
-
-#. ../lisp/sawfish/wm/viewport.jl
-msgid "Move viewport left"
-msgstr ""
-
-#. ../lisp/sawfish/wm/viewport.jl
-msgid "Move viewport up"
-msgstr ""
-
-#. ../lisp/sawfish/wm/viewport.jl
-msgid "Move viewport down"
-msgstr ""
-
-#. ../lisp/sawfish/wm/viewport.jl
-msgid "Move window right"
-msgstr ""
-
-#. ../lisp/sawfish/wm/viewport.jl
-msgid "Move window left"
-msgstr ""
-
-#. ../lisp/sawfish/wm/viewport.jl
-msgid "Move window up"
-msgstr ""
-
-#. ../lisp/sawfish/wm/viewport.jl
-msgid "Move window down"
-msgstr ""
-
-#. ../lisp/sawfish/wm/window-anim.jl
-msgid "Animation"
-msgstr ""
-
-#. ../lisp/sawfish/wm/window-anim.jl
-msgid "solid"
-msgstr ""
-
-#. ../lisp/sawfish/wm/window-anim.jl
-msgid "wireframe"
-msgstr ""
-
-#. ../lisp/sawfish/wm/window-anim.jl
-msgid "The default window animation mode"
-msgstr ""
-
-#. ../lisp/sawfish/wm/windows.jl
-msgid "Give focus to windows even when they haven't asked for it."
-msgstr ""
-
-#. ../lisp/sawfish/wm/windows.jl
-msgid "Warping"
-msgstr ""
-
-#. ../lisp/sawfish/wm/windows.jl
-msgid "Offset (%) from window edges when warping pointer."
-msgstr ""
-
-#. ../lisp/sawfish/wm/windows.jl
-msgid "Wether to enable warping the cursor to windows."
-msgstr ""
-
-#. ../lisp/sawfish/wm/windows.jl
-msgid "Wether to not ignore avoided windows by default."
-msgstr ""
-
-#. ../lisp/sawfish/wm/windows.jl
-msgid "Wether to avoid any unspecified window by default."
-msgstr ""
-
-#. ../lisp/sawfish/wm/windows.jl
-msgid "Format to create unique window names."
-msgstr ""
-
-#. ../lisp/sawfish/wm/windows.jl
-msgid "Focus desktop"
-msgstr ""
-
-#. ../lisp/sawfish/wm/windows.jl
-msgid "Delete window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/windows.jl
-msgid "Delete window safely"
-msgstr ""
-
-#. ../lisp/sawfish/wm/windows.jl
-msgid "Uniquify window name"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "keep-going"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "How to act when passing the first or last workspace."
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid ""
-"How to act when passing the first or last workspace, while moving a window"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Workspace names"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Preserve outermost empty workspaces in the pager."
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "_Insert workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Select _next workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Select _previous workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Merge with next"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Merge with previous"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Move workspace _right"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Move workspace _left"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-#, c-format
-msgid "space %d"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Popup workspace list"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Popup window list"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Next workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Previous workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Send to next workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Send to previous workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Copy to next workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Copy to previous workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Append workspace and send"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Prepend workspace and send"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Merge next workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Merge previous workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Insert workspace after"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Insert workspace before"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Move workspace forwards"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Move workspace backwards"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Delete empty workspaces"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Delete window instance"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Show desktop"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Hide desktop"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Activate workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Send to workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Copy to workspace"
-msgstr ""
-
-#. ../lisp/sawfish/wm/workspace.jl
-msgid "Select workspace interactively"
-msgstr ""
diff --git a/po/update.sh b/po/update.sh
deleted file mode 100755
index 9194c61..0000000
--- a/po/update.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-
-PACKAGE="sawfish"
-
-if [ "x$1" = "x--help" ]; then
-
-echo Usage: ./update.sh langcode
-echo --help                  display this help and exit
-echo
-echo Examples of use:
-echo ./update.sh da -- updates the da.po file 
-
-elif [ "x$1" = "x" ]; then 
-
-echo "Remember to type language code, ie. da for Danish, etc"
-
-else
-
-echo "Now merging $1.po with $PACKAGE.pot, and creating an updated $1.po ..." 
-
-mv $1.po $1.po.old && msgmerge $1.po.old $PACKAGE.pot -o $1.po \
-&& rm $1.po.old;
-
-msgfmt $1.po --statistics -o /dev/null
-
-fi;
diff --git a/sawfish.ebuild.in b/sawfish.ebuild.in
index 4889426..78c98e3 100644
--- a/sawfish.ebuild.in
+++ b/sawfish.ebuild.in
@@ -49,16 +49,9 @@ src_compile() {
 	fi
 
 	if ! use nls; then
-		# Use a space because configure script reads --enable-linguas="" as
-		# "install everything"
-		# Don't use --disable-linguas, because that means --enable-linguas="no",
-		# which means "install Norwegian translations"
-		set -- "$@" --enable-linguas=" "
-	elif [[ "${LINGUAS+set}" == "set" ]]; then
-		strip-linguas -i po
-		set -- "$@" --enable-linguas=" ${LINGUAS} "
-	else
-		set -- "$@" --enable-linguas=""
+		set -- "$@" \
+			--disable-nls
+
 	fi
 
 	econf "$@" || die "configure failed"



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]